diff options
| author | Tannin <devnull@localhost> | 2013-11-22 17:45:34 +0100 |
|---|---|---|
| committer | Tannin <devnull@localhost> | 2013-11-22 17:45:34 +0100 |
| commit | db0347212a509b9ceef1cede61a4afd7d2253014 (patch) | |
| tree | 406caa067ebf0a67cd42d08e684202703084e3a8 | |
| parent | 5895a1a92d1f0463cec276c22e32f528a309d31c (diff) | |
- bugfix: installFile for mods was not a relative path if the downloads directory was non-default
- bugfix: crash after removing the last profile in the list (ordered alphabetically)
- improved subdirs ordering to ensure pythonrunner is compiled before pythonproxy
- translation files for plugins are now generated
- set some texts as un-translatable where it made no sense
- staging script now re-builds MO completely before packaging
- updated qt libraries for packaging to 4.8.5
- added python to the package
| -rw-r--r-- | src/ModOrganizer.pro | 2 | ||||
| -rw-r--r-- | src/downloadlistwidget.ui | 2 | ||||
| -rw-r--r-- | src/installationmanager.cpp | 2 | ||||
| -rw-r--r-- | src/installationmanager.h | 7 | ||||
| -rw-r--r-- | src/mainwindow.cpp | 8 | ||||
| -rw-r--r-- | src/organizer.en.ts | 4652 | ||||
| -rw-r--r-- | src/organizer.pro | 2 | ||||
| -rw-r--r-- | src/organizer_cs.qm | bin | 137168 -> 131358 bytes | |||
| -rw-r--r-- | src/organizer_cs.ts | 1443 | ||||
| -rw-r--r-- | src/organizer_de.qm | bin | 140302 -> 134498 bytes | |||
| -rw-r--r-- | src/organizer_de.ts | 1450 | ||||
| -rw-r--r-- | src/organizer_es.qm | bin | 54680 -> 53759 bytes | |||
| -rw-r--r-- | src/organizer_es.ts | 1457 | ||||
| -rw-r--r-- | src/organizer_fr.qm | bin | 115943 -> 110028 bytes | |||
| -rw-r--r-- | src/organizer_fr.ts | 1454 | ||||
| -rw-r--r-- | src/organizer_ru.qm | bin | 188628 -> 179642 bytes | |||
| -rw-r--r-- | src/organizer_ru.ts | 2249 | ||||
| -rw-r--r-- | src/organizer_tr.qm | bin | 45452 -> 39829 bytes | |||
| -rw-r--r-- | src/organizer_tr.ts | 1452 | ||||
| -rw-r--r-- | src/organizer_zh_CN.qm | bin | 111361 -> 105836 bytes | |||
| -rw-r--r-- | src/organizer_zh_CN.ts | 1445 | ||||
| -rw-r--r-- | src/organizer_zh_TW.qm | bin | 111395 -> 105872 bytes | |||
| -rw-r--r-- | src/organizer_zh_TW.ts | 1445 |
23 files changed, 7034 insertions, 10036 deletions
diff --git a/src/ModOrganizer.pro b/src/ModOrganizer.pro index f35958f8..dbf6ab6e 100644 --- a/src/ModOrganizer.pro +++ b/src/ModOrganizer.pro @@ -1,5 +1,4 @@ TEMPLATE = subdirs
-CONFIG += ordered
SUBDIRS = bsatk \
@@ -16,6 +15,7 @@ SUBDIRS = bsatk \ pythonRunner \
esptk
+plugins.depends = pythonRunner
hookdll.depends = shared
organizer.depends = shared uibase plugins
diff --git a/src/downloadlistwidget.ui b/src/downloadlistwidget.ui index 106ac922..7a6ce8ba 100644 --- a/src/downloadlistwidget.ui +++ b/src/downloadlistwidget.ui @@ -85,7 +85,7 @@ <item>
<widget class="QLabel" name="label_2">
<property name="text">
- <string>KB</string>
+ <string notr="true">KB</string>
</property>
</widget>
</item>
diff --git a/src/installationmanager.cpp b/src/installationmanager.cpp index a8571ec9..224602a8 100644 --- a/src/installationmanager.cpp +++ b/src/installationmanager.cpp @@ -647,7 +647,7 @@ bool InstallationManager::install(const QString &fileName, GuessedValue<QString> } m_CurrentFile = fileInfo.absoluteFilePath(); - if (fileInfo.dir() == QDir(ToQString(GameInfo::instance().getDownloadDir()))) { + if (fileInfo.dir() == QDir(m_DownloadsDirectory)) { m_CurrentFile = fileInfo.fileName(); } qDebug("using mod name \"%s\" (id %d) -> %s", modName->toUtf8().constData(), modID, qPrintable(m_CurrentFile)); diff --git a/src/installationmanager.h b/src/installationmanager.h index 1c6f9f19..8b1f8c9a 100644 --- a/src/installationmanager.h +++ b/src/installationmanager.h @@ -65,6 +65,12 @@ public: void setModsDirectory(const QString &modsDirectory) { m_ModsDirectory = modsDirectory; } /** + * @brief update the directory where downloads are stored + * @param downloadDirectory the download directory + */ + void setDownloadDirectory(const QString &downloadDirectory) { m_DownloadsDirectory = downloadDirectory; } + + /** * @brief install a mod from an archive * * @param fileName absolute file name of the archive to install @@ -191,6 +197,7 @@ private: QWidget *m_ParentWidget; QString m_ModsDirectory; + QString m_DownloadsDirectory; std::vector<MOBase::IPluginInstaller*> m_Installers; std::set<QString, CaseInsensitive> m_SupportedExtensions; diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index a8026b68..31ee1ae7 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -223,6 +223,7 @@ MainWindow::MainWindow(const QString &exeName, QSettings &initSettings, QWidget NexusInterface::instance()->setNMMVersion(m_Settings.getNMMVersion()); m_InstallationManager.setModsDirectory(m_Settings.getModDirectory()); + m_InstallationManager.setDownloadDirectory(m_Settings.getDownloadDirectory()); updateDownloadListDelegate(); @@ -1435,6 +1436,12 @@ void MainWindow::on_profileBox_currentIndexChanged(int index) saveCurrentLists(); } + // ensure the new index is valid + if (index < 0 || index >= ui->profileBox->count()) { + qDebug("invalid profile index, using last profile"); + ui->profileBox->setCurrentIndex(ui->profileBox->count() - 1); + } + if (ui->profileBox->currentIndex() == 0) { ProfilesDialog(m_GamePath).exec(); while (!refreshProfiles()) { @@ -3909,6 +3916,7 @@ void MainWindow::on_actionSettings_triggered() bool proxy = m_Settings.useProxy(); m_Settings.query(this); m_InstallationManager.setModsDirectory(m_Settings.getModDirectory()); + m_InstallationManager.setDownloadDirectory(m_Settings.getDownloadDirectory()); fixCategories(); refreshFilters(); if (QDir::fromNativeSeparators(m_DownloadManager.getOutputDirectory()) != QDir::fromNativeSeparators(m_Settings.getDownloadDirectory())) { diff --git a/src/organizer.en.ts b/src/organizer.en.ts deleted file mode 100644 index 3423891a..00000000 --- a/src/organizer.en.ts +++ /dev/null @@ -1,4652 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.0" language="en_US"> -<context> - <name>ActivateModsDialog</name> - <message> - <location filename="activatemodsdialog.ui" line="14"/> - <source>Activate Mods</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="activatemodsdialog.ui" line="20"/> - <source>This is a list of esps and esms that were active when the save game was created.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="activatemodsdialog.ui" line="23"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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 type="unfinished"></translation> - </message> - <message> - <location filename="activatemodsdialog.ui" line="37"/> - <source>Missing ESP</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="activatemodsdialog.ui" line="42"/> - <source>Mod</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="activatemodsdialog.cpp" line="49"/> - <source>not found</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>BainComplexInstallerDialog</name> - <message> - <location filename="baincomplexinstallerdialog.ui" line="14"/> - <source>BAIN Package Installer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="baincomplexinstallerdialog.ui" line="22"/> - <source>Name</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="baincomplexinstallerdialog.ui" line="34"/> - <source>This looks like a Package prepared for Installation through BAIN. You can select options from the list below. If there is a package.txt file, it should contain detailed information about the options.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="baincomplexinstallerdialog.ui" line="44"/> - <source>Components of this package.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="baincomplexinstallerdialog.ui" line="47"/> - <source>Components of this package. -If there is a component called "00 Core" it is usually required. Options are ordered by priority as set up by the author.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="baincomplexinstallerdialog.ui" line="57"/> - <location filename="baincomplexinstallerdialog.ui" line="60"/> - <source>The package.txt is often part of BAIN packages and contains details about the options available.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="baincomplexinstallerdialog.ui" line="63"/> - <source>Package.txt</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="baincomplexinstallerdialog.ui" line="83"/> - <location filename="baincomplexinstallerdialog.ui" line="86"/> - <source>Opens a Dialog that allows custom modifications.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="baincomplexinstallerdialog.ui" line="89"/> - <source>Manual</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="baincomplexinstallerdialog.ui" line="96"/> - <source>Ok</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="baincomplexinstallerdialog.ui" line="103"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>CategoriesDialog</name> - <message> - <location filename="categoriesdialog.ui" line="14"/> - <source>Categories</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="categoriesdialog.ui" line="66"/> - <source>ID</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="categoriesdialog.ui" line="69"/> - <source>Internal ID for the category.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="categoriesdialog.ui" line="72"/> - <source>Internal ID for the category. The categories a mod belongs to are stored by this ID. It is recommended you use new IDs for categories you add instead of re-using existing ones.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="categoriesdialog.ui" line="77"/> - <source>Name</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="categoriesdialog.ui" line="80"/> - <location filename="categoriesdialog.ui" line="83"/> - <source>Name of the Categorie used for display.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="categoriesdialog.ui" line="88"/> - <source>Nexus IDs</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="categoriesdialog.ui" line="91"/> - <source>Comma-Separated list of Nexus IDs to be matched to the internal ID.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="categoriesdialog.ui" line="94"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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> - </message> - <message> - <location filename="categoriesdialog.ui" line="105"/> - <source>Parent ID</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="categoriesdialog.ui" line="108"/> - <source>If set, the category is defined as a sub-category of another one. Parent ID needs to be a valid category ID.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="categoriesdialog.cpp" line="239"/> - <source>Add</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="categoriesdialog.cpp" line="240"/> - <source>Remove</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>CredentialsDialog</name> - <message> - <location filename="credentialsdialog.ui" line="14"/> - <source>Login</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="credentialsdialog.ui" line="20"/> - <source>This feature may not work unless you're logged in with Nexus</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="credentialsdialog.ui" line="32"/> - <source>Username</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="credentialsdialog.ui" line="46"/> - <source>Password</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="credentialsdialog.ui" line="64"/> - <source>Remember</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="credentialsdialog.ui" line="75"/> - <source>Never ask again</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>DirectoryRefresher</name> - <message> - <location filename="directoryrefresher.cpp" line="99"/> - <source>failed to read bsa: %1</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>DownloadList</name> - <message> - <location filename="downloadlist.cpp" line="63"/> - <source>Name</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlist.cpp" line="64"/> - <source>Filetime</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlist.cpp" line="65"/> - <source>Done</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlist.cpp" line="79"/> - <source>Information missing, please select "Query Info" from the context menu to re-retrieve.</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>DownloadListWidget</name> - <message> - <location filename="downloadlistwidget.ui" line="17"/> - <location filename="downloadlistwidget.ui" line="61"/> - <source>Placeholder</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.ui" line="81"/> - <source>0</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.ui" line="88"/> - <source>KB</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.ui" line="99"/> - <location filename="downloadlistwidget.cpp" line="145"/> - <location filename="downloadlistwidget.cpp" line="147"/> - <source>Done - Double Click to install</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="111"/> - <location filename="downloadlistwidget.cpp" line="113"/> - <source>Paused - Double Click to resume</source> - <translation type="unfinished"></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> - </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> - </message> -</context> -<context> - <name>DownloadListWidgetCompact</name> - <message> - <location filename="downloadlistwidgetcompact.ui" line="17"/> - <location filename="downloadlistwidgetcompact.ui" line="56"/> - <source>Placeholder</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.ui" line="122"/> - <source>Done</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>DownloadListWidgetCompactDelegate</name> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="120"/> - <source>Paused</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="123"/> - <source>Fetching Info 1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="125"/> - <source>Fetching Info 2</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="130"/> - <source>Installed</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="133"/> - <source>Uninstalled</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="136"/> - <source>Done</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="215"/> - <location filename="downloadlistwidgetcompact.cpp" line="224"/> - <location filename="downloadlistwidgetcompact.cpp" line="233"/> - <location filename="downloadlistwidgetcompact.cpp" line="242"/> - <source>Are you sure?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="216"/> - <source>This will remove all finished downloads from this list and from disk.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="225"/> - <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="234"/> - <source>This will permanently remove all finished downloads from this list (but NOT from disk).</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="243"/> - <source>This will permanently remove all installed downloads from this list (but NOT from disk).</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="269"/> - <source>Install</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="271"/> - <source>Query Info</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="273"/> - <source>Delete</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="274"/> - <source>Remove from View</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="276"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="277"/> - <source>Pause</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="279"/> - <source>Remove</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="280"/> - <source>Resume</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="284"/> - <source>Delete Installed...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="285"/> - <source>Delete All...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="287"/> - <source>Remove Installed...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="288"/> - <source>Remove All...</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>DownloadListWidgetDelegate</name> - <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="228"/> - <location filename="downloadlistwidget.cpp" line="237"/> - <location filename="downloadlistwidget.cpp" line="246"/> - <location filename="downloadlistwidget.cpp" line="255"/> - <source>Are you sure?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="229"/> - <source>This will remove all finished downloads from this list and from disk.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="238"/> - <source>This will remove all installed downloads from this list and from disk.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="247"/> - <source>This will remove all finished downloads from this list (but NOT from disk).</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="256"/> - <source>This will remove all installed downloads from this list (but NOT from disk).</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="281"/> - <source>Install</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="283"/> - <source>Query Info</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="285"/> - <source>Delete</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="286"/> - <source>Remove from View</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="288"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="289"/> - <source>Pause</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="291"/> - <source>Remove</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="292"/> - <source>Resume</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="296"/> - <source>Delete Installed...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="297"/> - <source>Delete All...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="299"/> - <source>Remove Installed...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="300"/> - <source>Remove All...</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>DownloadManager</name> - <message> - <location filename="downloadmanager.cpp" line="125"/> - <source>failed to rename "%1" to "%2"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadmanager.cpp" line="306"/> - <source>Download again?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadmanager.cpp" line="306"/> - <source>A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadmanager.cpp" line="336"/> - <source>failed to download %1: could not open output file: %2</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadmanager.cpp" line="366"/> - <location filename="downloadmanager.cpp" line="585"/> - <location filename="downloadmanager.cpp" line="595"/> - <location filename="downloadmanager.cpp" line="604"/> - <location filename="downloadmanager.cpp" line="614"/> - <location filename="downloadmanager.cpp" line="624"/> - <location filename="downloadmanager.cpp" line="634"/> - <location filename="downloadmanager.cpp" line="645"/> - <location filename="downloadmanager.cpp" line="654"/> - <location filename="downloadmanager.cpp" line="664"/> - <location filename="downloadmanager.cpp" line="679"/> - <source>invalid index</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadmanager.cpp" line="384"/> - <source>failed to delete %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadmanager.cpp" line="390"/> - <source>failed to delete meta file for %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadmanager.cpp" line="450"/> - <location filename="downloadmanager.cpp" line="468"/> - <location filename="downloadmanager.cpp" line="481"/> - <location filename="downloadmanager.cpp" line="494"/> - <location filename="downloadmanager.cpp" line="505"/> - <location filename="downloadmanager.cpp" line="540"/> - <source>invalid index %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadmanager.cpp" line="557"/> - <source>Please enter the nexus mod id</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadmanager.cpp" line="557"/> - <source>Mod ID:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadmanager.cpp" line="899"/> - <source>Information updated</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadmanager.cpp" line="901"/> - <location filename="downloadmanager.cpp" line="915"/> - <source>No matching file found on Nexus! Maybe this file is no longer available or it was renamed?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadmanager.cpp" line="903"/> - <source>No file on Nexus matches the selected file by name. Please manually choose the correct one.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadmanager.cpp" line="1032"/> - <source>No download server available. Please try again later.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadmanager.cpp" line="1074"/> - <source>Failed to request file info from nexus: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadmanager.cpp" line="1097"/> - <source>Download failed: %1 (%2)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadmanager.cpp" line="1174"/> - <source>failed to re-open %1</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>EditExecutablesDialog</name> - <message> - <location filename="editexecutablesdialog.ui" line="14"/> - <source>Modify Executables</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="editexecutablesdialog.ui" line="20"/> - <source>List of configured executables</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="editexecutablesdialog.ui" line="23"/> - <source>This is a list of your configured executables. Executables in grey are automatically recognised and can not be modified.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="editexecutablesdialog.ui" line="38"/> - <source>Title</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="editexecutablesdialog.ui" line="45"/> - <location filename="editexecutablesdialog.ui" line="48"/> - <source>Name of the executable. This is only for display purposes.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="editexecutablesdialog.ui" line="59"/> - <source>Binary</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="editexecutablesdialog.ui" line="66"/> - <location filename="editexecutablesdialog.ui" line="69"/> - <source>Binary to run</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="editexecutablesdialog.ui" line="76"/> - <source>Browse filesystem</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="editexecutablesdialog.ui" line="79"/> - <source>Browse filesystem for the executable to run.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="editexecutablesdialog.ui" line="82"/> - <location filename="editexecutablesdialog.ui" line="103"/> - <source>...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="editexecutablesdialog.ui" line="93"/> - <source>Start in</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="editexecutablesdialog.ui" line="114"/> - <source>Arguments</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="editexecutablesdialog.ui" line="121"/> - <location filename="editexecutablesdialog.ui" line="124"/> - <source>Arguments to pass to the application</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="editexecutablesdialog.ui" line="135"/> - <source>Allow the Steam AppID to be used for this executable to be changed.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="editexecutablesdialog.ui" line="138"/> - <source>Allow the Steam AppID to be used for this executable to be changed. -Every game/tool distributed through Steam has a unique ID. MO needs to know this ID to start those programs directly, otherwise the program is started by steam and then MO will not work. By default, MO will use the AppID for the game. -Right now the only case I know of where this needs to be overwritten is for the Skyrim Creation Kit which has its own AppID. This overwrite is already preconfigured.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="editexecutablesdialog.ui" line="143"/> - <source>Overwrite Steam AppID</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="editexecutablesdialog.ui" line="153"/> - <source>Steam AppID to use for this executable that differs from the games AppID.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="editexecutablesdialog.ui" line="156"/> - <source>Steam AppID to use for this executable that differs from the games AppID. -Every game/tool distributed through Steam has a unique ID. MO needs to know this ID to start those programs directly, otherwise the program is started by steam and then MO will not work. By default, MO will use the AppID for the game (usually 72850). -Right now the only case I know of where this needs to be overwritten is for the Skyrim Creation Kit which has its own AppID (usually 202480). This overwrite is already preconfigured.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="editexecutablesdialog.ui" line="169"/> - <location filename="editexecutablesdialog.ui" line="172"/> - <location filename="editexecutablesdialog.cpp" line="220"/> - <source>If checked, MO will be closed once the specified executable is run.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="editexecutablesdialog.ui" line="175"/> - <source>Close MO when started</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="editexecutablesdialog.ui" line="182"/> - <location filename="editexecutablesdialog.ui" line="185"/> - <source>Add an executable</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="editexecutablesdialog.ui" line="188"/> - <location filename="editexecutablesdialog.cpp" line="190"/> - <source>Add</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="editexecutablesdialog.ui" line="199"/> - <location filename="editexecutablesdialog.ui" line="202"/> - <source>Remove the selected executable</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="editexecutablesdialog.ui" line="205"/> - <source>Remove</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="editexecutablesdialog.cpp" line="119"/> - <source>Select a binary</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="editexecutablesdialog.cpp" line="119"/> - <source>Executable (%1)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="editexecutablesdialog.cpp" line="143"/> - <source>Java (32-bit) required</source> - <translation type="unfinished"></translation> - </message> - <message> - <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> - </message> - <message> - <location filename="editexecutablesdialog.cpp" line="160"/> - <source>Select a directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="editexecutablesdialog.cpp" line="169"/> - <source>Confirm</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="editexecutablesdialog.cpp" line="169"/> - <source>Really remove "%1" from executables?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="editexecutablesdialog.cpp" line="194"/> - <source>Modify</source> - <translation type="unfinished"></translation> - </message> - <message> - <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> -</context> -<context> - <name>FindDialog</name> - <message> - <location filename="finddialog.ui" line="14"/> - <source>Find</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="finddialog.ui" line="24"/> - <source>Find what:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="finddialog.ui" line="31"/> - <location filename="finddialog.ui" line="34"/> - <source>Search term</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="finddialog.ui" line="47"/> - <location filename="finddialog.ui" line="50"/> - <source>Find next occurence from current file position.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="finddialog.ui" line="53"/> - <source>&Find Next</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="finddialog.ui" line="60"/> - <location filename="finddialog.ui" line="63"/> - <location filename="finddialog.ui" line="66"/> - <source>Close</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>FomodInstallerDialog</name> - <message> - <location filename="fomodinstallerdialog.ui" line="14"/> - <source>FOMOD Installation Dialog</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="fomodinstallerdialog.ui" line="22"/> - <source>Name</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="fomodinstallerdialog.ui" line="46"/> - <source>Author</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="fomodinstallerdialog.ui" line="60"/> - <source>Version</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="fomodinstallerdialog.ui" line="74"/> - <source>Website</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="fomodinstallerdialog.ui" line="81"/> - <source><a href="#">Link</a></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="fomodinstallerdialog.ui" line="160"/> - <source>Manual</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="fomodinstallerdialog.ui" line="170"/> - <source>Back</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="fomodinstallerdialog.ui" line="177"/> - <source>Next</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="fomodinstallerdialog.ui" line="184"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>InstallDialog</name> - <message> - <location filename="installdialog.ui" line="20"/> - <source>Install Mods</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="installdialog.ui" line="32"/> - <source>New Mod</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="installdialog.ui" line="46"/> - <source>Name</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="installdialog.ui" line="53"/> - <source>Pick a name for the mod</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="installdialog.ui" line="56"/> - <source>Pick a name for the mod. This is also used as a directory name, so please don't use characters that are illegal in file names.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="installdialog.ui" line="65"/> - <source>Content</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="installdialog.ui" line="75"/> - <source>Content of the archive. You can change the directory structure by using drag&drop. Hint: Also try right clicking...</source> - <translation type="unfinished"></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 type="unfinished"></translation> - </message> - <message> - <location filename="installdialog.ui" line="121"/> - <source>Placeholder</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="installdialog.ui" line="141"/> - <source>OK</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="installdialog.ui" line="148"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>InstallationManager</name> - <message> - <location filename="installationmanager.cpp" line="75"/> - <source>archive.dll not loaded: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="installationmanager.cpp" line="97"/> - <source>Password required</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="installationmanager.cpp" line="97"/> - <source>Password</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="installationmanager.cpp" line="164"/> - <location filename="installationmanager.cpp" line="252"/> - <location filename="installationmanager.cpp" line="530"/> - <source>Extracting files</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="installationmanager.cpp" line="443"/> - <source>failed to create backup</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="installationmanager.cpp" line="449"/> - <source>Mod Name</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="installationmanager.cpp" line="449"/> - <source>Name</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="installationmanager.cpp" line="502"/> - <source>Invalid name</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="installationmanager.cpp" line="503"/> - <source>The name you entered is invalid, please enter a different one.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="installationmanager.cpp" line="624"/> - <source>File format "%1" not supported</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="installationmanager.cpp" line="750"/> - <source>None of the available installer plugins were able to handle that archive</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="installationmanager.cpp" line="760"/> - <source>no error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="installationmanager.cpp" line="763"/> - <source>7z.dll not found</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="installationmanager.cpp" line="766"/> - <source>7z.dll isn't valid</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="installationmanager.cpp" line="769"/> - <source>archive not found</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="installationmanager.cpp" line="772"/> - <source>failed to open archive</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="installationmanager.cpp" line="775"/> - <source>unsupported archive type</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="installationmanager.cpp" line="778"/> - <source>internal library error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="installationmanager.cpp" line="781"/> - <source>archive invalid</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="installationmanager.cpp" line="785"/> - <source>unknown archive error</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>LockedDialog</name> - <message> - <location filename="lockeddialog.ui" line="14"/> - <source>Locked</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="lockeddialog.ui" line="20"/> - <source>This dialog should disappear automatically if the application/game is done. Click unlock if it didn't.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="lockeddialog.ui" line="23"/> - <source>MO is locked while the executable is running.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="lockeddialog.ui" line="51"/> - <source>Unlock</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>LogBuffer</name> - <message> - <location filename="logbuffer.cpp" line="72"/> - <source>failed to write log to %1: %2</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>MOApplication</name> - <message> - <location filename="moapplication.cpp" line="60"/> - <source>an error occured: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="moapplication.cpp" line="65"/> - <source>an error occured</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>MainWindow</name> - <message> - <location filename="mainwindow.ui" line="51"/> - <location filename="mainwindow.ui" line="392"/> - <source>Categories</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="128"/> - <source>Profile</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="138"/> - <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"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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> - </message> - <message> - <location filename="mainwindow.ui" line="159"/> - <source>Refresh list</source> - <translation type="unfinished"></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"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="278"/> - <source>List of available mods.</source> - <translation type="unfinished"></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> - </message> - <message> - <location filename="mainwindow.ui" line="366"/> - <source>Filter</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="387"/> - <source>No groups</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="397"/> - <source>Nexus IDs</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="405"/> - <location filename="mainwindow.ui" line="722"/> - <location filename="mainwindow.ui" line="1027"/> - <source>Namefilter</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="440"/> - <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"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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> - </message> - <message> - <location filename="mainwindow.ui" line="491"/> - <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"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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> - </message> - <message> - <location filename="mainwindow.ui" line="504"/> - <source>Run</source> - <translation type="unfinished"></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> - </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"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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> - </message> - <message> - <location filename="mainwindow.ui" line="555"/> - <source>Shortcut</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="669"/> - <source>List of available esp/esm files</source> - <translation type="unfinished"></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"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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> - </message> - <message> - <location filename="mainwindow.ui" line="751"/> - <source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="754"/> - <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> - </message> - <message> - <location filename="mainwindow.ui" line="794"/> - <location filename="mainwindow.ui" line="868"/> - <source>File</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="799"/> - <location filename="mainwindow.ui" line="873"/> - <source>Mod</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="807"/> - <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="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="818"/> - <source>Data</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="836"/> - <source>refresh data-directory overview</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="839"/> - <source>Refresh the overview. This may take a moment.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="842"/> - <location filename="mainwindow.cpp" line="3328"/> - <location filename="mainwindow.cpp" line="4059"/> - <source>Refresh</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="858"/> - <source>This is an overview of your data directory as visible to the game (and tools). </source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="883"/> - <location filename="mainwindow.ui" line="886"/> - <source>Filter the above list so that only conflicts are displayed.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="889"/> - <source>Show only conflicts</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="897"/> - <source>Saves</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="921"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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> - </message> - <message> - <location filename="mainwindow.ui" line="935"/> - <source>Downloads</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="967"/> - <source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="1020"/> - <source>Compact</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="1051"/> - <source>Tool Bar</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="1093"/> - <source>Install Mod</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="1096"/> - <source>Install &Mod</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="1099"/> - <source>Install a new mod from an archive</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="1102"/> - <source>Ctrl+M</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="1111"/> - <source>Profiles</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="1114"/> - <source>&Profiles</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="1117"/> - <source>Configure Profiles</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="1120"/> - <source>Ctrl+P</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="1129"/> - <source>Executables</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="1132"/> - <source>&Executables</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="1135"/> - <source>Configure the executables that can be started through Mod Organizer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="1138"/> - <source>Ctrl+E</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="1147"/> - <location filename="mainwindow.ui" line="1153"/> - <source>Tools</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="1150"/> - <source>&Tools</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="1156"/> - <source>Ctrl+I</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="1165"/> - <source>Settings</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="1168"/> - <source>&Settings</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="1171"/> - <source>Configure settings and workarounds</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="1174"/> - <source>Ctrl+S</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="1183"/> - <source>Nexus</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="1186"/> - <source>Search nexus network for more mods</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="1189"/> - <source>Ctrl+N</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="1201"/> - <location filename="mainwindow.cpp" line="4007"/> - <source>Update</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="1204"/> - <source>Mod Organizer is up-to-date</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="1216"/> - <location filename="mainwindow.cpp" line="478"/> - <source>No Problems</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="1219"/> - <source>This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them. - -!Work in progress! -Right now this has very limited functionality</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="1231"/> - <location filename="mainwindow.ui" line="1234"/> - <source>Help</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="1237"/> - <source>Ctrl+H</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="1246"/> - <source>Endorse MO</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="1249"/> - <location filename="mainwindow.cpp" line="4087"/> - <source>Endorse Mod Organizer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="204"/> - <source>Toolbar</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="205"/> - <source>Desktop</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="206"/> - <source>Start Menu</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="475"/> - <source>Problems</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="476"/> - <source>There are potential problems with your setup</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="479"/> - <source>Everything seems to be in order</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="531"/> - <source>Help on UI</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="535"/> - <source>Documentation Wiki</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="539"/> - <source>Report Issue</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="543"/> - <source>Tutorials</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="600"/> - <source>failed to save archives order, do you have write access to "%1"?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="670"/> - <source>failed to save load order: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="687"/> - <source>Name</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="688"/> - <source>Please enter a name for the new profile</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="696"/> - <source>failed to create profile: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="739"/> - <source>Show tutorial?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="740"/> - <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> - </message> - <message> - <location filename="mainwindow.cpp" line="769"/> - <source>Downloads in progress</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="770"/> - <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="816"/> - <source>failed to read savegame: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="941"/> - <source>Plugin "%1" failed: %2</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="943"/> - <source>Plugin "%1" failed</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1007"/> - <source>failed to init plugin %1: %2</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1183"/> - <source>Failed to start "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1185"/> - <source>Waiting</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1185"/> - <source>Please press OK once you're logged into steam.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1197"/> - <source>"%1" not found</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1211"/> - <source>Start Steam?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1212"/> - <source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1426"/> - <source>Also in: <br></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1437"/> - <source>No conflict</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1552"/> - <source><Edit...></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1771"/> - <source>This bsa is enabled in the ini file so it may be required!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1778"/> - <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="1833"/> - <source>Activating Network Proxy</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1962"/> - <location filename="mainwindow.cpp" line="3755"/> - <source>Installation successful</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1973"/> - <location filename="mainwindow.cpp" line="3768"/> - <source>Configure Mod</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1974"/> - <location filename="mainwindow.cpp" line="3769"/> - <source>This mod contains ini tweaks. Do you want to configure them now?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1980"/> - <location filename="mainwindow.cpp" line="3775"/> - <source>mod "%1" not found</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1983"/> - <location filename="mainwindow.cpp" line="3781"/> - <source>Installation cancelled</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1983"/> - <location filename="mainwindow.cpp" line="3781"/> - <source>The mod was not installed completely.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2018"/> - <source>Some plugins could not be loaded</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2021"/> - <location filename="mainwindow.cpp" line="2038"/> - <source>Description missing</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2030"/> - <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="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2060"/> - <source>Choose Mod</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2061"/> - <source>Mod Archive</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2214"/> - <source>Start Tutorial?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2215"/> - <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> - </message> - <message> - <location filename="mainwindow.cpp" line="2360"/> - <location filename="mainwindow.cpp" line="3683"/> - <source>Download started</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2391"/> - <source>failed to update mod list: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2418"/> - <source>failed to spawn notepad.exe: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2459"/> - <source>failed to open %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2537"/> - <source>failed to change origin name: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2589"/> - <source><Checked></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2590"/> - <source><Unchecked></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2591"/> - <source><Update></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2592"/> - <source><No category></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2593"/> - <source><Conflicted></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2626"/> - <source>failed to rename mod: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2639"/> - <source>Overwrite?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2640"/> - <source>This will replace the existing mod "%1". Continue?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2643"/> - <source>failed to remove mod "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2647"/> - <location filename="mainwindow.cpp" line="3953"/> - <location filename="mainwindow.cpp" line="3977"/> - <source>failed to rename "%1" to "%2"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2676"/> - <source>Multiple esps activated, please check that they don't conflict.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2702"/> - <location filename="mainwindow.cpp" line="3243"/> - <location filename="mainwindow.cpp" line="3252"/> - <source>Confirm</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2703"/> - <source>Remove the following mods?<br><ul>%1</ul></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2714"/> - <source>failed to remove mod: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2744"/> - <location filename="mainwindow.cpp" line="2747"/> - <source>Failed</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2744"/> - <source>Installation file no longer exists</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2748"/> - <source>Mods installed with old versions of MO can't be reinstalled in this way.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2763"/> - <location filename="mainwindow.cpp" line="2790"/> - <source>You need to be logged in with Nexus to endorse</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2906"/> - <location filename="mainwindow.cpp" line="4335"/> - <source>Extract BSA</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2907"/> - <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> - </message> - <message> - <location filename="mainwindow.cpp" line="2917"/> - <location filename="mainwindow.cpp" line="4292"/> - <location filename="mainwindow.cpp" line="4343"/> - <source>failed to read %1: %2</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2930"/> - <location filename="mainwindow.cpp" line="4354"/> - <source>This archive contains invalid hashes. Some files may be broken.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2964"/> - <source>Nexus ID for this Mod is unknown</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3005"/> - <location filename="mainwindow.cpp" line="3339"/> - <source>Create Mod...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3006"/> - <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="3015"/> - <source>A mod with this name already exists</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3243"/> - <source>Really enable all visible mods?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3252"/> - <source>Really disable all visible mods?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3261"/> - <source>Choose what to export</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3263"/> - <source>Everything</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3263"/> - <source>All installed mods are included in the list</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3264"/> - <source>Active Mods</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3264"/> - <source>Only active (checked) mods from your current profile are included</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3265"/> - <source>Visible</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3265"/> - <source>All mods visible in the mod list are included</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3308"/> - <source>export failed: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3321"/> - <source>Install Mod...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3323"/> - <source>Enable all visible</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3324"/> - <source>Disable all visible</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3326"/> - <source>Check all for update</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3330"/> - <source>Export to csv...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3338"/> - <source>Sync to Mods...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3342"/> - <source>Restore Backup</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3343"/> - <source>Remove Backup...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3345"/> - <source>Set Category</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3349"/> - <source>Primary Category</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3353"/> - <source>Rename Mod...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3354"/> - <source>Remove Mod...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3355"/> - <source>Reinstall Mod</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3358"/> - <source>Un-Endorse</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3361"/> - <location filename="mainwindow.cpp" line="3365"/> - <source>Endorse</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3362"/> - <source>Won't endorse</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3368"/> - <source>Endorsement state unknown</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3375"/> - <source>Ignore missing data</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3378"/> - <source>Visit on Nexus</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3379"/> - <source>Open in explorer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3382"/> - <source>Information...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3388"/> - <location filename="mainwindow.cpp" line="4514"/> - <source>Exception: </source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3390"/> - <location filename="mainwindow.cpp" line="4516"/> - <source>Unknown exception</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3410"/> - <source><All></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3412"/> - <source><Multiple></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3524"/> - <source>Fix Mods...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3548"/> - <location filename="mainwindow.cpp" line="3579"/> - <source>failed to remove %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3563"/> - <location filename="mainwindow.cpp" line="3594"/> - <source>failed to create %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3615"/> - <source>Can't change download directory while downloads are in progress!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3686"/> - <source>Download failed</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3830"/> - <source>failed to write to file %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3836"/> - <source>%1 written</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3875"/> - <source>Select binary</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3875"/> - <source>Binary</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3901"/> - <source>Enter Name</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3902"/> - <source>Please enter a name for the executable</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3913"/> - <source>Not an executable</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3913"/> - <source>This is not a recognized executable.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3938"/> - <location filename="mainwindow.cpp" line="3963"/> - <source>Replace file?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3938"/> - <source>There already is a hidden version of this file. Replace it?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3941"/> - <location filename="mainwindow.cpp" line="3966"/> - <source>File operation failed</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3941"/> - <location filename="mainwindow.cpp" line="3966"/> - <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3963"/> - <source>There already is a visible version of this file. Replace it?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4009"/> - <source>Update available</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4046"/> - <source>Open/Execute</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4047"/> - <source>Add as Executable</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4051"/> - <source>Un-Hide</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4053"/> - <source>Hide</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4058"/> - <source>Write To File...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4088"/> - <source>Do you want to endorse Mod Organizer on %1 now?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4223"/> - <source>Request to Nexus failed: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4230"/> - <location filename="mainwindow.cpp" line="4247"/> - <source>login successful</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4256"/> - <source>login failed: %1. Trying to download anyway</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4262"/> - <source>login failed: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4271"/> - <source>login failed: %1. You need to log-in with Nexus to update MO.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4304"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4304"/> - <source>failed to extract %1 (errorcode %2)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4399"/> - <source>Extract...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4449"/> - <source>Edit Categories...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4485"/> - <source>Enable all</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4486"/> - <source>Disable all</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4505"/> - <source>Unlock load order</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="4508"/> - <source>Lock load order</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>MessageDialog</name> - <message> - <location filename="messagedialog.ui" line="150"/> - <location filename="messagedialog.ui" line="180"/> - <source>Placeholder</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>ModInfo</name> - <message> - <location filename="modinfo.cpp" line="96"/> - <location filename="modinfo.cpp" line="125"/> - <source>invalid index %1</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>ModInfoBackup</name> - <message> - <location filename="modinfo.cpp" line="784"/> - <source>This is the backup of a mod</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>ModInfoDialog</name> - <message> - <location filename="modinfodialog.ui" line="14"/> - <source>Mod Info</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="27"/> - <source>Textfiles</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="39"/> - <source>A list of text-files in the mod directory.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="42"/> - <source>A list of text-files in the mod directory like readmes. </source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="64"/> - <location filename="modinfodialog.ui" line="149"/> - <source>Save</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="74"/> - <source>INI-Files</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="94"/> - <source>This is a list of .ini files in the mod.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="97"/> - <source>This is a list of .ini files in the mod. These are usually used to configure the behaviour of mods if there are configurable parameters.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="143"/> - <source>Save changes to the file.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="146"/> - <source>Save changes to the file. This overwrites the original. There is no automatic backup!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="159"/> - <source>Images</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="214"/> - <source>Images located in the mod.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="217"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="254"/> - <location filename="modinfodialog.ui" line="277"/> - <source>Optional ESPs</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="260"/> - <source>List of esps and esms that can not be loaded by the game.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="263"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="292"/> - <source>Make the selected mod in the lower list unavailable.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="295"/> - <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 type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="321"/> - <source>Move a file to the data directory.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="324"/> - <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> - </message> - <message> - <location filename="modinfodialog.ui" line="359"/> - <source>ESPs in the data directory and thus visible to the game.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="362"/> - <source>These are the mod files that are in the (virtual) data directory of your game and will thus be selecteable in the esp list in the main window.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="369"/> - <source>Available ESPs</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="377"/> - <source>Conflicts</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="385"/> - <source>The following conflicted files are provided by this mod</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="432"/> - <location filename="modinfodialog.ui" line="479"/> - <source>File</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="437"/> - <source>Overwritten Mods</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="447"/> - <source>The following conflicted files are provided by other mods</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="484"/> - <source>Providing Mod</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="494"/> - <source>Non-Conflicted files</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="514"/> - <source>Categories</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="537"/> - <source>Primary Category</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="554"/> - <source>Nexus Info</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="562"/> - <source>Mod ID</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="569"/> - <source>Mod ID for this mod on Nexus.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="572"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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> - </message> - <message> - <location filename="modinfodialog.ui" line="596"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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> - </message> - <message> - <location filename="modinfodialog.ui" line="603"/> - <source>Version</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="633"/> - <source>Refresh</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="636"/> - <source>Refresh all information from Nexus.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="650"/> - <source>Description</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="665"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: 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="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="701"/> - <source>Endorse</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="715"/> - <source>Notes</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="725"/> - <source>Filetree</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="734"/> - <source>A directory view of this mod</source> - <translation type="unfinished"></translation> - </message> - <message> - <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> - </message> - <message> - <location filename="modinfodialog.ui" line="764"/> - <source>Previous</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="771"/> - <source>Next</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="791"/> - <source>Close</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="108"/> - <source>&Delete</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="109"/> - <source>&Rename</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="110"/> - <source>&Hide</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="111"/> - <source>&Unhide</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="112"/> - <source>&Open</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="113"/> - <source>&New Folder</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="352"/> - <location filename="modinfodialog.cpp" line="367"/> - <source>Save changes?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="352"/> - <location filename="modinfodialog.cpp" line="367"/> - <source>Save changes to "%1"?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="563"/> - <source>File Exists</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="563"/> - <source>A file with that name exists, please enter a new one</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="580"/> - <source>failed to move file</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="605"/> - <source>failed to create directory "optional"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="643"/> - <location filename="modinfodialog.cpp" line="1155"/> - <source>Info requested, please wait</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="697"/> - <source>Main</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="698"/> - <source>Update</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="699"/> - <source>Optional</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="700"/> - <source>Old</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="701"/> - <source>Misc</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="702"/> - <source>Unknown</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="713"/> - <source>Current Version: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="717"/> - <source>No update available</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="758"/> - <source>(description incomplete, please visit nexus)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="779"/> - <source><a href="%1">Visit on Nexus</a></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="858"/> - <source>Failed to delete %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="869"/> - <location filename="modinfodialog.cpp" line="874"/> - <source>Confirm</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="869"/> - <source>Are sure you want to delete "%1"?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="874"/> - <source>Are sure you want to delete the selected files?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="948"/> - <location filename="modinfodialog.cpp" line="954"/> - <source>New Folder</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="960"/> - <source>Failed to create "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="1064"/> - <location filename="modinfodialog.cpp" line="1088"/> - <source>Replace file?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="1064"/> - <source>There already is a hidden version of this file. Replace it?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="1067"/> - <location filename="modinfodialog.cpp" line="1091"/> - <source>File operation failed</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="1067"/> - <location filename="modinfodialog.cpp" line="1091"/> - <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="1078"/> - <location filename="modinfodialog.cpp" line="1101"/> - <source>failed to rename %1 to %2</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="1088"/> - <source>There already is a visible version of this file. Replace it?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="1135"/> - <source>Un-Hide</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="1137"/> - <source>Hide</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>ModInfoOverwrite</name> - <message> - <location filename="modinfo.cpp" line="821"/> - <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfo.h" line="812"/> - <source>Overwrite</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>ModInfoRegular</name> - <message> - <location filename="modinfo.cpp" line="392"/> - <source>failed to write %1/meta.ini: %2</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfo.cpp" line="625"/> - <source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfo.cpp" line="629"/> - <source>Categories: <br></source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>ModList</name> - <message> - <location filename="modlist.cpp" line="94"/> - <source>Overwrite</source> - <translation type="unfinished"></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> - </message> - <message> - <location filename="modlist.cpp" line="118"/> - <source>Backup</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="119"/> - <source>No valid game data</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="120"/> - <source>Not endorsed yet</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="122"/> - <source>Overwrites files</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="123"/> - <source>Overwritten files</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="124"/> - <source>Overwrites & Overwritten</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="125"/> - <source>Redundant</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="184"/> - <source>invalid</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="294"/> - <source>installed version: %1, newest version: %2</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="298"/> - <source>Categories: <br></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="327"/> - <source>Invalid name</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="603"/> - <source>drag&drop failed: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="662"/> - <source>Confirm</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="662"/> - <source>Are you sure you want to remove "%1"?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="717"/> - <source>Flags</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="718"/> - <source>Mod Name</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="719"/> - <source>Version</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="720"/> - <source>Priority</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="721"/> - <source>Category</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="722"/> - <source>Nexus ID</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="723"/> - <source>Installation</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="724"/> - <location filename="modlist.cpp" line="740"/> - <source>unknown</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="732"/> - <source>Name of your mods</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="733"/> - <source>Version of the mod (if available)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="734"/> - <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> - </message> - <message> - <location filename="modlist.cpp" line="736"/> - <source>Category of the mod.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="737"/> - <source>Id of the mod as used on Nexus.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="738"/> - <source>Emblemes to highlight things that might require attention.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="739"/> - <source>Time this mod was installed</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>MotDDialog</name> - <message> - <location filename="motddialog.ui" line="14"/> - <source>Message of the Day</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="motddialog.ui" line="42"/> - <source>OK</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>MyFileSystemModel</name> - <message> - <location filename="overwriteinfodialog.cpp" line="48"/> - <source>Overwrites</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="overwriteinfodialog.cpp" line="60"/> - <source>not implemented</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>NXMAccessManager</name> - <message> - <location filename="nxmaccessmanager.cpp" line="130"/> - <source>timeout</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="nxmaccessmanager.cpp" line="168"/> - <source>Please check your password</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>NexusInterface</name> - <message> - <location filename="nexusinterface.cpp" line="201"/> - <source>Failed to guess mod id for "%1", please pick the correct one</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="nexusinterface.cpp" line="421"/> - <source>empty response</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="nexusinterface.cpp" line="450"/> - <source>invalid response</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>OverwriteInfoDialog</name> - <message> - <location filename="overwriteinfodialog.ui" line="14"/> - <source>Overwrite</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="overwriteinfodialog.ui" line="39"/> - <source>You can use drag&drop to move files and directories to regular mods.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="overwriteinfodialog.cpp" line="90"/> - <source>&Delete</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="overwriteinfodialog.cpp" line="91"/> - <source>&Rename</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="overwriteinfodialog.cpp" line="92"/> - <source>&Open</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="overwriteinfodialog.cpp" line="93"/> - <source>&New Folder</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="overwriteinfodialog.cpp" line="137"/> - <source>Failed to delete "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="overwriteinfodialog.cpp" line="148"/> - <location filename="overwriteinfodialog.cpp" line="153"/> - <source>Confirm</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="overwriteinfodialog.cpp" line="148"/> - <source>Are sure you want to delete "%1"?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="overwriteinfodialog.cpp" line="153"/> - <source>Are sure you want to delete the selected files?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="overwriteinfodialog.cpp" line="203"/> - <location filename="overwriteinfodialog.cpp" line="209"/> - <source>New Folder</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="overwriteinfodialog.cpp" line="215"/> - <source>Failed to create "%1"</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>PluginList</name> - <message> - <location filename="pluginlist.cpp" line="96"/> - <source>Name</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="pluginlist.cpp" line="97"/> - <source>Priority</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="pluginlist.cpp" line="98"/> - <source>Mod Index</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="pluginlist.cpp" line="99"/> - <location filename="pluginlist.cpp" line="111"/> - <source>unknown</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="pluginlist.cpp" line="107"/> - <source>Name of your mods</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="pluginlist.cpp" line="108"/> - <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> - </message> - <message> - <location filename="pluginlist.cpp" line="110"/> - <source>The modindex determins the formids of objects originating from this mods.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="pluginlist.cpp" line="208"/> - <source>esp not found: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="pluginlist.cpp" line="215"/> - <location filename="pluginlist.cpp" line="227"/> - <source>Confirm</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="pluginlist.cpp" line="215"/> - <source>Really enable all plugins?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="pluginlist.cpp" line="227"/> - <source>Really disable all plugins?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="pluginlist.cpp" line="353"/> - <source>The file containing locked plugin indices is broken</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="pluginlist.cpp" line="366"/> - <location filename="pluginlist.cpp" line="405"/> - <source>failed to open output file: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="pluginlist.cpp" line="393"/> - <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="631"/> - <source>This plugin can't be disabled (enforced by the game)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="pluginlist.cpp" line="633"/> - <source>Origin: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="pluginlist.cpp" line="737"/> - <source>failed to restore load order for %1</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>ProblemsDialog</name> - <message> - <location filename="problemsdialog.ui" line="14"/> - <source>Problems</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="problemsdialog.ui" line="49"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" 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></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="problemsdialog.cpp" line="29"/> - <source>fix</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="problemsdialog.cpp" line="30"/> - <source>Fix</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="problemsdialog.cpp" line="34"/> - <source>No guided fix</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>Profile</name> - <message> - <location filename="profile.cpp" line="56"/> - <source>invalid profile name %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profile.cpp" line="60"/> - <source>failed to create %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profile.cpp" line="152"/> - <source>failed to open "%1" for writing</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profile.cpp" line="189"/> - <source>failed to update tweaked ini file, wrong settings may be used: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profile.cpp" line="219"/> - <source>failed to create tweaked ini: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profile.cpp" line="271"/> - <location filename="profile.cpp" line="300"/> - <location filename="profile.cpp" line="384"/> - <location filename="profile.cpp" line="402"/> - <location filename="profile.cpp" line="412"/> - <source>invalid index %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profile.cpp" line="365"/> - <source>Overwrite directory couldn't be parsed</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profile.cpp" line="374"/> - <source>invalid priority %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profile.cpp" line="561"/> - <source>failed to parse ini file (%1)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profile.cpp" line="589"/> - <source>failed to parse ini file (%1): %2</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profile.cpp" line="613"/> - <location filename="profile.cpp" line="650"/> - <source>failed to modify "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profile.cpp" line="678"/> - <source>Delete savegames?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profile.cpp" line="679"/> - <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> -</context> -<context> - <name>ProfileInputDialog</name> - <message> - <location filename="profileinputdialog.ui" line="14"/> - <source>Dialog</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profileinputdialog.ui" line="20"/> - <source>Please enter a name for the new profile</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profileinputdialog.ui" line="30"/> - <source>If checked, the new profile will use the default game settings.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profileinputdialog.ui" line="33"/> - <source>If checked, the new profile will use the default game settings instead of the "global" settings. Global settings are the settings you configure when running the game launcher directly, without MO.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profileinputdialog.ui" line="36"/> - <source>Default Game Settings</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>ProfilesDialog</name> - <message> - <location filename="profilesdialog.ui" line="14"/> - <source>Profiles</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profilesdialog.ui" line="22"/> - <source>List of Profiles</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profilesdialog.ui" line="25"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; 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> - <location filename="profilesdialog.ui" line="38"/> - <location filename="profilesdialog.ui" line="41"/> - <source>If checked, savegames are local to this profile and will not appear when starting with a different profile.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profilesdialog.ui" line="44"/> - <source>Local Savegames</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profilesdialog.ui" line="51"/> - <source>This ensures data files from mods are actually used. You want to enable this unless you use a different tool for Archive Invalidation.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profilesdialog.ui" line="54"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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> - </message> - <message> - <location filename="profilesdialog.ui" line="64"/> - <source>Automatic Archive Invalidation</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profilesdialog.ui" line="75"/> - <location filename="profilesdialog.ui" line="78"/> - <source>Create a new profile from scratch</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profilesdialog.ui" line="81"/> - <source>Create</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profilesdialog.ui" line="91"/> - <source>Clone the selected profile</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profilesdialog.ui" line="94"/> - <source>This creates a new profile with the same settings and active mods as the selected one.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profilesdialog.ui" line="97"/> - <source>Copy</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profilesdialog.ui" line="107"/> - <location filename="profilesdialog.ui" line="110"/> - <source>Delete the selected Profile. This can not be un-done!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profilesdialog.ui" line="113"/> - <source>Remove</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profilesdialog.ui" line="123"/> - <source>Rename</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profilesdialog.ui" line="133"/> - <location filename="profilesdialog.ui" line="136"/> - <source>Transfer save games to the selected profile.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profilesdialog.ui" line="139"/> - <source>Transfer Saves</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profilesdialog.ui" line="162"/> - <source>Close</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profilesdialog.cpp" line="61"/> - <source>Archive invalidation isn't required for this game.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profilesdialog.cpp" line="99"/> - <location filename="profilesdialog.cpp" line="144"/> - <source>failed to create profile: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profilesdialog.cpp" line="152"/> - <source>Name</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profilesdialog.cpp" line="152"/> - <source>Please enter a name for the new profile</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profilesdialog.cpp" line="160"/> - <source>failed to copy profile: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profilesdialog.cpp" line="167"/> - <source>Confirm</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profilesdialog.cpp" line="167"/> - <source>Are you sure you want to remove this profile?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profilesdialog.cpp" line="196"/> - <source>Rename Profile</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profilesdialog.cpp" line="196"/> - <source>New Name</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profilesdialog.cpp" line="233"/> - <source>failed to change archive invalidation state: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profilesdialog.cpp" line="270"/> - <source>failed to determine if invalidation is active: %1</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>QObject</name> - <message> - <location filename="categories.cpp" line="133"/> - <source>Failed to save custom categories</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="categories.cpp" line="210"/> - <location filename="categories.cpp" line="245"/> - <location filename="categories.cpp" line="255"/> - <location filename="categories.cpp" line="265"/> - <source>invalid index %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="categories.cpp" line="276"/> - <source>invalid category id %1</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="helper.cpp" line="53"/> - <source>helper failed</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="helper.cpp" line="69"/> - <location filename="helper.cpp" line="90"/> - <source>failed to determine account name</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="installationmanager.cpp" line="63"/> - <location filename="selfupdater.cpp" line="52"/> - <source>invalid 7-zip32.dll: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="loadmechanism.cpp" line="50"/> - <source>failed to open %1: %2</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="loadmechanism.cpp" line="104"/> - <location filename="loadmechanism.cpp" line="113"/> - <source>%1 not found</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="loadmechanism.cpp" line="138"/> - <source>Failed to delete %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="loadmechanism.cpp" line="144"/> - <source>Failed to deactivate script extender loading</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="loadmechanism.cpp" line="165"/> - <source>Failed to remove %1: %2</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="loadmechanism.cpp" line="167"/> - <location filename="loadmechanism.cpp" line="260"/> - <source>Failed to rename %1 to %2</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="loadmechanism.cpp" line="175"/> - <source>Failed to deactivate proxy-dll loading</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="loadmechanism.cpp" line="209"/> - <location filename="loadmechanism.cpp" line="243"/> - <location filename="loadmechanism.cpp" line="263"/> - <source>Failed to copy %1 to %2</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="loadmechanism.cpp" line="214"/> - <source>Failed to set up script extender loading</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="loadmechanism.cpp" line="240"/> - <source>Failed to delete old proxy-dll %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="loadmechanism.cpp" line="256"/> - <source>Failed to overwrite %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="loadmechanism.cpp" line="268"/> - <source>Failed to set up proxy-dll loading</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="main.cpp" line="134"/> - <source>Permissions required</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="main.cpp" line="135"/> - <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="234"/> - <location filename="main.cpp" line="272"/> - <source>Woops</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="main.cpp" line="235"/> - <source>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file (%1) to sherb@gmx.net, the bug is a lot more likely to be fixed. Please include a short description of what you were doing when the crash happened</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="main.cpp" line="273"/> - <source>ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="main.cpp" line="335"/> - <location filename="settings.cpp" line="462"/> - <source>Mod Organizer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="main.cpp" line="335"/> - <source>An instance of Mod Organizer is already running</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="main.cpp" line="357"/> - <source>No game identified in "%1". The directory is required to contain the game binary and its launcher.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="main.cpp" line="360"/> - <location filename="main.cpp" line="389"/> - <source>Please select the game to manage</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="752"/> - <source>Please use "Help" from the toolbar to get usage instructions to all elements</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1470"/> - <location filename="mainwindow.cpp" line="3723"/> - <source><Manage...></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1488"/> - <source>failed to parse profile %1: %2</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="pluginlist.cpp" line="310"/> - <location filename="profile.cpp" line="228"/> - <source>failed to find "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="pluginlist.cpp" line="467"/> - <source>failed to access %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="pluginlist.cpp" line="481"/> - <source>failed to set file time %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profile.cpp" line="67"/> - <source>failed to create %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profile.cpp" line="93"/> - <source>"%1" is missing</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profilesdialog.cpp" line="80"/> - <source>Before you can use ModOrganizer, you need to create at least one profile. ATTENTION: Run the game at least once before creating a profile!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="report.cpp" line="33"/> - <location filename="report.cpp" line="36"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="savegamegamebryo.cpp" line="139"/> - <location filename="savegamegamebryo.cpp" line="198"/> - <location filename="savegamegamebryo.cpp" line="240"/> - <source>wrong file format</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="savegamegamebryo.cpp" line="326"/> - <source>failed to open %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settings.cpp" line="469"/> - <source>Script Extender</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settings.cpp" line="476"/> - <source>Proxy DLL</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="spawn.cpp" line="106"/> - <source>failed to spawn "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="spawn.cpp" line="113"/> - <source>Elevation required</source> - <translation type="unfinished"></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" -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="128"/> - <source>failed to spawn "%1": %2</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="spawn.cpp" line="137"/> - <source>"%1" doesn't exist</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="spawn.cpp" line="144"/> - <source>failed to inject dll into "%1": %2</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="spawn.cpp" line="152"/> - <source>failed to run "%1"</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>QueryOverwriteDialog</name> - <message> - <location filename="queryoverwritedialog.ui" line="14"/> - <source>Mod Exists</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="queryoverwritedialog.ui" line="45"/> - <source>This mod seems to be installed already. Do you want to add files from this archive (overwriting existing ones) or do you want to completely replace the existing files (old files are deleted)? Alternatively you can install this mod under a different name.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="queryoverwritedialog.ui" line="63"/> - <source>Keep Backup</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="queryoverwritedialog.ui" line="70"/> - <source>Merge</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="queryoverwritedialog.ui" line="77"/> - <source>Replace</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="queryoverwritedialog.ui" line="84"/> - <source>Rename</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="queryoverwritedialog.ui" line="91"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>QuestionBoxMemory</name> - <message> - <location filename="questionboxmemory.ui" line="86"/> - <source>Remember selection</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>SaveGameInfoWidget</name> - <message> - <location filename="savegameinfowidget.ui" line="39"/> - <source>Save #</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="savegameinfowidget.ui" line="51"/> - <source>Character</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="savegameinfowidget.ui" line="63"/> - <source>Level</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="savegameinfowidget.ui" line="75"/> - <source>Location</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="savegameinfowidget.ui" line="87"/> - <source>Date</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>SaveGameInfoWidgetGamebryo</name> - <message> - <location filename="savegameinfowidgetgamebryo.cpp" line="41"/> - <source>Missing ESPs</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>SaveTextAsDialog</name> - <message> - <location filename="savetextasdialog.ui" line="14"/> - <source>Dialog</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="savetextasdialog.ui" line="32"/> - <source>Copy To Clipboard</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="savetextasdialog.ui" line="39"/> - <source>Save As...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="savetextasdialog.ui" line="59"/> - <source>Close</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="savetextasdialog.cpp" line="36"/> - <source>Save CSV</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="savetextasdialog.cpp" line="36"/> - <source>Text Files</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="savetextasdialog.cpp" line="40"/> - <source>failed to open "%1" for writing</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>SelectionDialog</name> - <message> - <location filename="selectiondialog.ui" line="14"/> - <source>Select</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="selectiondialog.ui" line="23"/> - <source>Placeholder</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="selectiondialog.ui" line="77"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>SelfUpdater</name> - <message> - <location filename="selfupdater.cpp" line="66"/> - <source>archive.dll not loaded: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="selfupdater.cpp" line="116"/> - <location filename="selfupdater.cpp" line="140"/> - <location filename="selfupdater.cpp" line="269"/> - <location filename="selfupdater.cpp" line="417"/> - <source>Update</source> - <translation type="unfinished"></translation> - </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> - </message> - <message> - <location filename="selfupdater.cpp" line="141"/> - <source>Download in progress</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="selfupdater.cpp" line="196"/> - <source>Download failed: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="selfupdater.cpp" line="207"/> - <source>Failed to install update: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="selfupdater.cpp" line="228"/> - <source>failed to open archive "%1": %2</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="selfupdater.cpp" line="251"/> - <source>failed to move outdated files: %1. Please update manually.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="selfupdater.cpp" line="269"/> - <source>Update installed, Mod Organizer will now be restarted.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="selfupdater.cpp" line="297"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="selfupdater.cpp" line="353"/> - <source>Failed to parse response. Please report this as a bug and include the file mo_interface.log.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="selfupdater.cpp" line="418"/> - <source>No incremental update available for this version, the complete package needs to be downloaded (%1 kB)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="selfupdater.cpp" line="427"/> - <source>no file for update found. Please update manually.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="selfupdater.cpp" line="441"/> - <source>Failed to retrieve update information: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="selfupdater.cpp" line="461"/> - <source>No download server available. Please try again later.</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>Settings</name> - <message> - <location filename="settings.cpp" line="278"/> - <source>setting for invalid plugin "%1" requested</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settings.cpp" line="282"/> - <source>invalid setting "%1" requested for plugin "%2"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settings.cpp" line="573"/> - <source>Confirm</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settings.cpp" line="573"/> - <source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed?</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>SettingsDialog</name> - <message> - <location filename="settingsdialog.ui" line="14"/> - <source>Settings</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="24"/> - <source>General</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="32"/> - <source>Language</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="39"/> - <source>The display language</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="42"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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="57"/> - <source>Style</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="64"/> - <source>graphical style</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="67"/> - <source>graphical style of the MO user interface</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="78"/> - <source>Log Level</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="85"/> - <source>Decides the amount of data printed to "ModOrganizer.log"</source> - <translation type="unfinished"></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> - </message> - <message> - <location filename="settingsdialog.ui" line="93"/> - <source>Debug</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="98"/> - <source>Info</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="103"/> - <source>Error</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="113"/> - <source>Advanced</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="125"/> - <location filename="settingsdialog.ui" line="128"/> - <source>Directory where downloads are stored.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="148"/> - <source>Mod Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="155"/> - <source>Directory where mods are stored.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="158"/> - <source>Directory where mods are stored. Please note that changing this will break all associations of profiles with mods that don't exist in the new location (with the same name).</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="172"/> - <source>Download Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="179"/> - <source>Cache Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="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="231"/> - <location filename="settingsdialog.ui" line="234"/> - <source>Modify the categories available to arrange your mods.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="237"/> - <source>Configure Mod Categories</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="245"/> - <location filename="settingsdialog.ui" line="261"/> - <source>Nexus</source> - <translation type="unfinished"></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 type="unfinished"></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> - </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> - </message> - <message> - <location filename="settingsdialog.ui" line="273"/> - <source>Automatically Log-In to Nexus</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="285"/> - <source>Username</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="299"/> - <source>Password</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="321"/> - <source>Disable automatic internet features</source> - <translation type="unfinished"></translation> - </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"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="327"/> - <source>Offline Mode</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="334"/> - <source>Use a proxy for network connections.</source> - <translation type="unfinished"></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"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="340"/> - <source>Use HTTP Proxy (Uses System Settings)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="351"/> - <source>Known Servers (Dynamically updated every download)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="372"/> - <source>Preferred Servers (Drag & Drop)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="407"/> - <source>Plugins</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="427"/> - <source>Author:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="441"/> - <source>Version:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="455"/> - <source>Description:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="493"/> - <source>Key</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="498"/> - <source>Value</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="509"/> - <source>Workarounds</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="517"/> - <source>Steam App ID</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="537"/> - <source>The Steam AppID for your game</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="540"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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> - </message> - <message> - <location filename="settingsdialog.ui" line="571"/> - <source>Load Mechanism</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="591"/> - <source>Select loading mechanism. See help for details.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="594"/> - <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> - <location filename="settingsdialog.ui" line="611"/> - <source>NMM Version</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="631"/> - <source>The Version of Nexus Mod Manager to impersonate.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="634"/> - <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. - -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> - </message> - <message> - <location filename="settingsdialog.ui" line="656"/> - <source>Enforces that inactive ESPs and ESMs are never loaded.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="659"/> - <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> - </message> - <message> - <location filename="settingsdialog.ui" line="663"/> - <source>Hide inactive ESPs/ESMs</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="670"/> - <source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="673"/> - <source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on) -Uncheck this if you want to use Mod Organizer with total conversions (like Nehrim) but be aware that the game will crash if required files are not enabled.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="677"/> - <source>Force-enable game files</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="687"/> - <location filename="settingsdialog.ui" line="691"/> - <source>For Skyrim, this can be used instead of Archive Invalidation. It should make AI redundant for all Profiles. -For the other games this is not a sufficient replacement for AI!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="695"/> - <source>Back-date BSAs</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="719"/> - <source>These are workarounds for problems with Mod Organizer. Please make sure you read the help text before changing anything here.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.cpp" line="89"/> - <source>Select download directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.cpp" line="97"/> - <source>Select mod directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.cpp" line="105"/> - <source>Select cache directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.cpp" line="113"/> - <source>Confirm?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.cpp" line="114"/> - <source>This will make all dialogs show up again where you checked the "Remember selection"-box. Continue?</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>SimpleInstallDialog</name> - <message> - <location filename="simpleinstalldialog.ui" line="14"/> - <source>Quick Install</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="simpleinstalldialog.ui" line="22"/> - <source>Name</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="simpleinstalldialog.ui" line="49"/> - <location filename="simpleinstalldialog.ui" line="52"/> - <source>Opens a Dialog that allows custom modifications.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="simpleinstalldialog.ui" line="55"/> - <source>Manual</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="simpleinstalldialog.ui" line="62"/> - <source>OK</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="simpleinstalldialog.ui" line="72"/> - <source>Cancel</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>SingleInstance</name> - <message> - <location filename="singleinstance.cpp" line="50"/> - <source>SHM error: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="singleinstance.cpp" line="82"/> - <location filename="singleinstance.cpp" line="88"/> - <source>failed to connect to running instance: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="singleinstance.cpp" line="100"/> - <source>failed to receive data from secondary instance: %1</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>SyncOverwriteDialog</name> - <message> - <location filename="syncoverwritedialog.ui" line="14"/> - <source>Sync Overwrite</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="syncoverwritedialog.ui" line="27"/> - <source>Name</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="syncoverwritedialog.ui" line="32"/> - <source>Sync To</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="syncoverwritedialog.cpp" line="95"/> - <source><don't sync></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="syncoverwritedialog.cpp" line="147"/> - <source>failed to remove %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="syncoverwritedialog.cpp" line="149"/> - <source>failed to move %1 to %2</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>TransferSavesDialog</name> - <message> - <location filename="transfersavesdialog.ui" line="14"/> - <source>Dialog</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="transfersavesdialog.ui" line="22"/> - <source>Global Characters</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="transfersavesdialog.ui" line="29"/> - <source>This is a list of characters in the global location.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="transfersavesdialog.ui" line="32"/> - <source>This is a list of characters in the global location. - -On Windows Vista/Windows 7: - C:\Users\[UserName]\Documents\My Games\Skyrim\Saves - -On Windows XP: - C:\Documents and Settings[UserName]\My Documents\My Games\Skyrim\Saves -</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="transfersavesdialog.ui" line="46"/> - <source>This is a list of save games for the selected character in the global location. - -On Windows Vista/Windows 7: - C:\Users\[UserName]\Documents\My Games\Skyrim\Saves - -On Windows XP: - C:\Documents and Settings[UserName]\My Documents\My Games\Skyrim\Saves - -</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="transfersavesdialog.ui" line="87"/> - <source>Move -></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="transfersavesdialog.ui" line="97"/> - <source>Copy -></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="transfersavesdialog.ui" line="123"/> - <source><- Move</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="transfersavesdialog.ui" line="133"/> - <source><- Copy</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="transfersavesdialog.ui" line="156"/> - <source>Done</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="transfersavesdialog.ui" line="167"/> - <source>Profile Characters</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="transfersavesdialog.cpp" line="140"/> - <source>Overwrite</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="transfersavesdialog.cpp" line="141"/> - <source>Overwrite the file "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="transfersavesdialog.cpp" line="164"/> - <location filename="transfersavesdialog.cpp" line="202"/> - <location filename="transfersavesdialog.cpp" line="237"/> - <location filename="transfersavesdialog.cpp" line="276"/> - <source>Confirm</source> - <translation type="unfinished"></translation> - </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> - </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> - </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> - </message> -</context> -</TS> diff --git a/src/organizer.pro b/src/organizer.pro index 907979ee..f4be6f80 100644 --- a/src/organizer.pro +++ b/src/organizer.pro @@ -213,7 +213,7 @@ TRANSLATIONS = organizer_de.ts \ organizer_zh_CN.ts \
organizer_cs.ts \
organizer_tr.ts \
-# organizer.en.ts \
+ organizer_en.ts \
organizer_ru.ts
!isEmpty(TRANSLATIONS) {
diff --git a/src/organizer_cs.qm b/src/organizer_cs.qm Binary files differindex 8bdf0b55..d859caca 100644 --- a/src/organizer_cs.qm +++ b/src/organizer_cs.qm diff --git a/src/organizer_cs.ts b/src/organizer_cs.ts index 1b5b3fca..10c5f555 100644 --- a/src/organizer_cs.ts +++ b/src/organizer_cs.ts @@ -254,7 +254,7 @@ p, li { white-space: pre-wrap; } <translation type="unfinished">Hotovo</translation> </message> <message> - <location filename="downloadlist.cpp" line="79"/> + <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> @@ -268,11 +268,6 @@ p, li { white-space: pre-wrap; } <translation>#Placeholder</translation> </message> <message> - <location filename="downloadlistwidget.ui" line="81"/> - <source>0</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="downloadlistwidget.ui" line="88"/> <source>KB</source> <translation type="unfinished"></translation> @@ -335,60 +330,65 @@ p, li { white-space: pre-wrap; } <translation>Hotovo</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="215"/> - <location filename="downloadlistwidgetcompact.cpp" line="224"/> - <location filename="downloadlistwidgetcompact.cpp" line="233"/> - <location filename="downloadlistwidgetcompact.cpp" line="242"/> + <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="216"/> + <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="225"/> + <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="234"/> + <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> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="243"/> + <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> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="269"/> + <location filename="downloadlistwidgetcompact.cpp" line="275"/> <source>Install</source> <translation>Instaluj</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="271"/> + <location filename="downloadlistwidgetcompact.cpp" line="277"/> <source>Query Info</source> <translation>Získej Info</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="273"/> + <location filename="downloadlistwidgetcompact.cpp" line="279"/> <source>Delete</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="274"/> + <location filename="downloadlistwidgetcompact.cpp" line="281"/> + <source>Un-Hide</source> + <translation type="unfinished">Odekrýt</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="283"/> <source>Remove from View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="279"/> + <location filename="downloadlistwidgetcompact.cpp" line="289"/> <source>Remove</source> <translation>Odstranit</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="276"/> + <location filename="downloadlistwidgetcompact.cpp" line="286"/> <source>Cancel</source> <translation>Zrušit</translation> </message> @@ -408,32 +408,32 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="277"/> + <location filename="downloadlistwidgetcompact.cpp" line="287"/> <source>Pause</source> <translation>Pauza</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="280"/> + <location filename="downloadlistwidgetcompact.cpp" line="290"/> <source>Resume</source> <translation>Pokračuj</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="284"/> + <location filename="downloadlistwidgetcompact.cpp" line="294"/> <source>Delete Installed...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="285"/> + <location filename="downloadlistwidgetcompact.cpp" line="295"/> <source>Delete All...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="287"/> + <location filename="downloadlistwidgetcompact.cpp" line="298"/> <source>Remove Installed...</source> <translation>Odstraň už nainstalované...</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="288"/> + <location filename="downloadlistwidgetcompact.cpp" line="299"/> <source>Remove All...</source> <translation>Odstraň všechny...</translation> </message> @@ -441,60 +441,65 @@ p, li { white-space: pre-wrap; } <context> <name>DownloadListWidgetDelegate</name> <message> - <location filename="downloadlistwidget.cpp" line="228"/> - <location filename="downloadlistwidget.cpp" line="237"/> - <location filename="downloadlistwidget.cpp" line="246"/> - <location filename="downloadlistwidget.cpp" line="255"/> + <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="229"/> + <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="238"/> + <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="247"/> + <location filename="downloadlistwidget.cpp" line="252"/> <source>This will remove all finished downloads from this list (but NOT from disk).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="256"/> + <location filename="downloadlistwidget.cpp" line="261"/> <source>This will remove all installed downloads from this list (but NOT from disk).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="281"/> + <location filename="downloadlistwidget.cpp" line="287"/> <source>Install</source> <translation>Instaluj</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="283"/> + <location filename="downloadlistwidget.cpp" line="289"/> <source>Query Info</source> <translation>Získej Info</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="285"/> + <location filename="downloadlistwidget.cpp" line="291"/> <source>Delete</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="286"/> + <location filename="downloadlistwidget.cpp" line="293"/> + <source>Un-Hide</source> + <translation type="unfinished">Odekrýt</translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="295"/> <source>Remove from View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="291"/> + <location filename="downloadlistwidget.cpp" line="301"/> <source>Remove</source> <translation>Odstraniť</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="288"/> + <location filename="downloadlistwidget.cpp" line="298"/> <source>Cancel</source> <translation>Zrušit</translation> </message> @@ -509,32 +514,32 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="289"/> + <location filename="downloadlistwidget.cpp" line="299"/> <source>Pause</source> <translation>Pauza</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="292"/> + <location filename="downloadlistwidget.cpp" line="302"/> <source>Resume</source> <translation>Pokračuj</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="296"/> + <location filename="downloadlistwidget.cpp" line="306"/> <source>Delete Installed...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="297"/> + <location filename="downloadlistwidget.cpp" line="307"/> <source>Delete All...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="299"/> + <location filename="downloadlistwidget.cpp" line="310"/> <source>Remove Installed...</source> <translation>Odstranit už nainstalované...</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="300"/> + <location filename="downloadlistwidget.cpp" line="311"/> <source>Remove All...</source> <translation>Odstranit všechny...</translation> </message> @@ -542,67 +547,80 @@ p, li { white-space: pre-wrap; } <context> <name>DownloadManager</name> <message> - <location filename="downloadmanager.cpp" line="125"/> + <location filename="downloadmanager.cpp" line="132"/> <source>failed to rename "%1" to "%2"</source> <translation>Nezdařilo se přejmenovat "%1" na "%2"</translation> </message> <message> - <location filename="downloadmanager.cpp" line="306"/> + <location filename="downloadmanager.cpp" line="322"/> <source>Download again?</source> <translation>Stáhnout znovu?</translation> </message> <message> - <location filename="downloadmanager.cpp" line="306"/> + <location filename="downloadmanager.cpp" line="322"/> <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="336"/> + <location filename="downloadmanager.cpp" line="354"/> <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="366"/> - <location filename="downloadmanager.cpp" line="585"/> - <location filename="downloadmanager.cpp" line="595"/> - <location filename="downloadmanager.cpp" line="604"/> - <location filename="downloadmanager.cpp" line="614"/> - <location filename="downloadmanager.cpp" line="624"/> + <location filename="downloadmanager.cpp" line="383"/> + <source>Wrong Game</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="383"/> + <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> + </message> + <message> + <location filename="downloadmanager.cpp" line="395"/> + <location filename="downloadmanager.cpp" line="462"/> <location filename="downloadmanager.cpp" line="634"/> - <location filename="downloadmanager.cpp" line="645"/> - <location filename="downloadmanager.cpp" line="654"/> - <location filename="downloadmanager.cpp" line="664"/> - <location filename="downloadmanager.cpp" line="679"/> + <location filename="downloadmanager.cpp" line="644"/> + <location filename="downloadmanager.cpp" line="653"/> + <location filename="downloadmanager.cpp" line="667"/> + <location filename="downloadmanager.cpp" line="677"/> + <location filename="downloadmanager.cpp" line="687"/> + <location filename="downloadmanager.cpp" line="697"/> + <location filename="downloadmanager.cpp" line="708"/> + <location filename="downloadmanager.cpp" line="716"/> + <location filename="downloadmanager.cpp" line="725"/> + <location filename="downloadmanager.cpp" line="735"/> + <location filename="downloadmanager.cpp" line="750"/> <source>invalid index</source> <translation>neplatný index</translation> </message> <message> - <location filename="downloadmanager.cpp" line="384"/> + <location filename="downloadmanager.cpp" line="413"/> <source>failed to delete %1</source> <translation>odstránění zlyhalo %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="390"/> + <location filename="downloadmanager.cpp" line="419"/> <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="450"/> - <location filename="downloadmanager.cpp" line="468"/> - <location filename="downloadmanager.cpp" line="481"/> - <location filename="downloadmanager.cpp" line="494"/> - <location filename="downloadmanager.cpp" line="505"/> - <location filename="downloadmanager.cpp" line="540"/> + <location filename="downloadmanager.cpp" line="495"/> + <location filename="downloadmanager.cpp" line="513"/> + <location filename="downloadmanager.cpp" line="526"/> + <location filename="downloadmanager.cpp" line="543"/> + <location filename="downloadmanager.cpp" line="554"/> + <location filename="downloadmanager.cpp" line="589"/> <source>invalid index %1</source> <translation>neplatný index %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="557"/> + <location filename="downloadmanager.cpp" line="606"/> <source>Please enter the nexus mod id</source> <translation>Prosím zadej Nexus mod ID</translation> </message> <message> - <location filename="downloadmanager.cpp" line="557"/> + <location filename="downloadmanager.cpp" line="606"/> <source>Mod ID:</source> <translation>Mod ID:</translation> </message> @@ -611,38 +629,38 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">neplatný alfabetický index %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="899"/> + <location filename="downloadmanager.cpp" line="972"/> <source>Information updated</source> <translation>Info aktualizované</translation> </message> <message> - <location filename="downloadmanager.cpp" line="901"/> - <location filename="downloadmanager.cpp" line="915"/> + <location filename="downloadmanager.cpp" line="974"/> + <location filename="downloadmanager.cpp" line="988"/> <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="903"/> + <location filename="downloadmanager.cpp" line="976"/> <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="1032"/> + <location filename="downloadmanager.cpp" line="1109"/> <source>No download server available. Please try again later.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadmanager.cpp" line="1074"/> + <location filename="downloadmanager.cpp" line="1151"/> <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="1097"/> + <location filename="downloadmanager.cpp" line="1175"/> <source>Download failed: %1 (%2)</source> <translation>Stahování zlyhalo: %1 (%2)</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1174"/> + <location filename="downloadmanager.cpp" line="1254"/> <source>failed to re-open %1</source> <translation>zlyhalo znovu-otevření %1</translation> </message> @@ -1089,12 +1107,12 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">mo_archive.dll nenačteno: "%1"</translation> </message> <message> - <location filename="installationmanager.cpp" line="97"/> + <location filename="installationmanager.cpp" line="98"/> <source>Password required</source> <translation>Heslo požadováno</translation> </message> <message> - <location filename="installationmanager.cpp" line="97"/> + <location filename="installationmanager.cpp" line="98"/> <source>Password</source> <translation>Heslo</translation> </message> @@ -1116,8 +1134,8 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="installationmanager.cpp" line="164"/> - <location filename="installationmanager.cpp" line="252"/> - <location filename="installationmanager.cpp" line="530"/> + <location filename="installationmanager.cpp" line="248"/> + <location filename="installationmanager.cpp" line="525"/> <source>Extracting files</source> <translation>Rozbalují se soubory</translation> </message> @@ -1150,7 +1168,7 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">instalace zlyhala (errorcode %1)</translation> </message> <message> - <location filename="installationmanager.cpp" line="624"/> + <location filename="installationmanager.cpp" line="605"/> <source>File format "%1" not supported</source> <translation>Formát souboru "%1" nepodporován</translation> </message> @@ -1171,32 +1189,32 @@ p, li { white-space: pre-wrap; } <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="75"/> + <location filename="installationmanager.cpp" line="76"/> <source>archive.dll not loaded: "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="installationmanager.cpp" line="443"/> + <location filename="installationmanager.cpp" line="439"/> <source>failed to create backup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="installationmanager.cpp" line="449"/> + <location filename="installationmanager.cpp" line="445"/> <source>Mod Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="installationmanager.cpp" line="449"/> + <location filename="installationmanager.cpp" line="445"/> <source>Name</source> <translation type="unfinished">Jméno</translation> </message> <message> - <location filename="installationmanager.cpp" line="502"/> + <location filename="installationmanager.cpp" line="498"/> <source>Invalid name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="installationmanager.cpp" line="503"/> + <location filename="installationmanager.cpp" line="499"/> <source>The name you entered is invalid, please enter a different one.</source> <translation type="unfinished"></translation> </message> @@ -1215,52 +1233,52 @@ Poznámka: Instalátor nerozpoznává už nainstalované mody!</translation> <translation type="obsolete">Prosím nainstalujte doplněk NCC</translation> </message> <message> - <location filename="installationmanager.cpp" line="750"/> + <location filename="installationmanager.cpp" line="731"/> <source>None of the available installer plugins were able to handle that archive</source> <translation type="unfinished"></translation> </message> <message> - <location filename="installationmanager.cpp" line="760"/> + <location filename="installationmanager.cpp" line="741"/> <source>no error</source> <translation>žádná chyba</translation> </message> <message> - <location filename="installationmanager.cpp" line="763"/> + <location filename="installationmanager.cpp" line="744"/> <source>7z.dll not found</source> <translation>7z.dll nenalezeno</translation> </message> <message> - <location filename="installationmanager.cpp" line="766"/> + <location filename="installationmanager.cpp" line="747"/> <source>7z.dll isn't valid</source> <translation>7z.dll je neplatný</translation> </message> <message> - <location filename="installationmanager.cpp" line="769"/> + <location filename="installationmanager.cpp" line="750"/> <source>archive not found</source> <translation>archív nenalezen</translation> </message> <message> - <location filename="installationmanager.cpp" line="772"/> + <location filename="installationmanager.cpp" line="753"/> <source>failed to open archive</source> <translation>nemožno otevřít archív</translation> </message> <message> - <location filename="installationmanager.cpp" line="775"/> + <location filename="installationmanager.cpp" line="756"/> <source>unsupported archive type</source> <translation>nepodporovaný typ archívu</translation> </message> <message> - <location filename="installationmanager.cpp" line="778"/> + <location filename="installationmanager.cpp" line="759"/> <source>internal library error</source> <translation>chyba internal library </translation> </message> <message> - <location filename="installationmanager.cpp" line="781"/> + <location filename="installationmanager.cpp" line="762"/> <source>archive invalid</source> <translation>archív je neplatný</translation> </message> <message> - <location filename="installationmanager.cpp" line="785"/> + <location filename="installationmanager.cpp" line="766"/> <source>unknown archive error</source> <translation>neznáma chyba archívu</translation> </message> @@ -1299,12 +1317,12 @@ Poznámka: Instalátor nerozpoznává už nainstalované mody!</translation> <context> <name>MOApplication</name> <message> - <location filename="moapplication.cpp" line="60"/> + <location filename="moapplication.cpp" line="68"/> <source>an error occured: %1</source> <translation type="unfinished">vyskytla se chyba: %1</translation> </message> <message> - <location filename="moapplication.cpp" line="65"/> + <location filename="moapplication.cpp" line="73"/> <source>an error occured</source> <translation type="unfinished">vyskytla se chyba</translation> </message> @@ -1380,7 +1398,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="mainwindow.ui" line="405"/> <location filename="mainwindow.ui" line="722"/> - <location filename="mainwindow.ui" line="1027"/> + <location filename="mainwindow.ui" line="1035"/> <source>Namefilter</source> <translation type="unfinished"></translation> </message> @@ -1513,67 +1531,66 @@ By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp BSAs checked here are loaded in such a way that your installation order is obeyed properly.</translation> </message> <message> - <location filename="mainwindow.ui" line="794"/> - <location filename="mainwindow.ui" line="868"/> + <location filename="mainwindow.ui" line="800"/> + <location filename="mainwindow.ui" line="869"/> <source>File</source> <translation type="unfinished">Soubor</translation> </message> <message> - <location filename="mainwindow.ui" line="799"/> - <location filename="mainwindow.ui" line="873"/> - <source>Mod</source> - <translation type="unfinished">Mod</translation> + <location filename="mainwindow.ui" line="808"/> + <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="807"/> - <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="unfinished"></translation> + <location filename="mainwindow.ui" line="874"/> + <source>Mod</source> + <translation type="unfinished">Mod</translation> </message> <message> - <location filename="mainwindow.ui" line="818"/> + <location filename="mainwindow.ui" line="819"/> <source>Data</source> <translation type="unfinished">Data</translation> </message> <message> - <location filename="mainwindow.ui" line="836"/> + <location filename="mainwindow.ui" line="837"/> <source>refresh data-directory overview</source> <translation type="unfinished">znovunačti data</translation> </message> <message> - <location filename="mainwindow.ui" line="839"/> + <location filename="mainwindow.ui" line="840"/> <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="842"/> - <location filename="mainwindow.cpp" line="3328"/> - <location filename="mainwindow.cpp" line="4059"/> + <location filename="mainwindow.ui" line="843"/> + <location filename="mainwindow.cpp" line="3612"/> + <location filename="mainwindow.cpp" line="4360"/> <source>Refresh</source> <translation type="unfinished">Znovunačíst</translation> </message> <message> - <location filename="mainwindow.ui" line="858"/> + <location filename="mainwindow.ui" line="859"/> <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="883"/> - <location filename="mainwindow.ui" line="886"/> + <location filename="mainwindow.ui" line="884"/> + <location filename="mainwindow.ui" line="887"/> <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="889"/> + <location filename="mainwindow.ui" line="890"/> <source>Show only conflicts</source> <translation type="unfinished">Ukaž jenom konflikty</translation> </message> <message> - <location filename="mainwindow.ui" line="897"/> + <location filename="mainwindow.ui" line="898"/> <source>Saves</source> <translation type="unfinished">Uložené pozice</translation> </message> <message> - <location filename="mainwindow.ui" line="921"/> + <location filename="mainwindow.ui" line="922"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1590,155 +1607,160 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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="935"/> + <location filename="mainwindow.ui" line="936"/> <source>Downloads</source> <translation type="unfinished">Stáhnuté</translation> </message> <message> - <location filename="mainwindow.ui" line="967"/> + <location filename="mainwindow.ui" line="968"/> <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="1020"/> + <location filename="mainwindow.ui" line="1021"/> <source>Compact</source> <translation type="unfinished">Kompaktní</translation> </message> <message> - <location filename="mainwindow.ui" line="1051"/> + <location filename="mainwindow.ui" line="1028"/> + <source>Show Hidden</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1059"/> <source>Tool Bar</source> <translation type="unfinished">Panel nástrojú</translation> </message> <message> - <location filename="mainwindow.ui" line="1093"/> + <location filename="mainwindow.ui" line="1101"/> <source>Install Mod</source> <translation type="unfinished">Instaluj mod</translation> </message> <message> - <location filename="mainwindow.ui" line="1096"/> + <location filename="mainwindow.ui" line="1104"/> <source>Install &Mod</source> <translation type="unfinished">Instaluj &Mod</translation> </message> <message> - <location filename="mainwindow.ui" line="1099"/> + <location filename="mainwindow.ui" line="1107"/> <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="1102"/> + <location filename="mainwindow.ui" line="1110"/> <source>Ctrl+M</source> <translation type="unfinished">Ctrl+M</translation> </message> <message> - <location filename="mainwindow.ui" line="1111"/> + <location filename="mainwindow.ui" line="1119"/> <source>Profiles</source> <translation type="unfinished">Profily</translation> </message> <message> - <location filename="mainwindow.ui" line="1114"/> + <location filename="mainwindow.ui" line="1122"/> <source>&Profiles</source> <translation type="unfinished">&Profily</translation> </message> <message> - <location filename="mainwindow.ui" line="1117"/> + <location filename="mainwindow.ui" line="1125"/> <source>Configure Profiles</source> <translation type="unfinished">Nastav profily</translation> </message> <message> - <location filename="mainwindow.ui" line="1120"/> + <location filename="mainwindow.ui" line="1128"/> <source>Ctrl+P</source> <translation type="unfinished">Ctrl+P</translation> </message> <message> - <location filename="mainwindow.ui" line="1129"/> + <location filename="mainwindow.ui" line="1137"/> <source>Executables</source> <translation type="unfinished">Spouštění</translation> </message> <message> - <location filename="mainwindow.ui" line="1132"/> + <location filename="mainwindow.ui" line="1140"/> <source>&Executables</source> <translation type="unfinished">&Spouštění</translation> </message> <message> - <location filename="mainwindow.ui" line="1135"/> + <location filename="mainwindow.ui" line="1143"/> <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="1138"/> + <location filename="mainwindow.ui" line="1146"/> <source>Ctrl+E</source> <translation type="unfinished">Ctrl+E</translation> </message> <message> - <location filename="mainwindow.ui" line="1147"/> - <location filename="mainwindow.ui" line="1153"/> + <location filename="mainwindow.ui" line="1155"/> + <location filename="mainwindow.ui" line="1161"/> <source>Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1150"/> + <location filename="mainwindow.ui" line="1158"/> <source>&Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1156"/> + <location filename="mainwindow.ui" line="1164"/> <source>Ctrl+I</source> <translation type="unfinished">Ctrl+I</translation> </message> <message> - <location filename="mainwindow.ui" line="1165"/> + <location filename="mainwindow.ui" line="1173"/> <source>Settings</source> <translation type="unfinished">Nastavení</translation> </message> <message> - <location filename="mainwindow.ui" line="1168"/> + <location filename="mainwindow.ui" line="1176"/> <source>&Settings</source> <translation type="unfinished">&Nastavení</translation> </message> <message> - <location filename="mainwindow.ui" line="1171"/> + <location filename="mainwindow.ui" line="1179"/> <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="1174"/> + <location filename="mainwindow.ui" line="1182"/> <source>Ctrl+S</source> <translation type="unfinished">Ctrl+S</translation> </message> <message> - <location filename="mainwindow.ui" line="1183"/> + <location filename="mainwindow.ui" line="1191"/> <source>Nexus</source> <translation type="unfinished">Nexus</translation> </message> <message> - <location filename="mainwindow.ui" line="1186"/> + <location filename="mainwindow.ui" line="1194"/> <source>Search nexus network for more mods</source> <translation type="unfinished">Prohledat mody na nexusu</translation> </message> <message> - <location filename="mainwindow.ui" line="1189"/> + <location filename="mainwindow.ui" line="1197"/> <source>Ctrl+N</source> <translation type="unfinished">Ctrl+N</translation> </message> <message> - <location filename="mainwindow.ui" line="1201"/> - <location filename="mainwindow.cpp" line="4007"/> + <location filename="mainwindow.ui" line="1209"/> + <location filename="mainwindow.cpp" line="4308"/> <source>Update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1204"/> + <location filename="mainwindow.ui" line="1212"/> <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="1216"/> - <location filename="mainwindow.cpp" line="478"/> + <location filename="mainwindow.ui" line="1224"/> + <location filename="mainwindow.cpp" line="496"/> <source>No Problems</source> <translation type="unfinished">Žádné problémy</translation> </message> <message> - <location filename="mainwindow.ui" line="1219"/> + <location filename="mainwindow.ui" line="1227"/> <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! @@ -1749,54 +1771,54 @@ Right now this has very limited functionality</source> V současnosti má omezenou funkcionalitu</translation> </message> <message> - <location filename="mainwindow.ui" line="1231"/> - <location filename="mainwindow.ui" line="1234"/> + <location filename="mainwindow.ui" line="1239"/> + <location filename="mainwindow.ui" line="1242"/> <source>Help</source> <translation type="unfinished">Pomoc</translation> </message> <message> - <location filename="mainwindow.ui" line="1237"/> + <location filename="mainwindow.ui" line="1245"/> <source>Ctrl+H</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1246"/> + <location filename="mainwindow.ui" line="1254"/> <source>Endorse MO</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1249"/> - <location filename="mainwindow.cpp" line="4087"/> + <location filename="mainwindow.ui" line="1257"/> + <location filename="mainwindow.cpp" line="4389"/> <source>Endorse Mod Organizer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="204"/> + <location filename="mainwindow.cpp" line="214"/> <source>Toolbar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="205"/> + <location filename="mainwindow.cpp" line="215"/> <source>Desktop</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="206"/> + <location filename="mainwindow.cpp" line="216"/> <source>Start Menu</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="475"/> + <location filename="mainwindow.cpp" line="492"/> <source>Problems</source> <translation type="unfinished">Problémy</translation> </message> <message> - <location filename="mainwindow.cpp" line="476"/> + <location filename="mainwindow.cpp" line="493"/> <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="479"/> + <location filename="mainwindow.cpp" line="497"/> <source>Everything seems to be in order</source> <translation type="unfinished">Všechno se jeví v pořádku</translation> </message> @@ -1813,22 +1835,22 @@ V současnosti má omezenou funkcionalitu</translation> <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="531"/> + <location filename="mainwindow.cpp" line="549"/> <source>Help on UI</source> <translation type="unfinished">Pomoc s programem</translation> </message> <message> - <location filename="mainwindow.cpp" line="535"/> + <location filename="mainwindow.cpp" line="553"/> <source>Documentation Wiki</source> <translation type="unfinished">Dokumentace wiki</translation> </message> <message> - <location filename="mainwindow.cpp" line="539"/> + <location filename="mainwindow.cpp" line="557"/> <source>Report Issue</source> <translation type="unfinished">Nahlásit chybu</translation> </message> <message> - <location filename="mainwindow.cpp" line="543"/> + <location filename="mainwindow.cpp" line="561"/> <source>Tutorials</source> <translation type="unfinished"></translation> </message> @@ -1837,374 +1859,431 @@ V současnosti má omezenou funkcionalitu</translation> <translation type="obsolete">pořadí načtení se nezdařilo uložit</translation> </message> <message> - <location filename="mainwindow.cpp" line="670"/> + <location filename="mainwindow.cpp" line="688"/> <source>failed to save load order: %1</source> <translation type="unfinished">zlyhalo uložení pořadí načtení: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="600"/> + <location filename="mainwindow.cpp" line="618"/> <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="687"/> + <location filename="mainwindow.cpp" line="705"/> <source>Name</source> <translation type="unfinished">Jméno</translation> </message> <message> - <location filename="mainwindow.cpp" line="688"/> + <location filename="mainwindow.cpp" line="706"/> <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="696"/> + <location filename="mainwindow.cpp" line="714"/> <source>failed to create profile: %1</source> <translation type="unfinished">Zlyhalo vytvoření profilu: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="739"/> + <location filename="mainwindow.cpp" line="757"/> <source>Show tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="740"/> + <location filename="mainwindow.cpp" line="758"/> <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> </message> <message> - <location filename="mainwindow.cpp" line="769"/> + <location filename="mainwindow.cpp" line="787"/> <source>Downloads in progress</source> <translation type="unfinished">Probíhá stahování</translation> </message> <message> - <location filename="mainwindow.cpp" line="770"/> + <location filename="mainwindow.cpp" line="788"/> <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="816"/> + <location filename="mainwindow.cpp" line="834"/> <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="941"/> + <location filename="mainwindow.cpp" line="958"/> <source>Plugin "%1" failed: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1183"/> + <location filename="mainwindow.cpp" line="1064"/> + <source>Plugin error</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1065"/> + <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="1249"/> <source>Failed to start "%1"</source> <translation type="unfinished">Zlyhal start "%1"</translation> </message> <message> - <location filename="mainwindow.cpp" line="1185"/> + <location filename="mainwindow.cpp" line="1251"/> <source>Waiting</source> <translation type="unfinished">Čekání</translation> </message> <message> - <location filename="mainwindow.cpp" line="1185"/> + <location filename="mainwindow.cpp" line="1251"/> <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> - <location filename="mainwindow.cpp" line="1197"/> + <location filename="mainwindow.cpp" line="1263"/> <source>"%1" not found</source> <translation type="unfinished">"%1" nenalezeno</translation> </message> <message> - <location filename="mainwindow.cpp" line="1211"/> + <location filename="mainwindow.cpp" line="1277"/> <source>Start Steam?</source> <translation type="unfinished">Spustit Steam?</translation> </message> <message> - <location filename="mainwindow.cpp" line="1212"/> + <location filename="mainwindow.cpp" line="1278"/> <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="1426"/> + <location filename="mainwindow.cpp" line="1492"/> <source>Also in: <br></source> <translation type="unfinished">Také v: <br></translation> </message> <message> - <location filename="mainwindow.cpp" line="1437"/> + <location filename="mainwindow.cpp" line="1503"/> <source>No conflict</source> <translation type="unfinished">Žádné konflikty</translation> </message> <message> - <location filename="mainwindow.cpp" line="1552"/> + <location filename="mainwindow.cpp" line="1620"/> <source><Edit...></source> <translation type="unfinished"><Edit...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1771"/> + <location filename="mainwindow.cpp" line="1704"/> + <source>Failed to refresh list of esps: %s</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1844"/> <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="1778"/> + <location filename="mainwindow.cpp" line="1851"/> <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="1833"/> + <location filename="mainwindow.cpp" line="1906"/> <source>Activating Network Proxy</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1962"/> - <location filename="mainwindow.cpp" line="3755"/> + <location filename="mainwindow.cpp" line="2037"/> + <location filename="mainwindow.cpp" line="4056"/> <source>Installation successful</source> <translation type="unfinished">Instalace úspěšná</translation> </message> <message> - <location filename="mainwindow.cpp" line="1973"/> - <location filename="mainwindow.cpp" line="3768"/> + <location filename="mainwindow.cpp" line="2048"/> + <location filename="mainwindow.cpp" line="4069"/> <source>Configure Mod</source> <translation type="unfinished">Konfigurace Modu</translation> </message> <message> - <location filename="mainwindow.cpp" line="1974"/> - <location filename="mainwindow.cpp" line="3769"/> + <location filename="mainwindow.cpp" line="2049"/> + <location filename="mainwindow.cpp" line="4070"/> <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="1980"/> - <location filename="mainwindow.cpp" line="3775"/> + <location filename="mainwindow.cpp" line="2055"/> + <location filename="mainwindow.cpp" line="4076"/> <source>mod "%1" not found</source> <translation type="unfinished">mod "%1" nenalezen</translation> </message> <message> - <location filename="mainwindow.cpp" line="1983"/> - <location filename="mainwindow.cpp" line="3781"/> + <location filename="mainwindow.cpp" line="2058"/> + <location filename="mainwindow.cpp" line="4082"/> <source>Installation cancelled</source> <translation type="unfinished">Instalace zrušena</translation> </message> <message> - <location filename="mainwindow.cpp" line="1983"/> - <location filename="mainwindow.cpp" line="3781"/> + <location filename="mainwindow.cpp" line="2058"/> + <location filename="mainwindow.cpp" line="4082"/> <source>The mod was not installed completely.</source> <translation type="unfinished">Tento mod se nenainstaloval úplne.</translation> </message> <message> - <location filename="mainwindow.cpp" line="2018"/> + <location filename="mainwindow.cpp" line="2207"/> <source>Some plugins could not be loaded</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2021"/> - <location filename="mainwindow.cpp" line="2038"/> - <source>Description missing</source> + <location filename="mainwindow.cpp" line="2210"/> + <source>Too many esps and esms enabled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2030"/> - <source>The following Plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:<ul></source> + <location filename="mainwindow.cpp" line="2213"/> + <location filename="mainwindow.cpp" line="2234"/> + <source>Description missing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2060"/> + <location filename="mainwindow.cpp" line="2256"/> <source>Choose Mod</source> <translation type="unfinished">Vyber Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2061"/> + <location filename="mainwindow.cpp" line="2257"/> <source>Mod Archive</source> <translation type="unfinished">Archív Modu</translation> </message> <message> - <location filename="mainwindow.cpp" line="2214"/> + <location filename="mainwindow.cpp" line="2410"/> <source>Start Tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2215"/> + <location filename="mainwindow.cpp" line="2411"/> <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> </message> <message> - <location filename="mainwindow.cpp" line="2360"/> - <location filename="mainwindow.cpp" line="3683"/> + <location filename="mainwindow.cpp" line="2566"/> + <location filename="mainwindow.cpp" line="3984"/> <source>Download started</source> <translation type="unfinished">Stahování začalo</translation> </message> <message> - <location filename="mainwindow.cpp" line="2391"/> + <location filename="mainwindow.cpp" line="2597"/> <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="2418"/> + <location filename="mainwindow.cpp" line="2624"/> <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="2459"/> + <location filename="mainwindow.cpp" line="2665"/> <source>failed to open %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2537"/> + <location filename="mainwindow.cpp" line="2743"/> <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="2676"/> + <location filename="mainwindow.cpp" line="2906"/> <source>Multiple esps activated, please check that they don't conflict.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3005"/> - <location filename="mainwindow.cpp" line="3339"/> + <location filename="mainwindow.cpp" line="3251"/> + <location filename="mainwindow.cpp" line="3623"/> <source>Create Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3006"/> + <location filename="mainwindow.cpp" line="3252"/> <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="3015"/> + <location filename="mainwindow.cpp" line="3261"/> <source>A mod with this name already exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3410"/> + <location filename="mainwindow.cpp" line="3444"/> + <source>Continue?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3445"/> + <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="3465"/> + <source>Sorry</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3466"/> + <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="3710"/> <source><All></source> <translation type="unfinished"><Všechny></translation> </message> <message> - <location filename="mainwindow.cpp" line="2589"/> + <location filename="mainwindow.cpp" line="2818"/> <source><Checked></source> <translation type="unfinished"><Aktivované></translation> </message> <message> - <location filename="mainwindow.cpp" line="943"/> + <location filename="mainwindow.cpp" line="960"/> <source>Plugin "%1" failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1007"/> + <location filename="mainwindow.cpp" line="1026"/> <source>failed to init plugin %1: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2590"/> + <location filename="mainwindow.cpp" line="2222"/> + <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="2230"/> + <source>The game doesn't allow more than 256 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="2769"/> + <source>Failed to move "%1" from mod "%2" to "%3": %4</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2819"/> <source><Unchecked></source> <translation type="unfinished"><Neaktivované></translation> </message> <message> - <location filename="mainwindow.cpp" line="2591"/> + <location filename="mainwindow.cpp" line="2820"/> <source><Update></source> <translation type="unfinished"><Aktualizace></translation> </message> <message> - <location filename="mainwindow.cpp" line="2592"/> + <location filename="mainwindow.cpp" line="2821"/> <source><No category></source> <translation type="unfinished"><Bez kategorie></translation> </message> <message> - <location filename="mainwindow.cpp" line="2593"/> + <location filename="mainwindow.cpp" line="2822"/> <source><Conflicted></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2626"/> + <location filename="mainwindow.cpp" line="2823"/> + <source><Not Endorsed></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2856"/> <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="2639"/> + <location filename="mainwindow.cpp" line="2869"/> <source>Overwrite?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2640"/> + <location filename="mainwindow.cpp" line="2870"/> <source>This will replace the existing mod "%1". Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2643"/> + <location filename="mainwindow.cpp" line="2873"/> <source>failed to remove mod "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2647"/> - <location filename="mainwindow.cpp" line="3953"/> - <location filename="mainwindow.cpp" line="3977"/> + <location filename="mainwindow.cpp" line="2877"/> + <location filename="mainwindow.cpp" line="4254"/> + <location filename="mainwindow.cpp" line="4278"/> <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="2702"/> - <location filename="mainwindow.cpp" line="3243"/> - <location filename="mainwindow.cpp" line="3252"/> + <location filename="mainwindow.cpp" line="2932"/> + <location filename="mainwindow.cpp" line="3518"/> + <location filename="mainwindow.cpp" line="3526"/> <source>Confirm</source> <translation type="unfinished">Potvrdit</translation> </message> <message> - <location filename="mainwindow.cpp" line="2703"/> + <location filename="mainwindow.cpp" line="2933"/> <source>Remove the following mods?<br><ul>%1</ul></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2714"/> + <location filename="mainwindow.cpp" line="2944"/> <source>failed to remove mod: %1</source> <translation type="unfinished">Nezdařilo se odstranit mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2744"/> - <location filename="mainwindow.cpp" line="2747"/> + <location filename="mainwindow.cpp" line="2979"/> + <location filename="mainwindow.cpp" line="2982"/> <source>Failed</source> <translation type="unfinished">Zlyhání</translation> </message> <message> - <location filename="mainwindow.cpp" line="2744"/> + <location filename="mainwindow.cpp" line="2979"/> <source>Installation file no longer exists</source> <translation type="unfinished">Instalační soubor již neexistuje</translation> </message> <message> - <location filename="mainwindow.cpp" line="2748"/> + <location filename="mainwindow.cpp" line="2983"/> <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="2763"/> - <location filename="mainwindow.cpp" line="2790"/> + <location filename="mainwindow.cpp" line="2998"/> + <location filename="mainwindow.cpp" line="3025"/> <source>You need to be logged in with Nexus to endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2906"/> - <location filename="mainwindow.cpp" line="4335"/> + <location filename="mainwindow.cpp" line="3154"/> + <location filename="mainwindow.cpp" line="4638"/> <source>Extract BSA</source> <translation type="unfinished">Extrakce BSA</translation> </message> <message> - <location filename="mainwindow.cpp" line="2907"/> + <location filename="mainwindow.cpp" line="3155"/> <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">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="2917"/> - <location filename="mainwindow.cpp" line="4292"/> - <location filename="mainwindow.cpp" line="4343"/> + <location filename="mainwindow.cpp" line="3165"/> + <location filename="mainwindow.cpp" line="4595"/> + <location filename="mainwindow.cpp" line="4646"/> <source>failed to read %1: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2930"/> - <location filename="mainwindow.cpp" line="4354"/> + <location filename="mainwindow.cpp" line="3178"/> + <location filename="mainwindow.cpp" line="4657"/> <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="2964"/> + <location filename="mainwindow.cpp" line="3212"/> <source>Nexus ID for this Mod is unknown</source> <translation type="unfinished">Nexus ID pro tento Mod není známo</translation> </message> @@ -2217,371 +2296,391 @@ Please enter a name: </source> <translation type="obsolete">Zvol Prioritu</translation> </message> <message> - <location filename="mainwindow.cpp" line="3243"/> + <location filename="mainwindow.cpp" line="3518"/> <source>Really enable all visible mods?</source> <translation type="unfinished">Opravdu aktivovat všechny zobrazené mody?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3252"/> + <location filename="mainwindow.cpp" line="3526"/> <source>Really disable all visible mods?</source> <translation type="unfinished">Opravdu deaktivovat všechny zobrazené mody?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3261"/> + <location filename="mainwindow.cpp" line="3534"/> <source>Choose what to export</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3263"/> + <location filename="mainwindow.cpp" line="3536"/> <source>Everything</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3263"/> + <location filename="mainwindow.cpp" line="3536"/> <source>All installed mods are included in the list</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3264"/> + <location filename="mainwindow.cpp" line="3537"/> <source>Active Mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3264"/> + <location filename="mainwindow.cpp" line="3537"/> <source>Only active (checked) mods from your current profile are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3265"/> + <location filename="mainwindow.cpp" line="3538"/> <source>Visible</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3265"/> + <location filename="mainwindow.cpp" line="3538"/> <source>All mods visible in the mod list are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3308"/> + <location filename="mainwindow.cpp" line="3581"/> <source>export failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3321"/> + <location filename="mainwindow.cpp" line="3605"/> <source>Install Mod...</source> <translation type="unfinished">Instaluj Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3323"/> + <location filename="mainwindow.cpp" line="3607"/> <source>Enable all visible</source> <translation type="unfinished">Aktivuj všechny v seznamu</translation> </message> <message> - <location filename="mainwindow.cpp" line="3324"/> + <location filename="mainwindow.cpp" line="3608"/> <source>Disable all visible</source> <translation type="unfinished">Deaktivuj všechny v seznamu</translation> </message> <message> - <location filename="mainwindow.cpp" line="3326"/> + <location filename="mainwindow.cpp" line="3610"/> <source>Check all for update</source> <translation type="unfinished">Skontroluj všechny pro aktualizaci</translation> </message> <message> - <location filename="mainwindow.cpp" line="3330"/> + <location filename="mainwindow.cpp" line="3614"/> <source>Export to csv...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3338"/> + <location filename="mainwindow.cpp" line="3622"/> <source>Sync to Mods...</source> <translation type="unfinished">Synchronizuj s Mody...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3342"/> + <location filename="mainwindow.cpp" line="3626"/> <source>Restore Backup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3343"/> + <location filename="mainwindow.cpp" line="3627"/> <source>Remove Backup...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3345"/> + <location filename="mainwindow.cpp" line="3630"/> <source>Set Category</source> <translation type="unfinished">Označ Kategorii</translation> </message> <message> - <location filename="mainwindow.cpp" line="3349"/> + <location filename="mainwindow.cpp" line="3635"/> <source>Primary Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3353"/> + <location filename="mainwindow.cpp" line="3642"/> + <source>Change versioning scheme</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3646"/> + <source>Un-ignore update</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3648"/> + <source>Ignore update</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3653"/> <source>Rename Mod...</source> <translation type="unfinished">Přejmenuj Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3354"/> + <location filename="mainwindow.cpp" line="3654"/> <source>Remove Mod...</source> <translation type="unfinished">Odstranit Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3355"/> + <location filename="mainwindow.cpp" line="3655"/> <source>Reinstall Mod</source> <translation type="unfinished">Přeinstaluj Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="3358"/> + <location filename="mainwindow.cpp" line="3658"/> <source>Un-Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3361"/> - <location filename="mainwindow.cpp" line="3365"/> + <location filename="mainwindow.cpp" line="3661"/> + <location filename="mainwindow.cpp" line="3665"/> <source>Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3362"/> + <location filename="mainwindow.cpp" line="3662"/> <source>Won't endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3368"/> + <location filename="mainwindow.cpp" line="3668"/> <source>Endorsement state unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3375"/> + <location filename="mainwindow.cpp" line="3675"/> <source>Ignore missing data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3378"/> + <location filename="mainwindow.cpp" line="3678"/> <source>Visit on Nexus</source> <translation type="unfinished">Navštiv na Nexusu</translation> </message> <message> - <location filename="mainwindow.cpp" line="3379"/> + <location filename="mainwindow.cpp" line="3679"/> <source>Open in explorer</source> <translation type="unfinished">Otevři v prohlížeči</translation> </message> <message> - <location filename="mainwindow.cpp" line="3382"/> + <location filename="mainwindow.cpp" line="3682"/> <source>Information...</source> <translation type="unfinished">Informace...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3388"/> - <location filename="mainwindow.cpp" line="4514"/> + <location filename="mainwindow.cpp" line="3688"/> + <location filename="mainwindow.cpp" line="4842"/> <source>Exception: </source> <translation type="unfinished">Výnimky:</translation> </message> <message> - <location filename="mainwindow.cpp" line="3390"/> - <location filename="mainwindow.cpp" line="4516"/> + <location filename="mainwindow.cpp" line="3690"/> + <location filename="mainwindow.cpp" line="4844"/> <source>Unknown exception</source> <translation type="unfinished">Neznámá výnimka</translation> </message> <message> - <location filename="mainwindow.cpp" line="3412"/> + <location filename="mainwindow.cpp" line="3712"/> <source><Multiple></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3524"/> + <location filename="mainwindow.cpp" line="3824"/> <source>Fix Mods...</source> <translation type="unfinished">Oprav Mody...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3548"/> - <location filename="mainwindow.cpp" line="3579"/> + <location filename="mainwindow.cpp" line="3848"/> + <location filename="mainwindow.cpp" line="3879"/> <source>failed to remove %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3563"/> - <location filename="mainwindow.cpp" line="3594"/> + <location filename="mainwindow.cpp" line="3863"/> + <location filename="mainwindow.cpp" line="3894"/> <source>failed to create %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3615"/> + <location filename="mainwindow.cpp" line="3916"/> <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="3686"/> + <location filename="mainwindow.cpp" line="3987"/> <source>Download failed</source> <translation type="unfinished">Stahování zlyhalo</translation> </message> <message> - <location filename="mainwindow.cpp" line="3830"/> + <location filename="mainwindow.cpp" line="4131"/> <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="3836"/> + <location filename="mainwindow.cpp" line="4137"/> <source>%1 written</source> <translation type="unfinished">%1 zapsáno</translation> </message> <message> - <location filename="mainwindow.cpp" line="3875"/> + <location filename="mainwindow.cpp" line="4176"/> <source>Select binary</source> <translation type="unfinished">Vyber binární soubor</translation> </message> <message> - <location filename="mainwindow.cpp" line="3875"/> + <location filename="mainwindow.cpp" line="4176"/> <source>Binary</source> <translation type="unfinished">Soubor</translation> </message> <message> - <location filename="mainwindow.cpp" line="3901"/> + <location filename="mainwindow.cpp" line="4202"/> <source>Enter Name</source> <translation type="unfinished">Zadej jméno</translation> </message> <message> - <location filename="mainwindow.cpp" line="3902"/> + <location filename="mainwindow.cpp" line="4203"/> <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="3913"/> + <location filename="mainwindow.cpp" line="4214"/> <source>Not an executable</source> <translation type="unfinished">Není spustitelný</translation> </message> <message> - <location filename="mainwindow.cpp" line="3913"/> + <location filename="mainwindow.cpp" line="4214"/> <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="3938"/> - <location filename="mainwindow.cpp" line="3963"/> + <location filename="mainwindow.cpp" line="4239"/> + <location filename="mainwindow.cpp" line="4264"/> <source>Replace file?</source> <translation type="unfinished">Nahradit soubor?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3938"/> + <location filename="mainwindow.cpp" line="4239"/> <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="3941"/> - <location filename="mainwindow.cpp" line="3966"/> + <location filename="mainwindow.cpp" line="4242"/> + <location filename="mainwindow.cpp" line="4267"/> <source>File operation failed</source> <translation type="unfinished">Operace se souborem zlyhala</translation> </message> <message> - <location filename="mainwindow.cpp" line="3941"/> - <location filename="mainwindow.cpp" line="3966"/> + <location filename="mainwindow.cpp" line="4242"/> + <location filename="mainwindow.cpp" line="4267"/> <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="3963"/> + <location filename="mainwindow.cpp" line="4264"/> <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="4009"/> + <location filename="mainwindow.cpp" line="4310"/> <source>Update available</source> <translation type="unfinished">Aktualizace k dispozici</translation> </message> <message> - <location filename="mainwindow.cpp" line="4046"/> + <location filename="mainwindow.cpp" line="4347"/> <source>Open/Execute</source> <translation type="unfinished">Otevřít/Spustit</translation> </message> <message> - <location filename="mainwindow.cpp" line="4047"/> + <location filename="mainwindow.cpp" line="4348"/> <source>Add as Executable</source> <translation type="unfinished">Přidat Spouštení</translation> </message> <message> - <location filename="mainwindow.cpp" line="4051"/> + <location filename="mainwindow.cpp" line="4352"/> <source>Un-Hide</source> <translation type="unfinished">Odekrýt</translation> </message> <message> - <location filename="mainwindow.cpp" line="4053"/> + <location filename="mainwindow.cpp" line="4354"/> <source>Hide</source> <translation type="unfinished">Skrýt</translation> </message> <message> - <location filename="mainwindow.cpp" line="4058"/> + <location filename="mainwindow.cpp" line="4359"/> <source>Write To File...</source> <translation type="unfinished">Zápis do souboru...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4088"/> + <location filename="mainwindow.cpp" line="4390"/> <source>Do you want to endorse Mod Organizer on %1 now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4505"/> + <location filename="mainwindow.cpp" line="4803"/> + <source>Remove</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4833"/> <source>Unlock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4508"/> + <location filename="mainwindow.cpp" line="4836"/> <source>Lock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4223"/> + <location filename="mainwindow.cpp" line="4526"/> <source>Request to Nexus failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4230"/> - <location filename="mainwindow.cpp" line="4247"/> + <location filename="mainwindow.cpp" line="4533"/> + <location filename="mainwindow.cpp" line="4550"/> <source>login successful</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4256"/> + <location filename="mainwindow.cpp" line="4559"/> <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="4262"/> + <location filename="mainwindow.cpp" line="4565"/> <source>login failed: %1</source> <translation type="unfinished">přihlášení zlyhalo: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4271"/> + <location filename="mainwindow.cpp" line="4574"/> <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="4304"/> + <location filename="mainwindow.cpp" line="4607"/> <source>Error</source> <translation type="unfinished">Chyba</translation> </message> <message> - <location filename="mainwindow.cpp" line="4304"/> + <location filename="mainwindow.cpp" line="4607"/> <source>failed to extract %1 (errorcode %2)</source> <translation type="unfinished">zlyhala extrakce %1 (errorcode %2)</translation> </message> <message> - <location filename="mainwindow.cpp" line="4399"/> + <location filename="mainwindow.cpp" line="4702"/> <source>Extract...</source> <translation type="unfinished">Extrakce...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4449"/> + <location filename="mainwindow.cpp" line="4758"/> <source>Edit Categories...</source> <translation type="unfinished">Editovat Kategorie...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4485"/> + <location filename="mainwindow.cpp" line="4813"/> <source>Enable all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4486"/> + <location filename="mainwindow.cpp" line="4814"/> <source>Disable all</source> <translation type="unfinished"></translation> </message> @@ -2615,7 +2714,7 @@ Please enter a name: </source> <context> <name>ModInfoBackup</name> <message> - <location filename="modinfo.cpp" line="784"/> + <location filename="modinfo.cpp" line="813"/> <source>This is the backup of a mod</source> <translation type="unfinished"></translation> </message> @@ -2644,7 +2743,7 @@ Please enter a name: </source> </message> <message> <location filename="modinfodialog.ui" line="64"/> - <location filename="modinfodialog.ui" line="149"/> + <location filename="modinfodialog.ui" line="152"/> <source>Save</source> <translation>Uložit</translation> </message> @@ -2664,51 +2763,49 @@ Please enter a name: </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="143"/> + <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="146"/> + <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="159"/> + <location filename="modinfodialog.ui" line="162"/> <source>Images</source> <translation>Obrázky</translation> </message> <message> - <location filename="modinfodialog.ui" line="214"/> + <location filename="modinfodialog.ui" line="217"/> <source>Images located in the mod.</source> <translation>Obrázky obsažené v modu.</translation> </message> <message> - <location filename="modinfodialog.ui" line="217"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" 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><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <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> </message> <message> - <location filename="modinfodialog.ui" line="254"/> - <location filename="modinfodialog.ui" line="277"/> + <location filename="modinfodialog.ui" line="244"/> + <location filename="modinfodialog.ui" line="263"/> <source>Optional ESPs</source> <translation>Volitelné ESP</translation> </message> <message> - <location filename="modinfodialog.ui" line="260"/> + <location filename="modinfodialog.ui" line="250"/> <source>List of esps and esms that can not be loaded by the game.</source> <translation>Seznam souborů .esp a .esm, které nebudou načteni do hry. </translation> </message> <message> - <location filename="modinfodialog.ui" line="263"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -2717,7 +2814,7 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">They usually contain optional functionality, see the readme.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Most mods do not have optional esps, so chances are good you are looking at an empty list.</span></p></body></html></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <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;"> @@ -2727,103 +2824,116 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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="292"/> + <location filename="modinfodialog.ui" line="220"/> + <source>This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="253"/> + <source>List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window. +They usually contain optional functionality, see the readme. + +Most mods do not have optional esps, so chances are good you are looking at an empty list.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="278"/> <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="295"/> + <location filename="modinfodialog.ui" line="281"/> <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="321"/> + <location filename="modinfodialog.ui" line="307"/> <source>Move a file to the data directory.</source> <translation>Přesuň soubor mezi Data.</translation> </message> <message> - <location filename="modinfodialog.ui" line="324"/> + <location filename="modinfodialog.ui" line="310"/> <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="359"/> + <location filename="modinfodialog.ui" line="345"/> <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="362"/> + <location filename="modinfodialog.ui" line="348"/> <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="369"/> + <location filename="modinfodialog.ui" line="355"/> <source>Available ESPs</source> <translation>ESP k dispozici</translation> </message> <message> - <location filename="modinfodialog.ui" line="377"/> + <location filename="modinfodialog.ui" line="363"/> <source>Conflicts</source> <translation>Konflikty</translation> </message> <message> - <location filename="modinfodialog.ui" line="385"/> + <location filename="modinfodialog.ui" line="371"/> <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="432"/> - <location filename="modinfodialog.ui" line="479"/> + <location filename="modinfodialog.ui" line="418"/> + <location filename="modinfodialog.ui" line="465"/> <source>File</source> <translation>Soubor</translation> </message> <message> - <location filename="modinfodialog.ui" line="437"/> + <location filename="modinfodialog.ui" line="423"/> <source>Overwritten Mods</source> <translation>Přepsané mody</translation> </message> <message> - <location filename="modinfodialog.ui" line="447"/> + <location filename="modinfodialog.ui" line="433"/> <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="484"/> + <location filename="modinfodialog.ui" line="470"/> <source>Providing Mod</source> <translation>Mod původu</translation> </message> <message> - <location filename="modinfodialog.ui" line="494"/> + <location filename="modinfodialog.ui" line="480"/> <source>Non-Conflicted files</source> <translation>Nekonfliktní soubory</translation> </message> <message> - <location filename="modinfodialog.ui" line="514"/> + <location filename="modinfodialog.ui" line="500"/> <source>Categories</source> <translation>Kategorie</translation> </message> <message> - <location filename="modinfodialog.ui" line="537"/> + <location filename="modinfodialog.ui" line="523"/> <source>Primary Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="554"/> + <location filename="modinfodialog.ui" line="540"/> <source>Nexus Info</source> <translation>Nexus Info</translation> </message> <message> - <location filename="modinfodialog.ui" line="562"/> + <location filename="modinfodialog.ui" line="548"/> <source>Mod ID</source> <translation>Mod ID</translation> </message> <message> - <location filename="modinfodialog.ui" line="569"/> + <location filename="modinfodialog.ui" line="555"/> <source>Mod ID for this mod on Nexus.</source> <translation>Mod ID tohodle modu na Nexusu.</translation> </message> <message> - <location filename="modinfodialog.ui" line="572"/> + <location filename="modinfodialog.ui" line="558"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -2836,7 +2946,7 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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="596"/> + <location filename="modinfodialog.ui" line="582"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -2849,27 +2959,27 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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="603"/> + <location filename="modinfodialog.ui" line="589"/> <source>Version</source> <translation>Verze</translation> </message> <message> - <location filename="modinfodialog.ui" line="633"/> + <location filename="modinfodialog.ui" line="619"/> <source>Refresh</source> <translation type="unfinished">Znovunačíst</translation> </message> <message> - <location filename="modinfodialog.ui" line="636"/> + <location filename="modinfodialog.ui" line="622"/> <source>Refresh all information from Nexus.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="650"/> + <location filename="modinfodialog.ui" line="636"/> <source>Description</source> <translation>Popis</translation> </message> <message> - <location filename="modinfodialog.ui" line="665"/> + <location filename="modinfodialog.ui" line="651"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -2895,20 +3005,21 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Druh</translation> </message> <message> + <location filename="modinfodialog.cpp" line="1179"/> <source>Name</source> - <translation type="obsolete">Jméno</translation> + <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="701"/> + <location filename="modinfodialog.ui" line="687"/> <source>Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="715"/> + <location filename="modinfodialog.ui" line="701"/> <source>Notes</source> <translation type="unfinished"></translation> </message> @@ -2921,17 +3032,17 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Už jste tenhle mod endorsovali?</translation> </message> <message> - <location filename="modinfodialog.ui" line="725"/> + <location filename="modinfodialog.ui" line="711"/> <source>Filetree</source> <translation>Struktura souborů</translation> </message> <message> - <location filename="modinfodialog.ui" line="734"/> + <location filename="modinfodialog.ui" line="720"/> <source>A directory view of this mod</source> <translation>Zložkový náhled na mod</translation> </message> <message> - <location filename="modinfodialog.ui" line="737"/> + <location filename="modinfodialog.ui" line="723"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -2946,17 +3057,17 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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="764"/> + <location filename="modinfodialog.ui" line="750"/> <source>Previous</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="771"/> + <location filename="modinfodialog.ui" line="757"/> <source>Next</source> <translation type="unfinished">Další</translation> </message> <message> - <location filename="modinfodialog.ui" line="791"/> + <location filename="modinfodialog.ui" line="777"/> <source>Close</source> <translation>Zavřít</translation> </message> @@ -2991,8 +3102,8 @@ p, li { white-space: pre-wrap; } <translation>&Nová Složka</translation> </message> <message> - <location filename="modinfodialog.cpp" line="352"/> - <location filename="modinfodialog.cpp" line="367"/> + <location filename="modinfodialog.cpp" line="354"/> + <location filename="modinfodialog.cpp" line="369"/> <source>Save changes?</source> <translation>Uložit změny?</translation> </message> @@ -3001,28 +3112,28 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Uložit změny v "%1"?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="563"/> + <location filename="modinfodialog.cpp" line="570"/> <source>File Exists</source> <translation>Soubor existuje</translation> </message> <message> - <location filename="modinfodialog.cpp" line="563"/> + <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="580"/> + <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="605"/> + <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="643"/> - <location filename="modinfodialog.cpp" line="1155"/> + <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> @@ -3032,53 +3143,53 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">(popis chybí, prosím navštivte nexus pro kompletní zobrazení)</translation> </message> <message> - <location filename="modinfodialog.cpp" line="758"/> + <location filename="modinfodialog.cpp" line="765"/> <source>(description incomplete, please visit nexus)</source> <translation>(popis chybí, prosím navštivte nexus pro kompletní zobrazení)</translation> </message> <message> - <location filename="modinfodialog.cpp" line="713"/> + <location filename="modinfodialog.cpp" line="720"/> <source>Current Version: %1</source> <translation>Současná verze: %1</translation> </message> <message> - <location filename="modinfodialog.cpp" line="717"/> + <location filename="modinfodialog.cpp" line="724"/> <source>No update available</source> <translation>Žádný update není k dispozici</translation> </message> <message> - <location filename="modinfodialog.cpp" line="697"/> + <location filename="modinfodialog.cpp" line="704"/> <source>Main</source> <translation>Hlavní</translation> </message> <message> - <location filename="modinfodialog.cpp" line="352"/> - <location filename="modinfodialog.cpp" line="367"/> + <location filename="modinfodialog.cpp" line="354"/> + <location filename="modinfodialog.cpp" line="369"/> <source>Save changes to "%1"?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="698"/> + <location filename="modinfodialog.cpp" line="705"/> <source>Update</source> <translation>Update</translation> </message> <message> - <location filename="modinfodialog.cpp" line="699"/> + <location filename="modinfodialog.cpp" line="706"/> <source>Optional</source> <translation>Volitelné</translation> </message> <message> - <location filename="modinfodialog.cpp" line="700"/> + <location filename="modinfodialog.cpp" line="707"/> <source>Old</source> <translation>Staré</translation> </message> <message> - <location filename="modinfodialog.cpp" line="701"/> + <location filename="modinfodialog.cpp" line="708"/> <source>Misc</source> <translation>Jiné</translation> </message> <message> - <location filename="modinfodialog.cpp" line="702"/> + <location filename="modinfodialog.cpp" line="709"/> <source>Unknown</source> <translation>Neznámé</translation> </message> @@ -3087,13 +3198,13 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">požadavka zlyhala: %1</translation> </message> <message> - <location filename="modinfodialog.cpp" line="779"/> + <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="869"/> - <location filename="modinfodialog.cpp" line="874"/> + <location filename="modinfodialog.cpp" line="870"/> + <location filename="modinfodialog.cpp" line="875"/> <source>Confirm</source> <translation>Potvrdit</translation> </message> @@ -3110,85 +3221,110 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Výnimka: %1</translation> </message> <message> - <location filename="modinfodialog.cpp" line="858"/> + <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="869"/> + <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="874"/> + <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="948"/> - <location filename="modinfodialog.cpp" line="954"/> + <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="960"/> + <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="1064"/> - <location filename="modinfodialog.cpp" line="1088"/> + <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="1064"/> + <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="1067"/> - <location filename="modinfodialog.cpp" line="1091"/> + <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="1067"/> - <location filename="modinfodialog.cpp" line="1091"/> + <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="1078"/> - <location filename="modinfodialog.cpp" line="1101"/> + <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="1088"/> + <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="1135"/> + <location filename="modinfodialog.cpp" line="1136"/> <source>Un-Hide</source> <translation>Odekrýt</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1137"/> + <location filename="modinfodialog.cpp" line="1138"/> <source>Hide</source> <translation>Skrýt</translation> </message> + <message> + <location filename="modinfodialog.cpp" line="1179"/> + <source>Please enter a name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1183"/> + <location filename="modinfodialog.cpp" line="1186"/> + <source>Error</source> + <translation type="unfinished">Chyba</translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1183"/> + <source>Invalid name. Must be a valid file name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1186"/> + <source>A tweak by that name exists</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1198"/> + <source>Create Tweak</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>ModInfoOverwrite</name> <message> - <location filename="modinfo.h" line="812"/> <source>Overwrite</source> - <translation>Přepsat</translation> + <translation type="obsolete">Přepsat</translation> </message> <message> - <location filename="modinfo.cpp" line="821"/> + <location filename="modinfo.cpp" line="859"/> <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> </message> @@ -3196,17 +3332,17 @@ p, li { white-space: pre-wrap; } <context> <name>ModInfoRegular</name> <message> - <location filename="modinfo.cpp" line="392"/> + <location filename="modinfo.cpp" line="393"/> <source>failed to write %1/meta.ini: %2</source> <translation>zlyhal zápis %1/meta.ini: %2</translation> </message> <message> - <location filename="modinfo.cpp" line="625"/> + <location filename="modinfo.cpp" line="654"/> <source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source> <translation type="unfinished">%1 neobsahuje žádné esp/esm ani jiné použitelné struktury (textures, meshes, interface,...)</translation> </message> <message> - <location filename="modinfo.cpp" line="629"/> + <location filename="modinfo.cpp" line="658"/> <source>Categories: <br></source> <translation type="unfinished">Kategorie: <br></translation> </message> @@ -3214,7 +3350,7 @@ p, li { white-space: pre-wrap; } <context> <name>ModList</name> <message> - <location filename="modlist.cpp" line="662"/> + <location filename="modlist.cpp" line="775"/> <source>Confirm</source> <translation>Potvrdit</translation> </message> @@ -3231,9 +3367,8 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">neplatný index řádku %1</translation> </message> <message> - <location filename="modlist.cpp" line="94"/> <source>Overwrite</source> - <translation>Přepsat</translation> + <translation type="obsolete">Přepsat</translation> </message> <message> <location filename="modlist.cpp" line="109"/> @@ -3284,17 +3419,17 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">max</translation> </message> <message> - <location filename="modlist.cpp" line="736"/> + <location filename="modlist.cpp" line="849"/> <source>Category of the mod.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="737"/> + <location filename="modlist.cpp" line="850"/> <source>Id of the mod as used on Nexus.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="738"/> + <location filename="modlist.cpp" line="851"/> <source>Emblemes to highlight things that might require attention.</source> <translation type="unfinished"></translation> </message> @@ -3303,7 +3438,7 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">%1 neobsahuje žádné esp/esm ani jiné použitelné struktury (textures, meshes, interface,...)</translation> </message> <message> - <location filename="modlist.cpp" line="298"/> + <location filename="modlist.cpp" line="317"/> <source>Categories: <br></source> <translation>Kategorie: <br></translation> </message> @@ -3312,7 +3447,7 @@ p, li { white-space: pre-wrap; } <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> </message> <message> - <location filename="modlist.cpp" line="294"/> + <location filename="modlist.cpp" line="307"/> <source>installed version: %1, newest version: %2</source> <translation>nainstalovaná verze: %1, nejnovjší verze: %2</translation> </message> @@ -3325,83 +3460,88 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Jména vašich modů</translation> </message> <message> - <location filename="modlist.cpp" line="719"/> + <location filename="modlist.cpp" line="832"/> <source>Version</source> <translation>Verze</translation> </message> <message> - <location filename="modlist.cpp" line="733"/> + <location filename="modlist.cpp" line="846"/> <source>Version of the mod (if available)</source> <translation>Verze modu (pokud je k dispozici)</translation> </message> <message> - <location filename="modlist.cpp" line="720"/> + <location filename="modlist.cpp" line="833"/> <source>Priority</source> <translation>Priorita</translation> </message> <message> - <location filename="modlist.cpp" line="184"/> + <location filename="modlist.cpp" line="196"/> <source>invalid</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="327"/> + <location filename="modlist.cpp" line="309"/> + <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="346"/> <source>Invalid name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="603"/> + <location filename="modlist.cpp" line="716"/> <source>drag&drop failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="717"/> + <location filename="modlist.cpp" line="830"/> <source>Flags</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="718"/> + <location filename="modlist.cpp" line="831"/> <source>Mod Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="721"/> + <location filename="modlist.cpp" line="834"/> <source>Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="722"/> + <location filename="modlist.cpp" line="835"/> <source>Nexus ID</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="723"/> + <location filename="modlist.cpp" line="836"/> <source>Installation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="724"/> - <location filename="modlist.cpp" line="740"/> + <location filename="modlist.cpp" line="837"/> + <location filename="modlist.cpp" line="853"/> <source>unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="732"/> + <location filename="modlist.cpp" line="845"/> <source>Name of your mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="734"/> + <location filename="modlist.cpp" line="847"/> <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="739"/> + <location filename="modlist.cpp" line="852"/> <source>Time this mod was installed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="662"/> + <location filename="modlist.cpp" line="775"/> <source>Are you sure you want to remove "%1"?</source> <translation>Určitě chcete odstranit "%1"?</translation> </message> @@ -3437,12 +3577,12 @@ p, li { white-space: pre-wrap; } <context> <name>MyFileSystemModel</name> <message> - <location filename="overwriteinfodialog.cpp" line="48"/> + <location filename="overwriteinfodialog.cpp" line="47"/> <source>Overwrites</source> <translation>Přepisuje</translation> </message> <message> - <location filename="overwriteinfodialog.cpp" line="60"/> + <location filename="overwriteinfodialog.cpp" line="59"/> <source>not implemented</source> <translation>není implementováno</translation> </message> @@ -3451,11 +3591,16 @@ p, li { white-space: pre-wrap; } <name>NXMAccessManager</name> <message> <location filename="nxmaccessmanager.cpp" line="130"/> + <source>Logging into Nexus</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="nxmaccessmanager.cpp" line="145"/> <source>timeout</source> <translation>Překročen časový limit</translation> </message> <message> - <location filename="nxmaccessmanager.cpp" line="168"/> + <location filename="nxmaccessmanager.cpp" line="185"/> <source>Please check your password</source> <translation>Oveřte heslo</translation> </message> @@ -3505,17 +3650,17 @@ p, li { white-space: pre-wrap; } <context> <name>NexusInterface</name> <message> - <location filename="nexusinterface.cpp" line="201"/> + <location filename="nexusinterface.cpp" line="219"/> <source>Failed to guess mod id for "%1", please pick the correct one</source> <translation type="unfinished"></translation> </message> <message> - <location filename="nexusinterface.cpp" line="421"/> + <location filename="nexusinterface.cpp" line="440"/> <source>empty response</source> <translation>prázdná odozva</translation> </message> <message> - <location filename="nexusinterface.cpp" line="450"/> + <location filename="nexusinterface.cpp" line="469"/> <source>invalid response</source> <translation>neplatná odozva</translation> </message> @@ -4474,34 +4619,34 @@ V současnosti má omezenou funkcionalitu</translation> <translation type="obsolete">Zlyhalo vymazání %1</translation> </message> <message> - <location filename="overwriteinfodialog.cpp" line="137"/> + <location filename="overwriteinfodialog.cpp" line="136"/> <source>Failed to delete "%1"</source> <translation>odstránění zlyhalo "%1"</translation> </message> <message> - <location filename="overwriteinfodialog.cpp" line="148"/> - <location filename="overwriteinfodialog.cpp" line="153"/> + <location filename="overwriteinfodialog.cpp" line="147"/> + <location filename="overwriteinfodialog.cpp" line="152"/> <source>Confirm</source> <translation>Potvrdit</translation> </message> <message> - <location filename="overwriteinfodialog.cpp" line="148"/> + <location filename="overwriteinfodialog.cpp" line="147"/> <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="153"/> + <location filename="overwriteinfodialog.cpp" line="152"/> <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="overwriteinfodialog.cpp" line="203"/> - <location filename="overwriteinfodialog.cpp" line="209"/> + <location filename="overwriteinfodialog.cpp" line="202"/> + <location filename="overwriteinfodialog.cpp" line="208"/> <source>New Folder</source> <translation>Nová Zložka</translation> </message> <message> - <location filename="overwriteinfodialog.cpp" line="215"/> + <location filename="overwriteinfodialog.cpp" line="214"/> <source>Failed to create "%1"</source> <translation>Zlyhalo vytvoření "%1"</translation> </message> @@ -4514,70 +4659,85 @@ V současnosti má omezenou funkcionalitu</translation> <translation type="obsolete">esp nenalezeno: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="98"/> + <location filename="pluginlist.cpp" line="103"/> <source>Mod Index</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="99"/> - <location filename="pluginlist.cpp" line="111"/> + <location filename="pluginlist.cpp" line="104"/> + <location filename="pluginlist.cpp" line="116"/> <source>unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="107"/> + <location filename="pluginlist.cpp" line="112"/> <source>Name of your mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="108"/> + <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"></translation> </message> <message> - <location filename="pluginlist.cpp" line="110"/> + <location filename="pluginlist.cpp" line="115"/> <source>The modindex determins the formids of objects originating from this mods.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="208"/> + <location filename="pluginlist.cpp" line="151"/> + <source>failed to update esp info for file %1 (source id: %2), error: %3</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="pluginlist.cpp" line="218"/> <source>esp not found: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="215"/> - <location filename="pluginlist.cpp" line="227"/> + <location filename="pluginlist.cpp" line="225"/> + <location filename="pluginlist.cpp" line="237"/> <source>Confirm</source> <translation type="unfinished">Potvrdit</translation> </message> <message> - <location filename="pluginlist.cpp" line="215"/> + <location filename="pluginlist.cpp" line="225"/> <source>Really enable all plugins?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="227"/> + <location filename="pluginlist.cpp" line="237"/> <source>Really disable all plugins?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="353"/> + <location filename="pluginlist.cpp" line="365"/> <source>The file containing locked plugin indices is broken</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="366"/> - <location filename="pluginlist.cpp" line="405"/> + <location filename="pluginlist.cpp" line="378"/> + <location filename="pluginlist.cpp" line="417"/> <source>failed to open output file: %1</source> <translation>zlyhalo otevření výstupního souboru: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="393"/> + <location filename="pluginlist.cpp" line="405"/> <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="737"/> + <location filename="pluginlist.cpp" line="755"/> + <source>Missing Masters</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="pluginlist.cpp" line="761"/> + <source>Enabled Masters</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="pluginlist.cpp" line="873"/> <source>failed to restore load order for %1</source> <translation type="unfinished"></translation> </message> @@ -4590,17 +4750,17 @@ V současnosti má omezenou funkcionalitu</translation> <translation type="obsolete">max</translation> </message> <message> - <location filename="pluginlist.cpp" line="631"/> + <location filename="pluginlist.cpp" line="751"/> <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="633"/> + <location filename="pluginlist.cpp" line="753"/> <source>Origin: %1</source> <translation>Původní mod: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="96"/> + <location filename="pluginlist.cpp" line="101"/> <source>Name</source> <translation>Jméno</translation> </message> @@ -4609,7 +4769,7 @@ V současnosti má omezenou funkcionalitu</translation> <translation type="obsolete">Jména vašich modů</translation> </message> <message> - <location filename="pluginlist.cpp" line="97"/> + <location filename="pluginlist.cpp" line="102"/> <source>Priority</source> <translation>Priorita</translation> </message> @@ -4638,22 +4798,28 @@ V současnosti má omezenou funkcionalitu</translation> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" 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;"> +</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> + <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: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></oldsource> <translation type="unfinished"></translation> </message> <message> - <location filename="problemsdialog.cpp" line="29"/> - <source>fix</source> + <location filename="problemsdialog.ui" line="75"/> + <source>Close</source> <translation type="unfinished"></translation> </message> <message> - <location filename="problemsdialog.cpp" line="30"/> + <location filename="problemsdialog.cpp" line="44"/> + <location filename="problemsdialog.cpp" line="45"/> <source>Fix</source> <translation type="unfinished"></translation> </message> <message> - <location filename="problemsdialog.cpp" line="34"/> + <location filename="problemsdialog.cpp" line="49"/> <source>No guided fix</source> <translation type="unfinished"></translation> </message> @@ -4665,72 +4831,82 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Zlyhalo uplatnění změn v ini</translation> </message> <message> - <location filename="profile.cpp" line="56"/> + <location filename="profile.cpp" line="58"/> <source>invalid profile name %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="60"/> + <location filename="profile.cpp" line="62"/> <source>failed to create %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="152"/> + <location filename="profile.cpp" line="155"/> + <source>failed to open temporary file</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profile.cpp" line="192"/> <source>failed to open "%1" for writing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="189"/> + <location filename="profile.cpp" line="198"/> + <source>failed to write mod list: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profile.cpp" line="209"/> <source>failed to update tweaked ini file, wrong settings may be used: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="219"/> + <location filename="profile.cpp" line="239"/> <source>failed to create tweaked ini: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="271"/> - <location filename="profile.cpp" line="300"/> - <location filename="profile.cpp" line="384"/> - <location filename="profile.cpp" line="402"/> - <location filename="profile.cpp" line="412"/> + <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="365"/> + <location filename="profile.cpp" line="387"/> <source>Overwrite directory couldn't be parsed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="374"/> + <location filename="profile.cpp" line="396"/> <source>invalid priority %1</source> <translation>neplatná priorita %1</translation> </message> <message> - <location filename="profile.cpp" line="561"/> + <location filename="profile.cpp" line="584"/> <source>failed to parse ini file (%1)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="589"/> + <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="613"/> - <location filename="profile.cpp" line="650"/> + <location filename="profile.cpp" line="636"/> + <location filename="profile.cpp" line="673"/> <source>failed to modify "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="678"/> + <location filename="profile.cpp" line="701"/> <source>Delete savegames?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="679"/> + <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"></translation> </message> @@ -4946,37 +5122,61 @@ p, li { white-space: pre-wrap; } <translation>Prosím zadej jméno pro nový profil</translation> </message> <message> - <location filename="profilesdialog.cpp" line="160"/> + <location filename="profilesdialog.cpp" line="162"/> <source>failed to copy profile: %1</source> <translation>zlyhalo kopírování profilu: %1</translation> </message> <message> - <location filename="profilesdialog.cpp" line="167"/> + <location filename="profilesdialog.cpp" line="165"/> + <source>Invalid name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.cpp" line="165"/> + <source>Invalid profile name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.cpp" line="172"/> <source>Confirm</source> <translation>Potvrdit</translation> </message> <message> - <location filename="profilesdialog.cpp" line="167"/> + <location filename="profilesdialog.cpp" line="172"/> + <source>Are you sure you want to remove this profile (including local savegames if any)?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.cpp" line="182"/> + <source>Profile broken</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.cpp" line="183"/> + <source>This profile you'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>Jsi si jistý, že chceš odstranit tento profil?</translation> + <translation type="obsolete">Jsi si jistý, že chceš odstranit tento profil?</translation> </message> <message> - <location filename="profilesdialog.cpp" line="196"/> + <location filename="profilesdialog.cpp" line="215"/> <source>Rename Profile</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profilesdialog.cpp" line="196"/> + <location filename="profilesdialog.cpp" line="215"/> <source>New Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profilesdialog.cpp" line="233"/> + <location filename="profilesdialog.cpp" line="252"/> <source>failed to change archive invalidation state: %1</source> <translation>Zlyhala změna stavu invalidace archívu: %1</translation> </message> <message> - <location filename="profilesdialog.cpp" line="270"/> + <location filename="profilesdialog.cpp" line="289"/> <source>failed to determine if invalidation is active: %1</source> <translation>Nepodařilo se zjistit jestli je invalidace aktivní: %1</translation> </message> @@ -4984,20 +5184,20 @@ p, li { white-space: pre-wrap; } <context> <name>QObject</name> <message> - <location filename="categories.cpp" line="133"/> + <location filename="categories.cpp" line="140"/> <source>Failed to save custom categories</source> <translation>Nezdařilo se uložit uživatelské kategorie</translation> </message> <message> - <location filename="categories.cpp" line="210"/> - <location filename="categories.cpp" line="245"/> - <location filename="categories.cpp" line="255"/> - <location filename="categories.cpp" line="265"/> + <location filename="categories.cpp" line="217"/> + <location filename="categories.cpp" line="252"/> + <location filename="categories.cpp" line="262"/> + <location filename="categories.cpp" line="272"/> <source>invalid index %1</source> <translation>neplatný index %1</translation> </message> <message> - <location filename="categories.cpp" line="276"/> + <location filename="categories.cpp" line="283"/> <source>invalid category id %1</source> <translation>neplatné id kategorie %1</translation> </message> @@ -5013,7 +5213,7 @@ p, li { white-space: pre-wrap; } <translation>Jméno účtu nebylo rozpoznáno</translation> </message> <message> - <location filename="installationmanager.cpp" line="63"/> + <location filename="installationmanager.cpp" line="64"/> <location filename="selfupdater.cpp" line="52"/> <source>invalid 7-zip32.dll: %1</source> <translation>neplatný 7-zip32.dll: %1</translation> @@ -5083,12 +5283,12 @@ p, li { white-space: pre-wrap; } <translation>Zlyhalo nastavení proxy-dll načítání</translation> </message> <message> - <location filename="profile.cpp" line="93"/> + <location filename="profile.cpp" line="95"/> <source>"%1" is missing</source> <translation>"%1" chybí</translation> </message> <message> - <location filename="main.cpp" line="134"/> + <location filename="main.cpp" line="138"/> <source>Permissions required</source> <translation>Chybí oprávnění</translation> </message> @@ -5097,8 +5297,8 @@ p, li { white-space: pre-wrap; } <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> </message> <message> - <location filename="main.cpp" line="234"/> - <location filename="main.cpp" line="272"/> + <location filename="main.cpp" line="230"/> + <location filename="main.cpp" line="268"/> <source>Woops</source> <translation>Hups</translation> </message> @@ -5107,61 +5307,66 @@ p, li { white-space: pre-wrap; } <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="135"/> - <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> + <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"></translation> </message> <message> - <location filename="main.cpp" line="235"/> + <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> </message> <message> - <location filename="main.cpp" line="273"/> + <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="335"/> - <location filename="settings.cpp" line="462"/> + <location filename="main.cpp" line="331"/> + <location filename="settings.cpp" line="528"/> <source>Mod Organizer</source> <translation>Mod Organizer</translation> </message> <message> - <location filename="main.cpp" line="335"/> + <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="357"/> + <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="360"/> - <location filename="main.cpp" line="389"/> + <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="mainwindow.cpp" line="752"/> + <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"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="770"/> <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="1470"/> - <location filename="mainwindow.cpp" line="3723"/> + <location filename="mainwindow.cpp" line="1538"/> + <location filename="mainwindow.cpp" line="4024"/> <source><Manage...></source> <translation><Manage...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1488"/> + <location filename="mainwindow.cpp" line="1556"/> <source>failed to parse profile %1: %2</source> <translation>Nezdařilo se rozebrat profil %1: %2</translation> </message> <message> - <location filename="pluginlist.cpp" line="310"/> - <location filename="profile.cpp" line="228"/> + <location filename="pluginlist.cpp" line="320"/> + <location filename="profile.cpp" line="249"/> <source>failed to find "%1"</source> <translation>Nepodařilo sa najít "%1"</translation> </message> @@ -5170,17 +5375,17 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Chyba kódování, prosím nahlaste tuto chybu a poskytněte záznamový soubor mo_interface.log!</translation> </message> <message> - <location filename="pluginlist.cpp" line="467"/> + <location filename="pluginlist.cpp" line="479"/> <source>failed to access %1</source> <translation>zlyhal přístup k %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="481"/> + <location filename="pluginlist.cpp" line="493"/> <source>failed to set file time %1</source> <translation>nepodařilo se nastavit čas souboru %1</translation> </message> <message> - <location filename="profile.cpp" line="67"/> + <location filename="profile.cpp" line="69"/> <source>failed to create %1</source> <translation>Nepodařilo se vytvořit %1</translation> </message> @@ -5216,12 +5421,12 @@ p, li { white-space: pre-wrap; } <translation>nepodařilo se otevřít %1</translation> </message> <message> - <location filename="settings.cpp" line="469"/> + <location filename="settings.cpp" line="535"/> <source>Script Extender</source> <translation>Skript Extender</translation> </message> <message> - <location filename="settings.cpp" line="476"/> + <location filename="settings.cpp" line="542"/> <source>Proxy DLL</source> <translation>Proxy DLL</translation> </message> @@ -5364,9 +5569,8 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <context> <name>QuestionBoxMemory</name> <message> - <location filename="questionboxmemory.ui" line="86"/> <source>Remember selection</source> - <translation>pamatovat si výběr</translation> + <translation type="obsolete">pamatovat si výběr</translation> </message> </context> <context> @@ -5474,9 +5678,9 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe </message> <message> <location filename="selfupdater.cpp" line="116"/> - <location filename="selfupdater.cpp" line="140"/> - <location filename="selfupdater.cpp" line="269"/> - <location filename="selfupdater.cpp" line="417"/> + <location filename="selfupdater.cpp" line="139"/> + <location filename="selfupdater.cpp" line="268"/> + <location filename="selfupdater.cpp" line="415"/> <source>Update</source> <translation>Aktualizace</translation> </message> @@ -5486,57 +5690,57 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <translation>Je k dispozici Aktualizace (nejnovší verze: %1), chcete nainstalovat?</translation> </message> <message> - <location filename="selfupdater.cpp" line="141"/> + <location filename="selfupdater.cpp" line="140"/> <source>Download in progress</source> <translation>Stahování probíhá</translation> </message> <message> - <location filename="selfupdater.cpp" line="196"/> + <location filename="selfupdater.cpp" line="195"/> <source>Download failed: %1</source> <translation>Stahování zlyhalo: %1</translation> </message> <message> - <location filename="selfupdater.cpp" line="207"/> + <location filename="selfupdater.cpp" line="206"/> <source>Failed to install update: %1</source> <translation>Zlyhala instalace aktualizace: %1</translation> </message> <message> - <location filename="selfupdater.cpp" line="228"/> + <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> </message> <message> - <location filename="selfupdater.cpp" line="251"/> + <location filename="selfupdater.cpp" line="250"/> <source>failed to move outdated files: %1. Please update manually.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="selfupdater.cpp" line="269"/> + <location filename="selfupdater.cpp" line="268"/> <source>Update installed, Mod Organizer will now be restarted.</source> <translation>Aktualizace nainstalována, Mod Organizer se teď restartuje.</translation> </message> <message> - <location filename="selfupdater.cpp" line="297"/> + <location filename="selfupdater.cpp" line="296"/> <source>Error</source> <translation>Chyba</translation> </message> <message> - <location filename="selfupdater.cpp" line="353"/> + <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>Zlyhala odozva. Prosím nahlaste tuto chybu autorovi a přiložte soubor mo_interface.log.</translation> </message> <message> - <location filename="selfupdater.cpp" line="418"/> + <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>Inkrementální aktualizace není k dispozici, je potřebné stáhnout celý nový balík (%1 kB)</translation> </message> <message> - <location filename="selfupdater.cpp" line="427"/> + <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="461"/> + <location filename="selfupdater.cpp" line="459"/> <source>No download server available. Please try again later.</source> <translation type="unfinished"></translation> </message> @@ -5545,7 +5749,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <translation type="obsolete">Nenalezen soubor pro aktualizaci</translation> </message> <message> - <location filename="selfupdater.cpp" line="441"/> + <location filename="selfupdater.cpp" line="439"/> <source>Failed to retrieve update information: %1</source> <translation>Nepodařilo se získat informace o aktualizaci: %1</translation> </message> @@ -5553,26 +5757,22 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <context> <name>Settings</name> <message> - <location filename="settings.cpp" line="278"/> - <source>setting for invalid plugin "%1" requested</source> - <translation type="unfinished"></translation> + <source>Administrative rights required to change this.</source> + <translation type="obsolete">Administrátorské práva jsou požadovány na tuhle změnu.</translation> </message> <message> - <location filename="settings.cpp" line="282"/> - <source>invalid setting "%1" requested for plugin "%2"</source> + <location filename="settings.cpp" line="306"/> + <location filename="settings.cpp" line="325"/> + <source>attempt to store setting for unknown plugin "%1"</source> <translation type="unfinished"></translation> </message> <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> - </message> - <message> - <location filename="settings.cpp" line="573"/> + <location filename="settings.cpp" line="646"/> <source>Confirm</source> <translation>Potvrdit</translation> </message> <message> - <location filename="settings.cpp" line="573"/> + <location filename="settings.cpp" line="646"/> <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> @@ -5785,7 +5985,12 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="594"/> + <location filename="settingsdialog.ui" line="512"/> + <source>Blacklisted Plugins (use <del> to remove):</source> + <translation type="unfinished"></translation> + </message> + <message> + <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. @@ -5861,47 +6066,47 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="427"/> + <location filename="settingsdialog.ui" line="429"/> <source>Author:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="441"/> + <location filename="settingsdialog.ui" line="443"/> <source>Version:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="455"/> + <location filename="settingsdialog.ui" line="457"/> <source>Description:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="493"/> + <location filename="settingsdialog.ui" line="495"/> <source>Key</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="498"/> + <location filename="settingsdialog.ui" line="500"/> <source>Value</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="509"/> + <location filename="settingsdialog.ui" line="523"/> <source>Workarounds</source> <translation>Řešení</translation> </message> <message> - <location filename="settingsdialog.ui" line="517"/> + <location filename="settingsdialog.ui" line="531"/> <source>Steam App ID</source> <translation>Steam App ID</translation> </message> <message> - <location filename="settingsdialog.ui" line="537"/> + <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="540"/> + <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; } @@ -5928,12 +6133,12 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">22380 je id, které hledáte.</span></p></body></html></translation> </message> <message> - <location filename="settingsdialog.ui" line="571"/> + <location filename="settingsdialog.ui" line="585"/> <source>Load Mechanism</source> <translation>Mechanizmus spuštění</translation> </message> <message> - <location filename="settingsdialog.ui" line="591"/> + <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> @@ -5958,17 +6163,17 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">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> </message> <message> - <location filename="settingsdialog.ui" line="611"/> + <location filename="settingsdialog.ui" line="625"/> <source>NMM Version</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="631"/> + <location filename="settingsdialog.ui" line="645"/> <source>The Version of Nexus Mod Manager to impersonate.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="634"/> + <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. @@ -5977,53 +6182,53 @@ tl;dr-version: If Nexus-features don't work, insert the current version num <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="656"/> + <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="659"/> + <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="663"/> + <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="670"/> + <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> </message> <message> - <location filename="settingsdialog.ui" line="673"/> + <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> </message> <message> - <location filename="settingsdialog.ui" line="677"/> + <location filename="settingsdialog.ui" line="691"/> <source>Force-enable game files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="687"/> - <location filename="settingsdialog.ui" line="691"/> + <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="695"/> + <location filename="settingsdialog.ui" line="709"/> <source>Back-date BSAs</source> <translation>Uprav dátumy BSA</translation> </message> <message> - <location filename="settingsdialog.ui" line="719"/> + <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> @@ -6032,27 +6237,27 @@ Pro ostatné hry tohle není dostatečná náhrada Invalidace Archívu! </trans <translation type="obsolete">Tohle jsou různé náhradné řešení problému s používaním modů. Obvykle nejsou potřebné. Prosím určite si projděte Nápovědu předtím než zde neco poměníte.</translation> </message> <message> - <location filename="settingsdialog.cpp" line="89"/> + <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="97"/> + <location filename="settingsdialog.cpp" line="102"/> <source>Select mod directory</source> <translation>Vyber adresář pro mody</translation> </message> <message> - <location filename="settingsdialog.cpp" line="105"/> + <location filename="settingsdialog.cpp" line="110"/> <source>Select cache directory</source> <translation>Vyber adresář pro cache </translation> </message> <message> - <location filename="settingsdialog.cpp" line="113"/> + <location filename="settingsdialog.cpp" line="118"/> <source>Confirm?</source> <translation>Potvrdit?</translation> </message> <message> - <location filename="settingsdialog.cpp" line="114"/> + <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> diff --git a/src/organizer_de.qm b/src/organizer_de.qm Binary files differindex 71baf743..23596b09 100644 --- a/src/organizer_de.qm +++ b/src/organizer_de.qm diff --git a/src/organizer_de.ts b/src/organizer_de.ts index e47e557f..68af9c3a 100644 --- a/src/organizer_de.ts +++ b/src/organizer_de.ts @@ -254,7 +254,7 @@ p, li { white-space: pre-wrap; } <translation type="unfinished">Fertig</translation> </message> <message> - <location filename="downloadlist.cpp" line="79"/> + <location filename="downloadlist.cpp" line="80"/> <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> @@ -268,11 +268,6 @@ p, li { white-space: pre-wrap; } <translation>Platzhalter</translation> </message> <message> - <location filename="downloadlistwidget.ui" line="81"/> - <source>0</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="downloadlistwidget.ui" line="88"/> <source>KB</source> <translation type="unfinished"></translation> @@ -320,40 +315,40 @@ p, li { white-space: pre-wrap; } <context> <name>DownloadListWidgetCompactDelegate</name> <message> - <location filename="downloadlistwidgetcompact.cpp" line="215"/> - <location filename="downloadlistwidgetcompact.cpp" line="224"/> - <location filename="downloadlistwidgetcompact.cpp" line="233"/> - <location filename="downloadlistwidgetcompact.cpp" line="242"/> + <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>Sind sie sicher?</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="216"/> + <location filename="downloadlistwidgetcompact.cpp" line="221"/> <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="225"/> + <location filename="downloadlistwidgetcompact.cpp" line="230"/> <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="269"/> + <location filename="downloadlistwidgetcompact.cpp" line="275"/> <source>Install</source> <translation>Installieren</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="271"/> + <location filename="downloadlistwidgetcompact.cpp" line="277"/> <source>Query Info</source> <translation>Info abfragen</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="279"/> + <location filename="downloadlistwidgetcompact.cpp" line="289"/> <source>Remove</source> <translation>Entfernen</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="276"/> + <location filename="downloadlistwidgetcompact.cpp" line="286"/> <source>Cancel</source> <translation>Abbrechen</translation> </message> @@ -388,52 +383,57 @@ p, li { white-space: pre-wrap; } <translation type="unfinished">Fertig</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="234"/> + <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> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="243"/> + <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> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="273"/> + <location filename="downloadlistwidgetcompact.cpp" line="279"/> <source>Delete</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="274"/> + <location filename="downloadlistwidgetcompact.cpp" line="281"/> + <source>Un-Hide</source> + <translation type="unfinished">Sichtbar machen</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="283"/> <source>Remove from View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="277"/> + <location filename="downloadlistwidgetcompact.cpp" line="287"/> <source>Pause</source> <translation>Pausieren</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="280"/> + <location filename="downloadlistwidgetcompact.cpp" line="290"/> <source>Resume</source> <translation>Fortsetzen</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="284"/> + <location filename="downloadlistwidgetcompact.cpp" line="294"/> <source>Delete Installed...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="285"/> + <location filename="downloadlistwidgetcompact.cpp" line="295"/> <source>Delete All...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="287"/> + <location filename="downloadlistwidgetcompact.cpp" line="298"/> <source>Remove Installed...</source> <translation>Installierte entfernen...</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="288"/> + <location filename="downloadlistwidgetcompact.cpp" line="299"/> <source>Remove All...</source> <translation>Alle löschen...</translation> </message> @@ -441,60 +441,65 @@ p, li { white-space: pre-wrap; } <context> <name>DownloadListWidgetDelegate</name> <message> - <location filename="downloadlistwidget.cpp" line="228"/> - <location filename="downloadlistwidget.cpp" line="237"/> - <location filename="downloadlistwidget.cpp" line="246"/> - <location filename="downloadlistwidget.cpp" line="255"/> + <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>Sind sie sicher?</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="229"/> + <location filename="downloadlistwidget.cpp" line="234"/> <source>This will remove all finished downloads from this list and from disk.</source> <translation>Entfernt alle abgeschlossenen Downloads aus der Liste und von der Festplatte.</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="238"/> + <location filename="downloadlistwidget.cpp" line="243"/> <source>This will remove all installed downloads from this list and from disk.</source> <translation>Entfernt alle installierten Downloads aus der Liste und von der Festplatte.</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="247"/> + <location filename="downloadlistwidget.cpp" line="252"/> <source>This will remove all finished downloads from this list (but NOT from disk).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="256"/> + <location filename="downloadlistwidget.cpp" line="261"/> <source>This will remove all installed downloads from this list (but NOT from disk).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="281"/> + <location filename="downloadlistwidget.cpp" line="287"/> <source>Install</source> <translation>Installieren</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="283"/> + <location filename="downloadlistwidget.cpp" line="289"/> <source>Query Info</source> <translation>Info abfragen</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="285"/> + <location filename="downloadlistwidget.cpp" line="291"/> <source>Delete</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="286"/> + <location filename="downloadlistwidget.cpp" line="293"/> + <source>Un-Hide</source> + <translation type="unfinished">Sichtbar machen</translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="295"/> <source>Remove from View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="291"/> + <location filename="downloadlistwidget.cpp" line="301"/> <source>Remove</source> <translation>Entfernen</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="288"/> + <location filename="downloadlistwidget.cpp" line="298"/> <source>Cancel</source> <translation>Abbrechen</translation> </message> @@ -509,32 +514,32 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="289"/> + <location filename="downloadlistwidget.cpp" line="299"/> <source>Pause</source> <translation>Pausieren</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="292"/> + <location filename="downloadlistwidget.cpp" line="302"/> <source>Resume</source> <translation>Fortsetzen</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="296"/> + <location filename="downloadlistwidget.cpp" line="306"/> <source>Delete Installed...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="297"/> + <location filename="downloadlistwidget.cpp" line="307"/> <source>Delete All...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="299"/> + <location filename="downloadlistwidget.cpp" line="310"/> <source>Remove Installed...</source> <translation>Installierte entfernen...</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="300"/> + <location filename="downloadlistwidget.cpp" line="311"/> <source>Remove All...</source> <translation>Alle löschen...</translation> </message> @@ -542,12 +547,12 @@ p, li { white-space: pre-wrap; } <context> <name>DownloadManager</name> <message> - <location filename="downloadmanager.cpp" line="450"/> - <location filename="downloadmanager.cpp" line="468"/> - <location filename="downloadmanager.cpp" line="481"/> - <location filename="downloadmanager.cpp" line="494"/> - <location filename="downloadmanager.cpp" line="505"/> - <location filename="downloadmanager.cpp" line="540"/> + <location filename="downloadmanager.cpp" line="495"/> + <location filename="downloadmanager.cpp" line="513"/> + <location filename="downloadmanager.cpp" line="526"/> + <location filename="downloadmanager.cpp" line="543"/> + <location filename="downloadmanager.cpp" line="554"/> + <location filename="downloadmanager.cpp" line="589"/> <source>invalid index %1</source> <translation>ungültiger index %1</translation> </message> @@ -556,52 +561,65 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Löschen der Datei ist fehlgeschlagen</translation> </message> <message> - <location filename="downloadmanager.cpp" line="384"/> + <location filename="downloadmanager.cpp" line="413"/> <source>failed to delete %1</source> <translation>konnte %1 nicht löschen</translation> </message> <message> - <location filename="downloadmanager.cpp" line="390"/> + <location filename="downloadmanager.cpp" line="419"/> <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="366"/> - <location filename="downloadmanager.cpp" line="585"/> - <location filename="downloadmanager.cpp" line="595"/> - <location filename="downloadmanager.cpp" line="604"/> - <location filename="downloadmanager.cpp" line="614"/> - <location filename="downloadmanager.cpp" line="624"/> + <location filename="downloadmanager.cpp" line="395"/> + <location filename="downloadmanager.cpp" line="462"/> <location filename="downloadmanager.cpp" line="634"/> - <location filename="downloadmanager.cpp" line="645"/> - <location filename="downloadmanager.cpp" line="654"/> - <location filename="downloadmanager.cpp" line="664"/> - <location filename="downloadmanager.cpp" line="679"/> + <location filename="downloadmanager.cpp" line="644"/> + <location filename="downloadmanager.cpp" line="653"/> + <location filename="downloadmanager.cpp" line="667"/> + <location filename="downloadmanager.cpp" line="677"/> + <location filename="downloadmanager.cpp" line="687"/> + <location filename="downloadmanager.cpp" line="697"/> + <location filename="downloadmanager.cpp" line="708"/> + <location filename="downloadmanager.cpp" line="716"/> + <location filename="downloadmanager.cpp" line="725"/> + <location filename="downloadmanager.cpp" line="735"/> + <location filename="downloadmanager.cpp" line="750"/> <source>invalid index</source> <translation>ungültiger Index</translation> </message> <message> - <location filename="downloadmanager.cpp" line="125"/> + <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="306"/> + <location filename="downloadmanager.cpp" line="322"/> <source>Download again?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadmanager.cpp" line="306"/> + <location filename="downloadmanager.cpp" line="322"/> <source>A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadmanager.cpp" line="557"/> + <location filename="downloadmanager.cpp" line="383"/> + <source>Wrong Game</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="383"/> + <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> + </message> + <message> + <location filename="downloadmanager.cpp" line="606"/> <source>Please enter the nexus mod id</source> <translation>Bitte gib die Nexus Mod ID ein</translation> </message> <message> - <location filename="downloadmanager.cpp" line="557"/> + <location filename="downloadmanager.cpp" line="606"/> <source>Mod ID:</source> <translation>Mod ID:</translation> </message> @@ -610,33 +628,33 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">ungültiger alphabetischer index %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="899"/> + <location filename="downloadmanager.cpp" line="972"/> <source>Information updated</source> <translation>Informationen aktualisiert</translation> </message> <message> - <location filename="downloadmanager.cpp" line="901"/> - <location filename="downloadmanager.cpp" line="915"/> + <location filename="downloadmanager.cpp" line="974"/> + <location filename="downloadmanager.cpp" line="988"/> <source>No matching file found on Nexus! Maybe this file is no longer available or it was renamed?</source> <translation>Keine passende Datei auf Nexus gefunden! Ist die Datei vielleicht nicht mehr verfügbar?</translation> </message> <message> - <location filename="downloadmanager.cpp" line="903"/> + <location filename="downloadmanager.cpp" line="976"/> <source>No file on Nexus matches the selected file by name. Please manually choose the correct one.</source> <translation>Keine Datei mit diesem Namen auf Nexus gefunden. Bitte wähle die passende händisch aus.</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1032"/> + <location filename="downloadmanager.cpp" line="1109"/> <source>No download server available. Please try again later.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadmanager.cpp" line="1074"/> + <location filename="downloadmanager.cpp" line="1151"/> <source>Failed to request file info from nexus: %1</source> <translation>Konnte Datei-Informationen nicht von Nexus abrufen: %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1097"/> + <location filename="downloadmanager.cpp" line="1175"/> <source>Download failed: %1 (%2)</source> <translation>Download fehlgeschlagen: %1 (%2)</translation> </message> @@ -645,7 +663,7 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Abfrage von Dateiinformationen von Nexus fehlgeschlagen!</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1174"/> + <location filename="downloadmanager.cpp" line="1254"/> <source>failed to re-open %1</source> <translation>Öffnen von %1 fehlgeschlagen</translation> </message> @@ -654,7 +672,7 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">konnte Antwort von Nexus nicht interpretieren</translation> </message> <message> - <location filename="downloadmanager.cpp" line="336"/> + <location filename="downloadmanager.cpp" line="354"/> <source>failed to download %1: could not open output file: %2</source> <translation>Download von %1 fehlgeschlagen: Konnte Ausgabedatei %2 nicht öffnen</translation> </message> @@ -1110,12 +1128,12 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">mo_archive.dll nicht geladen: %1</translation> </message> <message> - <location filename="installationmanager.cpp" line="97"/> + <location filename="installationmanager.cpp" line="98"/> <source>Password required</source> <translation>Kennwort benötigt</translation> </message> <message> - <location filename="installationmanager.cpp" line="97"/> + <location filename="installationmanager.cpp" line="98"/> <source>Password</source> <translation>Kennwort</translation> </message> @@ -1129,18 +1147,18 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="installationmanager.cpp" line="164"/> - <location filename="installationmanager.cpp" line="252"/> - <location filename="installationmanager.cpp" line="530"/> + <location filename="installationmanager.cpp" line="248"/> + <location filename="installationmanager.cpp" line="525"/> <source>Extracting files</source> <translation>Extrahiere Dateien</translation> </message> <message> - <location filename="installationmanager.cpp" line="772"/> + <location filename="installationmanager.cpp" line="753"/> <source>failed to open archive</source> <translation>Öffnen des Archivs fehlgeschlagen</translation> </message> <message> - <location filename="installationmanager.cpp" line="624"/> + <location filename="installationmanager.cpp" line="605"/> <source>File format "%1" not supported</source> <translation>Dateiformat "%1" wird nicht unterstützt</translation> </message> @@ -1189,32 +1207,32 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Installation fehlgeschlagen (Fehlercode %1)</translation> </message> <message> - <location filename="installationmanager.cpp" line="75"/> + <location filename="installationmanager.cpp" line="76"/> <source>archive.dll not loaded: "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="installationmanager.cpp" line="443"/> + <location filename="installationmanager.cpp" line="439"/> <source>failed to create backup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="installationmanager.cpp" line="449"/> + <location filename="installationmanager.cpp" line="445"/> <source>Mod Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="installationmanager.cpp" line="449"/> + <location filename="installationmanager.cpp" line="445"/> <source>Name</source> <translation type="unfinished">Name</translation> </message> <message> - <location filename="installationmanager.cpp" line="502"/> + <location filename="installationmanager.cpp" line="498"/> <source>Invalid name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="installationmanager.cpp" line="503"/> + <location filename="installationmanager.cpp" line="499"/> <source>The name you entered is invalid, please enter a different one.</source> <translation type="unfinished"></translation> </message> @@ -1227,47 +1245,47 @@ p, li { white-space: pre-wrap; } <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> </message> <message> - <location filename="installationmanager.cpp" line="750"/> + <location filename="installationmanager.cpp" line="731"/> <source>None of the available installer plugins were able to handle that archive</source> <translation type="unfinished"></translation> </message> <message> - <location filename="installationmanager.cpp" line="760"/> + <location filename="installationmanager.cpp" line="741"/> <source>no error</source> <translation>Kein Fehler</translation> </message> <message> - <location filename="installationmanager.cpp" line="763"/> + <location filename="installationmanager.cpp" line="744"/> <source>7z.dll not found</source> <translation>7z.dll nicht gefunden</translation> </message> <message> - <location filename="installationmanager.cpp" line="766"/> + <location filename="installationmanager.cpp" line="747"/> <source>7z.dll isn't valid</source> <translation>7z.dll ist ungültig</translation> </message> <message> - <location filename="installationmanager.cpp" line="769"/> + <location filename="installationmanager.cpp" line="750"/> <source>archive not found</source> <translation>Archiv nicht gefunden</translation> </message> <message> - <location filename="installationmanager.cpp" line="775"/> + <location filename="installationmanager.cpp" line="756"/> <source>unsupported archive type</source> <translation>Archivtyp wird nicht unterstützt</translation> </message> <message> - <location filename="installationmanager.cpp" line="778"/> + <location filename="installationmanager.cpp" line="759"/> <source>internal library error</source> <translation>Interner Fehler in der Bibliothek</translation> </message> <message> - <location filename="installationmanager.cpp" line="781"/> + <location filename="installationmanager.cpp" line="762"/> <source>archive invalid</source> <translation>Ungültiges Archiv</translation> </message> <message> - <location filename="installationmanager.cpp" line="785"/> + <location filename="installationmanager.cpp" line="766"/> <source>unknown archive error</source> <translation>Unbekannter Fehler im Archiv</translation> </message> @@ -1306,12 +1324,12 @@ p, li { white-space: pre-wrap; } <context> <name>MOApplication</name> <message> - <location filename="moapplication.cpp" line="60"/> + <location filename="moapplication.cpp" line="68"/> <source>an error occured: %1</source> <translation type="unfinished">ein Fehler ist aufgetreten: %1</translation> </message> <message> - <location filename="moapplication.cpp" line="65"/> + <location filename="moapplication.cpp" line="73"/> <source>an error occured</source> <translation type="unfinished">ein Fehler ist aufgetreten</translation> </message> @@ -1387,7 +1405,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="mainwindow.ui" line="405"/> <location filename="mainwindow.ui" line="722"/> - <location filename="mainwindow.ui" line="1027"/> + <location filename="mainwindow.ui" line="1035"/> <source>Namefilter</source> <translation type="unfinished"></translation> </message> @@ -1517,67 +1535,66 @@ BSAs checked here are loaded in such a way that your installation order is obeye <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="794"/> - <location filename="mainwindow.ui" line="868"/> + <location filename="mainwindow.ui" line="800"/> + <location filename="mainwindow.ui" line="869"/> <source>File</source> <translation type="unfinished">Datei</translation> </message> <message> - <location filename="mainwindow.ui" line="799"/> - <location filename="mainwindow.ui" line="873"/> - <source>Mod</source> - <translation type="unfinished">Mod</translation> + <location filename="mainwindow.ui" line="808"/> + <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="807"/> - <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="unfinished"></translation> + <location filename="mainwindow.ui" line="874"/> + <source>Mod</source> + <translation type="unfinished">Mod</translation> </message> <message> - <location filename="mainwindow.ui" line="818"/> + <location filename="mainwindow.ui" line="819"/> <source>Data</source> <translation type="unfinished">Data</translation> </message> <message> - <location filename="mainwindow.ui" line="836"/> + <location filename="mainwindow.ui" line="837"/> <source>refresh data-directory overview</source> <translation type="unfinished">Data-Verzeichnis übersicht neu laden</translation> </message> <message> - <location filename="mainwindow.ui" line="839"/> + <location filename="mainwindow.ui" line="840"/> <source>Refresh the overview. This may take a moment.</source> <translation type="unfinished">Lädt die Übersicht neu. Dies kann einen Augenblick dauern.</translation> </message> <message> - <location filename="mainwindow.ui" line="842"/> - <location filename="mainwindow.cpp" line="3328"/> - <location filename="mainwindow.cpp" line="4059"/> + <location filename="mainwindow.ui" line="843"/> + <location filename="mainwindow.cpp" line="3612"/> + <location filename="mainwindow.cpp" line="4360"/> <source>Refresh</source> <translation type="unfinished">Neu laden</translation> </message> <message> - <location filename="mainwindow.ui" line="858"/> + <location filename="mainwindow.ui" line="859"/> <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> </message> <message> - <location filename="mainwindow.ui" line="883"/> - <location filename="mainwindow.ui" line="886"/> + <location filename="mainwindow.ui" line="884"/> + <location filename="mainwindow.ui" line="887"/> <source>Filter the above list so that only conflicts are displayed.</source> <translation type="unfinished">Obere Liste filtern um nur Konflikte anzuzeigen.</translation> </message> <message> - <location filename="mainwindow.ui" line="889"/> + <location filename="mainwindow.ui" line="890"/> <source>Show only conflicts</source> <translation type="unfinished">Nur Konflikte anzeigen</translation> </message> <message> - <location filename="mainwindow.ui" line="897"/> + <location filename="mainwindow.ui" line="898"/> <source>Saves</source> <translation type="unfinished">Spielstände</translation> </message> <message> - <location filename="mainwindow.ui" line="921"/> + <location filename="mainwindow.ui" line="922"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1594,155 +1611,160 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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="935"/> + <location filename="mainwindow.ui" line="936"/> <source>Downloads</source> <translation type="unfinished">Downloads</translation> </message> <message> - <location filename="mainwindow.ui" line="967"/> + <location filename="mainwindow.ui" line="968"/> <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> </message> <message> - <location filename="mainwindow.ui" line="1020"/> + <location filename="mainwindow.ui" line="1021"/> <source>Compact</source> <translation type="unfinished">Kompakt</translation> </message> <message> - <location filename="mainwindow.ui" line="1051"/> + <location filename="mainwindow.ui" line="1028"/> + <source>Show Hidden</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1059"/> <source>Tool Bar</source> <translation type="unfinished">Werkzeugleiste</translation> </message> <message> - <location filename="mainwindow.ui" line="1093"/> + <location filename="mainwindow.ui" line="1101"/> <source>Install Mod</source> <translation type="unfinished">Mod installieren</translation> </message> <message> - <location filename="mainwindow.ui" line="1096"/> + <location filename="mainwindow.ui" line="1104"/> <source>Install &Mod</source> <translation type="unfinished">&Mod installieren</translation> </message> <message> - <location filename="mainwindow.ui" line="1099"/> + <location filename="mainwindow.ui" line="1107"/> <source>Install a new mod from an archive</source> <translation type="unfinished">Installiert eine Mod aus einem Archiv</translation> </message> <message> - <location filename="mainwindow.ui" line="1102"/> + <location filename="mainwindow.ui" line="1110"/> <source>Ctrl+M</source> <translation type="unfinished">Ctrl+M</translation> </message> <message> - <location filename="mainwindow.ui" line="1111"/> + <location filename="mainwindow.ui" line="1119"/> <source>Profiles</source> <translation type="unfinished">Profile</translation> </message> <message> - <location filename="mainwindow.ui" line="1114"/> + <location filename="mainwindow.ui" line="1122"/> <source>&Profiles</source> <translation type="unfinished">&Profile</translation> </message> <message> - <location filename="mainwindow.ui" line="1117"/> + <location filename="mainwindow.ui" line="1125"/> <source>Configure Profiles</source> <translation type="unfinished">Profile konfigurieren</translation> </message> <message> - <location filename="mainwindow.ui" line="1120"/> + <location filename="mainwindow.ui" line="1128"/> <source>Ctrl+P</source> <translation type="unfinished">Ctrl+P</translation> </message> <message> - <location filename="mainwindow.ui" line="1129"/> + <location filename="mainwindow.ui" line="1137"/> <source>Executables</source> <translation type="unfinished">Programme</translation> </message> <message> - <location filename="mainwindow.ui" line="1132"/> + <location filename="mainwindow.ui" line="1140"/> <source>&Executables</source> <translation type="unfinished">Programm&e</translation> </message> <message> - <location filename="mainwindow.ui" line="1135"/> + <location filename="mainwindow.ui" line="1143"/> <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> </message> <message> - <location filename="mainwindow.ui" line="1138"/> + <location filename="mainwindow.ui" line="1146"/> <source>Ctrl+E</source> <translation type="unfinished">Ctrl+E</translation> </message> <message> - <location filename="mainwindow.ui" line="1147"/> - <location filename="mainwindow.ui" line="1153"/> + <location filename="mainwindow.ui" line="1155"/> + <location filename="mainwindow.ui" line="1161"/> <source>Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1150"/> + <location filename="mainwindow.ui" line="1158"/> <source>&Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1156"/> + <location filename="mainwindow.ui" line="1164"/> <source>Ctrl+I</source> <translation type="unfinished">Ctrl+I</translation> </message> <message> - <location filename="mainwindow.ui" line="1165"/> + <location filename="mainwindow.ui" line="1173"/> <source>Settings</source> <translation type="unfinished">Einstellungen</translation> </message> <message> - <location filename="mainwindow.ui" line="1168"/> + <location filename="mainwindow.ui" line="1176"/> <source>&Settings</source> <translation type="unfinished">Ein&stellungen</translation> </message> <message> - <location filename="mainwindow.ui" line="1171"/> + <location filename="mainwindow.ui" line="1179"/> <source>Configure settings and workarounds</source> <translation type="unfinished">Einstellungen und Workarounds verwalten</translation> </message> <message> - <location filename="mainwindow.ui" line="1174"/> + <location filename="mainwindow.ui" line="1182"/> <source>Ctrl+S</source> <translation type="unfinished">Ctrl+S</translation> </message> <message> - <location filename="mainwindow.ui" line="1183"/> + <location filename="mainwindow.ui" line="1191"/> <source>Nexus</source> <translation type="unfinished">Nexus</translation> </message> <message> - <location filename="mainwindow.ui" line="1186"/> + <location filename="mainwindow.ui" line="1194"/> <source>Search nexus network for more mods</source> <translation type="unfinished">Durchsuche die passende Seite des Nexus-Netzwerks nach weiteren Mods</translation> </message> <message> - <location filename="mainwindow.ui" line="1189"/> + <location filename="mainwindow.ui" line="1197"/> <source>Ctrl+N</source> <translation type="unfinished">Ctrl+N</translation> </message> <message> - <location filename="mainwindow.ui" line="1201"/> - <location filename="mainwindow.cpp" line="4007"/> + <location filename="mainwindow.ui" line="1209"/> + <location filename="mainwindow.cpp" line="4308"/> <source>Update</source> <translation type="unfinished">Aktualisierung</translation> </message> <message> - <location filename="mainwindow.ui" line="1204"/> + <location filename="mainwindow.ui" line="1212"/> <source>Mod Organizer is up-to-date</source> <translation type="unfinished">Mod Organizer ist auf dem neuesten Stand</translation> </message> <message> - <location filename="mainwindow.ui" line="1216"/> - <location filename="mainwindow.cpp" line="478"/> + <location filename="mainwindow.ui" line="1224"/> + <location filename="mainwindow.cpp" line="496"/> <source>No Problems</source> <translation type="unfinished">Keine Probleme</translation> </message> <message> - <location filename="mainwindow.ui" line="1219"/> + <location filename="mainwindow.ui" line="1227"/> <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! @@ -1751,54 +1773,54 @@ Right now this has very limited functionality</source> Diese Funktion ist noch in arbeit und ist sehr eingeschränkt.</translation> </message> <message> - <location filename="mainwindow.ui" line="1231"/> - <location filename="mainwindow.ui" line="1234"/> + <location filename="mainwindow.ui" line="1239"/> + <location filename="mainwindow.ui" line="1242"/> <source>Help</source> <translation type="unfinished">Hilfe</translation> </message> <message> - <location filename="mainwindow.ui" line="1237"/> + <location filename="mainwindow.ui" line="1245"/> <source>Ctrl+H</source> <translation type="unfinished">Ctrl+H</translation> </message> <message> - <location filename="mainwindow.ui" line="1246"/> + <location filename="mainwindow.ui" line="1254"/> <source>Endorse MO</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1249"/> - <location filename="mainwindow.cpp" line="4087"/> + <location filename="mainwindow.ui" line="1257"/> + <location filename="mainwindow.cpp" line="4389"/> <source>Endorse Mod Organizer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="204"/> + <location filename="mainwindow.cpp" line="214"/> <source>Toolbar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="205"/> + <location filename="mainwindow.cpp" line="215"/> <source>Desktop</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="206"/> + <location filename="mainwindow.cpp" line="216"/> <source>Start Menu</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="475"/> + <location filename="mainwindow.cpp" line="492"/> <source>Problems</source> <translation type="unfinished">Probleme</translation> </message> <message> - <location filename="mainwindow.cpp" line="476"/> + <location filename="mainwindow.cpp" line="493"/> <source>There are potential problems with your setup</source> <translation type="unfinished">Es bestehen möglicherweise Probleme mit Ihrer Konfiguration</translation> </message> <message> - <location filename="mainwindow.cpp" line="479"/> + <location filename="mainwindow.cpp" line="497"/> <source>Everything seems to be in order</source> <translation type="unfinished">Alles in bester Ordnung</translation> </message> @@ -1815,22 +1837,22 @@ Diese Funktion ist noch in arbeit und ist sehr eingeschränkt.</translation> <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> - <location filename="mainwindow.cpp" line="531"/> + <location filename="mainwindow.cpp" line="549"/> <source>Help on UI</source> <translation type="unfinished">Hilfe zur Oberfläche</translation> </message> <message> - <location filename="mainwindow.cpp" line="535"/> + <location filename="mainwindow.cpp" line="553"/> <source>Documentation Wiki</source> <translation type="unfinished">Wiki Dokumentation</translation> </message> <message> - <location filename="mainwindow.cpp" line="539"/> + <location filename="mainwindow.cpp" line="557"/> <source>Report Issue</source> <translation type="unfinished">Fehler melden</translation> </message> <message> - <location filename="mainwindow.cpp" line="543"/> + <location filename="mainwindow.cpp" line="561"/> <source>Tutorials</source> <translation type="unfinished"></translation> </message> @@ -1839,374 +1861,431 @@ Diese Funktion ist noch in arbeit und ist sehr eingeschränkt.</translation> <translation type="obsolete">Ladereihenfolge konnte nicht gespeichert werden</translation> </message> <message> - <location filename="mainwindow.cpp" line="670"/> + <location filename="mainwindow.cpp" line="688"/> <source>failed to save load order: %1</source> <translation type="unfinished">Reihenfolge konnt nicht gespeichert werden: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="600"/> + <location filename="mainwindow.cpp" line="618"/> <source>failed to save archives order, do you have write access to "%1"?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="687"/> + <location filename="mainwindow.cpp" line="705"/> <source>Name</source> <translation type="unfinished">Name</translation> </message> <message> - <location filename="mainwindow.cpp" line="688"/> + <location filename="mainwindow.cpp" line="706"/> <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> </message> <message> - <location filename="mainwindow.cpp" line="696"/> + <location filename="mainwindow.cpp" line="714"/> <source>failed to create profile: %1</source> <translation type="unfinished">Erstellen des Profils fehlgeschlagen: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="739"/> + <location filename="mainwindow.cpp" line="757"/> <source>Show tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="740"/> + <location filename="mainwindow.cpp" line="758"/> <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> </message> <message> - <location filename="mainwindow.cpp" line="769"/> + <location filename="mainwindow.cpp" line="787"/> <source>Downloads in progress</source> <translation type="unfinished">Download in Bearbeitung</translation> </message> <message> - <location filename="mainwindow.cpp" line="770"/> + <location filename="mainwindow.cpp" line="788"/> <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> </message> <message> - <location filename="mainwindow.cpp" line="816"/> + <location filename="mainwindow.cpp" line="834"/> <source>failed to read savegame: %1</source> <translation type="unfinished">Spielstand konnte nicht gelesen werden: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="941"/> + <location filename="mainwindow.cpp" line="958"/> <source>Plugin "%1" failed: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1183"/> + <location filename="mainwindow.cpp" line="1064"/> + <source>Plugin error</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1065"/> + <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="1249"/> <source>Failed to start "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1185"/> + <location filename="mainwindow.cpp" line="1251"/> <source>Waiting</source> <translation type="unfinished">Warte</translation> </message> <message> - <location filename="mainwindow.cpp" line="1185"/> + <location filename="mainwindow.cpp" line="1251"/> <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> - <location filename="mainwindow.cpp" line="1197"/> + <location filename="mainwindow.cpp" line="1263"/> <source>"%1" not found</source> <translation type="unfinished">"%1" nicht gefunden</translation> </message> <message> - <location filename="mainwindow.cpp" line="1211"/> + <location filename="mainwindow.cpp" line="1277"/> <source>Start Steam?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1212"/> + <location filename="mainwindow.cpp" line="1278"/> <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> </message> <message> - <location filename="mainwindow.cpp" line="1426"/> + <location filename="mainwindow.cpp" line="1492"/> <source>Also in: <br></source> <translation type="unfinished">Auch in: <br></translation> </message> <message> - <location filename="mainwindow.cpp" line="1437"/> + <location filename="mainwindow.cpp" line="1503"/> <source>No conflict</source> <translation type="unfinished">Keine Konflikte</translation> </message> <message> - <location filename="mainwindow.cpp" line="1552"/> + <location filename="mainwindow.cpp" line="1620"/> <source><Edit...></source> <translation type="unfinished"><Bearbeiten...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1771"/> + <location filename="mainwindow.cpp" line="1704"/> + <source>Failed to refresh list of esps: %s</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1844"/> <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> </message> <message> - <location filename="mainwindow.cpp" line="1778"/> + <location filename="mainwindow.cpp" line="1851"/> <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> </message> <message> - <location filename="mainwindow.cpp" line="1833"/> + <location filename="mainwindow.cpp" line="1906"/> <source>Activating Network Proxy</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1962"/> - <location filename="mainwindow.cpp" line="3755"/> + <location filename="mainwindow.cpp" line="2037"/> + <location filename="mainwindow.cpp" line="4056"/> <source>Installation successful</source> <translation type="unfinished">Installation erfolgreich</translation> </message> <message> - <location filename="mainwindow.cpp" line="1973"/> - <location filename="mainwindow.cpp" line="3768"/> + <location filename="mainwindow.cpp" line="2048"/> + <location filename="mainwindow.cpp" line="4069"/> <source>Configure Mod</source> <translation type="unfinished">Mod konfigurieren</translation> </message> <message> - <location filename="mainwindow.cpp" line="1974"/> - <location filename="mainwindow.cpp" line="3769"/> + <location filename="mainwindow.cpp" line="2049"/> + <location filename="mainwindow.cpp" line="4070"/> <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> </message> <message> - <location filename="mainwindow.cpp" line="1980"/> - <location filename="mainwindow.cpp" line="3775"/> + <location filename="mainwindow.cpp" line="2055"/> + <location filename="mainwindow.cpp" line="4076"/> <source>mod "%1" not found</source> <translation type="unfinished">mod "%1" nicht gefunden</translation> </message> <message> - <location filename="mainwindow.cpp" line="1983"/> - <location filename="mainwindow.cpp" line="3781"/> + <location filename="mainwindow.cpp" line="2058"/> + <location filename="mainwindow.cpp" line="4082"/> <source>Installation cancelled</source> <translation type="unfinished">Installation abgebrochen</translation> </message> <message> - <location filename="mainwindow.cpp" line="1983"/> - <location filename="mainwindow.cpp" line="3781"/> + <location filename="mainwindow.cpp" line="2058"/> + <location filename="mainwindow.cpp" line="4082"/> <source>The mod was not installed completely.</source> <translation type="unfinished">Die mod wurde nicht erfolgreich installiert.</translation> </message> <message> - <location filename="mainwindow.cpp" line="2018"/> + <location filename="mainwindow.cpp" line="2207"/> <source>Some plugins could not be loaded</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2021"/> - <location filename="mainwindow.cpp" line="2038"/> - <source>Description missing</source> + <location filename="mainwindow.cpp" line="2210"/> + <source>Too many esps and esms enabled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2030"/> - <source>The following Plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:<ul></source> + <location filename="mainwindow.cpp" line="2213"/> + <location filename="mainwindow.cpp" line="2234"/> + <source>Description missing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2060"/> + <location filename="mainwindow.cpp" line="2256"/> <source>Choose Mod</source> <translation type="unfinished">Mod wählen</translation> </message> <message> - <location filename="mainwindow.cpp" line="2061"/> + <location filename="mainwindow.cpp" line="2257"/> <source>Mod Archive</source> <translation type="unfinished">Mod Archiv</translation> </message> <message> - <location filename="mainwindow.cpp" line="2214"/> + <location filename="mainwindow.cpp" line="2410"/> <source>Start Tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2215"/> + <location filename="mainwindow.cpp" line="2411"/> <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> </message> <message> - <location filename="mainwindow.cpp" line="2360"/> - <location filename="mainwindow.cpp" line="3683"/> + <location filename="mainwindow.cpp" line="2566"/> + <location filename="mainwindow.cpp" line="3984"/> <source>Download started</source> <translation type="unfinished">Download gestartet</translation> </message> <message> - <location filename="mainwindow.cpp" line="2391"/> + <location filename="mainwindow.cpp" line="2597"/> <source>failed to update mod list: %1</source> <translation type="unfinished">Aktualisieren der Modliste fehlgeschlagen: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2418"/> + <location filename="mainwindow.cpp" line="2624"/> <source>failed to spawn notepad.exe: %1</source> <translation type="unfinished">notepad.exe konnte nicht aufgerufen werden: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2459"/> + <location filename="mainwindow.cpp" line="2665"/> <source>failed to open %1</source> <translation type="unfinished">%1 konnte nicht geöffnet werden</translation> </message> <message> - <location filename="mainwindow.cpp" line="2537"/> + <location filename="mainwindow.cpp" line="2743"/> <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="2676"/> + <location filename="mainwindow.cpp" line="2906"/> <source>Multiple esps activated, please check that they don't conflict.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3005"/> - <location filename="mainwindow.cpp" line="3339"/> + <location filename="mainwindow.cpp" line="3251"/> + <location filename="mainwindow.cpp" line="3623"/> <source>Create Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3006"/> + <location filename="mainwindow.cpp" line="3252"/> <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="3015"/> + <location filename="mainwindow.cpp" line="3261"/> <source>A mod with this name already exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3410"/> + <location filename="mainwindow.cpp" line="3444"/> + <source>Continue?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3445"/> + <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="3465"/> + <source>Sorry</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3466"/> + <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="3710"/> <source><All></source> <translation type="unfinished"><Alle></translation> </message> <message> - <location filename="mainwindow.cpp" line="2589"/> + <location filename="mainwindow.cpp" line="2818"/> <source><Checked></source> <translation type="unfinished"><Markierte></translation> </message> <message> - <location filename="mainwindow.cpp" line="943"/> + <location filename="mainwindow.cpp" line="960"/> <source>Plugin "%1" failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1007"/> + <location filename="mainwindow.cpp" line="1026"/> <source>failed to init plugin %1: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2590"/> + <location filename="mainwindow.cpp" line="2222"/> + <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="2230"/> + <source>The game doesn't allow more than 256 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="2769"/> + <source>Failed to move "%1" from mod "%2" to "%3": %4</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2819"/> <source><Unchecked></source> <translation type="unfinished"><Nicht markierte></translation> </message> <message> - <location filename="mainwindow.cpp" line="2591"/> + <location filename="mainwindow.cpp" line="2820"/> <source><Update></source> <translation type="unfinished"><Update></translation> </message> <message> - <location filename="mainwindow.cpp" line="2592"/> + <location filename="mainwindow.cpp" line="2821"/> <source><No category></source> <translation type="unfinished"><Ohne Kategorie></translation> </message> <message> - <location filename="mainwindow.cpp" line="2593"/> + <location filename="mainwindow.cpp" line="2822"/> <source><Conflicted></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2626"/> + <location filename="mainwindow.cpp" line="2823"/> + <source><Not Endorsed></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2856"/> <source>failed to rename mod: %1</source> <translation type="unfinished">konnte die Mod nicht umbenennen: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2639"/> + <location filename="mainwindow.cpp" line="2869"/> <source>Overwrite?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2640"/> + <location filename="mainwindow.cpp" line="2870"/> <source>This will replace the existing mod "%1". Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2643"/> + <location filename="mainwindow.cpp" line="2873"/> <source>failed to remove mod "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2647"/> - <location filename="mainwindow.cpp" line="3953"/> - <location filename="mainwindow.cpp" line="3977"/> + <location filename="mainwindow.cpp" line="2877"/> + <location filename="mainwindow.cpp" line="4254"/> + <location filename="mainwindow.cpp" line="4278"/> <source>failed to rename "%1" to "%2"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2702"/> - <location filename="mainwindow.cpp" line="3243"/> - <location filename="mainwindow.cpp" line="3252"/> + <location filename="mainwindow.cpp" line="2932"/> + <location filename="mainwindow.cpp" line="3518"/> + <location filename="mainwindow.cpp" line="3526"/> <source>Confirm</source> <translation type="unfinished">Bestätigen</translation> </message> <message> - <location filename="mainwindow.cpp" line="2703"/> + <location filename="mainwindow.cpp" line="2933"/> <source>Remove the following mods?<br><ul>%1</ul></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2714"/> + <location filename="mainwindow.cpp" line="2944"/> <source>failed to remove mod: %1</source> <translation type="unfinished">konnte die mod nicht entfernen: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2744"/> - <location filename="mainwindow.cpp" line="2747"/> + <location filename="mainwindow.cpp" line="2979"/> + <location filename="mainwindow.cpp" line="2982"/> <source>Failed</source> <translation type="unfinished">Fehlgeschlagen</translation> </message> <message> - <location filename="mainwindow.cpp" line="2744"/> + <location filename="mainwindow.cpp" line="2979"/> <source>Installation file no longer exists</source> <translation type="unfinished">Installationsdatei existiert nicht mehr</translation> </message> <message> - <location filename="mainwindow.cpp" line="2748"/> + <location filename="mainwindow.cpp" line="2983"/> <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> </message> <message> - <location filename="mainwindow.cpp" line="2763"/> - <location filename="mainwindow.cpp" line="2790"/> + <location filename="mainwindow.cpp" line="2998"/> + <location filename="mainwindow.cpp" line="3025"/> <source>You need to be logged in with Nexus to endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2906"/> - <location filename="mainwindow.cpp" line="4335"/> + <location filename="mainwindow.cpp" line="3154"/> + <location filename="mainwindow.cpp" line="4638"/> <source>Extract BSA</source> <translation type="unfinished">BSA extrahieren</translation> </message> <message> - <location filename="mainwindow.cpp" line="2907"/> + <location filename="mainwindow.cpp" line="3155"/> <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> </message> <message> - <location filename="mainwindow.cpp" line="2917"/> - <location filename="mainwindow.cpp" line="4292"/> - <location filename="mainwindow.cpp" line="4343"/> + <location filename="mainwindow.cpp" line="3165"/> + <location filename="mainwindow.cpp" line="4595"/> + <location filename="mainwindow.cpp" line="4646"/> <source>failed to read %1: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2930"/> - <location filename="mainwindow.cpp" line="4354"/> + <location filename="mainwindow.cpp" line="3178"/> + <location filename="mainwindow.cpp" line="4657"/> <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> </message> <message> - <location filename="mainwindow.cpp" line="2964"/> + <location filename="mainwindow.cpp" line="3212"/> <source>Nexus ID for this Mod is unknown</source> <translation type="unfinished">Nexus ID für diese Mod unbekannt</translation> </message> @@ -2219,371 +2298,391 @@ Please enter a name: </source> <translation type="obsolete">Priorität wählen</translation> </message> <message> - <location filename="mainwindow.cpp" line="3243"/> + <location filename="mainwindow.cpp" line="3518"/> <source>Really enable all visible mods?</source> <translation type="unfinished">Alle angezeigten Mods aktivieren?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3252"/> + <location filename="mainwindow.cpp" line="3526"/> <source>Really disable all visible mods?</source> <translation type="unfinished">Alle angezeigten Mods deaktivieren?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3261"/> + <location filename="mainwindow.cpp" line="3534"/> <source>Choose what to export</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3263"/> + <location filename="mainwindow.cpp" line="3536"/> <source>Everything</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3263"/> + <location filename="mainwindow.cpp" line="3536"/> <source>All installed mods are included in the list</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3264"/> + <location filename="mainwindow.cpp" line="3537"/> <source>Active Mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3264"/> + <location filename="mainwindow.cpp" line="3537"/> <source>Only active (checked) mods from your current profile are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3265"/> + <location filename="mainwindow.cpp" line="3538"/> <source>Visible</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3265"/> + <location filename="mainwindow.cpp" line="3538"/> <source>All mods visible in the mod list are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3308"/> + <location filename="mainwindow.cpp" line="3581"/> <source>export failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3321"/> + <location filename="mainwindow.cpp" line="3605"/> <source>Install Mod...</source> <translation type="unfinished">Mod installieren...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3323"/> + <location filename="mainwindow.cpp" line="3607"/> <source>Enable all visible</source> <translation type="unfinished">Alle sichtbaren aktvieren</translation> </message> <message> - <location filename="mainwindow.cpp" line="3324"/> + <location filename="mainwindow.cpp" line="3608"/> <source>Disable all visible</source> <translation type="unfinished">Alle sichtbaren deaktvieren</translation> </message> <message> - <location filename="mainwindow.cpp" line="3326"/> + <location filename="mainwindow.cpp" line="3610"/> <source>Check all for update</source> <translation type="unfinished">Alle auf Aktualisierungen überprüfen</translation> </message> <message> - <location filename="mainwindow.cpp" line="3330"/> + <location filename="mainwindow.cpp" line="3614"/> <source>Export to csv...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3338"/> + <location filename="mainwindow.cpp" line="3622"/> <source>Sync to Mods...</source> <translation type="unfinished">Mods synchronisieren...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3342"/> + <location filename="mainwindow.cpp" line="3626"/> <source>Restore Backup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3343"/> + <location filename="mainwindow.cpp" line="3627"/> <source>Remove Backup...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3345"/> + <location filename="mainwindow.cpp" line="3630"/> <source>Set Category</source> <translation type="unfinished">Kategorie festlegen</translation> </message> <message> - <location filename="mainwindow.cpp" line="3349"/> + <location filename="mainwindow.cpp" line="3635"/> <source>Primary Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3353"/> + <location filename="mainwindow.cpp" line="3642"/> + <source>Change versioning scheme</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3646"/> + <source>Un-ignore update</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3648"/> + <source>Ignore update</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3653"/> <source>Rename Mod...</source> <translation type="unfinished">Mod umbenennen...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3354"/> + <location filename="mainwindow.cpp" line="3654"/> <source>Remove Mod...</source> <translation type="unfinished">Mod entfernen...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3355"/> + <location filename="mainwindow.cpp" line="3655"/> <source>Reinstall Mod</source> <translation type="unfinished">Mod neu installieren</translation> </message> <message> - <location filename="mainwindow.cpp" line="3358"/> + <location filename="mainwindow.cpp" line="3658"/> <source>Un-Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3361"/> - <location filename="mainwindow.cpp" line="3365"/> + <location filename="mainwindow.cpp" line="3661"/> + <location filename="mainwindow.cpp" line="3665"/> <source>Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3362"/> + <location filename="mainwindow.cpp" line="3662"/> <source>Won't endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3368"/> + <location filename="mainwindow.cpp" line="3668"/> <source>Endorsement state unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3375"/> + <location filename="mainwindow.cpp" line="3675"/> <source>Ignore missing data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3378"/> + <location filename="mainwindow.cpp" line="3678"/> <source>Visit on Nexus</source> <translation type="unfinished">Auf Nexus besuchen</translation> </message> <message> - <location filename="mainwindow.cpp" line="3379"/> + <location filename="mainwindow.cpp" line="3679"/> <source>Open in explorer</source> <translation type="unfinished">In Explorer öffnen</translation> </message> <message> - <location filename="mainwindow.cpp" line="3382"/> + <location filename="mainwindow.cpp" line="3682"/> <source>Information...</source> <translation type="unfinished">Informationen...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3388"/> - <location filename="mainwindow.cpp" line="4514"/> + <location filename="mainwindow.cpp" line="3688"/> + <location filename="mainwindow.cpp" line="4842"/> <source>Exception: </source> <translation type="unfinished">Ausnahme:</translation> </message> <message> - <location filename="mainwindow.cpp" line="3390"/> - <location filename="mainwindow.cpp" line="4516"/> + <location filename="mainwindow.cpp" line="3690"/> + <location filename="mainwindow.cpp" line="4844"/> <source>Unknown exception</source> <translation type="unfinished">Unbekannte Ausnahme</translation> </message> <message> - <location filename="mainwindow.cpp" line="3412"/> + <location filename="mainwindow.cpp" line="3712"/> <source><Multiple></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3524"/> + <location filename="mainwindow.cpp" line="3824"/> <source>Fix Mods...</source> <translation type="unfinished">Mods reparieren...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3548"/> - <location filename="mainwindow.cpp" line="3579"/> + <location filename="mainwindow.cpp" line="3848"/> + <location filename="mainwindow.cpp" line="3879"/> <source>failed to remove %1</source> <translation type="unfinished">%1 konnte nicht entfernt werden</translation> </message> <message> - <location filename="mainwindow.cpp" line="3563"/> - <location filename="mainwindow.cpp" line="3594"/> + <location filename="mainwindow.cpp" line="3863"/> + <location filename="mainwindow.cpp" line="3894"/> <source>failed to create %1</source> <translation type="unfinished">%1 konnte nicht erstellt werden</translation> </message> <message> - <location filename="mainwindow.cpp" line="3615"/> + <location filename="mainwindow.cpp" line="3916"/> <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> </message> <message> - <location filename="mainwindow.cpp" line="3686"/> + <location filename="mainwindow.cpp" line="3987"/> <source>Download failed</source> <translation type="unfinished">Download fehlgeschlagen</translation> </message> <message> - <location filename="mainwindow.cpp" line="3830"/> + <location filename="mainwindow.cpp" line="4131"/> <source>failed to write to file %1</source> <translation type="unfinished">Speichern in Datei "%1" fehlgeschlagen</translation> </message> <message> - <location filename="mainwindow.cpp" line="3836"/> + <location filename="mainwindow.cpp" line="4137"/> <source>%1 written</source> <translation type="unfinished">"%1" gespeichert</translation> </message> <message> - <location filename="mainwindow.cpp" line="3875"/> + <location filename="mainwindow.cpp" line="4176"/> <source>Select binary</source> <translation type="unfinished">Binary wählen</translation> </message> <message> - <location filename="mainwindow.cpp" line="3875"/> + <location filename="mainwindow.cpp" line="4176"/> <source>Binary</source> <translation type="unfinished">Ausführbare Datei</translation> </message> <message> - <location filename="mainwindow.cpp" line="3901"/> + <location filename="mainwindow.cpp" line="4202"/> <source>Enter Name</source> <translation type="unfinished">Namen eingeben</translation> </message> <message> - <location filename="mainwindow.cpp" line="3902"/> + <location filename="mainwindow.cpp" line="4203"/> <source>Please enter a name for the executable</source> <translation type="unfinished">Bitte geben Sie einen Namen für die Anwendungsdatei ein</translation> </message> <message> - <location filename="mainwindow.cpp" line="3913"/> + <location filename="mainwindow.cpp" line="4214"/> <source>Not an executable</source> <translation type="unfinished">Datei ist nicht ausführbar</translation> </message> <message> - <location filename="mainwindow.cpp" line="3913"/> + <location filename="mainwindow.cpp" line="4214"/> <source>This is not a recognized executable.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3938"/> - <location filename="mainwindow.cpp" line="3963"/> + <location filename="mainwindow.cpp" line="4239"/> + <location filename="mainwindow.cpp" line="4264"/> <source>Replace file?</source> <translation type="unfinished">Datei ersetzen?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3938"/> + <location filename="mainwindow.cpp" line="4239"/> <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> </message> <message> - <location filename="mainwindow.cpp" line="3941"/> - <location filename="mainwindow.cpp" line="3966"/> + <location filename="mainwindow.cpp" line="4242"/> + <location filename="mainwindow.cpp" line="4267"/> <source>File operation failed</source> <translation type="unfinished">Dateioperation fehlgeschlagen</translation> </message> <message> - <location filename="mainwindow.cpp" line="3941"/> - <location filename="mainwindow.cpp" line="3966"/> + <location filename="mainwindow.cpp" line="4242"/> + <location filename="mainwindow.cpp" line="4267"/> <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> </message> <message> - <location filename="mainwindow.cpp" line="3963"/> + <location filename="mainwindow.cpp" line="4264"/> <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> </message> <message> - <location filename="mainwindow.cpp" line="4009"/> + <location filename="mainwindow.cpp" line="4310"/> <source>Update available</source> <translation type="unfinished">Aktualisierung verfügbar</translation> </message> <message> - <location filename="mainwindow.cpp" line="4046"/> + <location filename="mainwindow.cpp" line="4347"/> <source>Open/Execute</source> <translation type="unfinished">Öffnen/Ausführen</translation> </message> <message> - <location filename="mainwindow.cpp" line="4047"/> + <location filename="mainwindow.cpp" line="4348"/> <source>Add as Executable</source> <translation type="unfinished">Als Anwendung hinzufügen</translation> </message> <message> - <location filename="mainwindow.cpp" line="4051"/> + <location filename="mainwindow.cpp" line="4352"/> <source>Un-Hide</source> <translation type="unfinished">Sichtbar machen</translation> </message> <message> - <location filename="mainwindow.cpp" line="4053"/> + <location filename="mainwindow.cpp" line="4354"/> <source>Hide</source> <translation type="unfinished">Verstecken</translation> </message> <message> - <location filename="mainwindow.cpp" line="4058"/> + <location filename="mainwindow.cpp" line="4359"/> <source>Write To File...</source> <translation type="unfinished">In Datei speichern...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4088"/> + <location filename="mainwindow.cpp" line="4390"/> <source>Do you want to endorse Mod Organizer on %1 now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4505"/> + <location filename="mainwindow.cpp" line="4803"/> + <source>Remove</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4833"/> <source>Unlock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4508"/> + <location filename="mainwindow.cpp" line="4836"/> <source>Lock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4223"/> + <location filename="mainwindow.cpp" line="4526"/> <source>Request to Nexus failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4230"/> - <location filename="mainwindow.cpp" line="4247"/> + <location filename="mainwindow.cpp" line="4533"/> + <location filename="mainwindow.cpp" line="4550"/> <source>login successful</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4256"/> + <location filename="mainwindow.cpp" line="4559"/> <source>login failed: %1. Trying to download anyway</source> <translation type="unfinished">login fehlgeschlagen: %1. Der Download scheitert vermutlich</translation> </message> <message> - <location filename="mainwindow.cpp" line="4262"/> + <location filename="mainwindow.cpp" line="4565"/> <source>login failed: %1</source> <translation type="unfinished">login fehlgeschlagen: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4271"/> + <location filename="mainwindow.cpp" line="4574"/> <source>login failed: %1. You need to log-in with Nexus to update MO.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4304"/> + <location filename="mainwindow.cpp" line="4607"/> <source>Error</source> <translation type="unfinished">Fehler</translation> </message> <message> - <location filename="mainwindow.cpp" line="4304"/> + <location filename="mainwindow.cpp" line="4607"/> <source>failed to extract %1 (errorcode %2)</source> <translation type="unfinished">konnte "%1" nicht extrahieren (fehlercode %2)</translation> </message> <message> - <location filename="mainwindow.cpp" line="4399"/> + <location filename="mainwindow.cpp" line="4702"/> <source>Extract...</source> <translation type="unfinished">Extrahieren...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4449"/> + <location filename="mainwindow.cpp" line="4758"/> <source>Edit Categories...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4485"/> + <location filename="mainwindow.cpp" line="4813"/> <source>Enable all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4486"/> + <location filename="mainwindow.cpp" line="4814"/> <source>Disable all</source> <translation type="unfinished"></translation> </message> @@ -2613,7 +2712,7 @@ Please enter a name: </source> <context> <name>ModInfoBackup</name> <message> - <location filename="modinfo.cpp" line="784"/> + <location filename="modinfo.cpp" line="813"/> <source>This is the backup of a mod</source> <translation type="unfinished"></translation> </message> @@ -2656,57 +2755,55 @@ Please enter a name: </source> <translation>Eine Liste mit Textdateien im Modverzeichnis. Die Dateien werden üblicherweise dazu verwendet um das Verhalten und Parameter der mods zu konfigurieren.</translation> </message> <message> - <location filename="modinfodialog.ui" line="143"/> + <location filename="modinfodialog.ui" line="146"/> <source>Save changes to the file.</source> <translation>Änderungen an der Datei speichern.</translation> </message> <message> - <location filename="modinfodialog.ui" line="146"/> + <location filename="modinfodialog.ui" line="149"/> <source>Save changes to the file. This overwrites the original. There is no automatic backup!</source> <translation>Änderungen der Datei speichern. Dies überschreibt das Original - es gibt keine automatische Sicherung!</translation> </message> <message> <location filename="modinfodialog.ui" line="64"/> - <location filename="modinfodialog.ui" line="149"/> + <location filename="modinfodialog.ui" line="152"/> <source>Save</source> <translation>Speichern</translation> </message> <message> - <location filename="modinfodialog.ui" line="159"/> + <location filename="modinfodialog.ui" line="162"/> <source>Images</source> <translation>Bilder</translation> </message> <message> - <location filename="modinfodialog.ui" line="214"/> + <location filename="modinfodialog.ui" line="217"/> <source>Images located in the mod.</source> <translation>Bilder im Modverzeichnis.</translation> </message> <message> - <location filename="modinfodialog.ui" line="217"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" 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><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <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> </message> <message> - <location filename="modinfodialog.ui" line="254"/> - <location filename="modinfodialog.ui" line="277"/> + <location filename="modinfodialog.ui" line="244"/> + <location filename="modinfodialog.ui" line="263"/> <source>Optional ESPs</source> <translation>Optionale ESPs</translation> </message> <message> - <location filename="modinfodialog.ui" line="260"/> + <location filename="modinfodialog.ui" line="250"/> <source>List of esps and esms that can not be loaded by the game.</source> <translation>Liste mit ESP und ESM Dateien die vom Spiel nicht geladen werden können.</translation> </message> <message> - <location filename="modinfodialog.ui" line="263"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -2715,7 +2812,7 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">They usually contain optional functionality, see the readme.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Most mods do not have optional esps, so chances are good you are looking at an empty list.</span></p></body></html></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <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;"> @@ -2725,103 +2822,116 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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="292"/> + <location filename="modinfodialog.ui" line="220"/> + <source>This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="253"/> + <source>List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window. +They usually contain optional functionality, see the readme. + +Most mods do not have optional esps, so chances are good you are looking at an empty list.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="278"/> <source>Make the selected mod in the lower list unavailable.</source> <translation>Den unten ausgewählten Mod als nicht verfügbar markieren.</translation> </message> <message> - <location filename="modinfodialog.ui" line="295"/> + <location filename="modinfodialog.ui" line="281"/> <source>The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become "invisible" to the game. It can then no longer be activated.</source> <translation>Die in der unteren Liste ausgewählte ESP wird in ein Unterverzeichnis des Mods verschoben und so für das Spiel unsichtbar. Sie kann nicht mehr im Spiel aktiviert werden.</translation> </message> <message> - <location filename="modinfodialog.ui" line="321"/> + <location filename="modinfodialog.ui" line="307"/> <source>Move a file to the data directory.</source> <translation>Datei in das Datenverzeichnis verschieben.</translation> </message> <message> - <location filename="modinfodialog.ui" line="324"/> + <location filename="modinfodialog.ui" line="310"/> <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="359"/> + <location filename="modinfodialog.ui" line="345"/> <source>ESPs in the data directory and thus visible to the game.</source> <translation>ESPs im Datenverzeichnis und für das Spiel sichtbar.</translation> </message> <message> - <location filename="modinfodialog.ui" line="362"/> + <location filename="modinfodialog.ui" line="348"/> <source>These are the mod files that are in the (virtual) data directory of your game and will thus be selecteable in the esp list in the main window.</source> <translation>Dies Mod Dateien sind im (virtuellen) Datenverzeichnis des Spiels und somit in der ESP Liste des Hauptfenster auswählbar.</translation> </message> <message> - <location filename="modinfodialog.ui" line="369"/> + <location filename="modinfodialog.ui" line="355"/> <source>Available ESPs</source> <translation>Verfügbare ESPs</translation> </message> <message> - <location filename="modinfodialog.ui" line="377"/> + <location filename="modinfodialog.ui" line="363"/> <source>Conflicts</source> <translation>Konflikte</translation> </message> <message> - <location filename="modinfodialog.ui" line="385"/> + <location filename="modinfodialog.ui" line="371"/> <source>The following conflicted files are provided by this mod</source> <translation>Die folgenden konfliktbehafteten Dateien werden von dieser Mod bereitgestellt</translation> </message> <message> - <location filename="modinfodialog.ui" line="432"/> - <location filename="modinfodialog.ui" line="479"/> + <location filename="modinfodialog.ui" line="418"/> + <location filename="modinfodialog.ui" line="465"/> <source>File</source> <translation>Datei</translation> </message> <message> - <location filename="modinfodialog.ui" line="437"/> + <location filename="modinfodialog.ui" line="423"/> <source>Overwritten Mods</source> <translation>Überschriebene Mods</translation> </message> <message> - <location filename="modinfodialog.ui" line="447"/> + <location filename="modinfodialog.ui" line="433"/> <source>The following conflicted files are provided by other mods</source> <translation>Die folgenden konfliktbehafteten Dateien werden von anderen Mods bereitgestellt</translation> </message> <message> - <location filename="modinfodialog.ui" line="484"/> + <location filename="modinfodialog.ui" line="470"/> <source>Providing Mod</source> <translation>Bereitstellende Mod</translation> </message> <message> - <location filename="modinfodialog.ui" line="494"/> + <location filename="modinfodialog.ui" line="480"/> <source>Non-Conflicted files</source> <translation>Konfliktfreie Dateien</translation> </message> <message> - <location filename="modinfodialog.ui" line="514"/> + <location filename="modinfodialog.ui" line="500"/> <source>Categories</source> <translation>Kategorien</translation> </message> <message> - <location filename="modinfodialog.ui" line="537"/> + <location filename="modinfodialog.ui" line="523"/> <source>Primary Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="554"/> + <location filename="modinfodialog.ui" line="540"/> <source>Nexus Info</source> <translation>Nexus Info</translation> </message> <message> - <location filename="modinfodialog.ui" line="562"/> + <location filename="modinfodialog.ui" line="548"/> <source>Mod ID</source> <translation>Mod ID</translation> </message> <message> - <location filename="modinfodialog.ui" line="569"/> + <location filename="modinfodialog.ui" line="555"/> <source>Mod ID for this mod on Nexus.</source> <translation>ID dieser mod auf Nexus.</translation> </message> <message> - <location filename="modinfodialog.ui" line="572"/> + <location filename="modinfodialog.ui" line="558"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -2839,7 +2949,7 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">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="596"/> + <location filename="modinfodialog.ui" line="582"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -2852,27 +2962,27 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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="603"/> + <location filename="modinfodialog.ui" line="589"/> <source>Version</source> <translation>Version</translation> </message> <message> - <location filename="modinfodialog.ui" line="633"/> + <location filename="modinfodialog.ui" line="619"/> <source>Refresh</source> <translation type="unfinished">Neu laden</translation> </message> <message> - <location filename="modinfodialog.ui" line="636"/> + <location filename="modinfodialog.ui" line="622"/> <source>Refresh all information from Nexus.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="650"/> + <location filename="modinfodialog.ui" line="636"/> <source>Description</source> <translation>Beschreibung</translation> </message> <message> - <location filename="modinfodialog.ui" line="665"/> + <location filename="modinfodialog.ui" line="651"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -2886,12 +2996,12 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">about:blank</translation> </message> <message> - <location filename="modinfodialog.ui" line="701"/> + <location filename="modinfodialog.ui" line="687"/> <source>Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="715"/> + <location filename="modinfodialog.ui" line="701"/> <source>Notes</source> <translation type="unfinished"></translation> </message> @@ -2912,8 +3022,9 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Typ</translation> </message> <message> + <location filename="modinfodialog.cpp" line="1179"/> <source>Name</source> - <translation type="obsolete">Name</translation> + <translation type="unfinished">Name</translation> </message> <message> <source>Size (kB)</source> @@ -2932,17 +3043,17 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Schon ein "endorsement" vergeben?</translation> </message> <message> - <location filename="modinfodialog.ui" line="725"/> + <location filename="modinfodialog.ui" line="711"/> <source>Filetree</source> <translation>Verzeichnisbaum</translation> </message> <message> - <location filename="modinfodialog.ui" line="734"/> + <location filename="modinfodialog.ui" line="720"/> <source>A directory view of this mod</source> <translation>Verzeichnisansicht des Mods</translation> </message> <message> - <location filename="modinfodialog.ui" line="737"/> + <location filename="modinfodialog.ui" line="723"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -2957,17 +3068,17 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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="764"/> + <location filename="modinfodialog.ui" line="750"/> <source>Previous</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="771"/> + <location filename="modinfodialog.ui" line="757"/> <source>Next</source> <translation type="unfinished">Weiter</translation> </message> <message> - <location filename="modinfodialog.ui" line="791"/> + <location filename="modinfodialog.ui" line="777"/> <source>Close</source> <translation>Schliessen</translation> </message> @@ -3002,8 +3113,8 @@ p, li { white-space: pre-wrap; } <translation>&Neuer Ordner</translation> </message> <message> - <location filename="modinfodialog.cpp" line="352"/> - <location filename="modinfodialog.cpp" line="367"/> + <location filename="modinfodialog.cpp" line="354"/> + <location filename="modinfodialog.cpp" line="369"/> <source>Save changes?</source> <translation>Änderungen speichern?</translation> </message> @@ -3012,28 +3123,28 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Änderungen an "%1" speichern?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="563"/> + <location filename="modinfodialog.cpp" line="570"/> <source>File Exists</source> <translation>Datei existiert bereits</translation> </message> <message> - <location filename="modinfodialog.cpp" line="563"/> + <location filename="modinfodialog.cpp" line="570"/> <source>A file with that name exists, please enter a new one</source> <translation>Eine Datei mit diesem Namen existiert bereits, bitte wählen Sie einen anderen Namen</translation> </message> <message> - <location filename="modinfodialog.cpp" line="580"/> + <location filename="modinfodialog.cpp" line="587"/> <source>failed to move file</source> <translation>Verschieben der Datei fehlgeschlagen</translation> </message> <message> - <location filename="modinfodialog.cpp" line="605"/> + <location filename="modinfodialog.cpp" line="612"/> <source>failed to create directory "optional"</source> <translation>Erstellen des Verzeichnis "optional" fehlgeschlagen</translation> </message> <message> - <location filename="modinfodialog.cpp" line="643"/> - <location filename="modinfodialog.cpp" line="1155"/> + <location filename="modinfodialog.cpp" line="650"/> + <location filename="modinfodialog.cpp" line="1156"/> <source>Info requested, please wait</source> <translation>Information wird abgerufen, bitte warten</translation> </message> @@ -3050,32 +3161,32 @@ p, li { white-space: pre-wrap; } (Beschreibung unvollständig. Bitte besuche die Nexus-Seite)</translation> </message> <message> - <location filename="modinfodialog.cpp" line="697"/> + <location filename="modinfodialog.cpp" line="704"/> <source>Main</source> <translation>Primär</translation> </message> <message> - <location filename="modinfodialog.cpp" line="698"/> + <location filename="modinfodialog.cpp" line="705"/> <source>Update</source> <translation>Aktualisierung</translation> </message> <message> - <location filename="modinfodialog.cpp" line="699"/> + <location filename="modinfodialog.cpp" line="706"/> <source>Optional</source> <translation>Optional</translation> </message> <message> - <location filename="modinfodialog.cpp" line="700"/> + <location filename="modinfodialog.cpp" line="707"/> <source>Old</source> <translation>Alt</translation> </message> <message> - <location filename="modinfodialog.cpp" line="701"/> + <location filename="modinfodialog.cpp" line="708"/> <source>Misc</source> <translation>Sonstiges</translation> </message> <message> - <location filename="modinfodialog.cpp" line="702"/> + <location filename="modinfodialog.cpp" line="709"/> <source>Unknown</source> <translation>Unbekannt</translation> </message> @@ -3084,18 +3195,18 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Anfrage fehlgeschlagen</translation> </message> <message> - <location filename="modinfodialog.cpp" line="758"/> + <location filename="modinfodialog.cpp" line="765"/> <source>(description incomplete, please visit nexus)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="779"/> + <location filename="modinfodialog.cpp" line="780"/> <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="869"/> - <location filename="modinfodialog.cpp" line="874"/> + <location filename="modinfodialog.cpp" line="870"/> + <location filename="modinfodialog.cpp" line="875"/> <source>Confirm</source> <translation>Bestätigen</translation> </message> @@ -3108,88 +3219,114 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Download gestartet</translation> </message> <message> - <location filename="modinfodialog.cpp" line="858"/> + <location filename="modinfodialog.cpp" line="859"/> <source>Failed to delete %1</source> <translation>"%1" konnte nicht gelöscht werden</translation> </message> <message> - <location filename="modinfodialog.cpp" line="869"/> + <location filename="modinfodialog.cpp" line="870"/> <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="874"/> + <location filename="modinfodialog.cpp" line="875"/> <source>Are sure you want to delete the selected files?</source> <translation>Sind Sie sicher, dass Sie die ausgewählten Dateien löschen wollen?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="948"/> - <location filename="modinfodialog.cpp" line="954"/> + <location filename="modinfodialog.cpp" line="949"/> + <location filename="modinfodialog.cpp" line="955"/> <source>New Folder</source> <translation>Neuer Ordner</translation> </message> <message> - <location filename="modinfodialog.cpp" line="960"/> + <location filename="modinfodialog.cpp" line="961"/> <source>Failed to create "%1"</source> <translation>"%1" konnte nicht erstellt werden</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1064"/> - <location filename="modinfodialog.cpp" line="1088"/> + <location filename="modinfodialog.cpp" line="1065"/> + <location filename="modinfodialog.cpp" line="1089"/> <source>Replace file?</source> <translation type="unfinished">Datei ersetzen?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1064"/> + <location filename="modinfodialog.cpp" line="1065"/> <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> </message> <message> - <location filename="modinfodialog.cpp" line="1067"/> - <location filename="modinfodialog.cpp" line="1091"/> + <location filename="modinfodialog.cpp" line="1068"/> + <location filename="modinfodialog.cpp" line="1092"/> <source>File operation failed</source> <translation type="unfinished">Dateioperation fehlgeschlagen</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1067"/> - <location filename="modinfodialog.cpp" line="1091"/> + <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">Konnte "%1" nicht löschen. Fehlen Ihnen evtl. die nötigen Berechtigungen?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1078"/> - <location filename="modinfodialog.cpp" line="1101"/> + <location filename="modinfodialog.cpp" line="1079"/> + <location filename="modinfodialog.cpp" line="1102"/> <source>failed to rename %1 to %2</source> <translation type="unfinished">konnte "%1" nicht in "%2" umbenennen</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1088"/> + <location filename="modinfodialog.cpp" line="1089"/> <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> </message> <message> - <location filename="modinfodialog.cpp" line="1135"/> + <location filename="modinfodialog.cpp" line="1136"/> <source>Un-Hide</source> <translation type="unfinished">Sichtbar machen</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1137"/> + <location filename="modinfodialog.cpp" line="1138"/> <source>Hide</source> <translation type="unfinished">Verstecken</translation> </message> <message> - <location filename="modinfodialog.cpp" line="713"/> + <location filename="modinfodialog.cpp" line="1179"/> + <source>Please enter a name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1183"/> + <location filename="modinfodialog.cpp" line="1186"/> + <source>Error</source> + <translation type="unfinished">Fehler</translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1183"/> + <source>Invalid name. Must be a valid file name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1186"/> + <source>A tweak by that name exists</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1198"/> + <source>Create Tweak</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="720"/> <source>Current Version: %1</source> <translation>Aktuelle Version: %1</translation> </message> <message> - <location filename="modinfodialog.cpp" line="352"/> - <location filename="modinfodialog.cpp" line="367"/> + <location filename="modinfodialog.cpp" line="354"/> + <location filename="modinfodialog.cpp" line="369"/> <source>Save changes to "%1"?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="717"/> + <location filename="modinfodialog.cpp" line="724"/> <source>No update available</source> <translation>Keine neue Version verfügbar</translation> </message> @@ -3197,12 +3334,11 @@ p, li { white-space: pre-wrap; } <context> <name>ModInfoOverwrite</name> <message> - <location filename="modinfo.h" line="812"/> <source>Overwrite</source> - <translation>Overwrite</translation> + <translation type="obsolete">Overwrite</translation> </message> <message> - <location filename="modinfo.cpp" line="821"/> + <location filename="modinfo.cpp" line="859"/> <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source> <translation type="unfinished">Diese Pseudo-Mod enthält Dateien des virtuellen Verzeichnisses die modifiziert wurden (z.B. durch den Construction Kit)</translation> </message> @@ -3210,17 +3346,17 @@ p, li { white-space: pre-wrap; } <context> <name>ModInfoRegular</name> <message> - <location filename="modinfo.cpp" line="392"/> + <location filename="modinfo.cpp" line="393"/> <source>failed to write %1/meta.ini: %2</source> <translation>konnte %1/meta.ini nicht schreiben: %2</translation> </message> <message> - <location filename="modinfo.cpp" line="625"/> + <location filename="modinfo.cpp" line="654"/> <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> </message> <message> - <location filename="modinfo.cpp" line="629"/> + <location filename="modinfo.cpp" line="658"/> <source>Categories: <br></source> <translation type="unfinished">Kategorien: <br></translation> </message> @@ -3236,7 +3372,7 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">aÜberprüfung gestartet</translation> </message> <message> - <location filename="modlist.cpp" line="662"/> + <location filename="modlist.cpp" line="775"/> <source>Confirm</source> <translation>Bestätigen</translation> </message> @@ -3261,7 +3397,7 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Max</translation> </message> <message> - <location filename="modlist.cpp" line="294"/> + <location filename="modlist.cpp" line="307"/> <source>installed version: %1, newest version: %2</source> <translation>installierte Version: %1, neueste Version: %2</translation> </message> @@ -3278,9 +3414,8 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Alle angezeigten Mods deaktivieren?</translation> </message> <message> - <location filename="modlist.cpp" line="94"/> <source>Overwrite</source> - <translation>Overwrite</translation> + <translation type="obsolete">Overwrite</translation> </message> <message> <location filename="modlist.cpp" line="109"/> @@ -3323,47 +3458,52 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="184"/> + <location filename="modlist.cpp" line="196"/> <source>invalid</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="298"/> + <location filename="modlist.cpp" line="309"/> + <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="317"/> <source>Categories: <br></source> <translation>Kategorien: <br></translation> </message> <message> - <location filename="modlist.cpp" line="327"/> + <location filename="modlist.cpp" line="346"/> <source>Invalid name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="718"/> + <location filename="modlist.cpp" line="831"/> <source>Mod Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="723"/> + <location filename="modlist.cpp" line="836"/> <source>Installation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="736"/> + <location filename="modlist.cpp" line="849"/> <source>Category of the mod.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="737"/> + <location filename="modlist.cpp" line="850"/> <source>Id of the mod as used on Nexus.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="738"/> + <location filename="modlist.cpp" line="851"/> <source>Emblemes to highlight things that might require attention.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="739"/> + <location filename="modlist.cpp" line="852"/> <source>Time this mod was installed</source> <translation type="unfinished"></translation> </message> @@ -3380,59 +3520,59 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Namen Ihrer Mods</translation> </message> <message> - <location filename="modlist.cpp" line="719"/> + <location filename="modlist.cpp" line="832"/> <source>Version</source> <translation>Version</translation> </message> <message> - <location filename="modlist.cpp" line="733"/> + <location filename="modlist.cpp" line="846"/> <source>Version of the mod (if available)</source> <translation>Version des Mod (wenn verfügbar)</translation> </message> <message> - <location filename="modlist.cpp" line="720"/> + <location filename="modlist.cpp" line="833"/> <source>Priority</source> <translation>Priorität</translation> </message> <message> - <location filename="modlist.cpp" line="603"/> + <location filename="modlist.cpp" line="716"/> <source>drag&drop failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="717"/> + <location filename="modlist.cpp" line="830"/> <source>Flags</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="721"/> + <location filename="modlist.cpp" line="834"/> <source>Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="722"/> + <location filename="modlist.cpp" line="835"/> <source>Nexus ID</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="724"/> - <location filename="modlist.cpp" line="740"/> + <location filename="modlist.cpp" line="837"/> + <location filename="modlist.cpp" line="853"/> <source>unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="732"/> + <location filename="modlist.cpp" line="845"/> <source>Name of your mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="734"/> + <location filename="modlist.cpp" line="847"/> <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>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="662"/> + <location filename="modlist.cpp" line="775"/> <source>Are you sure you want to remove "%1"?</source> <translation>Bist du sicher dass du "%1" löschen willst?</translation> </message> @@ -3468,12 +3608,12 @@ p, li { white-space: pre-wrap; } <context> <name>MyFileSystemModel</name> <message> - <location filename="overwriteinfodialog.cpp" line="48"/> + <location filename="overwriteinfodialog.cpp" line="47"/> <source>Overwrites</source> <translation>Overwrites</translation> </message> <message> - <location filename="overwriteinfodialog.cpp" line="60"/> + <location filename="overwriteinfodialog.cpp" line="59"/> <source>not implemented</source> <translation>nicht implementiert</translation> </message> @@ -3482,11 +3622,16 @@ p, li { white-space: pre-wrap; } <name>NXMAccessManager</name> <message> <location filename="nxmaccessmanager.cpp" line="130"/> + <source>Logging into Nexus</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="nxmaccessmanager.cpp" line="145"/> <source>timeout</source> <translation>Zeitüberschreitung</translation> </message> <message> - <location filename="nxmaccessmanager.cpp" line="168"/> + <location filename="nxmaccessmanager.cpp" line="185"/> <source>Please check your password</source> <translation>Bitte das Passwort überprüfen</translation> </message> @@ -3576,17 +3721,17 @@ p, li { white-space: pre-wrap; } <context> <name>NexusInterface</name> <message> - <location filename="nexusinterface.cpp" line="201"/> + <location filename="nexusinterface.cpp" line="219"/> <source>Failed to guess mod id for "%1", please pick the correct one</source> <translation type="unfinished"></translation> </message> <message> - <location filename="nexusinterface.cpp" line="421"/> + <location filename="nexusinterface.cpp" line="440"/> <source>empty response</source> <translation>leere Antwort</translation> </message> <message> - <location filename="nexusinterface.cpp" line="450"/> + <location filename="nexusinterface.cpp" line="469"/> <source>invalid response</source> <translation>ungültige Antwort</translation> </message> @@ -4576,34 +4721,34 @@ Diese Funktion ist noch in arbeit und ist sehr eingeschränkt.</translation> <translation type="obsolete">"%1" konnte nicht gelöscht werden</translation> </message> <message> - <location filename="overwriteinfodialog.cpp" line="137"/> + <location filename="overwriteinfodialog.cpp" line="136"/> <source>Failed to delete "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="overwriteinfodialog.cpp" line="148"/> - <location filename="overwriteinfodialog.cpp" line="153"/> + <location filename="overwriteinfodialog.cpp" line="147"/> + <location filename="overwriteinfodialog.cpp" line="152"/> <source>Confirm</source> <translation>Bestätigen</translation> </message> <message> - <location filename="overwriteinfodialog.cpp" line="148"/> + <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> </message> <message> - <location filename="overwriteinfodialog.cpp" line="153"/> + <location filename="overwriteinfodialog.cpp" line="152"/> <source>Are sure you want to delete the selected files?</source> <translation>Sind Sie sicher, dass Sie die ausgewählten Dateien löschen wollen?</translation> </message> <message> - <location filename="overwriteinfodialog.cpp" line="203"/> - <location filename="overwriteinfodialog.cpp" line="209"/> + <location filename="overwriteinfodialog.cpp" line="202"/> + <location filename="overwriteinfodialog.cpp" line="208"/> <source>New Folder</source> <translation>Neuer Ordner</translation> </message> <message> - <location filename="overwriteinfodialog.cpp" line="215"/> + <location filename="overwriteinfodialog.cpp" line="214"/> <source>Failed to create "%1"</source> <translation>"%1" konnte nicht erstellt werden</translation> </message> @@ -4611,70 +4756,85 @@ Diese Funktion ist noch in arbeit und ist sehr eingeschränkt.</translation> <context> <name>PluginList</name> <message> - <location filename="pluginlist.cpp" line="98"/> + <location filename="pluginlist.cpp" line="103"/> <source>Mod Index</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="99"/> - <location filename="pluginlist.cpp" line="111"/> + <location filename="pluginlist.cpp" line="104"/> + <location filename="pluginlist.cpp" line="116"/> <source>unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="107"/> + <location filename="pluginlist.cpp" line="112"/> <source>Name of your mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="108"/> + <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"></translation> </message> <message> - <location filename="pluginlist.cpp" line="110"/> + <location filename="pluginlist.cpp" line="115"/> <source>The modindex determins the formids of objects originating from this mods.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="208"/> + <location filename="pluginlist.cpp" line="151"/> + <source>failed to update esp info for file %1 (source id: %2), error: %3</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="pluginlist.cpp" line="218"/> <source>esp not found: %1</source> <translation>ESP nicht gefunden: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="215"/> - <location filename="pluginlist.cpp" line="227"/> + <location filename="pluginlist.cpp" line="225"/> + <location filename="pluginlist.cpp" line="237"/> <source>Confirm</source> <translation type="unfinished">Bestätigen</translation> </message> <message> - <location filename="pluginlist.cpp" line="215"/> + <location filename="pluginlist.cpp" line="225"/> <source>Really enable all plugins?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="227"/> + <location filename="pluginlist.cpp" line="237"/> <source>Really disable all plugins?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="353"/> + <location filename="pluginlist.cpp" line="365"/> <source>The file containing locked plugin indices is broken</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="366"/> - <location filename="pluginlist.cpp" line="405"/> + <location filename="pluginlist.cpp" line="378"/> + <location filename="pluginlist.cpp" line="417"/> <source>failed to open output file: %1</source> <translation>konnte die Ausgabedatei nicht öffnen: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="393"/> + <location filename="pluginlist.cpp" line="405"/> <source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source> <translation>Einige Ihrer Plugins haben ungültige Namen! Diese Plugins können nicht vom Spiel geladen werden. Die Datei mo_interface.log enthält eine Liste der betroffenen Plugins. Bitte benennen Sie diese um.</translation> </message> <message> - <location filename="pluginlist.cpp" line="737"/> + <location filename="pluginlist.cpp" line="755"/> + <source>Missing Masters</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="pluginlist.cpp" line="761"/> + <source>Enabled Masters</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="pluginlist.cpp" line="873"/> <source>failed to restore load order for %1</source> <translation type="unfinished"></translation> </message> @@ -4687,17 +4847,17 @@ Diese Funktion ist noch in arbeit und ist sehr eingeschränkt.</translation> <translation type="obsolete">max</translation> </message> <message> - <location filename="pluginlist.cpp" line="631"/> + <location filename="pluginlist.cpp" line="751"/> <source>This plugin can't be disabled (enforced by the game)</source> <translation>Dieses Plugin kann nicht deaktiviert werden (vom Spiel benötigt)</translation> </message> <message> - <location filename="pluginlist.cpp" line="633"/> + <location filename="pluginlist.cpp" line="753"/> <source>Origin: %1</source> <translation>Ursprung: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="96"/> + <location filename="pluginlist.cpp" line="101"/> <source>Name</source> <translation>Name</translation> </message> @@ -4706,7 +4866,7 @@ Diese Funktion ist noch in arbeit und ist sehr eingeschränkt.</translation> <translation type="obsolete">Namen Ihrer Mods</translation> </message> <message> - <location filename="pluginlist.cpp" line="97"/> + <location filename="pluginlist.cpp" line="102"/> <source>Priority</source> <translation>Priorität</translation> </message> @@ -4737,22 +4897,28 @@ Diese Funktion ist noch in arbeit und ist sehr eingeschränkt.</translation> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" 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;"> +</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> + <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: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></oldsource> <translation type="unfinished"></translation> </message> <message> - <location filename="problemsdialog.cpp" line="29"/> - <source>fix</source> - <translation type="unfinished"></translation> + <location filename="problemsdialog.ui" line="75"/> + <source>Close</source> + <translation type="unfinished">Schliessen</translation> </message> <message> - <location filename="problemsdialog.cpp" line="30"/> + <location filename="problemsdialog.cpp" line="44"/> + <location filename="problemsdialog.cpp" line="45"/> <source>Fix</source> <translation type="unfinished"></translation> </message> <message> - <location filename="problemsdialog.cpp" line="34"/> + <location filename="problemsdialog.cpp" line="49"/> <source>No guided fix</source> <translation type="unfinished"></translation> </message> @@ -4764,72 +4930,82 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">konnte Ini Anpassungen nicht anwenden</translation> </message> <message> - <location filename="profile.cpp" line="56"/> + <location filename="profile.cpp" line="58"/> <source>invalid profile name %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="60"/> + <location filename="profile.cpp" line="62"/> <source>failed to create %1</source> <translation type="unfinished">%1 konnte nicht erstellt werden</translation> </message> <message> - <location filename="profile.cpp" line="152"/> + <location filename="profile.cpp" line="155"/> + <source>failed to open temporary file</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profile.cpp" line="192"/> <source>failed to open "%1" for writing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="189"/> + <location filename="profile.cpp" line="198"/> + <source>failed to write mod list: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profile.cpp" line="209"/> <source>failed to update tweaked ini file, wrong settings may be used: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="219"/> + <location filename="profile.cpp" line="239"/> <source>failed to create tweaked ini: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="365"/> + <location filename="profile.cpp" line="387"/> <source>Overwrite directory couldn't be parsed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="374"/> + <location filename="profile.cpp" line="396"/> <source>invalid priority %1</source> <translation>Ungültige Priorität %1</translation> </message> <message> - <location filename="profile.cpp" line="561"/> + <location filename="profile.cpp" line="584"/> <source>failed to parse ini file (%1)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="589"/> + <location filename="profile.cpp" line="612"/> <source>failed to parse ini file (%1): %2</source> <translation>Konnte ini-datei (%1) nicht auslesen: %2</translation> </message> <message> - <location filename="profile.cpp" line="613"/> - <location filename="profile.cpp" line="650"/> + <location filename="profile.cpp" line="636"/> + <location filename="profile.cpp" line="673"/> <source>failed to modify "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="678"/> + <location filename="profile.cpp" line="701"/> <source>Delete savegames?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="679"/> + <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"></translation> </message> <message> - <location filename="profile.cpp" line="271"/> - <location filename="profile.cpp" line="300"/> - <location filename="profile.cpp" line="384"/> - <location filename="profile.cpp" line="402"/> - <location filename="profile.cpp" line="412"/> + <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>ungültiger index %1</translation> </message> @@ -5054,37 +5230,61 @@ p, li { white-space: pre-wrap; } <translation>Bitte geben Sie einen Namen für das neue Profil an</translation> </message> <message> - <location filename="profilesdialog.cpp" line="160"/> + <location filename="profilesdialog.cpp" line="162"/> <source>failed to copy profile: %1</source> <translation>Kopieren des Profils fehlgeschlagen: %1</translation> </message> <message> - <location filename="profilesdialog.cpp" line="167"/> + <location filename="profilesdialog.cpp" line="165"/> + <source>Invalid name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.cpp" line="165"/> + <source>Invalid profile name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.cpp" line="172"/> <source>Confirm</source> <translation>Bestätigen</translation> </message> <message> - <location filename="profilesdialog.cpp" line="167"/> + <location filename="profilesdialog.cpp" line="172"/> + <source>Are you sure you want to remove this profile (including local savegames if any)?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.cpp" line="182"/> + <source>Profile broken</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.cpp" line="183"/> + <source>This profile you'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>Sind Sie sicher, dass Sie dieses Profil löschen wollen?</translation> + <translation type="obsolete">Sind Sie sicher, dass Sie dieses Profil löschen wollen?</translation> </message> <message> - <location filename="profilesdialog.cpp" line="196"/> + <location filename="profilesdialog.cpp" line="215"/> <source>Rename Profile</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profilesdialog.cpp" line="196"/> + <location filename="profilesdialog.cpp" line="215"/> <source>New Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profilesdialog.cpp" line="233"/> + <location filename="profilesdialog.cpp" line="252"/> <source>failed to change archive invalidation state: %1</source> <translation>Ändern der Archiv Invalidierung fehlgeschlagen: %1</translation> </message> <message> - <location filename="profilesdialog.cpp" line="270"/> + <location filename="profilesdialog.cpp" line="289"/> <source>failed to determine if invalidation is active: %1</source> <translation>MO konnte nicht feststellen ob Invalidierung aktiv ist: %1</translation> </message> @@ -5176,13 +5376,13 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Waffen</translation> </message> <message> - <location filename="installationmanager.cpp" line="63"/> + <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> - <location filename="profile.cpp" line="93"/> + <location filename="profile.cpp" line="95"/> <source>"%1" is missing</source> <translation>"%1" fehlt</translation> </message> @@ -5191,8 +5391,8 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">"%1" konnte nicht erstellt werden, haben Sie die nötigen Schreibrechte für das Installations Verzeichnis?</translation> </message> <message> - <location filename="main.cpp" line="360"/> - <location filename="main.cpp" line="389"/> + <location filename="main.cpp" line="356"/> + <location filename="main.cpp" line="385"/> <source>Please select the game to manage</source> <translation>Bitte wählen Sie ein Spiel zum Verwalten aus</translation> </message> @@ -5201,7 +5401,7 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Ungültiges Profil %1</translation> </message> <message> - <location filename="main.cpp" line="134"/> + <location filename="main.cpp" line="138"/> <source>Permissions required</source> <translation>Berechtigungen erforderlich</translation> </message> @@ -5210,8 +5410,8 @@ p, li { white-space: pre-wrap; } <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> </message> <message> - <location filename="main.cpp" line="234"/> - <location filename="main.cpp" line="272"/> + <location filename="main.cpp" line="230"/> + <location filename="main.cpp" line="268"/> <source>Woops</source> <translation>Oha</translation> </message> @@ -5220,36 +5420,41 @@ p, li { white-space: pre-wrap; } <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="135"/> - <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> + <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"></translation> </message> <message> - <location filename="main.cpp" line="235"/> + <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> </message> <message> - <location filename="main.cpp" line="273"/> + <location filename="main.cpp" line="269"/> <source>ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1</source> <translation>ModOrganizer ist abgestürzt! Leider konnte keine Diagnosedatei geschrieben werden: %1</translation> </message> <message> - <location filename="main.cpp" line="335"/> + <location filename="main.cpp" line="331"/> <source>An instance of Mod Organizer is already running</source> <translation>Mod Organizer läuft bereits</translation> </message> <message> - <location filename="main.cpp" line="357"/> + <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>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="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"></translation> + </message> + <message> <source>"%1" not found</source> <translation type="obsolete">"%1" nicht gefunden</translation> </message> <message> - <location filename="mainwindow.cpp" line="752"/> + <location filename="mainwindow.cpp" line="770"/> <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> @@ -5262,19 +5467,19 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Ungültige Priorität %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="310"/> - <location filename="profile.cpp" line="228"/> + <location filename="pluginlist.cpp" line="320"/> + <location filename="profile.cpp" line="249"/> <source>failed to find "%1"</source> <translation>Konnte "%1" nicht finden</translation> </message> <message> - <location filename="mainwindow.cpp" line="1470"/> - <location filename="mainwindow.cpp" line="3723"/> + <location filename="mainwindow.cpp" line="1538"/> + <location filename="mainwindow.cpp" line="4024"/> <source><Manage...></source> <translation><Verwalten...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1488"/> + <location filename="mainwindow.cpp" line="1556"/> <source>failed to parse profile %1: %2</source> <translation>Konnte Profil %1 nicht verarbeiten: %2</translation> </message> @@ -5283,17 +5488,17 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Kodierungsfehler! Bitte melden Sie dies als Bug und fügen Sie die Datei mo_interface.log bei!</translation> </message> <message> - <location filename="pluginlist.cpp" line="467"/> + <location filename="pluginlist.cpp" line="479"/> <source>failed to access %1</source> <translation>Auf %1 konnte nicht zugegriffen werden</translation> </message> <message> - <location filename="pluginlist.cpp" line="481"/> + <location filename="pluginlist.cpp" line="493"/> <source>failed to set file time %1</source> <translation>Konnte Dateizeit nicht setzen %1</translation> </message> <message> - <location filename="profile.cpp" line="67"/> + <location filename="profile.cpp" line="69"/> <source>failed to create %1</source> <translation>%1 konnte nicht erstellt werden</translation> </message> @@ -5449,18 +5654,18 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <translation type="obsolete">Englisch</translation> </message> <message> - <location filename="main.cpp" line="335"/> - <location filename="settings.cpp" line="462"/> + <location filename="main.cpp" line="331"/> + <location filename="settings.cpp" line="528"/> <source>Mod Organizer</source> <translation>Mod Organizer</translation> </message> <message> - <location filename="settings.cpp" line="469"/> + <location filename="settings.cpp" line="535"/> <source>Script Extender</source> <translation>Script Extender</translation> </message> <message> - <location filename="settings.cpp" line="476"/> + <location filename="settings.cpp" line="542"/> <source>Proxy DLL</source> <translation>Proxy DLL</translation> </message> @@ -5476,20 +5681,20 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <translation>konnte den Accountnamen nicht bestimmen</translation> </message> <message> - <location filename="categories.cpp" line="133"/> + <location filename="categories.cpp" line="140"/> <source>Failed to save custom categories</source> <translation>Konnte die modifizierten Kategorien nicht speichern</translation> </message> <message> - <location filename="categories.cpp" line="210"/> - <location filename="categories.cpp" line="245"/> - <location filename="categories.cpp" line="255"/> - <location filename="categories.cpp" line="265"/> + <location filename="categories.cpp" line="217"/> + <location filename="categories.cpp" line="252"/> + <location filename="categories.cpp" line="262"/> + <location filename="categories.cpp" line="272"/> <source>invalid index %1</source> <translation>ungültiger index %1</translation> </message> <message> - <location filename="categories.cpp" line="276"/> + <location filename="categories.cpp" line="283"/> <source>invalid category id %1</source> <translation>ungültige Kategorie %1</translation> </message> @@ -5583,14 +5788,6 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe </message> </context> <context> - <name>QuestionBoxMemory</name> - <message> - <location filename="questionboxmemory.ui" line="86"/> - <source>Remember selection</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> <name>SaveGameInfoWidget</name> <message> <location filename="savegameinfowidget.ui" line="39"/> @@ -5695,9 +5892,9 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe </message> <message> <location filename="selfupdater.cpp" line="116"/> - <location filename="selfupdater.cpp" line="140"/> - <location filename="selfupdater.cpp" line="269"/> - <location filename="selfupdater.cpp" line="417"/> + <location filename="selfupdater.cpp" line="139"/> + <location filename="selfupdater.cpp" line="268"/> + <location filename="selfupdater.cpp" line="415"/> <source>Update</source> <translation>Aktualisierung</translation> </message> @@ -5707,57 +5904,57 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <translation>Eine Aktualisierung ist verfügbar (neueste Version: %1). Soll sie installiert werden?</translation> </message> <message> - <location filename="selfupdater.cpp" line="141"/> + <location filename="selfupdater.cpp" line="140"/> <source>Download in progress</source> <translation>Download läuft</translation> </message> <message> - <location filename="selfupdater.cpp" line="196"/> + <location filename="selfupdater.cpp" line="195"/> <source>Download failed: %1</source> <translation>Download fehlgeschlagen: %1</translation> </message> <message> - <location filename="selfupdater.cpp" line="207"/> + <location filename="selfupdater.cpp" line="206"/> <source>Failed to install update: %1</source> <translation>Konnte das update nicht installieren: %1</translation> </message> <message> - <location filename="selfupdater.cpp" line="228"/> + <location filename="selfupdater.cpp" line="227"/> <source>failed to open archive "%1": %2</source> <translation>konnte das Archiv "%1" nicht öffnen: %2</translation> </message> <message> - <location filename="selfupdater.cpp" line="251"/> + <location filename="selfupdater.cpp" line="250"/> <source>failed to move outdated files: %1. Please update manually.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="selfupdater.cpp" line="269"/> + <location filename="selfupdater.cpp" line="268"/> <source>Update installed, Mod Organizer will now be restarted.</source> <translation>Aktualisierung installiert. Mod Organizer wird sich nun neu starten.</translation> </message> <message> - <location filename="selfupdater.cpp" line="297"/> + <location filename="selfupdater.cpp" line="296"/> <source>Error</source> <translation>Fehler</translation> </message> <message> - <location filename="selfupdater.cpp" line="353"/> + <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>Konnte Antwort nicht auslesen. Bitte melden Sie dies als Bug und fügen Sie die Datei mo_interface.log bei.</translation> </message> <message> - <location filename="selfupdater.cpp" line="418"/> + <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>Es existiert keine inkrementelle Aktualisierung für diese Version, Sie müssen das vollständige Archiv herunterladen (%1 kB)</translation> </message> <message> - <location filename="selfupdater.cpp" line="427"/> + <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="461"/> + <location filename="selfupdater.cpp" line="459"/> <source>No download server available. Please try again later.</source> <translation type="unfinished"></translation> </message> @@ -5766,7 +5963,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <translation type="obsolete">kein Update gefunden</translation> </message> <message> - <location filename="selfupdater.cpp" line="441"/> + <location filename="selfupdater.cpp" line="439"/> <source>Failed to retrieve update information: %1</source> <translation>Konnte update informationen nicht abrufen: %1</translation> </message> @@ -5782,26 +5979,22 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <context> <name>Settings</name> <message> - <location filename="settings.cpp" line="278"/> - <source>setting for invalid plugin "%1" requested</source> - <translation type="unfinished"></translation> + <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="282"/> - <source>invalid setting "%1" requested for plugin "%2"</source> + <location filename="settings.cpp" line="306"/> + <location filename="settings.cpp" line="325"/> + <source>attempt to store setting for unknown plugin "%1"</source> <translation type="unfinished"></translation> </message> <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="573"/> + <location filename="settings.cpp" line="646"/> <source>Confirm</source> <translation>Bestätigen</translation> </message> <message> - <location filename="settings.cpp" line="573"/> + <location filename="settings.cpp" line="646"/> <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> @@ -6040,42 +6233,47 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="427"/> + <location filename="settingsdialog.ui" line="429"/> <source>Author:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="441"/> + <location filename="settingsdialog.ui" line="443"/> <source>Version:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="455"/> + <location filename="settingsdialog.ui" line="457"/> <source>Description:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="493"/> + <location filename="settingsdialog.ui" line="495"/> <source>Key</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="498"/> + <location filename="settingsdialog.ui" line="500"/> <source>Value</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="509"/> + <location filename="settingsdialog.ui" line="512"/> + <source>Blacklisted Plugins (use <del> to remove):</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="523"/> <source>Workarounds</source> <translation>Workarounds</translation> </message> <message> - <location filename="settingsdialog.ui" line="571"/> + <location filename="settingsdialog.ui" line="585"/> <source>Load Mechanism</source> <translation>Lademechanismus</translation> </message> <message> - <location filename="settingsdialog.ui" line="594"/> + <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. @@ -6086,17 +6284,17 @@ If you use the Steam version of Oblivion the default will NOT work. In this case <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="611"/> + <location filename="settingsdialog.ui" line="625"/> <source>NMM Version</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="631"/> + <location filename="settingsdialog.ui" line="645"/> <source>The Version of Nexus Mod Manager to impersonate.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="634"/> + <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. @@ -6105,53 +6303,53 @@ tl;dr-version: If Nexus-features don't work, insert the current version num <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="656"/> + <location filename="settingsdialog.ui" line="670"/> <source>Enforces that inactive ESPs and ESMs are never loaded.</source> <translation>Stellt sicher, dass inaktive ESP und ESM Dateien nie geladen werden.</translation> </message> <message> - <location filename="settingsdialog.ui" line="659"/> + <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>Manche Spiele scheinen gelegentlich ESP oder ESM Dateien zu laden auch wenn sie nicht als Plugins aktiviert wurden. Wenn der Haken aktiviert wurde, sind ESP und ESM Dateien die nicht ausgewählt wurden für das Spiel unsichtbar und können nicht geladen werden.</translation> </message> <message> - <location filename="settingsdialog.ui" line="663"/> + <location filename="settingsdialog.ui" line="677"/> <source>Hide inactive ESPs/ESMs</source> <translation>Inaktive ESP / ESM ausblenden</translation> </message> <message> - <location filename="settingsdialog.ui" line="670"/> + <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> </message> <message> - <location filename="settingsdialog.ui" line="673"/> + <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> </message> <message> - <location filename="settingsdialog.ui" line="677"/> + <location filename="settingsdialog.ui" line="691"/> <source>Force-enable game files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="687"/> - <location filename="settingsdialog.ui" line="691"/> + <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>Für Skyrim kann dies als Alternative zur Archiv Invalidierung verwendet werden. Damit erübrigt sich AI für alle Profile. Für die anderen Spiele ist dies KEIN hinreichender Ersatz für AI!</translation> </message> <message> - <location filename="settingsdialog.ui" line="695"/> + <location filename="settingsdialog.ui" line="709"/> <source>Back-date BSAs</source> <translation>BSAs zurückdatieren</translation> </message> <message> - <location filename="settingsdialog.ui" line="719"/> + <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> @@ -6164,7 +6362,7 @@ Für die anderen Spiele ist dies KEIN hinreichender Ersatz für AI!</translation <translation type="obsolete">Lade-Methode</translation> </message> <message> - <location filename="settingsdialog.ui" line="591"/> + <location filename="settingsdialog.ui" line="605"/> <source>Select loading mechanism. See help for details.</source> <translation>Lade-Mechanismus auswählen. Siehe Hilfe für mehr Details.</translation> </message> @@ -6189,17 +6387,17 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">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="517"/> + <location filename="settingsdialog.ui" line="531"/> <source>Steam App ID</source> <translation>Steam AppID</translation> </message> <message> - <location filename="settingsdialog.ui" line="537"/> + <location filename="settingsdialog.ui" line="551"/> <source>The Steam AppID for your game</source> <translation>Die Steam AppID für Ihr Spiel</translation> </message> <message> - <location filename="settingsdialog.ui" line="540"/> + <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; } @@ -6278,27 +6476,27 @@ p, li { white-space: pre-wrap; } <translation>Kennwort</translation> </message> <message> - <location filename="settingsdialog.cpp" line="89"/> + <location filename="settingsdialog.cpp" line="94"/> <source>Select download directory</source> <translation>Download-Verzeichnis wählen</translation> </message> <message> - <location filename="settingsdialog.cpp" line="97"/> + <location filename="settingsdialog.cpp" line="102"/> <source>Select mod directory</source> <translation>Mod-Verzeichnis wählen</translation> </message> <message> - <location filename="settingsdialog.cpp" line="105"/> + <location filename="settingsdialog.cpp" line="110"/> <source>Select cache directory</source> <translation>Cache-Verzeichnis wählen</translation> </message> <message> - <location filename="settingsdialog.cpp" line="113"/> + <location filename="settingsdialog.cpp" line="118"/> <source>Confirm?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.cpp" line="114"/> + <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"></translation> </message> diff --git a/src/organizer_es.qm b/src/organizer_es.qm Binary files differindex 94abcb00..3e128d83 100644 --- a/src/organizer_es.qm +++ b/src/organizer_es.qm diff --git a/src/organizer_es.ts b/src/organizer_es.ts index acdff666..ed278075 100644 --- a/src/organizer_es.ts +++ b/src/organizer_es.ts @@ -247,7 +247,7 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlist.cpp" line="79"/> + <location filename="downloadlist.cpp" line="80"/> <source>Information missing, please select "Query Info" from the context menu to re-retrieve.</source> <translation type="unfinished"></translation> </message> @@ -261,11 +261,6 @@ p, li { white-space: pre-wrap; } <translation>Marcador de posicion</translation> </message> <message> - <location filename="downloadlistwidget.ui" line="81"/> - <source>0</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="downloadlistwidget.ui" line="88"/> <source>KB</source> <translation type="unfinished"></translation> @@ -313,40 +308,40 @@ p, li { white-space: pre-wrap; } <context> <name>DownloadListWidgetCompactDelegate</name> <message> - <location filename="downloadlistwidgetcompact.cpp" line="215"/> - <location filename="downloadlistwidgetcompact.cpp" line="224"/> - <location filename="downloadlistwidgetcompact.cpp" line="233"/> - <location filename="downloadlistwidgetcompact.cpp" line="242"/> + <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 type="unfinished">Estas seguro?</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="216"/> + <location filename="downloadlistwidgetcompact.cpp" line="221"/> <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="225"/> + <location filename="downloadlistwidgetcompact.cpp" line="230"/> <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="269"/> + <location filename="downloadlistwidgetcompact.cpp" line="275"/> <source>Install</source> <translation type="unfinished">Instalar</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="271"/> + <location filename="downloadlistwidgetcompact.cpp" line="277"/> <source>Query Info</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="279"/> + <location filename="downloadlistwidgetcompact.cpp" line="289"/> <source>Remove</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="276"/> + <location filename="downloadlistwidgetcompact.cpp" line="286"/> <source>Cancel</source> <translation type="unfinished">Cancelar</translation> </message> @@ -381,52 +376,57 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="234"/> + <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> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="243"/> + <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> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="273"/> + <location filename="downloadlistwidgetcompact.cpp" line="279"/> <source>Delete</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="274"/> + <location filename="downloadlistwidgetcompact.cpp" line="281"/> + <source>Un-Hide</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="283"/> <source>Remove from View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="277"/> + <location filename="downloadlistwidgetcompact.cpp" line="287"/> <source>Pause</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="280"/> + <location filename="downloadlistwidgetcompact.cpp" line="290"/> <source>Resume</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="284"/> + <location filename="downloadlistwidgetcompact.cpp" line="294"/> <source>Delete Installed...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="285"/> + <location filename="downloadlistwidgetcompact.cpp" line="295"/> <source>Delete All...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="287"/> + <location filename="downloadlistwidgetcompact.cpp" line="298"/> <source>Remove Installed...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="288"/> + <location filename="downloadlistwidgetcompact.cpp" line="299"/> <source>Remove All...</source> <translation type="unfinished">Quitar todos...</translation> </message> @@ -434,60 +434,65 @@ p, li { white-space: pre-wrap; } <context> <name>DownloadListWidgetDelegate</name> <message> - <location filename="downloadlistwidget.cpp" line="228"/> - <location filename="downloadlistwidget.cpp" line="237"/> - <location filename="downloadlistwidget.cpp" line="246"/> - <location filename="downloadlistwidget.cpp" line="255"/> + <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>Estas seguro?</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="229"/> + <location filename="downloadlistwidget.cpp" line="234"/> <source>This will remove all finished downloads from this list and from disk.</source> <translation>Esto limpiara todas las descargas finalizadas del disco y la lista.</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="238"/> + <location filename="downloadlistwidget.cpp" line="243"/> <source>This will remove all installed downloads from this list and from disk.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="247"/> + <location filename="downloadlistwidget.cpp" line="252"/> <source>This will remove all finished downloads from this list (but NOT from disk).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="256"/> + <location filename="downloadlistwidget.cpp" line="261"/> <source>This will remove all installed downloads from this list (but NOT from disk).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="281"/> + <location filename="downloadlistwidget.cpp" line="287"/> <source>Install</source> <translation>Instalar</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="283"/> + <location filename="downloadlistwidget.cpp" line="289"/> <source>Query Info</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="285"/> + <location filename="downloadlistwidget.cpp" line="291"/> <source>Delete</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="286"/> + <location filename="downloadlistwidget.cpp" line="293"/> + <source>Un-Hide</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="295"/> <source>Remove from View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="291"/> + <location filename="downloadlistwidget.cpp" line="301"/> <source>Remove</source> <translation>Quitar</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="288"/> + <location filename="downloadlistwidget.cpp" line="298"/> <source>Cancel</source> <translation>Cancelar</translation> </message> @@ -502,32 +507,32 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="289"/> + <location filename="downloadlistwidget.cpp" line="299"/> <source>Pause</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="292"/> + <location filename="downloadlistwidget.cpp" line="302"/> <source>Resume</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="296"/> + <location filename="downloadlistwidget.cpp" line="306"/> <source>Delete Installed...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="297"/> + <location filename="downloadlistwidget.cpp" line="307"/> <source>Delete All...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="299"/> + <location filename="downloadlistwidget.cpp" line="310"/> <source>Remove Installed...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="300"/> + <location filename="downloadlistwidget.cpp" line="311"/> <source>Remove All...</source> <translation>Quitar todos...</translation> </message> @@ -535,73 +540,83 @@ p, li { white-space: pre-wrap; } <context> <name>DownloadManager</name> <message> - <location filename="downloadmanager.cpp" line="125"/> + <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="306"/> + <location filename="downloadmanager.cpp" line="322"/> <source>Download again?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadmanager.cpp" line="306"/> + <location filename="downloadmanager.cpp" line="322"/> <source>A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadmanager.cpp" line="336"/> + <location filename="downloadmanager.cpp" line="354"/> <source>failed to download %1: could not open output file: %2</source> <translation>error en la descarga %1: no se puede abrir el fichero de destino: %2</translation> </message> <message> - <location filename="downloadmanager.cpp" line="384"/> + <location filename="downloadmanager.cpp" line="383"/> + <source>Wrong Game</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="383"/> + <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> + </message> + <message> + <location filename="downloadmanager.cpp" line="413"/> <source>failed to delete %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadmanager.cpp" line="390"/> + <location filename="downloadmanager.cpp" line="419"/> <source>failed to delete meta file for %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadmanager.cpp" line="450"/> - <location filename="downloadmanager.cpp" line="468"/> - <location filename="downloadmanager.cpp" line="481"/> - <location filename="downloadmanager.cpp" line="494"/> - <location filename="downloadmanager.cpp" line="505"/> - <location filename="downloadmanager.cpp" line="540"/> + <location filename="downloadmanager.cpp" line="495"/> + <location filename="downloadmanager.cpp" line="513"/> + <location filename="downloadmanager.cpp" line="526"/> + <location filename="downloadmanager.cpp" line="543"/> + <location filename="downloadmanager.cpp" line="554"/> + <location filename="downloadmanager.cpp" line="589"/> <source>invalid index %1</source> <translation>indice invalido %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="899"/> + <location filename="downloadmanager.cpp" line="972"/> <source>Information updated</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadmanager.cpp" line="901"/> - <location filename="downloadmanager.cpp" line="915"/> + <location filename="downloadmanager.cpp" line="974"/> + <location filename="downloadmanager.cpp" line="988"/> <source>No matching file found on Nexus! Maybe this file is no longer available or it was renamed?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadmanager.cpp" line="903"/> + <location filename="downloadmanager.cpp" line="976"/> <source>No file on Nexus matches the selected file by name. Please manually choose the correct one.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadmanager.cpp" line="1032"/> + <location filename="downloadmanager.cpp" line="1109"/> <source>No download server available. Please try again later.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadmanager.cpp" line="1074"/> + <location filename="downloadmanager.cpp" line="1151"/> <source>Failed to request file info from nexus: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadmanager.cpp" line="1097"/> + <location filename="downloadmanager.cpp" line="1175"/> <source>Download failed: %1 (%2)</source> <translation type="unfinished"></translation> </message> @@ -610,27 +625,30 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">error borrando el fichero</translation> </message> <message> - <location filename="downloadmanager.cpp" line="366"/> - <location filename="downloadmanager.cpp" line="585"/> - <location filename="downloadmanager.cpp" line="595"/> - <location filename="downloadmanager.cpp" line="604"/> - <location filename="downloadmanager.cpp" line="614"/> - <location filename="downloadmanager.cpp" line="624"/> + <location filename="downloadmanager.cpp" line="395"/> + <location filename="downloadmanager.cpp" line="462"/> <location filename="downloadmanager.cpp" line="634"/> - <location filename="downloadmanager.cpp" line="645"/> - <location filename="downloadmanager.cpp" line="654"/> - <location filename="downloadmanager.cpp" line="664"/> - <location filename="downloadmanager.cpp" line="679"/> + <location filename="downloadmanager.cpp" line="644"/> + <location filename="downloadmanager.cpp" line="653"/> + <location filename="downloadmanager.cpp" line="667"/> + <location filename="downloadmanager.cpp" line="677"/> + <location filename="downloadmanager.cpp" line="687"/> + <location filename="downloadmanager.cpp" line="697"/> + <location filename="downloadmanager.cpp" line="708"/> + <location filename="downloadmanager.cpp" line="716"/> + <location filename="downloadmanager.cpp" line="725"/> + <location filename="downloadmanager.cpp" line="735"/> + <location filename="downloadmanager.cpp" line="750"/> <source>invalid index</source> <translation>indice invalido</translation> </message> <message> - <location filename="downloadmanager.cpp" line="557"/> + <location filename="downloadmanager.cpp" line="606"/> <source>Please enter the nexus mod id</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadmanager.cpp" line="557"/> + <location filename="downloadmanager.cpp" line="606"/> <source>Mod ID:</source> <translation type="unfinished"></translation> </message> @@ -639,7 +657,7 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Fallo la peticion de fichero de Nexus!</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1174"/> + <location filename="downloadmanager.cpp" line="1254"/> <source>failed to re-open %1</source> <translation>error reabriendo %1</translation> </message> @@ -1049,12 +1067,12 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">mo_archive no cargado: "%1"</translation> </message> <message> - <location filename="installationmanager.cpp" line="97"/> + <location filename="installationmanager.cpp" line="98"/> <source>Password required</source> <translation>Contraseña requerida</translation> </message> <message> - <location filename="installationmanager.cpp" line="97"/> + <location filename="installationmanager.cpp" line="98"/> <source>Password</source> <translation>Contraseña</translation> </message> @@ -1068,18 +1086,18 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="installationmanager.cpp" line="164"/> - <location filename="installationmanager.cpp" line="252"/> - <location filename="installationmanager.cpp" line="530"/> + <location filename="installationmanager.cpp" line="248"/> + <location filename="installationmanager.cpp" line="525"/> <source>Extracting files</source> <translation>Extrayendo ficheros</translation> </message> <message> - <location filename="installationmanager.cpp" line="772"/> + <location filename="installationmanager.cpp" line="753"/> <source>failed to open archive</source> <translation>Error abriendo el fichero</translation> </message> <message> - <location filename="installationmanager.cpp" line="624"/> + <location filename="installationmanager.cpp" line="605"/> <source>File format "%1" not supported</source> <translation>Formato de archivo no soportado para "%1"</translation> </message> @@ -1096,77 +1114,77 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Confirma</translation> </message> <message> - <location filename="installationmanager.cpp" line="75"/> + <location filename="installationmanager.cpp" line="76"/> <source>archive.dll not loaded: "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="installationmanager.cpp" line="443"/> + <location filename="installationmanager.cpp" line="439"/> <source>failed to create backup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="installationmanager.cpp" line="449"/> + <location filename="installationmanager.cpp" line="445"/> <source>Mod Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="installationmanager.cpp" line="449"/> + <location filename="installationmanager.cpp" line="445"/> <source>Name</source> <translation type="unfinished">Nombre</translation> </message> <message> - <location filename="installationmanager.cpp" line="502"/> + <location filename="installationmanager.cpp" line="498"/> <source>Invalid name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="installationmanager.cpp" line="503"/> + <location filename="installationmanager.cpp" line="499"/> <source>The name you entered is invalid, please enter a different one.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="installationmanager.cpp" line="750"/> + <location filename="installationmanager.cpp" line="731"/> <source>None of the available installer plugins were able to handle that archive</source> <translation type="unfinished"></translation> </message> <message> - <location filename="installationmanager.cpp" line="760"/> + <location filename="installationmanager.cpp" line="741"/> <source>no error</source> <translation>sin error</translation> </message> <message> - <location filename="installationmanager.cpp" line="763"/> + <location filename="installationmanager.cpp" line="744"/> <source>7z.dll not found</source> <translation>7z.dll no se encuentra</translation> </message> <message> - <location filename="installationmanager.cpp" line="766"/> + <location filename="installationmanager.cpp" line="747"/> <source>7z.dll isn't valid</source> <translation>7z.dll no es valido</translation> </message> <message> - <location filename="installationmanager.cpp" line="769"/> + <location filename="installationmanager.cpp" line="750"/> <source>archive not found</source> <translation>archivo no encontrado</translation> </message> <message> - <location filename="installationmanager.cpp" line="775"/> + <location filename="installationmanager.cpp" line="756"/> <source>unsupported archive type</source> <translation>formato de fichero no soportado</translation> </message> <message> - <location filename="installationmanager.cpp" line="778"/> + <location filename="installationmanager.cpp" line="759"/> <source>internal library error</source> <translation>error interno de libreria</translation> </message> <message> - <location filename="installationmanager.cpp" line="781"/> + <location filename="installationmanager.cpp" line="762"/> <source>archive invalid</source> <translation>archivo invalido</translation> </message> <message> - <location filename="installationmanager.cpp" line="785"/> + <location filename="installationmanager.cpp" line="766"/> <source>unknown archive error</source> <translatorcomment>error desconocido del archivo</translatorcomment> <translation>Error de fichero desconocido</translation> @@ -1206,12 +1224,12 @@ p, li { white-space: pre-wrap; } <context> <name>MOApplication</name> <message> - <location filename="moapplication.cpp" line="60"/> + <location filename="moapplication.cpp" line="68"/> <source>an error occured: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="moapplication.cpp" line="65"/> + <location filename="moapplication.cpp" line="73"/> <source>an error occured</source> <translation type="unfinished"></translation> </message> @@ -1283,7 +1301,7 @@ Por favor observa que las prioridades no son guardadas para cada perfil.</transl <message> <location filename="mainwindow.ui" line="405"/> <location filename="mainwindow.ui" line="722"/> - <location filename="mainwindow.ui" line="1027"/> + <location filename="mainwindow.ui" line="1035"/> <source>Namefilter</source> <translation type="unfinished"></translation> </message> @@ -1376,67 +1394,66 @@ BSAs checked here are loaded in such a way that your installation order is obeye <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="794"/> - <location filename="mainwindow.ui" line="868"/> + <location filename="mainwindow.ui" line="800"/> + <location filename="mainwindow.ui" line="869"/> <source>File</source> <translation type="unfinished">Fichero</translation> </message> <message> - <location filename="mainwindow.ui" line="799"/> - <location filename="mainwindow.ui" line="873"/> - <source>Mod</source> - <translation type="unfinished">Mod</translation> + <location filename="mainwindow.ui" line="808"/> + <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="807"/> - <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="unfinished"></translation> + <location filename="mainwindow.ui" line="874"/> + <source>Mod</source> + <translation type="unfinished">Mod</translation> </message> <message> - <location filename="mainwindow.ui" line="818"/> + <location filename="mainwindow.ui" line="819"/> <source>Data</source> <translation type="unfinished">Datos</translation> </message> <message> - <location filename="mainwindow.ui" line="836"/> + <location filename="mainwindow.ui" line="837"/> <source>refresh data-directory overview</source> <translation type="unfinished">refresca la vista del directorio de datos</translation> </message> <message> - <location filename="mainwindow.ui" line="839"/> + <location filename="mainwindow.ui" line="840"/> <source>Refresh the overview. This may take a moment.</source> <translation type="unfinished">Refresca toda la vista. Esto puede tomar un tiempo.</translation> </message> <message> - <location filename="mainwindow.ui" line="842"/> - <location filename="mainwindow.cpp" line="3328"/> - <location filename="mainwindow.cpp" line="4059"/> + <location filename="mainwindow.ui" line="843"/> + <location filename="mainwindow.cpp" line="3612"/> + <location filename="mainwindow.cpp" line="4360"/> <source>Refresh</source> <translation type="unfinished">Recargar</translation> </message> <message> - <location filename="mainwindow.ui" line="858"/> + <location filename="mainwindow.ui" line="859"/> <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> </message> <message> - <location filename="mainwindow.ui" line="883"/> - <location filename="mainwindow.ui" line="886"/> + <location filename="mainwindow.ui" line="884"/> + <location filename="mainwindow.ui" line="887"/> <source>Filter the above list so that only conflicts are displayed.</source> <translation type="unfinished">Filrar la lista superior por conflictos.</translation> </message> <message> - <location filename="mainwindow.ui" line="889"/> + <location filename="mainwindow.ui" line="890"/> <source>Show only conflicts</source> <translation type="unfinished">Monstrar solo los conflictos</translation> </message> <message> - <location filename="mainwindow.ui" line="897"/> + <location filename="mainwindow.ui" line="898"/> <source>Saves</source> <translation type="unfinished">Part. Guardadas</translation> </message> <message> - <location filename="mainwindow.ui" line="921"/> + <location filename="mainwindow.ui" line="922"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1447,155 +1464,160 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="935"/> + <location filename="mainwindow.ui" line="936"/> <source>Downloads</source> <translation type="unfinished">Descargas</translation> </message> <message> - <location filename="mainwindow.ui" line="967"/> + <location filename="mainwindow.ui" line="968"/> <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> </message> <message> - <location filename="mainwindow.ui" line="1020"/> + <location filename="mainwindow.ui" line="1021"/> <source>Compact</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1051"/> + <location filename="mainwindow.ui" line="1028"/> + <source>Show Hidden</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1059"/> <source>Tool Bar</source> <translation type="unfinished">Tool Bar</translation> </message> <message> - <location filename="mainwindow.ui" line="1093"/> + <location filename="mainwindow.ui" line="1101"/> <source>Install Mod</source> <translation type="unfinished">Instalar Mod</translation> </message> <message> - <location filename="mainwindow.ui" line="1096"/> + <location filename="mainwindow.ui" line="1104"/> <source>Install &Mod</source> <translation type="unfinished">Instalar &Mod</translation> </message> <message> - <location filename="mainwindow.ui" line="1099"/> + <location filename="mainwindow.ui" line="1107"/> <source>Install a new mod from an archive</source> <translation type="unfinished">Instalar un nuevo Mod desde un archivo</translation> </message> <message> - <location filename="mainwindow.ui" line="1102"/> + <location filename="mainwindow.ui" line="1110"/> <source>Ctrl+M</source> <translation type="unfinished">Ctrl+M</translation> </message> <message> - <location filename="mainwindow.ui" line="1111"/> + <location filename="mainwindow.ui" line="1119"/> <source>Profiles</source> <translation type="unfinished">Perfiles</translation> </message> <message> - <location filename="mainwindow.ui" line="1114"/> + <location filename="mainwindow.ui" line="1122"/> <source>&Profiles</source> <translation type="unfinished">&Perfiles</translation> </message> <message> - <location filename="mainwindow.ui" line="1117"/> + <location filename="mainwindow.ui" line="1125"/> <source>Configure Profiles</source> <translation type="unfinished">Configurar los perfiles</translation> </message> <message> - <location filename="mainwindow.ui" line="1120"/> + <location filename="mainwindow.ui" line="1128"/> <source>Ctrl+P</source> <translation type="unfinished">Ctrl+P</translation> </message> <message> - <location filename="mainwindow.ui" line="1129"/> + <location filename="mainwindow.ui" line="1137"/> <source>Executables</source> <translation type="unfinished">Ejecutables</translation> </message> <message> - <location filename="mainwindow.ui" line="1132"/> + <location filename="mainwindow.ui" line="1140"/> <source>&Executables</source> <translation type="unfinished">&Ejecutables</translation> </message> <message> - <location filename="mainwindow.ui" line="1135"/> + <location filename="mainwindow.ui" line="1143"/> <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> </message> <message> - <location filename="mainwindow.ui" line="1138"/> + <location filename="mainwindow.ui" line="1146"/> <source>Ctrl+E</source> <translation type="unfinished">Ctrl+E</translation> </message> <message> - <location filename="mainwindow.ui" line="1147"/> - <location filename="mainwindow.ui" line="1153"/> + <location filename="mainwindow.ui" line="1155"/> + <location filename="mainwindow.ui" line="1161"/> <source>Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1150"/> + <location filename="mainwindow.ui" line="1158"/> <source>&Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1156"/> + <location filename="mainwindow.ui" line="1164"/> <source>Ctrl+I</source> <translation type="unfinished">Ctrl+I</translation> </message> <message> - <location filename="mainwindow.ui" line="1165"/> + <location filename="mainwindow.ui" line="1173"/> <source>Settings</source> <translation type="unfinished">Configuracion</translation> </message> <message> - <location filename="mainwindow.ui" line="1168"/> + <location filename="mainwindow.ui" line="1176"/> <source>&Settings</source> <translation type="unfinished">&Configuracion</translation> </message> <message> - <location filename="mainwindow.ui" line="1171"/> + <location filename="mainwindow.ui" line="1179"/> <source>Configure settings and workarounds</source> <translation type="unfinished">Configuraciones y modos</translation> </message> <message> - <location filename="mainwindow.ui" line="1174"/> + <location filename="mainwindow.ui" line="1182"/> <source>Ctrl+S</source> <translation type="unfinished">Ctrl+S</translation> </message> <message> - <location filename="mainwindow.ui" line="1183"/> + <location filename="mainwindow.ui" line="1191"/> <source>Nexus</source> <translation type="unfinished">Nexus</translation> </message> <message> - <location filename="mainwindow.ui" line="1186"/> + <location filename="mainwindow.ui" line="1194"/> <source>Search nexus network for more mods</source> <translation type="unfinished">Buscar en la red de Nexus mas Mods</translation> </message> <message> - <location filename="mainwindow.ui" line="1189"/> + <location filename="mainwindow.ui" line="1197"/> <source>Ctrl+N</source> <translation type="unfinished">Ctrl+N</translation> </message> <message> - <location filename="mainwindow.ui" line="1201"/> - <location filename="mainwindow.cpp" line="4007"/> + <location filename="mainwindow.ui" line="1209"/> + <location filename="mainwindow.cpp" line="4308"/> <source>Update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1204"/> + <location filename="mainwindow.ui" line="1212"/> <source>Mod Organizer is up-to-date</source> <translation type="unfinished">Mod Organizer esta actualizado</translation> </message> <message> - <location filename="mainwindow.ui" line="1216"/> - <location filename="mainwindow.cpp" line="478"/> + <location filename="mainwindow.ui" line="1224"/> + <location filename="mainwindow.cpp" line="496"/> <source>No Problems</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1219"/> + <location filename="mainwindow.ui" line="1227"/> <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! @@ -1603,445 +1625,502 @@ Right now this has very limited functionality</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1231"/> - <location filename="mainwindow.ui" line="1234"/> + <location filename="mainwindow.ui" line="1239"/> + <location filename="mainwindow.ui" line="1242"/> <source>Help</source> <translation type="unfinished">Ayuda</translation> </message> <message> - <location filename="mainwindow.ui" line="1237"/> + <location filename="mainwindow.ui" line="1245"/> <source>Ctrl+H</source> <translation type="unfinished">Ctrl+H</translation> </message> <message> - <location filename="mainwindow.ui" line="1246"/> + <location filename="mainwindow.ui" line="1254"/> <source>Endorse MO</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1249"/> - <location filename="mainwindow.cpp" line="4087"/> + <location filename="mainwindow.ui" line="1257"/> + <location filename="mainwindow.cpp" line="4389"/> <source>Endorse Mod Organizer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="204"/> + <location filename="mainwindow.cpp" line="214"/> <source>Toolbar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="205"/> + <location filename="mainwindow.cpp" line="215"/> <source>Desktop</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="206"/> + <location filename="mainwindow.cpp" line="216"/> <source>Start Menu</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="475"/> + <location filename="mainwindow.cpp" line="492"/> <source>Problems</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="476"/> + <location filename="mainwindow.cpp" line="493"/> <source>There are potential problems with your setup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="479"/> + <location filename="mainwindow.cpp" line="497"/> <source>Everything seems to be in order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="531"/> + <location filename="mainwindow.cpp" line="549"/> <source>Help on UI</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="535"/> + <location filename="mainwindow.cpp" line="553"/> <source>Documentation Wiki</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="539"/> + <location filename="mainwindow.cpp" line="557"/> <source>Report Issue</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="543"/> + <location filename="mainwindow.cpp" line="561"/> <source>Tutorials</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="670"/> + <location filename="mainwindow.cpp" line="688"/> <source>failed to save load order: %1</source> <translation type="unfinished">Fallo guardando el orden de carga: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="600"/> + <location filename="mainwindow.cpp" line="618"/> <source>failed to save archives order, do you have write access to "%1"?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="687"/> + <location filename="mainwindow.cpp" line="705"/> <source>Name</source> <translation type="unfinished">Nombre</translation> </message> <message> - <location filename="mainwindow.cpp" line="688"/> + <location filename="mainwindow.cpp" line="706"/> <source>Please enter a name for the new profile</source> <translation type="unfinished">Por favor introduzca un nombre para el nuevo perfil</translation> </message> <message> - <location filename="mainwindow.cpp" line="696"/> + <location filename="mainwindow.cpp" line="714"/> <source>failed to create profile: %1</source> <translation type="unfinished">Fallo al crear el perfil: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="739"/> + <location filename="mainwindow.cpp" line="757"/> <source>Show tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="740"/> + <location filename="mainwindow.cpp" line="758"/> <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> </message> <message> - <location filename="mainwindow.cpp" line="769"/> + <location filename="mainwindow.cpp" line="787"/> <source>Downloads in progress</source> <translation type="unfinished">Descarga en progreso</translation> </message> <message> - <location filename="mainwindow.cpp" line="770"/> + <location filename="mainwindow.cpp" line="788"/> <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> </message> <message> - <location filename="mainwindow.cpp" line="816"/> + <location filename="mainwindow.cpp" line="834"/> <source>failed to read savegame: %1</source> <translation type="unfinished">Fallo al leer la partida guardada: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="941"/> + <location filename="mainwindow.cpp" line="958"/> <source>Plugin "%1" failed: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1183"/> + <location filename="mainwindow.cpp" line="1064"/> + <source>Plugin error</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1065"/> + <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="1249"/> <source>Failed to start "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1185"/> + <location filename="mainwindow.cpp" line="1251"/> <source>Waiting</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1185"/> + <location filename="mainwindow.cpp" line="1251"/> <source>Please press OK once you're logged into steam.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1197"/> + <location filename="mainwindow.cpp" line="1263"/> <source>"%1" not found</source> <translation type="unfinished">"%1" no encontrado</translation> </message> <message> - <location filename="mainwindow.cpp" line="1211"/> + <location filename="mainwindow.cpp" line="1277"/> <source>Start Steam?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1212"/> + <location filename="mainwindow.cpp" line="1278"/> <source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1426"/> + <location filename="mainwindow.cpp" line="1492"/> <source>Also in: <br></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1437"/> + <location filename="mainwindow.cpp" line="1503"/> <source>No conflict</source> <translation type="unfinished">Sin conflictos</translation> </message> <message> - <location filename="mainwindow.cpp" line="1552"/> + <location filename="mainwindow.cpp" line="1620"/> <source><Edit...></source> <translation type="unfinished"><Editar...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1771"/> + <location filename="mainwindow.cpp" line="1704"/> + <source>Failed to refresh list of esps: %s</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1844"/> <source>This bsa is enabled in the ini file so it may be required!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1778"/> + <location filename="mainwindow.cpp" line="1851"/> <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="1833"/> + <location filename="mainwindow.cpp" line="1906"/> <source>Activating Network Proxy</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1962"/> - <location filename="mainwindow.cpp" line="3755"/> + <location filename="mainwindow.cpp" line="2037"/> + <location filename="mainwindow.cpp" line="4056"/> <source>Installation successful</source> <translation type="unfinished">Instalacion completada</translation> </message> <message> - <location filename="mainwindow.cpp" line="1973"/> - <location filename="mainwindow.cpp" line="3768"/> + <location filename="mainwindow.cpp" line="2048"/> + <location filename="mainwindow.cpp" line="4069"/> <source>Configure Mod</source> <translation type="unfinished">Configurar Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="1974"/> - <location filename="mainwindow.cpp" line="3769"/> + <location filename="mainwindow.cpp" line="2049"/> + <location filename="mainwindow.cpp" line="4070"/> <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> </message> <message> - <location filename="mainwindow.cpp" line="1980"/> - <location filename="mainwindow.cpp" line="3775"/> + <location filename="mainwindow.cpp" line="2055"/> + <location filename="mainwindow.cpp" line="4076"/> <source>mod "%1" not found</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1983"/> - <location filename="mainwindow.cpp" line="3781"/> + <location filename="mainwindow.cpp" line="2058"/> + <location filename="mainwindow.cpp" line="4082"/> <source>Installation cancelled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1983"/> - <location filename="mainwindow.cpp" line="3781"/> + <location filename="mainwindow.cpp" line="2058"/> + <location filename="mainwindow.cpp" line="4082"/> <source>The mod was not installed completely.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2018"/> + <location filename="mainwindow.cpp" line="2207"/> <source>Some plugins could not be loaded</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2021"/> - <location filename="mainwindow.cpp" line="2038"/> - <source>Description missing</source> + <location filename="mainwindow.cpp" line="2210"/> + <source>Too many esps and esms enabled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2030"/> - <source>The following Plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:<ul></source> + <location filename="mainwindow.cpp" line="2213"/> + <location filename="mainwindow.cpp" line="2234"/> + <source>Description missing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2060"/> + <location filename="mainwindow.cpp" line="2256"/> <source>Choose Mod</source> <translation type="unfinished">Seleccione Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2061"/> + <location filename="mainwindow.cpp" line="2257"/> <source>Mod Archive</source> <translation type="unfinished">Fichero Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2214"/> + <location filename="mainwindow.cpp" line="2410"/> <source>Start Tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2215"/> + <location filename="mainwindow.cpp" line="2411"/> <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> </message> <message> - <location filename="mainwindow.cpp" line="2360"/> - <location filename="mainwindow.cpp" line="3683"/> + <location filename="mainwindow.cpp" line="2566"/> + <location filename="mainwindow.cpp" line="3984"/> <source>Download started</source> <translation type="unfinished">Descarga comenzada</translation> </message> <message> - <location filename="mainwindow.cpp" line="2391"/> + <location filename="mainwindow.cpp" line="2597"/> <source>failed to update mod list: %1</source> <translation type="unfinished">Fallo al actualizar la lista de Mods: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2418"/> + <location filename="mainwindow.cpp" line="2624"/> <source>failed to spawn notepad.exe: %1</source> <translation type="unfinished">Fallo al cargar el Bloc de notas: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2459"/> + <location filename="mainwindow.cpp" line="2665"/> <source>failed to open %1</source> <translation type="unfinished">Fallo al abrir %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2537"/> + <location filename="mainwindow.cpp" line="2743"/> <source>failed to change origin name: %1</source> <translation type="unfinished">fallo al cambiar el nombre original del fichero %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2676"/> + <location filename="mainwindow.cpp" line="2906"/> <source>Multiple esps activated, please check that they don't conflict.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3005"/> - <location filename="mainwindow.cpp" line="3339"/> + <location filename="mainwindow.cpp" line="3251"/> + <location filename="mainwindow.cpp" line="3623"/> <source>Create Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3006"/> + <location filename="mainwindow.cpp" line="3252"/> <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="3015"/> + <location filename="mainwindow.cpp" line="3261"/> <source>A mod with this name already exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3410"/> + <location filename="mainwindow.cpp" line="3444"/> + <source>Continue?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3445"/> + <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="3465"/> + <source>Sorry</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3466"/> + <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="3710"/> <source><All></source> <translation type="unfinished"><Todos></translation> </message> <message> - <location filename="mainwindow.cpp" line="2589"/> + <location filename="mainwindow.cpp" line="2818"/> <source><Checked></source> <translation type="unfinished"><Marcado></translation> </message> <message> - <location filename="mainwindow.cpp" line="943"/> + <location filename="mainwindow.cpp" line="960"/> <source>Plugin "%1" failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1007"/> + <location filename="mainwindow.cpp" line="1026"/> <source>failed to init plugin %1: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2590"/> + <location filename="mainwindow.cpp" line="2222"/> + <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="2230"/> + <source>The game doesn't allow more than 256 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="2769"/> + <source>Failed to move "%1" from mod "%2" to "%3": %4</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2819"/> <source><Unchecked></source> <translation type="unfinished"><Desmarcado></translation> </message> <message> - <location filename="mainwindow.cpp" line="2591"/> + <location filename="mainwindow.cpp" line="2820"/> <source><Update></source> <translation type="unfinished"><Actualizacion></translation> </message> <message> - <location filename="mainwindow.cpp" line="2592"/> + <location filename="mainwindow.cpp" line="2821"/> <source><No category></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2593"/> + <location filename="mainwindow.cpp" line="2822"/> <source><Conflicted></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2626"/> + <location filename="mainwindow.cpp" line="2823"/> + <source><Not Endorsed></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2856"/> <source>failed to rename mod: %1</source> <translation type="unfinished">fallo al cambiar el nombre al mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2639"/> + <location filename="mainwindow.cpp" line="2869"/> <source>Overwrite?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2640"/> + <location filename="mainwindow.cpp" line="2870"/> <source>This will replace the existing mod "%1". Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2643"/> + <location filename="mainwindow.cpp" line="2873"/> <source>failed to remove mod "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2647"/> - <location filename="mainwindow.cpp" line="3953"/> - <location filename="mainwindow.cpp" line="3977"/> + <location filename="mainwindow.cpp" line="2877"/> + <location filename="mainwindow.cpp" line="4254"/> + <location filename="mainwindow.cpp" line="4278"/> <source>failed to rename "%1" to "%2"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2702"/> - <location filename="mainwindow.cpp" line="3243"/> - <location filename="mainwindow.cpp" line="3252"/> + <location filename="mainwindow.cpp" line="2932"/> + <location filename="mainwindow.cpp" line="3518"/> + <location filename="mainwindow.cpp" line="3526"/> <source>Confirm</source> <translation type="unfinished">Confirma</translation> </message> <message> - <location filename="mainwindow.cpp" line="2703"/> + <location filename="mainwindow.cpp" line="2933"/> <source>Remove the following mods?<br><ul>%1</ul></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2714"/> + <location filename="mainwindow.cpp" line="2944"/> <source>failed to remove mod: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2744"/> - <location filename="mainwindow.cpp" line="2747"/> + <location filename="mainwindow.cpp" line="2979"/> + <location filename="mainwindow.cpp" line="2982"/> <source>Failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2744"/> + <location filename="mainwindow.cpp" line="2979"/> <source>Installation file no longer exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2748"/> + <location filename="mainwindow.cpp" line="2983"/> <source>Mods installed with old versions of MO can't be reinstalled in this way.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2763"/> - <location filename="mainwindow.cpp" line="2790"/> + <location filename="mainwindow.cpp" line="2998"/> + <location filename="mainwindow.cpp" line="3025"/> <source>You need to be logged in with Nexus to endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2906"/> - <location filename="mainwindow.cpp" line="4335"/> + <location filename="mainwindow.cpp" line="3154"/> + <location filename="mainwindow.cpp" line="4638"/> <source>Extract BSA</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2907"/> + <location filename="mainwindow.cpp" line="3155"/> <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> </message> <message> - <location filename="mainwindow.cpp" line="2917"/> - <location filename="mainwindow.cpp" line="4292"/> - <location filename="mainwindow.cpp" line="4343"/> + <location filename="mainwindow.cpp" line="3165"/> + <location filename="mainwindow.cpp" line="4595"/> + <location filename="mainwindow.cpp" line="4646"/> <source>failed to read %1: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2930"/> - <location filename="mainwindow.cpp" line="4354"/> + <location filename="mainwindow.cpp" line="3178"/> + <location filename="mainwindow.cpp" line="4657"/> <source>This archive contains invalid hashes. Some files may be broken.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2964"/> + <location filename="mainwindow.cpp" line="3212"/> <source>Nexus ID for this Mod is unknown</source> <translation type="unfinished"></translation> </message> @@ -2054,371 +2133,391 @@ Please enter a name: </source> <translation type="obsolete">Selecciona Prioridad</translation> </message> <message> - <location filename="mainwindow.cpp" line="3243"/> + <location filename="mainwindow.cpp" line="3518"/> <source>Really enable all visible mods?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3252"/> + <location filename="mainwindow.cpp" line="3526"/> <source>Really disable all visible mods?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3261"/> + <location filename="mainwindow.cpp" line="3534"/> <source>Choose what to export</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3263"/> + <location filename="mainwindow.cpp" line="3536"/> <source>Everything</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3263"/> + <location filename="mainwindow.cpp" line="3536"/> <source>All installed mods are included in the list</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3264"/> + <location filename="mainwindow.cpp" line="3537"/> <source>Active Mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3264"/> + <location filename="mainwindow.cpp" line="3537"/> <source>Only active (checked) mods from your current profile are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3265"/> + <location filename="mainwindow.cpp" line="3538"/> <source>Visible</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3265"/> + <location filename="mainwindow.cpp" line="3538"/> <source>All mods visible in the mod list are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3308"/> + <location filename="mainwindow.cpp" line="3581"/> <source>export failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3321"/> + <location filename="mainwindow.cpp" line="3605"/> <source>Install Mod...</source> <translation type="unfinished">Instalar Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3323"/> + <location filename="mainwindow.cpp" line="3607"/> <source>Enable all visible</source> <translation type="unfinished">Activar todos los visibles</translation> </message> <message> - <location filename="mainwindow.cpp" line="3324"/> + <location filename="mainwindow.cpp" line="3608"/> <source>Disable all visible</source> <translation type="unfinished">Desactivar todos los visibles</translation> </message> <message> - <location filename="mainwindow.cpp" line="3326"/> + <location filename="mainwindow.cpp" line="3610"/> <source>Check all for update</source> <translation type="unfinished">Buscar Actualizaciones</translation> </message> <message> - <location filename="mainwindow.cpp" line="3330"/> + <location filename="mainwindow.cpp" line="3614"/> <source>Export to csv...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3338"/> + <location filename="mainwindow.cpp" line="3622"/> <source>Sync to Mods...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3342"/> + <location filename="mainwindow.cpp" line="3626"/> <source>Restore Backup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3343"/> + <location filename="mainwindow.cpp" line="3627"/> <source>Remove Backup...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3345"/> + <location filename="mainwindow.cpp" line="3630"/> <source>Set Category</source> <translation type="unfinished">Definir Categoria</translation> </message> <message> - <location filename="mainwindow.cpp" line="3349"/> + <location filename="mainwindow.cpp" line="3635"/> <source>Primary Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3353"/> + <location filename="mainwindow.cpp" line="3642"/> + <source>Change versioning scheme</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3646"/> + <source>Un-ignore update</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3648"/> + <source>Ignore update</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3653"/> <source>Rename Mod...</source> <translation type="unfinished">Cambiar nombre...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3354"/> + <location filename="mainwindow.cpp" line="3654"/> <source>Remove Mod...</source> <translation type="unfinished">Quitar Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3355"/> + <location filename="mainwindow.cpp" line="3655"/> <source>Reinstall Mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3358"/> + <location filename="mainwindow.cpp" line="3658"/> <source>Un-Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3361"/> - <location filename="mainwindow.cpp" line="3365"/> + <location filename="mainwindow.cpp" line="3661"/> + <location filename="mainwindow.cpp" line="3665"/> <source>Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3362"/> + <location filename="mainwindow.cpp" line="3662"/> <source>Won't endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3368"/> + <location filename="mainwindow.cpp" line="3668"/> <source>Endorsement state unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3375"/> + <location filename="mainwindow.cpp" line="3675"/> <source>Ignore missing data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3378"/> + <location filename="mainwindow.cpp" line="3678"/> <source>Visit on Nexus</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3379"/> + <location filename="mainwindow.cpp" line="3679"/> <source>Open in explorer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3382"/> + <location filename="mainwindow.cpp" line="3682"/> <source>Information...</source> <translation type="unfinished">Informacion...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3388"/> - <location filename="mainwindow.cpp" line="4514"/> + <location filename="mainwindow.cpp" line="3688"/> + <location filename="mainwindow.cpp" line="4842"/> <source>Exception: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3390"/> - <location filename="mainwindow.cpp" line="4516"/> + <location filename="mainwindow.cpp" line="3690"/> + <location filename="mainwindow.cpp" line="4844"/> <source>Unknown exception</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3412"/> + <location filename="mainwindow.cpp" line="3712"/> <source><Multiple></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3524"/> + <location filename="mainwindow.cpp" line="3824"/> <source>Fix Mods...</source> <translation type="unfinished">Activar Mods faltantes...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3548"/> - <location filename="mainwindow.cpp" line="3579"/> + <location filename="mainwindow.cpp" line="3848"/> + <location filename="mainwindow.cpp" line="3879"/> <source>failed to remove %1</source> <translation type="unfinished">Fallo eliminando %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3563"/> - <location filename="mainwindow.cpp" line="3594"/> + <location filename="mainwindow.cpp" line="3863"/> + <location filename="mainwindow.cpp" line="3894"/> <source>failed to create %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3615"/> + <location filename="mainwindow.cpp" line="3916"/> <source>Can't change download directory while downloads are in progress!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3686"/> + <location filename="mainwindow.cpp" line="3987"/> <source>Download failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3830"/> + <location filename="mainwindow.cpp" line="4131"/> <source>failed to write to file %1</source> <translation type="unfinished">Fallo de escritura en el fichero %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3836"/> + <location filename="mainwindow.cpp" line="4137"/> <source>%1 written</source> <translation type="unfinished">%1 escrito</translation> </message> <message> - <location filename="mainwindow.cpp" line="3875"/> + <location filename="mainwindow.cpp" line="4176"/> <source>Select binary</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3875"/> + <location filename="mainwindow.cpp" line="4176"/> <source>Binary</source> <translation type="unfinished">Fichero</translation> </message> <message> - <location filename="mainwindow.cpp" line="3901"/> + <location filename="mainwindow.cpp" line="4202"/> <source>Enter Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3902"/> + <location filename="mainwindow.cpp" line="4203"/> <source>Please enter a name for the executable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3913"/> + <location filename="mainwindow.cpp" line="4214"/> <source>Not an executable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3913"/> + <location filename="mainwindow.cpp" line="4214"/> <source>This is not a recognized executable.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3938"/> - <location filename="mainwindow.cpp" line="3963"/> + <location filename="mainwindow.cpp" line="4239"/> + <location filename="mainwindow.cpp" line="4264"/> <source>Replace file?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3938"/> + <location filename="mainwindow.cpp" line="4239"/> <source>There already is a hidden version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3941"/> - <location filename="mainwindow.cpp" line="3966"/> + <location filename="mainwindow.cpp" line="4242"/> + <location filename="mainwindow.cpp" line="4267"/> <source>File operation failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3941"/> - <location filename="mainwindow.cpp" line="3966"/> + <location filename="mainwindow.cpp" line="4242"/> + <location filename="mainwindow.cpp" line="4267"/> <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3963"/> + <location filename="mainwindow.cpp" line="4264"/> <source>There already is a visible version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4009"/> + <location filename="mainwindow.cpp" line="4310"/> <source>Update available</source> <translation type="unfinished">Disponible actualización</translation> </message> <message> - <location filename="mainwindow.cpp" line="4046"/> + <location filename="mainwindow.cpp" line="4347"/> <source>Open/Execute</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4047"/> + <location filename="mainwindow.cpp" line="4348"/> <source>Add as Executable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4051"/> + <location filename="mainwindow.cpp" line="4352"/> <source>Un-Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4053"/> + <location filename="mainwindow.cpp" line="4354"/> <source>Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4058"/> + <location filename="mainwindow.cpp" line="4359"/> <source>Write To File...</source> <translation type="unfinished">Escribir al fichero...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4088"/> + <location filename="mainwindow.cpp" line="4390"/> <source>Do you want to endorse Mod Organizer on %1 now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4505"/> + <location filename="mainwindow.cpp" line="4803"/> + <source>Remove</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4833"/> <source>Unlock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4508"/> + <location filename="mainwindow.cpp" line="4836"/> <source>Lock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4223"/> + <location filename="mainwindow.cpp" line="4526"/> <source>Request to Nexus failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4230"/> - <location filename="mainwindow.cpp" line="4247"/> + <location filename="mainwindow.cpp" line="4533"/> + <location filename="mainwindow.cpp" line="4550"/> <source>login successful</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4256"/> + <location filename="mainwindow.cpp" line="4559"/> <source>login failed: %1. Trying to download anyway</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4262"/> + <location filename="mainwindow.cpp" line="4565"/> <source>login failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4271"/> + <location filename="mainwindow.cpp" line="4574"/> <source>login failed: %1. You need to log-in with Nexus to update MO.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4304"/> + <location filename="mainwindow.cpp" line="4607"/> <source>Error</source> <translation type="unfinished">Error</translation> </message> <message> - <location filename="mainwindow.cpp" line="4304"/> + <location filename="mainwindow.cpp" line="4607"/> <source>failed to extract %1 (errorcode %2)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4399"/> + <location filename="mainwindow.cpp" line="4702"/> <source>Extract...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4449"/> + <location filename="mainwindow.cpp" line="4758"/> <source>Edit Categories...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4485"/> + <location filename="mainwindow.cpp" line="4813"/> <source>Enable all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4486"/> + <location filename="mainwindow.cpp" line="4814"/> <source>Disable all</source> <translation type="unfinished"></translation> </message> @@ -2448,7 +2547,7 @@ Please enter a name: </source> <context> <name>ModInfoBackup</name> <message> - <location filename="modinfo.cpp" line="784"/> + <location filename="modinfo.cpp" line="813"/> <source>This is the backup of a mod</source> <translation type="unfinished"></translation> </message> @@ -2491,48 +2590,47 @@ Please enter a name: </source> <translation>Esta es la lista de ficheros INI que incluye el mod. Normalmente son usados para configurar algunos aspectos o parametros del mod.</translation> </message> <message> - <location filename="modinfodialog.ui" line="143"/> + <location filename="modinfodialog.ui" line="146"/> <source>Save changes to the file.</source> <translation>Grabar cambios al fichero.</translation> </message> <message> - <location filename="modinfodialog.ui" line="146"/> + <location filename="modinfodialog.ui" line="149"/> <source>Save changes to the file. This overwrites the original. There is no automatic backup!</source> <translation>Grabar cambios al fichero. Esto sobreescribe el original. No se realizan backups!</translation> </message> <message> <location filename="modinfodialog.ui" line="64"/> - <location filename="modinfodialog.ui" line="149"/> + <location filename="modinfodialog.ui" line="152"/> <source>Save</source> <translation>Guardar</translation> </message> <message> - <location filename="modinfodialog.ui" line="159"/> + <location filename="modinfodialog.ui" line="162"/> <source>Images</source> <translation>Imagenes</translation> </message> <message> - <location filename="modinfodialog.ui" line="214"/> + <location filename="modinfodialog.ui" line="217"/> <source>Images located in the mod.</source> <translation>Imagenes incluidas en el mod.</translation> </message> <message> - <location filename="modinfodialog.ui" line="217"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" 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>Esto muestra el listado de fotos (jpg y png) incluidas con el Mod, por ejemplo capturas de pantallas. Pulsa para verlas en grande.</translation> + <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> </message> <message> - <location filename="modinfodialog.ui" line="254"/> - <location filename="modinfodialog.ui" line="277"/> + <location filename="modinfodialog.ui" line="244"/> + <location filename="modinfodialog.ui" line="263"/> <source>Optional ESPs</source> <translation>ESPs Opcionales</translation> </message> <message> - <location filename="modinfodialog.ui" line="260"/> + <location filename="modinfodialog.ui" line="250"/> <source>List of esps and esms that can not be loaded by the game.</source> <translation>Listado de ESPs y ESMs que no se cargaran con el juego.</translation> </message> @@ -2551,115 +2649,116 @@ Normalmente son ficheros extras o modificaciones, mira el fich. texto del mod pa Muchos mods no tienen ESPs extras, en estos casos veras una lista vacia.</translation> </message> <message> - <location filename="modinfodialog.ui" line="263"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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> + <location filename="modinfodialog.ui" line="220"/> + <source>This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="292"/> + <location filename="modinfodialog.ui" line="253"/> + <source>List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window. +They usually contain optional functionality, see the readme. + +Most mods do not have optional esps, so chances are good you are looking at an empty list.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="278"/> <source>Make the selected mod in the lower list unavailable.</source> <translation>marca este fichero seleccionado en la lista de abajo no disponible.</translation> </message> <message> - <location filename="modinfodialog.ui" line="295"/> + <location filename="modinfodialog.ui" line="281"/> <source>The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become "invisible" to the game. It can then no longer be activated.</source> <translation>El esp seleccionado (en la lista de abajo) es el que sera colocado en el subdirectorio del mod y sera invisible para el juego. Este no podra ser activado.</translation> </message> <message> - <location filename="modinfodialog.ui" line="321"/> + <location filename="modinfodialog.ui" line="307"/> <source>Move a file to the data directory.</source> <translation>Error moviendo fichero al directorio de datos.</translation> </message> <message> - <location filename="modinfodialog.ui" line="324"/> + <location filename="modinfodialog.ui" line="310"/> <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="359"/> + <location filename="modinfodialog.ui" line="345"/> <source>ESPs in the data directory and thus visible to the game.</source> <translation>ESPs en el directorio de datos y visibles por el juego.</translation> </message> <message> - <location filename="modinfodialog.ui" line="362"/> + <location filename="modinfodialog.ui" line="348"/> <source>These are the mod files that are in the (virtual) data directory of your game and will thus be selecteable in the esp list in the main window.</source> <translation>Estos son los archivos mod que se encuentran en el directorio de datos (virtual) de su juego y así será selecteable en la lista de esp en la ventana principal.</translation> </message> <message> - <location filename="modinfodialog.ui" line="369"/> + <location filename="modinfodialog.ui" line="355"/> <source>Available ESPs</source> <translation>ESPs Disponibles</translation> </message> <message> - <location filename="modinfodialog.ui" line="377"/> + <location filename="modinfodialog.ui" line="363"/> <source>Conflicts</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="385"/> + <location filename="modinfodialog.ui" line="371"/> <source>The following conflicted files are provided by this mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="432"/> - <location filename="modinfodialog.ui" line="479"/> + <location filename="modinfodialog.ui" line="418"/> + <location filename="modinfodialog.ui" line="465"/> <source>File</source> <translation type="unfinished">Fichero</translation> </message> <message> - <location filename="modinfodialog.ui" line="437"/> + <location filename="modinfodialog.ui" line="423"/> <source>Overwritten Mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="447"/> + <location filename="modinfodialog.ui" line="433"/> <source>The following conflicted files are provided by other mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="484"/> + <location filename="modinfodialog.ui" line="470"/> <source>Providing Mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="494"/> + <location filename="modinfodialog.ui" line="480"/> <source>Non-Conflicted files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="514"/> + <location filename="modinfodialog.ui" line="500"/> <source>Categories</source> <translation type="unfinished">Categorias</translation> </message> <message> - <location filename="modinfodialog.ui" line="537"/> + <location filename="modinfodialog.ui" line="523"/> <source>Primary Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="554"/> + <location filename="modinfodialog.ui" line="540"/> <source>Nexus Info</source> <translation>Inf. Nexus</translation> </message> <message> - <location filename="modinfodialog.ui" line="562"/> + <location filename="modinfodialog.ui" line="548"/> <source>Mod ID</source> <translation>ID del MOD</translation> </message> <message> - <location filename="modinfodialog.ui" line="569"/> + <location filename="modinfodialog.ui" line="555"/> <source>Mod ID for this mod on Nexus.</source> <translation>ID del Mod en Nexus.</translation> </message> <message> - <location filename="modinfodialog.ui" line="572"/> + <location filename="modinfodialog.ui" line="558"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -2673,7 +2772,7 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="596"/> + <location filename="modinfodialog.ui" line="582"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -2682,27 +2781,27 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="603"/> + <location filename="modinfodialog.ui" line="589"/> <source>Version</source> <translation>Version</translation> </message> <message> - <location filename="modinfodialog.ui" line="633"/> + <location filename="modinfodialog.ui" line="619"/> <source>Refresh</source> <translation type="unfinished">Recargar</translation> </message> <message> - <location filename="modinfodialog.ui" line="636"/> + <location filename="modinfodialog.ui" line="622"/> <source>Refresh all information from Nexus.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="650"/> + <location filename="modinfodialog.ui" line="636"/> <source>Description</source> <translation>Descripcion</translation> </message> <message> - <location filename="modinfodialog.ui" line="665"/> + <location filename="modinfodialog.ui" line="651"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -2712,12 +2811,12 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="701"/> + <location filename="modinfodialog.ui" line="687"/> <source>Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="715"/> + <location filename="modinfodialog.ui" line="701"/> <source>Notes</source> <translation type="unfinished"></translation> </message> @@ -2738,8 +2837,9 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Tipo</translation> </message> <message> + <location filename="modinfodialog.cpp" line="1179"/> <source>Name</source> - <translation type="obsolete">Nombre</translation> + <translation type="unfinished">Nombre</translation> </message> <message> <source>Size (kB)</source> @@ -2759,17 +2859,17 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Tamaño</translation> </message> <message> - <location filename="modinfodialog.ui" line="725"/> + <location filename="modinfodialog.ui" line="711"/> <source>Filetree</source> <translation>Contenido</translation> </message> <message> - <location filename="modinfodialog.ui" line="734"/> + <location filename="modinfodialog.ui" line="720"/> <source>A directory view of this mod</source> <translation>Ficheros que contiene este mod</translation> </message> <message> - <location filename="modinfodialog.ui" line="737"/> + <location filename="modinfodialog.ui" line="723"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -2779,43 +2879,43 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="764"/> + <location filename="modinfodialog.ui" line="750"/> <source>Previous</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="771"/> + <location filename="modinfodialog.ui" line="757"/> <source>Next</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="791"/> + <location filename="modinfodialog.ui" line="777"/> <source>Close</source> <translation>Cerrar</translation> </message> <message> - <location filename="modinfodialog.cpp" line="563"/> + <location filename="modinfodialog.cpp" line="570"/> <source>File Exists</source> <translation>Existe el fichero</translation> </message> <message> - <location filename="modinfodialog.cpp" line="563"/> + <location filename="modinfodialog.cpp" line="570"/> <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="580"/> + <location filename="modinfodialog.cpp" line="587"/> <source>failed to move file</source> <translation>Error al mover el fichero</translation> </message> <message> - <location filename="modinfodialog.cpp" line="605"/> + <location filename="modinfodialog.cpp" line="612"/> <source>failed to create directory "optional"</source> <translation>Error al crear el directorio "optional"</translation> </message> <message> - <location filename="modinfodialog.cpp" line="643"/> - <location filename="modinfodialog.cpp" line="1155"/> + <location filename="modinfodialog.cpp" line="650"/> + <location filename="modinfodialog.cpp" line="1156"/> <source>Info requested, please wait</source> <translation>Informacion solicitada, por favor espere</translation> </message> @@ -2852,23 +2952,23 @@ p, li { white-space: pre-wrap; } <translation>&New Folder</translation> </message> <message> - <location filename="modinfodialog.cpp" line="352"/> - <location filename="modinfodialog.cpp" line="367"/> + <location filename="modinfodialog.cpp" line="354"/> + <location filename="modinfodialog.cpp" line="369"/> <source>Save changes?</source> <translation type="unfinished">Grabar cambios?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="713"/> + <location filename="modinfodialog.cpp" line="720"/> <source>Current Version: %1</source> <translation>Version actual: %1</translation> </message> <message> - <location filename="modinfodialog.cpp" line="717"/> + <location filename="modinfodialog.cpp" line="724"/> <source>No update available</source> <translation>Sin actualizacion</translation> </message> <message> - <location filename="modinfodialog.cpp" line="697"/> + <location filename="modinfodialog.cpp" line="704"/> <source>Main</source> <translation>Principal</translation> </message> @@ -2883,97 +2983,123 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="352"/> - <location filename="modinfodialog.cpp" line="367"/> + <location filename="modinfodialog.cpp" line="354"/> + <location filename="modinfodialog.cpp" line="369"/> <source>Save changes to "%1"?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="698"/> + <location filename="modinfodialog.cpp" line="705"/> <source>Update</source> <translation>Actualizacion</translation> </message> <message> - <location filename="modinfodialog.cpp" line="699"/> + <location filename="modinfodialog.cpp" line="706"/> <source>Optional</source> <translation>Opcional</translation> </message> <message> - <location filename="modinfodialog.cpp" line="700"/> + <location filename="modinfodialog.cpp" line="707"/> <source>Old</source> <translation>Antiguo</translation> </message> <message> - <location filename="modinfodialog.cpp" line="701"/> + <location filename="modinfodialog.cpp" line="708"/> <source>Misc</source> <translation>Misc</translation> </message> <message> - <location filename="modinfodialog.cpp" line="702"/> + <location filename="modinfodialog.cpp" line="709"/> <source>Unknown</source> <translation>Desconocido</translation> </message> <message> - <location filename="modinfodialog.cpp" line="758"/> + <location filename="modinfodialog.cpp" line="765"/> <source>(description incomplete, please visit nexus)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1064"/> - <location filename="modinfodialog.cpp" line="1088"/> + <location filename="modinfodialog.cpp" line="1065"/> + <location filename="modinfodialog.cpp" line="1089"/> <source>Replace file?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1064"/> + <location filename="modinfodialog.cpp" line="1065"/> <source>There already is a hidden version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1067"/> - <location filename="modinfodialog.cpp" line="1091"/> + <location filename="modinfodialog.cpp" line="1068"/> + <location filename="modinfodialog.cpp" line="1092"/> <source>File operation failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1067"/> - <location filename="modinfodialog.cpp" line="1091"/> + <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"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1078"/> - <location filename="modinfodialog.cpp" line="1101"/> + <location filename="modinfodialog.cpp" line="1079"/> + <location filename="modinfodialog.cpp" line="1102"/> <source>failed to rename %1 to %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1088"/> + <location filename="modinfodialog.cpp" line="1089"/> <source>There already is a visible version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1135"/> + <location filename="modinfodialog.cpp" line="1136"/> <source>Un-Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1137"/> + <location filename="modinfodialog.cpp" line="1138"/> <source>Hide</source> <translation type="unfinished"></translation> </message> <message> + <location filename="modinfodialog.cpp" line="1179"/> + <source>Please enter a name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1183"/> + <location filename="modinfodialog.cpp" line="1186"/> + <source>Error</source> + <translation type="unfinished">Error</translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1183"/> + <source>Invalid name. Must be a valid file name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1186"/> + <source>A tweak by that name exists</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1198"/> + <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="779"/> + <location filename="modinfodialog.cpp" line="780"/> <source><a href="%1">Visit on Nexus</a></source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="869"/> - <location filename="modinfodialog.cpp" line="874"/> + <location filename="modinfodialog.cpp" line="870"/> + <location filename="modinfodialog.cpp" line="875"/> <source>Confirm</source> <translation>Confirma</translation> </message> @@ -2986,28 +3112,28 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Descarga comenzada</translation> </message> <message> - <location filename="modinfodialog.cpp" line="858"/> + <location filename="modinfodialog.cpp" line="859"/> <source>Failed to delete %1</source> <translation>Error borrando %1</translation> </message> <message> - <location filename="modinfodialog.cpp" line="869"/> + <location filename="modinfodialog.cpp" line="870"/> <source>Are sure you want to delete "%1"?</source> <translation>Estas seguro de querer borrar "%1"?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="874"/> + <location filename="modinfodialog.cpp" line="875"/> <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="948"/> - <location filename="modinfodialog.cpp" line="954"/> + <location filename="modinfodialog.cpp" line="949"/> + <location filename="modinfodialog.cpp" line="955"/> <source>New Folder</source> <translation>Nueva Carpeta</translation> </message> <message> - <location filename="modinfodialog.cpp" line="960"/> + <location filename="modinfodialog.cpp" line="961"/> <source>Failed to create "%1"</source> <translation>Fallo al crear "%1"</translation> </message> @@ -3015,12 +3141,7 @@ p, li { white-space: pre-wrap; } <context> <name>ModInfoOverwrite</name> <message> - <location filename="modinfo.h" line="812"/> - <source>Overwrite</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfo.cpp" line="821"/> + <location filename="modinfo.cpp" line="859"/> <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source> <translation type="unfinished"></translation> </message> @@ -3028,17 +3149,17 @@ p, li { white-space: pre-wrap; } <context> <name>ModInfoRegular</name> <message> - <location filename="modinfo.cpp" line="392"/> + <location filename="modinfo.cpp" line="393"/> <source>failed to write %1/meta.ini: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfo.cpp" line="625"/> + <location filename="modinfo.cpp" line="654"/> <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> </message> <message> - <location filename="modinfo.cpp" line="629"/> + <location filename="modinfo.cpp" line="658"/> <source>Categories: <br></source> <translation type="unfinished"></translation> </message> @@ -3066,7 +3187,7 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Comprobacion comenzada</translation> </message> <message> - <location filename="modlist.cpp" line="662"/> + <location filename="modlist.cpp" line="775"/> <source>Confirm</source> <translation>Confirma</translation> </message> @@ -3087,7 +3208,7 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">max</translation> </message> <message> - <location filename="modlist.cpp" line="294"/> + <location filename="modlist.cpp" line="307"/> <source>installed version: %1, newest version: %2</source> <translation>version instalada: %1, nueva version: %2</translation> </message> @@ -3096,11 +3217,6 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">%1 no contiene ningun directorio con esp/esm ni externos (textures, meshes, interface, ...)</translation> </message> <message> - <location filename="modlist.cpp" line="94"/> - <source>Overwrite</source> - <translation type="unfinished"></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> @@ -3141,47 +3257,52 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="184"/> + <location filename="modlist.cpp" line="196"/> <source>invalid</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="298"/> + <location filename="modlist.cpp" line="309"/> + <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="317"/> <source>Categories: <br></source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="327"/> + <location filename="modlist.cpp" line="346"/> <source>Invalid name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="718"/> + <location filename="modlist.cpp" line="831"/> <source>Mod Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="723"/> + <location filename="modlist.cpp" line="836"/> <source>Installation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="736"/> + <location filename="modlist.cpp" line="849"/> <source>Category of the mod.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="737"/> + <location filename="modlist.cpp" line="850"/> <source>Id of the mod as used on Nexus.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="738"/> + <location filename="modlist.cpp" line="851"/> <source>Emblemes to highlight things that might require attention.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="739"/> + <location filename="modlist.cpp" line="852"/> <source>Time this mod was installed</source> <translation type="unfinished"></translation> </message> @@ -3194,58 +3315,58 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Nombres de los mods</translation> </message> <message> - <location filename="modlist.cpp" line="719"/> + <location filename="modlist.cpp" line="832"/> <source>Version</source> <translation>Versión</translation> </message> <message> - <location filename="modlist.cpp" line="733"/> + <location filename="modlist.cpp" line="846"/> <source>Version of the mod (if available)</source> <translation>Version del mod (si esta disponible)</translation> </message> <message> - <location filename="modlist.cpp" line="720"/> + <location filename="modlist.cpp" line="833"/> <source>Priority</source> <translation>Prioridad</translation> </message> <message> - <location filename="modlist.cpp" line="603"/> + <location filename="modlist.cpp" line="716"/> <source>drag&drop failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="717"/> + <location filename="modlist.cpp" line="830"/> <source>Flags</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="721"/> + <location filename="modlist.cpp" line="834"/> <source>Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="722"/> + <location filename="modlist.cpp" line="835"/> <source>Nexus ID</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="724"/> - <location filename="modlist.cpp" line="740"/> + <location filename="modlist.cpp" line="837"/> + <location filename="modlist.cpp" line="853"/> <source>unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="732"/> + <location filename="modlist.cpp" line="845"/> <source>Name of your mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="734"/> + <location filename="modlist.cpp" line="847"/> <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="662"/> + <location filename="modlist.cpp" line="775"/> <source>Are you sure you want to remove "%1"?</source> <translation>Estas seguro de querer borrar "%1"?</translation> </message> @@ -3274,12 +3395,12 @@ p, li { white-space: pre-wrap; } <context> <name>MyFileSystemModel</name> <message> - <location filename="overwriteinfodialog.cpp" line="48"/> + <location filename="overwriteinfodialog.cpp" line="47"/> <source>Overwrites</source> <translation type="unfinished"></translation> </message> <message> - <location filename="overwriteinfodialog.cpp" line="60"/> + <location filename="overwriteinfodialog.cpp" line="59"/> <source>not implemented</source> <translation type="unfinished"></translation> </message> @@ -3288,11 +3409,16 @@ p, li { white-space: pre-wrap; } <name>NXMAccessManager</name> <message> <location filename="nxmaccessmanager.cpp" line="130"/> + <source>Logging into Nexus</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="nxmaccessmanager.cpp" line="145"/> <source>timeout</source> <translation type="unfinished"></translation> </message> <message> - <location filename="nxmaccessmanager.cpp" line="168"/> + <location filename="nxmaccessmanager.cpp" line="185"/> <source>Please check your password</source> <translation type="unfinished"></translation> </message> @@ -3342,17 +3468,17 @@ p, li { white-space: pre-wrap; } <context> <name>NexusInterface</name> <message> - <location filename="nexusinterface.cpp" line="201"/> + <location filename="nexusinterface.cpp" line="219"/> <source>Failed to guess mod id for "%1", please pick the correct one</source> <translation type="unfinished"></translation> </message> <message> - <location filename="nexusinterface.cpp" line="421"/> + <location filename="nexusinterface.cpp" line="440"/> <source>empty response</source> <translation type="unfinished"></translation> </message> <message> - <location filename="nexusinterface.cpp" line="450"/> + <location filename="nexusinterface.cpp" line="469"/> <source>invalid response</source> <translation type="unfinished"></translation> </message> @@ -3959,34 +4085,34 @@ Activar Mods faltantes en el menu contextual del raton intentara activar los mod <translation type="obsolete">Error borrando %1</translation> </message> <message> - <location filename="overwriteinfodialog.cpp" line="137"/> + <location filename="overwriteinfodialog.cpp" line="136"/> <source>Failed to delete "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="overwriteinfodialog.cpp" line="148"/> - <location filename="overwriteinfodialog.cpp" line="153"/> + <location filename="overwriteinfodialog.cpp" line="147"/> + <location filename="overwriteinfodialog.cpp" line="152"/> <source>Confirm</source> <translation type="unfinished">Confirma</translation> </message> <message> - <location filename="overwriteinfodialog.cpp" line="148"/> + <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> </message> <message> - <location filename="overwriteinfodialog.cpp" line="153"/> + <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> </message> <message> - <location filename="overwriteinfodialog.cpp" line="203"/> - <location filename="overwriteinfodialog.cpp" line="209"/> + <location filename="overwriteinfodialog.cpp" line="202"/> + <location filename="overwriteinfodialog.cpp" line="208"/> <source>New Folder</source> <translation type="unfinished">Nueva Carpeta</translation> </message> <message> - <location filename="overwriteinfodialog.cpp" line="215"/> + <location filename="overwriteinfodialog.cpp" line="214"/> <source>Failed to create "%1"</source> <translation type="unfinished">Fallo al crear "%1"</translation> </message> @@ -3994,70 +4120,85 @@ Activar Mods faltantes en el menu contextual del raton intentara activar los mod <context> <name>PluginList</name> <message> - <location filename="pluginlist.cpp" line="98"/> + <location filename="pluginlist.cpp" line="103"/> <source>Mod Index</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="99"/> - <location filename="pluginlist.cpp" line="111"/> + <location filename="pluginlist.cpp" line="104"/> + <location filename="pluginlist.cpp" line="116"/> <source>unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="107"/> + <location filename="pluginlist.cpp" line="112"/> <source>Name of your mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="108"/> + <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"></translation> </message> <message> - <location filename="pluginlist.cpp" line="110"/> + <location filename="pluginlist.cpp" line="115"/> <source>The modindex determins the formids of objects originating from this mods.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="208"/> + <location filename="pluginlist.cpp" line="151"/> + <source>failed to update esp info for file %1 (source id: %2), error: %3</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="pluginlist.cpp" line="218"/> <source>esp not found: %1</source> <translation>ESP no encontrado: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="215"/> - <location filename="pluginlist.cpp" line="227"/> + <location filename="pluginlist.cpp" line="225"/> + <location filename="pluginlist.cpp" line="237"/> <source>Confirm</source> <translation type="unfinished">Confirma</translation> </message> <message> - <location filename="pluginlist.cpp" line="215"/> + <location filename="pluginlist.cpp" line="225"/> <source>Really enable all plugins?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="227"/> + <location filename="pluginlist.cpp" line="237"/> <source>Really disable all plugins?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="353"/> + <location filename="pluginlist.cpp" line="365"/> <source>The file containing locked plugin indices is broken</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="366"/> - <location filename="pluginlist.cpp" line="405"/> + <location filename="pluginlist.cpp" line="378"/> + <location filename="pluginlist.cpp" line="417"/> <source>failed to open output file: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="393"/> + <location filename="pluginlist.cpp" line="405"/> <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="737"/> + <location filename="pluginlist.cpp" line="755"/> + <source>Missing Masters</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="pluginlist.cpp" line="761"/> + <source>Enabled Masters</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="pluginlist.cpp" line="873"/> <source>failed to restore load order for %1</source> <translation type="unfinished"></translation> </message> @@ -4070,17 +4211,17 @@ Activar Mods faltantes en el menu contextual del raton intentara activar los mod <translation type="obsolete">max</translation> </message> <message> - <location filename="pluginlist.cpp" line="631"/> + <location filename="pluginlist.cpp" line="751"/> <source>This plugin can't be disabled (enforced by the game)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="633"/> + <location filename="pluginlist.cpp" line="753"/> <source>Origin: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="96"/> + <location filename="pluginlist.cpp" line="101"/> <source>Name</source> <translation>Nombre</translation> </message> @@ -4089,7 +4230,7 @@ Activar Mods faltantes en el menu contextual del raton intentara activar los mod <translation type="obsolete">Nombres de tus Mods</translation> </message> <message> - <location filename="pluginlist.cpp" line="97"/> + <location filename="pluginlist.cpp" line="102"/> <source>Priority</source> <translation>Prioridad</translation> </message> @@ -4122,22 +4263,28 @@ Activar Mods faltantes en el menu contextual del raton intentara activar los mod <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" 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;"> +</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> + <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: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></oldsource> <translation type="unfinished"></translation> </message> <message> - <location filename="problemsdialog.cpp" line="29"/> - <source>fix</source> - <translation type="unfinished"></translation> + <location filename="problemsdialog.ui" line="75"/> + <source>Close</source> + <translation type="unfinished">Cerrar</translation> </message> <message> - <location filename="problemsdialog.cpp" line="30"/> + <location filename="problemsdialog.cpp" line="44"/> + <location filename="problemsdialog.cpp" line="45"/> <source>Fix</source> <translation type="unfinished"></translation> </message> <message> - <location filename="problemsdialog.cpp" line="34"/> + <location filename="problemsdialog.cpp" line="49"/> <source>No guided fix</source> <translation type="unfinished"></translation> </message> @@ -4149,72 +4296,82 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">fallo al aplicar las modificaciones al ini</translation> </message> <message> - <location filename="profile.cpp" line="56"/> + <location filename="profile.cpp" line="58"/> <source>invalid profile name %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="60"/> + <location filename="profile.cpp" line="62"/> <source>failed to create %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="152"/> + <location filename="profile.cpp" line="155"/> + <source>failed to open temporary file</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profile.cpp" line="192"/> <source>failed to open "%1" for writing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="189"/> + <location filename="profile.cpp" line="198"/> + <source>failed to write mod list: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profile.cpp" line="209"/> <source>failed to update tweaked ini file, wrong settings may be used: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="219"/> + <location filename="profile.cpp" line="239"/> <source>failed to create tweaked ini: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="365"/> + <location filename="profile.cpp" line="387"/> <source>Overwrite directory couldn't be parsed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="374"/> + <location filename="profile.cpp" line="396"/> <source>invalid priority %1</source> <translation>prioridad invalida %1</translation> </message> <message> - <location filename="profile.cpp" line="561"/> + <location filename="profile.cpp" line="584"/> <source>failed to parse ini file (%1)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="589"/> + <location filename="profile.cpp" line="612"/> <source>failed to parse ini file (%1): %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="613"/> - <location filename="profile.cpp" line="650"/> + <location filename="profile.cpp" line="636"/> + <location filename="profile.cpp" line="673"/> <source>failed to modify "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="678"/> + <location filename="profile.cpp" line="701"/> <source>Delete savegames?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="679"/> + <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"></translation> </message> <message> - <location filename="profile.cpp" line="271"/> - <location filename="profile.cpp" line="300"/> - <location filename="profile.cpp" line="384"/> - <location filename="profile.cpp" line="402"/> - <location filename="profile.cpp" line="412"/> + <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>indice invalido %1</translation> </message> @@ -4387,37 +4544,61 @@ p, li { white-space: pre-wrap; } <translation>Por favor introduzca un nombre para el nuevo perfil</translation> </message> <message> - <location filename="profilesdialog.cpp" line="160"/> + <location filename="profilesdialog.cpp" line="162"/> <source>failed to copy profile: %1</source> <translation>Fallo al copiar perfil: %1</translation> </message> <message> - <location filename="profilesdialog.cpp" line="167"/> + <location filename="profilesdialog.cpp" line="165"/> + <source>Invalid name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.cpp" line="165"/> + <source>Invalid profile name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.cpp" line="172"/> <source>Confirm</source> <translation>Confirma</translation> </message> <message> - <location filename="profilesdialog.cpp" line="167"/> + <location filename="profilesdialog.cpp" line="172"/> + <source>Are you sure you want to remove this profile (including local savegames if any)?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.cpp" line="182"/> + <source>Profile broken</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.cpp" line="183"/> + <source>This profile you'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>Estas seguro de que quieres borrar este perfil?</translation> + <translation type="obsolete">Estas seguro de que quieres borrar este perfil?</translation> </message> <message> - <location filename="profilesdialog.cpp" line="196"/> + <location filename="profilesdialog.cpp" line="215"/> <source>Rename Profile</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profilesdialog.cpp" line="196"/> + <location filename="profilesdialog.cpp" line="215"/> <source>New Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profilesdialog.cpp" line="233"/> + <location filename="profilesdialog.cpp" line="252"/> <source>failed to change archive invalidation state: %1</source> <translation>error al cambiar el estado de invalidación de archivo: %1</translation> </message> <message> - <location filename="profilesdialog.cpp" line="270"/> + <location filename="profilesdialog.cpp" line="289"/> <source>failed to determine if invalidation is active: %1</source> <translation>no se ha podido determinar si la nulidad está activa: %1</translation> </message> @@ -4505,7 +4686,7 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Armas</translation> </message> <message> - <location filename="installationmanager.cpp" line="63"/> + <location filename="installationmanager.cpp" line="64"/> <location filename="selfupdater.cpp" line="52"/> <source>invalid 7-zip32.dll: %1</source> <translation>7z.dll no es valido: %1</translation> @@ -4575,12 +4756,12 @@ p, li { white-space: pre-wrap; } <translation>Fallo al configurar la carga por proxy-dll</translation> </message> <message> - <location filename="profile.cpp" line="93"/> + <location filename="profile.cpp" line="95"/> <source>"%1" is missing</source> <translation>"%1" no encontrado</translation> </message> <message> - <location filename="main.cpp" line="134"/> + <location filename="main.cpp" line="138"/> <source>Permissions required</source> <translation>Se requieren permisos</translation> </message> @@ -4589,43 +4770,48 @@ p, li { white-space: pre-wrap; } <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> </message> <message> - <location filename="main.cpp" line="234"/> - <location filename="main.cpp" line="272"/> + <location filename="main.cpp" line="230"/> + <location filename="main.cpp" line="268"/> <source>Woops</source> <translation type="unfinished"></translation> </message> <message> - <location filename="main.cpp" line="135"/> - <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> + <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"></translation> </message> <message> - <location filename="main.cpp" line="235"/> + <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> </message> <message> - <location filename="main.cpp" line="273"/> + <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> </message> <message> - <location filename="main.cpp" line="335"/> + <location filename="main.cpp" line="331"/> <source>An instance of Mod Organizer is already running</source> <translation>Ya se está ejecutando una instancia de Mod Organizer</translation> </message> <message> - <location filename="main.cpp" line="357"/> + <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"></translation> </message> <message> - <location filename="main.cpp" line="360"/> - <location filename="main.cpp" line="389"/> + <location filename="main.cpp" line="356"/> + <location filename="main.cpp" line="385"/> <source>Please select the game to manage</source> <translation>Por favor seleccione el juego</translation> </message> <message> + <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"></translation> + </message> + <message> <source>invalid profile %1</source> <translation type="obsolete">perfil invalido %1</translation> </message> @@ -4634,7 +4820,7 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">"%1" no encontrado</translation> </message> <message> - <location filename="mainwindow.cpp" line="752"/> + <location filename="mainwindow.cpp" line="770"/> <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> @@ -4647,19 +4833,19 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">prioridad invalida %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="310"/> - <location filename="profile.cpp" line="228"/> + <location filename="pluginlist.cpp" line="320"/> + <location filename="profile.cpp" line="249"/> <source>failed to find "%1"</source> <translation>fallo al encontrar %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="1470"/> - <location filename="mainwindow.cpp" line="3723"/> + <location filename="mainwindow.cpp" line="1538"/> + <location filename="mainwindow.cpp" line="4024"/> <source><Manage...></source> <translation><Definir...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1488"/> + <location filename="mainwindow.cpp" line="1556"/> <source>failed to parse profile %1: %2</source> <translation>no se pudo analizar el perfil % 1: %2</translation> </message> @@ -4672,17 +4858,17 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Esto tomara un momento</translation> </message> <message> - <location filename="pluginlist.cpp" line="467"/> + <location filename="pluginlist.cpp" line="479"/> <source>failed to access %1</source> <translation>Fallo al acceder %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="481"/> + <location filename="pluginlist.cpp" line="493"/> <source>failed to set file time %1</source> <translation>Fallo al definir la hora al fihcero %1</translation> </message> <message> - <location filename="profile.cpp" line="67"/> + <location filename="profile.cpp" line="69"/> <source>failed to create %1</source> <translation>Fallo al crear %1</translation> </message> @@ -4721,18 +4907,18 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Ingles</translation> </message> <message> - <location filename="main.cpp" line="335"/> - <location filename="settings.cpp" line="462"/> + <location filename="main.cpp" line="331"/> + <location filename="settings.cpp" line="528"/> <source>Mod Organizer</source> <translation>Mod Organizer</translation> </message> <message> - <location filename="settings.cpp" line="469"/> + <location filename="settings.cpp" line="535"/> <source>Script Extender</source> <translation>Script Extender</translation> </message> <message> - <location filename="settings.cpp" line="476"/> + <location filename="settings.cpp" line="542"/> <source>Proxy DLL</source> <translation>Proxy DLL</translation> </message> @@ -4793,20 +4979,20 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <translation>no se pudo determinar el nombre de la cuenta</translation> </message> <message> - <location filename="categories.cpp" line="133"/> + <location filename="categories.cpp" line="140"/> <source>Failed to save custom categories</source> <translation>Error al guardar categorías personalizadas</translation> </message> <message> - <location filename="categories.cpp" line="210"/> - <location filename="categories.cpp" line="245"/> - <location filename="categories.cpp" line="255"/> - <location filename="categories.cpp" line="265"/> + <location filename="categories.cpp" line="217"/> + <location filename="categories.cpp" line="252"/> + <location filename="categories.cpp" line="262"/> + <location filename="categories.cpp" line="272"/> <source>invalid index %1</source> <translation>indice invalido %1</translation> </message> <message> - <location filename="categories.cpp" line="276"/> + <location filename="categories.cpp" line="283"/> <source>invalid category id %1</source> <translation type="unfinished"></translation> </message> @@ -4900,14 +5086,6 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe </message> </context> <context> - <name>QuestionBoxMemory</name> - <message> - <location filename="questionboxmemory.ui" line="86"/> - <source>Remember selection</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> <name>SaveGameInfoWidget</name> <message> <location filename="savegameinfowidget.ui" line="39"/> @@ -5012,9 +5190,9 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe </message> <message> <location filename="selfupdater.cpp" line="116"/> - <location filename="selfupdater.cpp" line="140"/> - <location filename="selfupdater.cpp" line="269"/> - <location filename="selfupdater.cpp" line="417"/> + <location filename="selfupdater.cpp" line="139"/> + <location filename="selfupdater.cpp" line="268"/> + <location filename="selfupdater.cpp" line="415"/> <source>Update</source> <translation>Actualización</translation> </message> @@ -5024,62 +5202,62 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <translation>Hay disponible una actualización (versión más reciente: %1), desea instalarlo?</translation> </message> <message> - <location filename="selfupdater.cpp" line="141"/> + <location filename="selfupdater.cpp" line="140"/> <source>Download in progress</source> <translation>Descarga en progreso</translation> </message> <message> - <location filename="selfupdater.cpp" line="196"/> + <location filename="selfupdater.cpp" line="195"/> <source>Download failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="selfupdater.cpp" line="207"/> + <location filename="selfupdater.cpp" line="206"/> <source>Failed to install update: %1</source> <translation>No se pudo instalar la actualización: %1</translation> </message> <message> - <location filename="selfupdater.cpp" line="228"/> + <location filename="selfupdater.cpp" line="227"/> <source>failed to open archive "%1": %2</source> <translation>error al abrir el archivo "%1": %2</translation> </message> <message> - <location filename="selfupdater.cpp" line="251"/> + <location filename="selfupdater.cpp" line="250"/> <source>failed to move outdated files: %1. Please update manually.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="selfupdater.cpp" line="269"/> + <location filename="selfupdater.cpp" line="268"/> <source>Update installed, Mod Organizer will now be restarted.</source> <translation>Actualización instalada, Ahora se reiniciará la Mod Organizer.</translation> </message> <message> - <location filename="selfupdater.cpp" line="297"/> + <location filename="selfupdater.cpp" line="296"/> <source>Error</source> <translation>Error</translation> </message> <message> - <location filename="selfupdater.cpp" line="353"/> + <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> </message> <message> - <location filename="selfupdater.cpp" line="418"/> + <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> </message> <message> - <location filename="selfupdater.cpp" line="427"/> + <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="461"/> + <location filename="selfupdater.cpp" line="459"/> <source>No download server available. Please try again later.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="selfupdater.cpp" line="441"/> + <location filename="selfupdater.cpp" line="439"/> <source>Failed to retrieve update information: %1</source> <translation type="unfinished"></translation> </message> @@ -5095,26 +5273,22 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <context> <name>Settings</name> <message> - <location filename="settings.cpp" line="278"/> - <source>setting for invalid plugin "%1" requested</source> - <translation type="unfinished"></translation> + <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="282"/> - <source>invalid setting "%1" requested for plugin "%2"</source> + <location filename="settings.cpp" line="306"/> + <location filename="settings.cpp" line="325"/> + <source>attempt to store setting for unknown plugin "%1"</source> <translation type="unfinished"></translation> </message> <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="573"/> + <location filename="settings.cpp" line="646"/> <source>Confirm</source> <translation type="unfinished">Confirma</translation> </message> <message> - <location filename="settings.cpp" line="573"/> + <location filename="settings.cpp" line="646"/> <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> @@ -5141,19 +5315,19 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <translation type="obsolete">El idioma del programa. Esto solo mostrara los idiomas instalados.</translation> </message> <message> - <location filename="settingsdialog.ui" line="656"/> + <location filename="settingsdialog.ui" line="670"/> <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="659"/> + <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>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="663"/> + <location filename="settingsdialog.ui" line="677"/> <source>Hide inactive ESPs/ESMs</source> <translation>Ocultar ESPs/ESMs inactivos</translation> </message> @@ -5211,32 +5385,32 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="509"/> + <location filename="settingsdialog.ui" line="523"/> <source>Workarounds</source> <translation>Soluciones</translation> </message> <message> - <location filename="settingsdialog.ui" line="571"/> + <location filename="settingsdialog.ui" line="585"/> <source>Load Mechanism</source> <translation>Mecamismo de carga</translation> </message> <message> - <location filename="settingsdialog.ui" line="591"/> + <location filename="settingsdialog.ui" line="605"/> <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="517"/> + <location filename="settingsdialog.ui" line="531"/> <source>Steam App ID</source> <translation>Steam App ID</translation> </message> <message> - <location filename="settingsdialog.ui" line="537"/> + <location filename="settingsdialog.ui" line="551"/> <source>The Steam AppID for your game</source> <translation>El AppID de tu juego</translation> </message> <message> - <location filename="settingsdialog.ui" line="540"/> + <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; } @@ -5430,32 +5604,37 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="427"/> + <location filename="settingsdialog.ui" line="429"/> <source>Author:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="441"/> + <location filename="settingsdialog.ui" line="443"/> <source>Version:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="455"/> + <location filename="settingsdialog.ui" line="457"/> <source>Description:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="493"/> + <location filename="settingsdialog.ui" line="495"/> <source>Key</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="498"/> + <location filename="settingsdialog.ui" line="500"/> <source>Value</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="594"/> + <location filename="settingsdialog.ui" line="512"/> + <source>Blacklisted Plugins (use <del> to remove):</source> + <translation type="unfinished"></translation> + </message> + <message> + <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. @@ -5466,17 +5645,17 @@ If you use the Steam version of Oblivion the default will NOT work. In this case <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="611"/> + <location filename="settingsdialog.ui" line="625"/> <source>NMM Version</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="631"/> + <location filename="settingsdialog.ui" line="645"/> <source>The Version of Nexus Mod Manager to impersonate.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="634"/> + <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. @@ -5485,36 +5664,36 @@ tl;dr-version: If Nexus-features don't work, insert the current version num <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="670"/> + <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> </message> <message> - <location filename="settingsdialog.ui" line="673"/> + <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> </message> <message> - <location filename="settingsdialog.ui" line="677"/> + <location filename="settingsdialog.ui" line="691"/> <source>Force-enable game files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="687"/> - <location filename="settingsdialog.ui" line="691"/> + <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">Para Skyrim, puede utilizarse en lugar de invalidación de archivo. Debe despedir AI para todos los perfiles. Para los otros juegos no es un sustituto suficiente AI!</translation> </message> <message> - <location filename="settingsdialog.ui" line="695"/> + <location filename="settingsdialog.ui" line="709"/> <source>Back-date BSAs</source> <translation type="unfinished">Back-date BSAs</translation> </message> <message> - <location filename="settingsdialog.ui" line="719"/> + <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> @@ -5523,27 +5702,27 @@ Para los otros juegos no es un sustituto suficiente AI!</translation> <translation type="obsolete">Estas son soluciones para problemas con Mod Organizer. Normalmente no son necesarios. Por favor, asegúrese de leer el texto de ayuda antes de cambiar cualquier cosa aquí.</translation> </message> <message> - <location filename="settingsdialog.cpp" line="89"/> + <location filename="settingsdialog.cpp" line="94"/> <source>Select download directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.cpp" line="97"/> + <location filename="settingsdialog.cpp" line="102"/> <source>Select mod directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.cpp" line="105"/> + <location filename="settingsdialog.cpp" line="110"/> <source>Select cache directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.cpp" line="113"/> + <location filename="settingsdialog.cpp" line="118"/> <source>Confirm?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.cpp" line="114"/> + <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"></translation> </message> diff --git a/src/organizer_fr.qm b/src/organizer_fr.qm Binary files differindex 4e42eedc..9c8d5052 100644 --- a/src/organizer_fr.qm +++ b/src/organizer_fr.qm diff --git a/src/organizer_fr.ts b/src/organizer_fr.ts index ea81eb62..1bf335ce 100644 --- a/src/organizer_fr.ts +++ b/src/organizer_fr.ts @@ -255,7 +255,7 @@ p, li { white-space: pre-wrap; } <translation type="unfinished">Terminé</translation> </message> <message> - <location filename="downloadlist.cpp" line="79"/> + <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 récupérer.</translation> </message> @@ -269,11 +269,6 @@ p, li { white-space: pre-wrap; } <translation>Signet</translation> </message> <message> - <location filename="downloadlistwidget.ui" line="81"/> - <source>0</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="downloadlistwidget.ui" line="88"/> <source>KB</source> <translation type="unfinished"></translation> @@ -321,40 +316,40 @@ p, li { white-space: pre-wrap; } <context> <name>DownloadListWidgetCompactDelegate</name> <message> - <location filename="downloadlistwidgetcompact.cpp" line="215"/> - <location filename="downloadlistwidgetcompact.cpp" line="224"/> - <location filename="downloadlistwidgetcompact.cpp" line="233"/> - <location filename="downloadlistwidgetcompact.cpp" line="242"/> + <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="216"/> + <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="225"/> + <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="269"/> + <location filename="downloadlistwidgetcompact.cpp" line="275"/> <source>Install</source> <translation>Installer</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="271"/> + <location filename="downloadlistwidgetcompact.cpp" line="277"/> <source>Query Info</source> <translation>Demander info</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="279"/> + <location filename="downloadlistwidgetcompact.cpp" line="289"/> <source>Remove</source> <translation>Supprimer</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="276"/> + <location filename="downloadlistwidgetcompact.cpp" line="286"/> <source>Cancel</source> <translation>Annuler</translation> </message> @@ -389,52 +384,57 @@ p, li { white-space: pre-wrap; } <translation type="unfinished">Terminé</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="234"/> + <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> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="243"/> + <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> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="273"/> + <location filename="downloadlistwidgetcompact.cpp" line="279"/> <source>Delete</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="274"/> + <location filename="downloadlistwidgetcompact.cpp" line="281"/> + <source>Un-Hide</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="283"/> <source>Remove from View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="277"/> + <location filename="downloadlistwidgetcompact.cpp" line="287"/> <source>Pause</source> <translation>Interrompre</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="280"/> + <location filename="downloadlistwidgetcompact.cpp" line="290"/> <source>Resume</source> <translation>Reprendre</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="284"/> + <location filename="downloadlistwidgetcompact.cpp" line="294"/> <source>Delete Installed...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="285"/> + <location filename="downloadlistwidgetcompact.cpp" line="295"/> <source>Delete All...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="287"/> + <location filename="downloadlistwidgetcompact.cpp" line="298"/> <source>Remove Installed...</source> <translation>Supprimer installé...</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="288"/> + <location filename="downloadlistwidgetcompact.cpp" line="299"/> <source>Remove All...</source> <translation>Supprimer tout...</translation> </message> @@ -442,60 +442,65 @@ p, li { white-space: pre-wrap; } <context> <name>DownloadListWidgetDelegate</name> <message> - <location filename="downloadlistwidget.cpp" line="228"/> - <location filename="downloadlistwidget.cpp" line="237"/> - <location filename="downloadlistwidget.cpp" line="246"/> - <location filename="downloadlistwidget.cpp" line="255"/> + <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="229"/> + <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="238"/> + <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="247"/> + <location filename="downloadlistwidget.cpp" line="252"/> <source>This will remove all finished downloads from this list (but NOT from disk).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="256"/> + <location filename="downloadlistwidget.cpp" line="261"/> <source>This will remove all installed downloads from this list (but NOT from disk).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="281"/> + <location filename="downloadlistwidget.cpp" line="287"/> <source>Install</source> <translation>Installer</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="283"/> + <location filename="downloadlistwidget.cpp" line="289"/> <source>Query Info</source> <translation>Demander info</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="285"/> + <location filename="downloadlistwidget.cpp" line="291"/> <source>Delete</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="286"/> + <location filename="downloadlistwidget.cpp" line="293"/> + <source>Un-Hide</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="295"/> <source>Remove from View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="291"/> + <location filename="downloadlistwidget.cpp" line="301"/> <source>Remove</source> <translation>Supprimer</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="288"/> + <location filename="downloadlistwidget.cpp" line="298"/> <source>Cancel</source> <translation>Annuler</translation> </message> @@ -510,32 +515,32 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="289"/> + <location filename="downloadlistwidget.cpp" line="299"/> <source>Pause</source> <translation>Interrompre</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="292"/> + <location filename="downloadlistwidget.cpp" line="302"/> <source>Resume</source> <translation>Reprendre</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="296"/> + <location filename="downloadlistwidget.cpp" line="306"/> <source>Delete Installed...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="297"/> + <location filename="downloadlistwidget.cpp" line="307"/> <source>Delete All...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="299"/> + <location filename="downloadlistwidget.cpp" line="310"/> <source>Remove Installed...</source> <translation>Supprimer installé...</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="300"/> + <location filename="downloadlistwidget.cpp" line="311"/> <source>Remove All...</source> <translation>Supprimer tout...</translation> </message> @@ -543,73 +548,83 @@ p, li { white-space: pre-wrap; } <context> <name>DownloadManager</name> <message> - <location filename="downloadmanager.cpp" line="125"/> + <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="306"/> + <location filename="downloadmanager.cpp" line="322"/> <source>Download again?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadmanager.cpp" line="306"/> + <location filename="downloadmanager.cpp" line="322"/> <source>A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadmanager.cpp" line="336"/> + <location filename="downloadmanager.cpp" line="354"/> <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> </message> <message> - <location filename="downloadmanager.cpp" line="384"/> + <location filename="downloadmanager.cpp" line="383"/> + <source>Wrong Game</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="383"/> + <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> + </message> + <message> + <location filename="downloadmanager.cpp" line="413"/> <source>failed to delete %1</source> <translation>impossible de supprimer %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="390"/> + <location filename="downloadmanager.cpp" line="419"/> <source>failed to delete meta file for %1</source> <translation>impossible de supprimer le méta fichier pour %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="450"/> - <location filename="downloadmanager.cpp" line="468"/> - <location filename="downloadmanager.cpp" line="481"/> - <location filename="downloadmanager.cpp" line="494"/> - <location filename="downloadmanager.cpp" line="505"/> - <location filename="downloadmanager.cpp" line="540"/> + <location filename="downloadmanager.cpp" line="495"/> + <location filename="downloadmanager.cpp" line="513"/> + <location filename="downloadmanager.cpp" line="526"/> + <location filename="downloadmanager.cpp" line="543"/> + <location filename="downloadmanager.cpp" line="554"/> + <location filename="downloadmanager.cpp" line="589"/> <source>invalid index %1</source> <translation>index invalide %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="899"/> + <location filename="downloadmanager.cpp" line="972"/> <source>Information updated</source> <translation>Information mise à jour</translation> </message> <message> - <location filename="downloadmanager.cpp" line="901"/> - <location filename="downloadmanager.cpp" line="915"/> + <location filename="downloadmanager.cpp" line="974"/> + <location filename="downloadmanager.cpp" line="988"/> <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> </message> <message> - <location filename="downloadmanager.cpp" line="903"/> + <location filename="downloadmanager.cpp" line="976"/> <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> </message> <message> - <location filename="downloadmanager.cpp" line="1032"/> + <location filename="downloadmanager.cpp" line="1109"/> <source>No download server available. Please try again later.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadmanager.cpp" line="1074"/> + <location filename="downloadmanager.cpp" line="1151"/> <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="1097"/> + <location filename="downloadmanager.cpp" line="1175"/> <source>Download failed: %1 (%2)</source> <translation>Téléchargement échoué: %1 (%2)</translation> </message> @@ -618,27 +633,30 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">impossible de supprimer le fichier</translation> </message> <message> - <location filename="downloadmanager.cpp" line="366"/> - <location filename="downloadmanager.cpp" line="585"/> - <location filename="downloadmanager.cpp" line="595"/> - <location filename="downloadmanager.cpp" line="604"/> - <location filename="downloadmanager.cpp" line="614"/> - <location filename="downloadmanager.cpp" line="624"/> + <location filename="downloadmanager.cpp" line="395"/> + <location filename="downloadmanager.cpp" line="462"/> <location filename="downloadmanager.cpp" line="634"/> - <location filename="downloadmanager.cpp" line="645"/> - <location filename="downloadmanager.cpp" line="654"/> - <location filename="downloadmanager.cpp" line="664"/> - <location filename="downloadmanager.cpp" line="679"/> + <location filename="downloadmanager.cpp" line="644"/> + <location filename="downloadmanager.cpp" line="653"/> + <location filename="downloadmanager.cpp" line="667"/> + <location filename="downloadmanager.cpp" line="677"/> + <location filename="downloadmanager.cpp" line="687"/> + <location filename="downloadmanager.cpp" line="697"/> + <location filename="downloadmanager.cpp" line="708"/> + <location filename="downloadmanager.cpp" line="716"/> + <location filename="downloadmanager.cpp" line="725"/> + <location filename="downloadmanager.cpp" line="735"/> + <location filename="downloadmanager.cpp" line="750"/> <source>invalid index</source> <translation>index invalide</translation> </message> <message> - <location filename="downloadmanager.cpp" line="557"/> + <location filename="downloadmanager.cpp" line="606"/> <source>Please enter the nexus mod id</source> <translation>Veuillez entre l'ID Nexus du mod</translation> </message> <message> - <location filename="downloadmanager.cpp" line="557"/> + <location filename="downloadmanager.cpp" line="606"/> <source>Mod ID:</source> <translation>ID du mod:</translation> </message> @@ -655,7 +673,7 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Téléchargement échoué</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1174"/> + <location filename="downloadmanager.cpp" line="1254"/> <source>failed to re-open %1</source> <translation>impossible d'ouvrir à nouveau %1</translation> </message> @@ -1053,12 +1071,12 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">mo_archive.dll non chargé: "%1"</translation> </message> <message> - <location filename="installationmanager.cpp" line="97"/> + <location filename="installationmanager.cpp" line="98"/> <source>Password required</source> <translation>Mot de passe requis</translation> </message> <message> - <location filename="installationmanager.cpp" line="97"/> + <location filename="installationmanager.cpp" line="98"/> <source>Password</source> <translation>Mot de passe</translation> </message> @@ -1072,13 +1090,13 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="installationmanager.cpp" line="164"/> - <location filename="installationmanager.cpp" line="252"/> - <location filename="installationmanager.cpp" line="530"/> + <location filename="installationmanager.cpp" line="248"/> + <location filename="installationmanager.cpp" line="525"/> <source>Extracting files</source> <translation>Extraction des fichiers</translation> </message> <message> - <location filename="installationmanager.cpp" line="624"/> + <location filename="installationmanager.cpp" line="605"/> <source>File format "%1" not supported</source> <translation>Format de fichier "%1" non supporté</translation> </message> @@ -1095,82 +1113,82 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Confirmer</translation> </message> <message> - <location filename="installationmanager.cpp" line="75"/> + <location filename="installationmanager.cpp" line="76"/> <source>archive.dll not loaded: "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="installationmanager.cpp" line="443"/> + <location filename="installationmanager.cpp" line="439"/> <source>failed to create backup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="installationmanager.cpp" line="449"/> + <location filename="installationmanager.cpp" line="445"/> <source>Mod Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="installationmanager.cpp" line="449"/> + <location filename="installationmanager.cpp" line="445"/> <source>Name</source> <translation type="unfinished">Nom</translation> </message> <message> - <location filename="installationmanager.cpp" line="502"/> + <location filename="installationmanager.cpp" line="498"/> <source>Invalid name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="installationmanager.cpp" line="503"/> + <location filename="installationmanager.cpp" line="499"/> <source>The name you entered is invalid, please enter a different one.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="installationmanager.cpp" line="750"/> + <location filename="installationmanager.cpp" line="731"/> <source>None of the available installer plugins were able to handle that archive</source> <translation type="unfinished"></translation> </message> <message> - <location filename="installationmanager.cpp" line="760"/> + <location filename="installationmanager.cpp" line="741"/> <source>no error</source> <translation>aucune erreur</translation> </message> <message> - <location filename="installationmanager.cpp" line="763"/> + <location filename="installationmanager.cpp" line="744"/> <source>7z.dll not found</source> <translation>7z.dll introuvable</translation> </message> <message> - <location filename="installationmanager.cpp" line="766"/> + <location filename="installationmanager.cpp" line="747"/> <source>7z.dll isn't valid</source> <translation>7z.dll invalide</translation> </message> <message> - <location filename="installationmanager.cpp" line="769"/> + <location filename="installationmanager.cpp" line="750"/> <source>archive not found</source> <translation>archive introuvable</translation> </message> <message> - <location filename="installationmanager.cpp" line="772"/> + <location filename="installationmanager.cpp" line="753"/> <source>failed to open archive</source> <translation>impossible d'ouvrir l'archive</translation> </message> <message> - <location filename="installationmanager.cpp" line="775"/> + <location filename="installationmanager.cpp" line="756"/> <source>unsupported archive type</source> <translation>type d'archive non supporté</translation> </message> <message> - <location filename="installationmanager.cpp" line="778"/> + <location filename="installationmanager.cpp" line="759"/> <source>internal library error</source> <translation>erreur de bibliothèque interne</translation> </message> <message> - <location filename="installationmanager.cpp" line="781"/> + <location filename="installationmanager.cpp" line="762"/> <source>archive invalid</source> <translation>archive invalide</translation> </message> <message> - <location filename="installationmanager.cpp" line="785"/> + <location filename="installationmanager.cpp" line="766"/> <source>unknown archive error</source> <translation>erreur d'archive inconnue</translation> </message> @@ -1209,12 +1227,12 @@ p, li { white-space: pre-wrap; } <context> <name>MOApplication</name> <message> - <location filename="moapplication.cpp" line="60"/> + <location filename="moapplication.cpp" line="68"/> <source>an error occured: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="moapplication.cpp" line="65"/> + <location filename="moapplication.cpp" line="73"/> <source>an error occured</source> <translation type="unfinished"></translation> </message> @@ -1290,7 +1308,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="mainwindow.ui" line="405"/> <location filename="mainwindow.ui" line="722"/> - <location filename="mainwindow.ui" line="1027"/> + <location filename="mainwindow.ui" line="1035"/> <source>Namefilter</source> <translation type="unfinished"></translation> </message> @@ -1416,67 +1434,66 @@ BSAs checked here are loaded in such a way that your installation order is obeye <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="794"/> - <location filename="mainwindow.ui" line="868"/> + <location filename="mainwindow.ui" line="800"/> + <location filename="mainwindow.ui" line="869"/> <source>File</source> <translation type="unfinished">Fichier</translation> </message> <message> - <location filename="mainwindow.ui" line="799"/> - <location filename="mainwindow.ui" line="873"/> - <source>Mod</source> - <translation type="unfinished">Mod</translation> + <location filename="mainwindow.ui" line="808"/> + <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="807"/> - <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="unfinished"></translation> + <location filename="mainwindow.ui" line="874"/> + <source>Mod</source> + <translation type="unfinished">Mod</translation> </message> <message> - <location filename="mainwindow.ui" line="818"/> + <location filename="mainwindow.ui" line="819"/> <source>Data</source> <translation type="unfinished">DATA</translation> </message> <message> - <location filename="mainwindow.ui" line="836"/> + <location filename="mainwindow.ui" line="837"/> <source>refresh data-directory overview</source> <translation type="unfinished">Actualiser la vue d'ensemble du dossier DATA</translation> </message> <message> - <location filename="mainwindow.ui" line="839"/> + <location filename="mainwindow.ui" line="840"/> <source>Refresh the overview. This may take a moment.</source> <translation type="unfinished">Actualiser la vue d'ensemble. Ceci peut demander un moment.</translation> </message> <message> - <location filename="mainwindow.ui" line="842"/> - <location filename="mainwindow.cpp" line="3328"/> - <location filename="mainwindow.cpp" line="4059"/> + <location filename="mainwindow.ui" line="843"/> + <location filename="mainwindow.cpp" line="3612"/> + <location filename="mainwindow.cpp" line="4360"/> <source>Refresh</source> <translation type="unfinished">Actualiser</translation> </message> <message> - <location filename="mainwindow.ui" line="858"/> + <location filename="mainwindow.ui" line="859"/> <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> </message> <message> - <location filename="mainwindow.ui" line="883"/> - <location filename="mainwindow.ui" line="886"/> + <location filename="mainwindow.ui" line="884"/> + <location filename="mainwindow.ui" line="887"/> <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="889"/> + <location filename="mainwindow.ui" line="890"/> <source>Show only conflicts</source> <translation type="unfinished">Afficher seulement les conflits</translation> </message> <message> - <location filename="mainwindow.ui" line="897"/> + <location filename="mainwindow.ui" line="898"/> <source>Saves</source> <translation type="unfinished">Sauvegardes</translation> </message> <message> - <location filename="mainwindow.ui" line="921"/> + <location filename="mainwindow.ui" line="922"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1493,155 +1510,160 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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="935"/> + <location filename="mainwindow.ui" line="936"/> <source>Downloads</source> <translation type="unfinished">Téléchargements</translation> </message> <message> - <location filename="mainwindow.ui" line="967"/> + <location filename="mainwindow.ui" line="968"/> <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> </message> <message> - <location filename="mainwindow.ui" line="1020"/> + <location filename="mainwindow.ui" line="1021"/> <source>Compact</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1051"/> + <location filename="mainwindow.ui" line="1028"/> + <source>Show Hidden</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1059"/> <source>Tool Bar</source> <translation type="unfinished">Barre d'outils</translation> </message> <message> - <location filename="mainwindow.ui" line="1093"/> + <location filename="mainwindow.ui" line="1101"/> <source>Install Mod</source> <translation type="unfinished">Installer mod</translation> </message> <message> - <location filename="mainwindow.ui" line="1096"/> + <location filename="mainwindow.ui" line="1104"/> <source>Install &Mod</source> <translation type="unfinished">Installer &mod</translation> </message> <message> - <location filename="mainwindow.ui" line="1099"/> + <location filename="mainwindow.ui" line="1107"/> <source>Install a new mod from an archive</source> <translation type="unfinished">Installer un nouveau mod à partir d'une archive</translation> </message> <message> - <location filename="mainwindow.ui" line="1102"/> + <location filename="mainwindow.ui" line="1110"/> <source>Ctrl+M</source> <translation type="unfinished">Ctrl+M</translation> </message> <message> - <location filename="mainwindow.ui" line="1111"/> + <location filename="mainwindow.ui" line="1119"/> <source>Profiles</source> <translation type="unfinished">Profils</translation> </message> <message> - <location filename="mainwindow.ui" line="1114"/> + <location filename="mainwindow.ui" line="1122"/> <source>&Profiles</source> <translation type="unfinished">&Profils</translation> </message> <message> - <location filename="mainwindow.ui" line="1117"/> + <location filename="mainwindow.ui" line="1125"/> <source>Configure Profiles</source> <translation type="unfinished">Configurer les profils</translation> </message> <message> - <location filename="mainwindow.ui" line="1120"/> + <location filename="mainwindow.ui" line="1128"/> <source>Ctrl+P</source> <translation type="unfinished">Ctrl+P</translation> </message> <message> - <location filename="mainwindow.ui" line="1129"/> + <location filename="mainwindow.ui" line="1137"/> <source>Executables</source> <translation type="unfinished">Programmes</translation> </message> <message> - <location filename="mainwindow.ui" line="1132"/> + <location filename="mainwindow.ui" line="1140"/> <source>&Executables</source> <translation type="unfinished">Programm&es</translation> </message> <message> - <location filename="mainwindow.ui" line="1135"/> + <location filename="mainwindow.ui" line="1143"/> <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="1138"/> + <location filename="mainwindow.ui" line="1146"/> <source>Ctrl+E</source> <translation type="unfinished">Ctrl+E</translation> </message> <message> - <location filename="mainwindow.ui" line="1147"/> - <location filename="mainwindow.ui" line="1153"/> + <location filename="mainwindow.ui" line="1155"/> + <location filename="mainwindow.ui" line="1161"/> <source>Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1150"/> + <location filename="mainwindow.ui" line="1158"/> <source>&Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1156"/> + <location filename="mainwindow.ui" line="1164"/> <source>Ctrl+I</source> <translation type="unfinished">Ctrl+H</translation> </message> <message> - <location filename="mainwindow.ui" line="1165"/> + <location filename="mainwindow.ui" line="1173"/> <source>Settings</source> <translation type="unfinished">Réglages</translation> </message> <message> - <location filename="mainwindow.ui" line="1168"/> + <location filename="mainwindow.ui" line="1176"/> <source>&Settings</source> <translation type="unfinished">Réglage&s</translation> </message> <message> - <location filename="mainwindow.ui" line="1171"/> + <location filename="mainwindow.ui" line="1179"/> <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="1174"/> + <location filename="mainwindow.ui" line="1182"/> <source>Ctrl+S</source> <translation type="unfinished">Ctrl+S</translation> </message> <message> - <location filename="mainwindow.ui" line="1183"/> + <location filename="mainwindow.ui" line="1191"/> <source>Nexus</source> <translation type="unfinished">Nexus</translation> </message> <message> - <location filename="mainwindow.ui" line="1186"/> + <location filename="mainwindow.ui" line="1194"/> <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="1189"/> + <location filename="mainwindow.ui" line="1197"/> <source>Ctrl+N</source> <translation type="unfinished">Ctrl+N</translation> </message> <message> - <location filename="mainwindow.ui" line="1201"/> - <location filename="mainwindow.cpp" line="4007"/> + <location filename="mainwindow.ui" line="1209"/> + <location filename="mainwindow.cpp" line="4308"/> <source>Update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1204"/> + <location filename="mainwindow.ui" line="1212"/> <source>Mod Organizer is up-to-date</source> <translation type="unfinished">Mod Organizer est à jour</translation> </message> <message> - <location filename="mainwindow.ui" line="1216"/> - <location filename="mainwindow.cpp" line="478"/> + <location filename="mainwindow.ui" line="1224"/> + <location filename="mainwindow.cpp" line="496"/> <source>No Problems</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1219"/> + <location filename="mainwindow.ui" line="1227"/> <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! @@ -1649,445 +1671,502 @@ Right now this has very limited functionality</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1231"/> - <location filename="mainwindow.ui" line="1234"/> + <location filename="mainwindow.ui" line="1239"/> + <location filename="mainwindow.ui" line="1242"/> <source>Help</source> <translation type="unfinished">Aide</translation> </message> <message> - <location filename="mainwindow.ui" line="1237"/> + <location filename="mainwindow.ui" line="1245"/> <source>Ctrl+H</source> <translation type="unfinished">Ctrl+H</translation> </message> <message> - <location filename="mainwindow.ui" line="1246"/> + <location filename="mainwindow.ui" line="1254"/> <source>Endorse MO</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1249"/> - <location filename="mainwindow.cpp" line="4087"/> + <location filename="mainwindow.ui" line="1257"/> + <location filename="mainwindow.cpp" line="4389"/> <source>Endorse Mod Organizer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="204"/> + <location filename="mainwindow.cpp" line="214"/> <source>Toolbar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="205"/> + <location filename="mainwindow.cpp" line="215"/> <source>Desktop</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="206"/> + <location filename="mainwindow.cpp" line="216"/> <source>Start Menu</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="475"/> + <location filename="mainwindow.cpp" line="492"/> <source>Problems</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="476"/> + <location filename="mainwindow.cpp" line="493"/> <source>There are potential problems with your setup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="479"/> + <location filename="mainwindow.cpp" line="497"/> <source>Everything seems to be in order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="531"/> + <location filename="mainwindow.cpp" line="549"/> <source>Help on UI</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="535"/> + <location filename="mainwindow.cpp" line="553"/> <source>Documentation Wiki</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="539"/> + <location filename="mainwindow.cpp" line="557"/> <source>Report Issue</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="543"/> + <location filename="mainwindow.cpp" line="561"/> <source>Tutorials</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="670"/> + <location filename="mainwindow.cpp" line="688"/> <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="600"/> + <location filename="mainwindow.cpp" line="618"/> <source>failed to save archives order, do you have write access to "%1"?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="687"/> + <location filename="mainwindow.cpp" line="705"/> <source>Name</source> <translation type="unfinished">Nom</translation> </message> <message> - <location filename="mainwindow.cpp" line="688"/> + <location filename="mainwindow.cpp" line="706"/> <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="696"/> + <location filename="mainwindow.cpp" line="714"/> <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="739"/> + <location filename="mainwindow.cpp" line="757"/> <source>Show tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="740"/> + <location filename="mainwindow.cpp" line="758"/> <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> </message> <message> - <location filename="mainwindow.cpp" line="769"/> + <location filename="mainwindow.cpp" line="787"/> <source>Downloads in progress</source> <translation type="unfinished">Téléchargements en cours</translation> </message> <message> - <location filename="mainwindow.cpp" line="770"/> + <location filename="mainwindow.cpp" line="788"/> <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="816"/> + <location filename="mainwindow.cpp" line="834"/> <source>failed to read savegame: %1</source> <translation type="unfinished">impossible de lire la sauvegarde: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="941"/> + <location filename="mainwindow.cpp" line="958"/> <source>Plugin "%1" failed: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1183"/> + <location filename="mainwindow.cpp" line="1064"/> + <source>Plugin error</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1065"/> + <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="1249"/> <source>Failed to start "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1185"/> + <location filename="mainwindow.cpp" line="1251"/> <source>Waiting</source> <translation type="unfinished">Attente</translation> </message> <message> - <location filename="mainwindow.cpp" line="1185"/> + <location filename="mainwindow.cpp" line="1251"/> <source>Please press OK once you're logged into steam.</source> <translation type="unfinished">Veuillez cliquer OK une fois connecté à steam.</translation> </message> <message> - <location filename="mainwindow.cpp" line="1197"/> + <location filename="mainwindow.cpp" line="1263"/> <source>"%1" not found</source> <translation type="unfinished">"%1" introuvable</translation> </message> <message> - <location filename="mainwindow.cpp" line="1211"/> + <location filename="mainwindow.cpp" line="1277"/> <source>Start Steam?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1212"/> + <location filename="mainwindow.cpp" line="1278"/> <source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1426"/> + <location filename="mainwindow.cpp" line="1492"/> <source>Also in: <br></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1437"/> + <location filename="mainwindow.cpp" line="1503"/> <source>No conflict</source> <translation type="unfinished">Aucun conflit</translation> </message> <message> - <location filename="mainwindow.cpp" line="1552"/> + <location filename="mainwindow.cpp" line="1620"/> <source><Edit...></source> <translation type="unfinished"><Modifier...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1771"/> + <location filename="mainwindow.cpp" line="1704"/> + <source>Failed to refresh list of esps: %s</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1844"/> <source>This bsa is enabled in the ini file so it may be required!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1778"/> + <location filename="mainwindow.cpp" line="1851"/> <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="1833"/> + <location filename="mainwindow.cpp" line="1906"/> <source>Activating Network Proxy</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1962"/> - <location filename="mainwindow.cpp" line="3755"/> + <location filename="mainwindow.cpp" line="2037"/> + <location filename="mainwindow.cpp" line="4056"/> <source>Installation successful</source> <translation type="unfinished">Installation réussie</translation> </message> <message> - <location filename="mainwindow.cpp" line="1973"/> - <location filename="mainwindow.cpp" line="3768"/> + <location filename="mainwindow.cpp" line="2048"/> + <location filename="mainwindow.cpp" line="4069"/> <source>Configure Mod</source> <translation type="unfinished">Configurer mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="1974"/> - <location filename="mainwindow.cpp" line="3769"/> + <location filename="mainwindow.cpp" line="2049"/> + <location filename="mainwindow.cpp" line="4070"/> <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="1980"/> - <location filename="mainwindow.cpp" line="3775"/> + <location filename="mainwindow.cpp" line="2055"/> + <location filename="mainwindow.cpp" line="4076"/> <source>mod "%1" not found</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1983"/> - <location filename="mainwindow.cpp" line="3781"/> + <location filename="mainwindow.cpp" line="2058"/> + <location filename="mainwindow.cpp" line="4082"/> <source>Installation cancelled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1983"/> - <location filename="mainwindow.cpp" line="3781"/> + <location filename="mainwindow.cpp" line="2058"/> + <location filename="mainwindow.cpp" line="4082"/> <source>The mod was not installed completely.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2018"/> + <location filename="mainwindow.cpp" line="2207"/> <source>Some plugins could not be loaded</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2021"/> - <location filename="mainwindow.cpp" line="2038"/> - <source>Description missing</source> + <location filename="mainwindow.cpp" line="2210"/> + <source>Too many esps and esms enabled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2030"/> - <source>The following Plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:<ul></source> + <location filename="mainwindow.cpp" line="2213"/> + <location filename="mainwindow.cpp" line="2234"/> + <source>Description missing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2060"/> + <location filename="mainwindow.cpp" line="2256"/> <source>Choose Mod</source> <translation type="unfinished">Choisir mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2061"/> + <location filename="mainwindow.cpp" line="2257"/> <source>Mod Archive</source> <translation type="unfinished">Archive de mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2214"/> + <location filename="mainwindow.cpp" line="2410"/> <source>Start Tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2215"/> + <location filename="mainwindow.cpp" line="2411"/> <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> </message> <message> - <location filename="mainwindow.cpp" line="2360"/> - <location filename="mainwindow.cpp" line="3683"/> + <location filename="mainwindow.cpp" line="2566"/> + <location filename="mainwindow.cpp" line="3984"/> <source>Download started</source> <translation type="unfinished">Téléchargement commencé</translation> </message> <message> - <location filename="mainwindow.cpp" line="2391"/> + <location filename="mainwindow.cpp" line="2597"/> <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="2418"/> + <location filename="mainwindow.cpp" line="2624"/> <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="2459"/> + <location filename="mainwindow.cpp" line="2665"/> <source>failed to open %1</source> <translation type="unfinished">impossible d'ouvrir %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2537"/> + <location filename="mainwindow.cpp" line="2743"/> <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="2676"/> + <location filename="mainwindow.cpp" line="2906"/> <source>Multiple esps activated, please check that they don't conflict.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3005"/> - <location filename="mainwindow.cpp" line="3339"/> + <location filename="mainwindow.cpp" line="3251"/> + <location filename="mainwindow.cpp" line="3623"/> <source>Create Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3006"/> + <location filename="mainwindow.cpp" line="3252"/> <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="3015"/> + <location filename="mainwindow.cpp" line="3261"/> <source>A mod with this name already exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3410"/> + <location filename="mainwindow.cpp" line="3444"/> + <source>Continue?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3445"/> + <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="3465"/> + <source>Sorry</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3466"/> + <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="3710"/> <source><All></source> <translation type="unfinished"><Tous></translation> </message> <message> - <location filename="mainwindow.cpp" line="2589"/> + <location filename="mainwindow.cpp" line="2818"/> <source><Checked></source> <translation type="unfinished"><Cochés></translation> </message> <message> - <location filename="mainwindow.cpp" line="943"/> + <location filename="mainwindow.cpp" line="960"/> <source>Plugin "%1" failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1007"/> + <location filename="mainwindow.cpp" line="1026"/> <source>failed to init plugin %1: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2590"/> + <location filename="mainwindow.cpp" line="2222"/> + <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="2230"/> + <source>The game doesn't allow more than 256 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="2769"/> + <source>Failed to move "%1" from mod "%2" to "%3": %4</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2819"/> <source><Unchecked></source> <translation type="unfinished"><Décochés></translation> </message> <message> - <location filename="mainwindow.cpp" line="2591"/> + <location filename="mainwindow.cpp" line="2820"/> <source><Update></source> <translation type="unfinished"><Rafraichir></translation> </message> <message> - <location filename="mainwindow.cpp" line="2592"/> + <location filename="mainwindow.cpp" line="2821"/> <source><No category></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2593"/> + <location filename="mainwindow.cpp" line="2822"/> <source><Conflicted></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2626"/> + <location filename="mainwindow.cpp" line="2823"/> + <source><Not Endorsed></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2856"/> <source>failed to rename mod: %1</source> <translation type="unfinished">impossible de renommer le mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2639"/> + <location filename="mainwindow.cpp" line="2869"/> <source>Overwrite?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2640"/> + <location filename="mainwindow.cpp" line="2870"/> <source>This will replace the existing mod "%1". Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2643"/> + <location filename="mainwindow.cpp" line="2873"/> <source>failed to remove mod "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2647"/> - <location filename="mainwindow.cpp" line="3953"/> - <location filename="mainwindow.cpp" line="3977"/> + <location filename="mainwindow.cpp" line="2877"/> + <location filename="mainwindow.cpp" line="4254"/> + <location filename="mainwindow.cpp" line="4278"/> <source>failed to rename "%1" to "%2"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2702"/> - <location filename="mainwindow.cpp" line="3243"/> - <location filename="mainwindow.cpp" line="3252"/> + <location filename="mainwindow.cpp" line="2932"/> + <location filename="mainwindow.cpp" line="3518"/> + <location filename="mainwindow.cpp" line="3526"/> <source>Confirm</source> <translation type="unfinished">Confirmer</translation> </message> <message> - <location filename="mainwindow.cpp" line="2703"/> + <location filename="mainwindow.cpp" line="2933"/> <source>Remove the following mods?<br><ul>%1</ul></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2714"/> + <location filename="mainwindow.cpp" line="2944"/> <source>failed to remove mod: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2744"/> - <location filename="mainwindow.cpp" line="2747"/> + <location filename="mainwindow.cpp" line="2979"/> + <location filename="mainwindow.cpp" line="2982"/> <source>Failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2744"/> + <location filename="mainwindow.cpp" line="2979"/> <source>Installation file no longer exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2748"/> + <location filename="mainwindow.cpp" line="2983"/> <source>Mods installed with old versions of MO can't be reinstalled in this way.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2763"/> - <location filename="mainwindow.cpp" line="2790"/> + <location filename="mainwindow.cpp" line="2998"/> + <location filename="mainwindow.cpp" line="3025"/> <source>You need to be logged in with Nexus to endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2906"/> - <location filename="mainwindow.cpp" line="4335"/> + <location filename="mainwindow.cpp" line="3154"/> + <location filename="mainwindow.cpp" line="4638"/> <source>Extract BSA</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2907"/> + <location filename="mainwindow.cpp" line="3155"/> <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> </message> <message> - <location filename="mainwindow.cpp" line="2917"/> - <location filename="mainwindow.cpp" line="4292"/> - <location filename="mainwindow.cpp" line="4343"/> + <location filename="mainwindow.cpp" line="3165"/> + <location filename="mainwindow.cpp" line="4595"/> + <location filename="mainwindow.cpp" line="4646"/> <source>failed to read %1: %2</source> <translation type="unfinished">Échec de lecture %1: %2</translation> </message> <message> - <location filename="mainwindow.cpp" line="2930"/> - <location filename="mainwindow.cpp" line="4354"/> + <location filename="mainwindow.cpp" line="3178"/> + <location filename="mainwindow.cpp" line="4657"/> <source>This archive contains invalid hashes. Some files may be broken.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2964"/> + <location filename="mainwindow.cpp" line="3212"/> <source>Nexus ID for this Mod is unknown</source> <translation type="unfinished"></translation> </message> @@ -2100,371 +2179,391 @@ Please enter a name: </source> <translation type="obsolete">Choisir priorité</translation> </message> <message> - <location filename="mainwindow.cpp" line="3243"/> + <location filename="mainwindow.cpp" line="3518"/> <source>Really enable all visible mods?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3252"/> + <location filename="mainwindow.cpp" line="3526"/> <source>Really disable all visible mods?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3261"/> + <location filename="mainwindow.cpp" line="3534"/> <source>Choose what to export</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3263"/> + <location filename="mainwindow.cpp" line="3536"/> <source>Everything</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3263"/> + <location filename="mainwindow.cpp" line="3536"/> <source>All installed mods are included in the list</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3264"/> + <location filename="mainwindow.cpp" line="3537"/> <source>Active Mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3264"/> + <location filename="mainwindow.cpp" line="3537"/> <source>Only active (checked) mods from your current profile are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3265"/> + <location filename="mainwindow.cpp" line="3538"/> <source>Visible</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3265"/> + <location filename="mainwindow.cpp" line="3538"/> <source>All mods visible in the mod list are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3308"/> + <location filename="mainwindow.cpp" line="3581"/> <source>export failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3321"/> + <location filename="mainwindow.cpp" line="3605"/> <source>Install Mod...</source> <translation type="unfinished">Installer mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3323"/> + <location filename="mainwindow.cpp" line="3607"/> <source>Enable all visible</source> <translation type="unfinished">Activer tous les mods visibles</translation> </message> <message> - <location filename="mainwindow.cpp" line="3324"/> + <location filename="mainwindow.cpp" line="3608"/> <source>Disable all visible</source> <translation type="unfinished">Désactiver tous les mods visibles</translation> </message> <message> - <location filename="mainwindow.cpp" line="3326"/> + <location filename="mainwindow.cpp" line="3610"/> <source>Check all for update</source> <translation type="unfinished">Vérifier toutes les mises à jour</translation> </message> <message> - <location filename="mainwindow.cpp" line="3330"/> + <location filename="mainwindow.cpp" line="3614"/> <source>Export to csv...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3338"/> + <location filename="mainwindow.cpp" line="3622"/> <source>Sync to Mods...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3342"/> + <location filename="mainwindow.cpp" line="3626"/> <source>Restore Backup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3343"/> + <location filename="mainwindow.cpp" line="3627"/> <source>Remove Backup...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3345"/> + <location filename="mainwindow.cpp" line="3630"/> <source>Set Category</source> <translation type="unfinished">Assigner catégorie</translation> </message> <message> - <location filename="mainwindow.cpp" line="3349"/> + <location filename="mainwindow.cpp" line="3635"/> <source>Primary Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3353"/> + <location filename="mainwindow.cpp" line="3642"/> + <source>Change versioning scheme</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3646"/> + <source>Un-ignore update</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3648"/> + <source>Ignore update</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3653"/> <source>Rename Mod...</source> <translation type="unfinished">Renommer mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3354"/> + <location filename="mainwindow.cpp" line="3654"/> <source>Remove Mod...</source> <translation type="unfinished">Supprimer mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3355"/> + <location filename="mainwindow.cpp" line="3655"/> <source>Reinstall Mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3358"/> + <location filename="mainwindow.cpp" line="3658"/> <source>Un-Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3361"/> - <location filename="mainwindow.cpp" line="3365"/> + <location filename="mainwindow.cpp" line="3661"/> + <location filename="mainwindow.cpp" line="3665"/> <source>Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3362"/> + <location filename="mainwindow.cpp" line="3662"/> <source>Won't endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3368"/> + <location filename="mainwindow.cpp" line="3668"/> <source>Endorsement state unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3375"/> + <location filename="mainwindow.cpp" line="3675"/> <source>Ignore missing data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3378"/> + <location filename="mainwindow.cpp" line="3678"/> <source>Visit on Nexus</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3379"/> + <location filename="mainwindow.cpp" line="3679"/> <source>Open in explorer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3382"/> + <location filename="mainwindow.cpp" line="3682"/> <source>Information...</source> <translation type="unfinished">Information...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3388"/> - <location filename="mainwindow.cpp" line="4514"/> + <location filename="mainwindow.cpp" line="3688"/> + <location filename="mainwindow.cpp" line="4842"/> <source>Exception: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3390"/> - <location filename="mainwindow.cpp" line="4516"/> + <location filename="mainwindow.cpp" line="3690"/> + <location filename="mainwindow.cpp" line="4844"/> <source>Unknown exception</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3412"/> + <location filename="mainwindow.cpp" line="3712"/> <source><Multiple></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3524"/> + <location filename="mainwindow.cpp" line="3824"/> <source>Fix Mods...</source> <translation type="unfinished">Réparer mods...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3548"/> - <location filename="mainwindow.cpp" line="3579"/> + <location filename="mainwindow.cpp" line="3848"/> + <location filename="mainwindow.cpp" line="3879"/> <source>failed to remove %1</source> <translation type="unfinished">Impossible de supprimer %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3563"/> - <location filename="mainwindow.cpp" line="3594"/> + <location filename="mainwindow.cpp" line="3863"/> + <location filename="mainwindow.cpp" line="3894"/> <source>failed to create %1</source> <translation type="unfinished">impossible de créer %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3615"/> + <location filename="mainwindow.cpp" line="3916"/> <source>Can't change download directory while downloads are in progress!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3686"/> + <location filename="mainwindow.cpp" line="3987"/> <source>Download failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3830"/> + <location filename="mainwindow.cpp" line="4131"/> <source>failed to write to file %1</source> <translation type="unfinished">impossible d'écrire dans le fichier %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3836"/> + <location filename="mainwindow.cpp" line="4137"/> <source>%1 written</source> <translation type="unfinished">%1 écrit</translation> </message> <message> - <location filename="mainwindow.cpp" line="3875"/> + <location filename="mainwindow.cpp" line="4176"/> <source>Select binary</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3875"/> + <location filename="mainwindow.cpp" line="4176"/> <source>Binary</source> <translation type="unfinished">Programme</translation> </message> <message> - <location filename="mainwindow.cpp" line="3901"/> + <location filename="mainwindow.cpp" line="4202"/> <source>Enter Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3902"/> + <location filename="mainwindow.cpp" line="4203"/> <source>Please enter a name for the executable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3913"/> + <location filename="mainwindow.cpp" line="4214"/> <source>Not an executable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3913"/> + <location filename="mainwindow.cpp" line="4214"/> <source>This is not a recognized executable.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3938"/> - <location filename="mainwindow.cpp" line="3963"/> + <location filename="mainwindow.cpp" line="4239"/> + <location filename="mainwindow.cpp" line="4264"/> <source>Replace file?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3938"/> + <location filename="mainwindow.cpp" line="4239"/> <source>There already is a hidden version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3941"/> - <location filename="mainwindow.cpp" line="3966"/> + <location filename="mainwindow.cpp" line="4242"/> + <location filename="mainwindow.cpp" line="4267"/> <source>File operation failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3941"/> - <location filename="mainwindow.cpp" line="3966"/> + <location filename="mainwindow.cpp" line="4242"/> + <location filename="mainwindow.cpp" line="4267"/> <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3963"/> + <location filename="mainwindow.cpp" line="4264"/> <source>There already is a visible version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4009"/> + <location filename="mainwindow.cpp" line="4310"/> <source>Update available</source> <translation type="unfinished">Mise à jour disponible</translation> </message> <message> - <location filename="mainwindow.cpp" line="4046"/> + <location filename="mainwindow.cpp" line="4347"/> <source>Open/Execute</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4047"/> + <location filename="mainwindow.cpp" line="4348"/> <source>Add as Executable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4051"/> + <location filename="mainwindow.cpp" line="4352"/> <source>Un-Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4053"/> + <location filename="mainwindow.cpp" line="4354"/> <source>Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4058"/> + <location filename="mainwindow.cpp" line="4359"/> <source>Write To File...</source> <translation type="unfinished">Écriture du fichier...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4088"/> + <location filename="mainwindow.cpp" line="4390"/> <source>Do you want to endorse Mod Organizer on %1 now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4505"/> + <location filename="mainwindow.cpp" line="4803"/> + <source>Remove</source> + <translation type="unfinished">Supprimer</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4833"/> <source>Unlock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4508"/> + <location filename="mainwindow.cpp" line="4836"/> <source>Lock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4223"/> + <location filename="mainwindow.cpp" line="4526"/> <source>Request to Nexus failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4230"/> - <location filename="mainwindow.cpp" line="4247"/> + <location filename="mainwindow.cpp" line="4533"/> + <location filename="mainwindow.cpp" line="4550"/> <source>login successful</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4256"/> + <location filename="mainwindow.cpp" line="4559"/> <source>login failed: %1. Trying to download anyway</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4262"/> + <location filename="mainwindow.cpp" line="4565"/> <source>login failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4271"/> + <location filename="mainwindow.cpp" line="4574"/> <source>login failed: %1. You need to log-in with Nexus to update MO.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4304"/> + <location filename="mainwindow.cpp" line="4607"/> <source>Error</source> <translation type="unfinished">Erreur</translation> </message> <message> - <location filename="mainwindow.cpp" line="4304"/> + <location filename="mainwindow.cpp" line="4607"/> <source>failed to extract %1 (errorcode %2)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4399"/> + <location filename="mainwindow.cpp" line="4702"/> <source>Extract...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4449"/> + <location filename="mainwindow.cpp" line="4758"/> <source>Edit Categories...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4485"/> + <location filename="mainwindow.cpp" line="4813"/> <source>Enable all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4486"/> + <location filename="mainwindow.cpp" line="4814"/> <source>Disable all</source> <translation type="unfinished"></translation> </message> @@ -2494,7 +2593,7 @@ Please enter a name: </source> <context> <name>ModInfoBackup</name> <message> - <location filename="modinfo.cpp" line="784"/> + <location filename="modinfo.cpp" line="813"/> <source>This is the backup of a mod</source> <translation type="unfinished"></translation> </message> @@ -2537,57 +2636,55 @@ Please enter a name: </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> </message> <message> - <location filename="modinfodialog.ui" line="143"/> + <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="146"/> + <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> </message> <message> <location filename="modinfodialog.ui" line="64"/> - <location filename="modinfodialog.ui" line="149"/> + <location filename="modinfodialog.ui" line="152"/> <source>Save</source> <translation>Enregistrer</translation> </message> <message> - <location filename="modinfodialog.ui" line="159"/> + <location filename="modinfodialog.ui" line="162"/> <source>Images</source> <translation>Images</translation> </message> <message> - <location filename="modinfodialog.ui" line="214"/> + <location filename="modinfodialog.ui" line="217"/> <source>Images located in the mod.</source> <translation>Images présentes dans le mod.</translation> </message> <message> - <location filename="modinfodialog.ui" line="217"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" 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><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <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> </message> <message> - <location filename="modinfodialog.ui" line="254"/> - <location filename="modinfodialog.ui" line="277"/> + <location filename="modinfodialog.ui" line="244"/> + <location filename="modinfodialog.ui" line="263"/> <source>Optional ESPs</source> <translation>ESPs optionnels</translation> </message> <message> - <location filename="modinfodialog.ui" line="260"/> + <location filename="modinfodialog.ui" line="250"/> <source>List of esps and esms that can not be loaded by the game.</source> <translation>Liste des esps et esms ne pouvant pas être chargés par le jeu.</translation> </message> <message> - <location filename="modinfodialog.ui" line="263"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -2596,7 +2693,7 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">They usually contain optional functionality, see the readme.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Most mods do not have optional esps, so chances are good you are looking at an empty list.</span></p></body></html></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <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;"> @@ -2606,103 +2703,116 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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="292"/> + <location filename="modinfodialog.ui" line="220"/> + <source>This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="253"/> + <source>List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window. +They usually contain optional functionality, see the readme. + +Most mods do not have optional esps, so chances are good you are looking at an empty list.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="278"/> <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="295"/> + <location filename="modinfodialog.ui" line="281"/> <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="321"/> + <location filename="modinfodialog.ui" line="307"/> <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="324"/> + <location filename="modinfodialog.ui" line="310"/> <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="359"/> + <location filename="modinfodialog.ui" line="345"/> <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="362"/> + <location filename="modinfodialog.ui" line="348"/> <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> </message> <message> - <location filename="modinfodialog.ui" line="369"/> + <location filename="modinfodialog.ui" line="355"/> <source>Available ESPs</source> <translation>ESPs disponibles</translation> </message> <message> - <location filename="modinfodialog.ui" line="377"/> + <location filename="modinfodialog.ui" line="363"/> <source>Conflicts</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="385"/> + <location filename="modinfodialog.ui" line="371"/> <source>The following conflicted files are provided by this mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="432"/> - <location filename="modinfodialog.ui" line="479"/> + <location filename="modinfodialog.ui" line="418"/> + <location filename="modinfodialog.ui" line="465"/> <source>File</source> <translation type="unfinished">Fichier</translation> </message> <message> - <location filename="modinfodialog.ui" line="437"/> + <location filename="modinfodialog.ui" line="423"/> <source>Overwritten Mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="447"/> + <location filename="modinfodialog.ui" line="433"/> <source>The following conflicted files are provided by other mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="484"/> + <location filename="modinfodialog.ui" line="470"/> <source>Providing Mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="494"/> + <location filename="modinfodialog.ui" line="480"/> <source>Non-Conflicted files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="514"/> + <location filename="modinfodialog.ui" line="500"/> <source>Categories</source> <translation type="unfinished">Catégories</translation> </message> <message> - <location filename="modinfodialog.ui" line="537"/> + <location filename="modinfodialog.ui" line="523"/> <source>Primary Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="554"/> + <location filename="modinfodialog.ui" line="540"/> <source>Nexus Info</source> <translation>Info de Nexus</translation> </message> <message> - <location filename="modinfodialog.ui" line="562"/> + <location filename="modinfodialog.ui" line="548"/> <source>Mod ID</source> <translation>ID du mod</translation> </message> <message> - <location filename="modinfodialog.ui" line="569"/> + <location filename="modinfodialog.ui" line="555"/> <source>Mod ID for this mod on Nexus.</source> <translation>ID de ce mod sur Nexus.</translation> </message> <message> - <location filename="modinfodialog.ui" line="572"/> + <location filename="modinfodialog.ui" line="558"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -2720,7 +2830,7 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">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="596"/> + <location filename="modinfodialog.ui" line="582"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -2733,27 +2843,27 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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="603"/> + <location filename="modinfodialog.ui" line="589"/> <source>Version</source> <translation>Version</translation> </message> <message> - <location filename="modinfodialog.ui" line="633"/> + <location filename="modinfodialog.ui" line="619"/> <source>Refresh</source> <translation type="unfinished">Actualiser</translation> </message> <message> - <location filename="modinfodialog.ui" line="636"/> + <location filename="modinfodialog.ui" line="622"/> <source>Refresh all information from Nexus.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="650"/> + <location filename="modinfodialog.ui" line="636"/> <source>Description</source> <translation>Description</translation> </message> <message> - <location filename="modinfodialog.ui" line="665"/> + <location filename="modinfodialog.ui" line="651"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -2779,20 +2889,21 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Type</translation> </message> <message> + <location filename="modinfodialog.cpp" line="1179"/> <source>Name</source> - <translation type="obsolete">Nom</translation> + <translation type="unfinished">Nom</translation> </message> <message> <source>Size (kB)</source> <translation type="obsolete">Taille (kB)</translation> </message> <message> - <location filename="modinfodialog.ui" line="701"/> + <location filename="modinfodialog.ui" line="687"/> <source>Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="715"/> + <location filename="modinfodialog.ui" line="701"/> <source>Notes</source> <translation type="unfinished"></translation> </message> @@ -2805,17 +2916,17 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Avez-vous donné votre aval à ce mod?</translation> </message> <message> - <location filename="modinfodialog.ui" line="725"/> + <location filename="modinfodialog.ui" line="711"/> <source>Filetree</source> <translation>Arborescence</translation> </message> <message> - <location filename="modinfodialog.ui" line="734"/> + <location filename="modinfodialog.ui" line="720"/> <source>A directory view of this mod</source> <translation>Une vue du dossier de ce mod</translation> </message> <message> - <location filename="modinfodialog.ui" line="737"/> + <location filename="modinfodialog.ui" line="723"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -2830,17 +2941,17 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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="764"/> + <location filename="modinfodialog.ui" line="750"/> <source>Previous</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="771"/> + <location filename="modinfodialog.ui" line="757"/> <source>Next</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="791"/> + <location filename="modinfodialog.ui" line="777"/> <source>Close</source> <translation>Fermer</translation> </message> @@ -2866,34 +2977,34 @@ p, li { white-space: pre-wrap; } <translation>&Nouveau dossier</translation> </message> <message> - <location filename="modinfodialog.cpp" line="352"/> - <location filename="modinfodialog.cpp" line="367"/> + <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="563"/> + <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="563"/> + <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="580"/> + <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="605"/> + <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="643"/> - <location filename="modinfodialog.cpp" line="1155"/> + <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> @@ -2903,17 +3014,17 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">(description incomplète, veuillez vérifier sur Nexus)</translation> </message> <message> - <location filename="modinfodialog.cpp" line="713"/> + <location filename="modinfodialog.cpp" line="720"/> <source>Current Version: %1</source> <translation>Version courante: %1</translation> </message> <message> - <location filename="modinfodialog.cpp" line="717"/> + <location filename="modinfodialog.cpp" line="724"/> <source>No update available</source> <translation>Aucune mise-à-jour disponible</translation> </message> <message> - <location filename="modinfodialog.cpp" line="697"/> + <location filename="modinfodialog.cpp" line="704"/> <source>Main</source> <translation>Principal</translation> </message> @@ -2928,97 +3039,123 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="352"/> - <location filename="modinfodialog.cpp" line="367"/> + <location filename="modinfodialog.cpp" line="354"/> + <location filename="modinfodialog.cpp" line="369"/> <source>Save changes to "%1"?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="698"/> + <location filename="modinfodialog.cpp" line="705"/> <source>Update</source> <translation>Mise-à-jour</translation> </message> <message> - <location filename="modinfodialog.cpp" line="699"/> + <location filename="modinfodialog.cpp" line="706"/> <source>Optional</source> <translation>Optionnel</translation> </message> <message> - <location filename="modinfodialog.cpp" line="700"/> + <location filename="modinfodialog.cpp" line="707"/> <source>Old</source> <translation>Ancien</translation> </message> <message> - <location filename="modinfodialog.cpp" line="701"/> + <location filename="modinfodialog.cpp" line="708"/> <source>Misc</source> <translation>Divers</translation> </message> <message> - <location filename="modinfodialog.cpp" line="702"/> + <location filename="modinfodialog.cpp" line="709"/> <source>Unknown</source> <translation>Inconnu</translation> </message> <message> - <location filename="modinfodialog.cpp" line="758"/> + <location filename="modinfodialog.cpp" line="765"/> <source>(description incomplete, please visit nexus)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1064"/> - <location filename="modinfodialog.cpp" line="1088"/> + <location filename="modinfodialog.cpp" line="1065"/> + <location filename="modinfodialog.cpp" line="1089"/> <source>Replace file?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1064"/> + <location filename="modinfodialog.cpp" line="1065"/> <source>There already is a hidden version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1067"/> - <location filename="modinfodialog.cpp" line="1091"/> + <location filename="modinfodialog.cpp" line="1068"/> + <location filename="modinfodialog.cpp" line="1092"/> <source>File operation failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1067"/> - <location filename="modinfodialog.cpp" line="1091"/> + <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"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1078"/> - <location filename="modinfodialog.cpp" line="1101"/> + <location filename="modinfodialog.cpp" line="1079"/> + <location filename="modinfodialog.cpp" line="1102"/> <source>failed to rename %1 to %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1088"/> + <location filename="modinfodialog.cpp" line="1089"/> <source>There already is a visible version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1135"/> + <location filename="modinfodialog.cpp" line="1136"/> <source>Un-Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1137"/> + <location filename="modinfodialog.cpp" line="1138"/> <source>Hide</source> <translation type="unfinished"></translation> </message> <message> + <location filename="modinfodialog.cpp" line="1179"/> + <source>Please enter a name</source> + <translation type="unfinished"></translation> + </message> + <message> + <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="1183"/> + <source>Invalid name. Must be a valid file name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1186"/> + <source>A tweak by that name exists</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1198"/> + <source>Create Tweak</source> + <translation type="unfinished"></translation> + </message> + <message> <source>request failed</source> <translation type="obsolete">la requête à échouée</translation> </message> <message> - <location filename="modinfodialog.cpp" line="779"/> + <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="869"/> - <location filename="modinfodialog.cpp" line="874"/> + <location filename="modinfodialog.cpp" line="870"/> + <location filename="modinfodialog.cpp" line="875"/> <source>Confirm</source> <translation>Confirmer</translation> </message> @@ -3031,28 +3168,28 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Téléchargement commencé</translation> </message> <message> - <location filename="modinfodialog.cpp" line="858"/> + <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="869"/> + <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="874"/> + <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="948"/> - <location filename="modinfodialog.cpp" line="954"/> + <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="960"/> + <location filename="modinfodialog.cpp" line="961"/> <source>Failed to create "%1"</source> <translation>Impossible de créer "%1"</translation> </message> @@ -3060,12 +3197,7 @@ p, li { white-space: pre-wrap; } <context> <name>ModInfoOverwrite</name> <message> - <location filename="modinfo.h" line="812"/> - <source>Overwrite</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfo.cpp" line="821"/> + <location filename="modinfo.cpp" line="859"/> <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source> <translation type="unfinished"></translation> </message> @@ -3073,17 +3205,17 @@ p, li { white-space: pre-wrap; } <context> <name>ModInfoRegular</name> <message> - <location filename="modinfo.cpp" line="392"/> + <location filename="modinfo.cpp" line="393"/> <source>failed to write %1/meta.ini: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfo.cpp" line="625"/> + <location filename="modinfo.cpp" line="654"/> <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> </message> <message> - <location filename="modinfo.cpp" line="629"/> + <location filename="modinfo.cpp" line="658"/> <source>Categories: <br></source> <translation type="unfinished"></translation> </message> @@ -3103,7 +3235,7 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">max</translation> </message> <message> - <location filename="modlist.cpp" line="294"/> + <location filename="modlist.cpp" line="307"/> <source>installed version: %1, newest version: %2</source> <translation>Version installée: %1, dernière version: %2</translation> </message> @@ -3112,11 +3244,6 @@ p, li { white-space: pre-wrap; } <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="94"/> - <source>Overwrite</source> - <translation type="unfinished"></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> @@ -3157,47 +3284,52 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="184"/> + <location filename="modlist.cpp" line="196"/> <source>invalid</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="298"/> + <location filename="modlist.cpp" line="309"/> + <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="317"/> <source>Categories: <br></source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="327"/> + <location filename="modlist.cpp" line="346"/> <source>Invalid name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="718"/> + <location filename="modlist.cpp" line="831"/> <source>Mod Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="723"/> + <location filename="modlist.cpp" line="836"/> <source>Installation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="736"/> + <location filename="modlist.cpp" line="849"/> <source>Category of the mod.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="737"/> + <location filename="modlist.cpp" line="850"/> <source>Id of the mod as used on Nexus.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="738"/> + <location filename="modlist.cpp" line="851"/> <source>Emblemes to highlight things that might require attention.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="739"/> + <location filename="modlist.cpp" line="852"/> <source>Time this mod was installed</source> <translation type="unfinished"></translation> </message> @@ -3210,63 +3342,63 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Les noms de vos mods</translation> </message> <message> - <location filename="modlist.cpp" line="719"/> + <location filename="modlist.cpp" line="832"/> <source>Version</source> <translation>Version</translation> </message> <message> - <location filename="modlist.cpp" line="733"/> + <location filename="modlist.cpp" line="846"/> <source>Version of the mod (if available)</source> <translation>Version du mod (si disponible)</translation> </message> <message> - <location filename="modlist.cpp" line="720"/> + <location filename="modlist.cpp" line="833"/> <source>Priority</source> <translation>Priorité</translation> </message> <message> - <location filename="modlist.cpp" line="603"/> + <location filename="modlist.cpp" line="716"/> <source>drag&drop failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="717"/> + <location filename="modlist.cpp" line="830"/> <source>Flags</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="721"/> + <location filename="modlist.cpp" line="834"/> <source>Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="722"/> + <location filename="modlist.cpp" line="835"/> <source>Nexus ID</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="724"/> - <location filename="modlist.cpp" line="740"/> + <location filename="modlist.cpp" line="837"/> + <location filename="modlist.cpp" line="853"/> <source>unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="732"/> + <location filename="modlist.cpp" line="845"/> <source>Name of your mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="734"/> + <location filename="modlist.cpp" line="847"/> <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="662"/> + <location filename="modlist.cpp" line="775"/> <source>Confirm</source> <translation>Confirmer</translation> </message> <message> - <location filename="modlist.cpp" line="662"/> + <location filename="modlist.cpp" line="775"/> <source>Are you sure you want to remove "%1"?</source> <translation>Voulez-vous vraiment supprimer "%1"?</translation> </message> @@ -3291,12 +3423,12 @@ p, li { white-space: pre-wrap; } <context> <name>MyFileSystemModel</name> <message> - <location filename="overwriteinfodialog.cpp" line="48"/> + <location filename="overwriteinfodialog.cpp" line="47"/> <source>Overwrites</source> <translation type="unfinished"></translation> </message> <message> - <location filename="overwriteinfodialog.cpp" line="60"/> + <location filename="overwriteinfodialog.cpp" line="59"/> <source>not implemented</source> <translation type="unfinished"></translation> </message> @@ -3305,11 +3437,16 @@ p, li { white-space: pre-wrap; } <name>NXMAccessManager</name> <message> <location filename="nxmaccessmanager.cpp" line="130"/> + <source>Logging into Nexus</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="nxmaccessmanager.cpp" line="145"/> <source>timeout</source> <translation type="unfinished"></translation> </message> <message> - <location filename="nxmaccessmanager.cpp" line="168"/> + <location filename="nxmaccessmanager.cpp" line="185"/> <source>Please check your password</source> <translation type="unfinished"></translation> </message> @@ -3371,17 +3508,17 @@ p, li { white-space: pre-wrap; } <context> <name>NexusInterface</name> <message> - <location filename="nexusinterface.cpp" line="201"/> + <location filename="nexusinterface.cpp" line="219"/> <source>Failed to guess mod id for "%1", please pick the correct one</source> <translation type="unfinished"></translation> </message> <message> - <location filename="nexusinterface.cpp" line="421"/> + <location filename="nexusinterface.cpp" line="440"/> <source>empty response</source> <translation type="unfinished"></translation> </message> <message> - <location filename="nexusinterface.cpp" line="450"/> + <location filename="nexusinterface.cpp" line="469"/> <source>invalid response</source> <translation type="unfinished"></translation> </message> @@ -4067,34 +4204,34 @@ p, li { white-space: pre-wrap; } <translation type="unfinished">&Nouveau dossier</translation> </message> <message> - <location filename="overwriteinfodialog.cpp" line="137"/> + <location filename="overwriteinfodialog.cpp" line="136"/> <source>Failed to delete "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="overwriteinfodialog.cpp" line="148"/> - <location filename="overwriteinfodialog.cpp" line="153"/> + <location filename="overwriteinfodialog.cpp" line="147"/> + <location filename="overwriteinfodialog.cpp" line="152"/> <source>Confirm</source> <translation type="unfinished">Confirmer</translation> </message> <message> - <location filename="overwriteinfodialog.cpp" line="148"/> + <location filename="overwriteinfodialog.cpp" line="147"/> <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="153"/> + <location filename="overwriteinfodialog.cpp" line="152"/> <source>Are sure you want to delete the selected files?</source> <translation type="unfinished">Voulez-vous vraiment supprimer les fichiers sélectionnés?</translation> </message> <message> - <location filename="overwriteinfodialog.cpp" line="203"/> - <location filename="overwriteinfodialog.cpp" line="209"/> + <location filename="overwriteinfodialog.cpp" line="202"/> + <location filename="overwriteinfodialog.cpp" line="208"/> <source>New Folder</source> <translation type="unfinished">Nouveau dossier</translation> </message> <message> - <location filename="overwriteinfodialog.cpp" line="215"/> + <location filename="overwriteinfodialog.cpp" line="214"/> <source>Failed to create "%1"</source> <translation type="unfinished">Impossible de créer "%1"</translation> </message> @@ -4102,70 +4239,85 @@ p, li { white-space: pre-wrap; } <context> <name>PluginList</name> <message> - <location filename="pluginlist.cpp" line="98"/> + <location filename="pluginlist.cpp" line="103"/> <source>Mod Index</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="99"/> - <location filename="pluginlist.cpp" line="111"/> + <location filename="pluginlist.cpp" line="104"/> + <location filename="pluginlist.cpp" line="116"/> <source>unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="107"/> + <location filename="pluginlist.cpp" line="112"/> <source>Name of your mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="108"/> + <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"></translation> </message> <message> - <location filename="pluginlist.cpp" line="110"/> + <location filename="pluginlist.cpp" line="115"/> <source>The modindex determins the formids of objects originating from this mods.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="208"/> + <location filename="pluginlist.cpp" line="151"/> + <source>failed to update esp info for file %1 (source id: %2), error: %3</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="pluginlist.cpp" line="218"/> <source>esp not found: %1</source> <translation>ESP introuvable: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="215"/> - <location filename="pluginlist.cpp" line="227"/> + <location filename="pluginlist.cpp" line="225"/> + <location filename="pluginlist.cpp" line="237"/> <source>Confirm</source> <translation type="unfinished">Confirmer</translation> </message> <message> - <location filename="pluginlist.cpp" line="215"/> + <location filename="pluginlist.cpp" line="225"/> <source>Really enable all plugins?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="227"/> + <location filename="pluginlist.cpp" line="237"/> <source>Really disable all plugins?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="353"/> + <location filename="pluginlist.cpp" line="365"/> <source>The file containing locked plugin indices is broken</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="366"/> - <location filename="pluginlist.cpp" line="405"/> + <location filename="pluginlist.cpp" line="378"/> + <location filename="pluginlist.cpp" line="417"/> <source>failed to open output file: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="393"/> + <location filename="pluginlist.cpp" line="405"/> <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="737"/> + <location filename="pluginlist.cpp" line="755"/> + <source>Missing Masters</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="pluginlist.cpp" line="761"/> + <source>Enabled Masters</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="pluginlist.cpp" line="873"/> <source>failed to restore load order for %1</source> <translation type="unfinished"></translation> </message> @@ -4178,17 +4330,17 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">max</translation> </message> <message> - <location filename="pluginlist.cpp" line="631"/> + <location filename="pluginlist.cpp" line="751"/> <source>This plugin can't be disabled (enforced by the game)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="633"/> + <location filename="pluginlist.cpp" line="753"/> <source>Origin: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="96"/> + <location filename="pluginlist.cpp" line="101"/> <source>Name</source> <translation>Nom</translation> </message> @@ -4197,7 +4349,7 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Les noms de vos mods</translation> </message> <message> - <location filename="pluginlist.cpp" line="97"/> + <location filename="pluginlist.cpp" line="102"/> <source>Priority</source> <translation>Priorité</translation> </message> @@ -4226,22 +4378,28 @@ p, li { white-space: pre-wrap; } <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" 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;"> +</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> + <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: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></oldsource> <translation type="unfinished"></translation> </message> <message> - <location filename="problemsdialog.cpp" line="29"/> - <source>fix</source> - <translation type="unfinished"></translation> + <location filename="problemsdialog.ui" line="75"/> + <source>Close</source> + <translation type="unfinished">Fermer</translation> </message> <message> - <location filename="problemsdialog.cpp" line="30"/> + <location filename="problemsdialog.cpp" line="44"/> + <location filename="problemsdialog.cpp" line="45"/> <source>Fix</source> <translation type="unfinished"></translation> </message> <message> - <location filename="problemsdialog.cpp" line="34"/> + <location filename="problemsdialog.cpp" line="49"/> <source>No guided fix</source> <translation type="unfinished"></translation> </message> @@ -4253,72 +4411,82 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">impossible d'appliquer les ajustements aux fichiers ini</translation> </message> <message> - <location filename="profile.cpp" line="56"/> + <location filename="profile.cpp" line="58"/> <source>invalid profile name %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="60"/> + <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="152"/> + <location filename="profile.cpp" line="155"/> + <source>failed to open temporary file</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profile.cpp" line="192"/> <source>failed to open "%1" for writing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="189"/> + <location filename="profile.cpp" line="198"/> + <source>failed to write mod list: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profile.cpp" line="209"/> <source>failed to update tweaked ini file, wrong settings may be used: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="219"/> + <location filename="profile.cpp" line="239"/> <source>failed to create tweaked ini: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="365"/> + <location filename="profile.cpp" line="387"/> <source>Overwrite directory couldn't be parsed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="374"/> + <location filename="profile.cpp" line="396"/> <source>invalid priority %1</source> <translation>priorité invalide %1</translation> </message> <message> - <location filename="profile.cpp" line="561"/> + <location filename="profile.cpp" line="584"/> <source>failed to parse ini file (%1)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="589"/> + <location filename="profile.cpp" line="612"/> <source>failed to parse ini file (%1): %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="613"/> - <location filename="profile.cpp" line="650"/> + <location filename="profile.cpp" line="636"/> + <location filename="profile.cpp" line="673"/> <source>failed to modify "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="678"/> + <location filename="profile.cpp" line="701"/> <source>Delete savegames?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="679"/> + <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"></translation> </message> <message> - <location filename="profile.cpp" line="271"/> - <location filename="profile.cpp" line="300"/> - <location filename="profile.cpp" line="384"/> - <location filename="profile.cpp" line="402"/> - <location filename="profile.cpp" line="412"/> + <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> @@ -4534,37 +4702,61 @@ p, li { white-space: pre-wrap; } <translation>Veuillez inscrire un nom pour le nouveau profil</translation> </message> <message> - <location filename="profilesdialog.cpp" line="160"/> + <location filename="profilesdialog.cpp" line="162"/> <source>failed to copy profile: %1</source> <translation>impossible de copier le profil: %1</translation> </message> <message> - <location filename="profilesdialog.cpp" line="167"/> + <location filename="profilesdialog.cpp" line="165"/> + <source>Invalid name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.cpp" line="165"/> + <source>Invalid profile name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.cpp" line="172"/> <source>Confirm</source> <translation>Confirmer</translation> </message> <message> - <location filename="profilesdialog.cpp" line="167"/> + <location filename="profilesdialog.cpp" line="172"/> + <source>Are you sure you want to remove this profile (including local savegames if any)?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.cpp" line="182"/> + <source>Profile broken</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.cpp" line="183"/> + <source>This profile you'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>Voulez-vous vraiment supprimer ce profil?</translation> + <translation type="obsolete">Voulez-vous vraiment supprimer ce profil?</translation> </message> <message> - <location filename="profilesdialog.cpp" line="196"/> + <location filename="profilesdialog.cpp" line="215"/> <source>Rename Profile</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profilesdialog.cpp" line="196"/> + <location filename="profilesdialog.cpp" line="215"/> <source>New Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profilesdialog.cpp" line="233"/> + <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> </message> <message> - <location filename="profilesdialog.cpp" line="270"/> + <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> </message> @@ -4572,20 +4764,20 @@ p, li { white-space: pre-wrap; } <context> <name>QObject</name> <message> - <location filename="categories.cpp" line="133"/> + <location filename="categories.cpp" line="140"/> <source>Failed to save custom categories</source> <translation>Impossible d'enregistrer les catégories personalisées</translation> </message> <message> - <location filename="categories.cpp" line="210"/> - <location filename="categories.cpp" line="245"/> - <location filename="categories.cpp" line="255"/> - <location filename="categories.cpp" line="265"/> + <location filename="categories.cpp" line="217"/> + <location filename="categories.cpp" line="252"/> + <location filename="categories.cpp" line="262"/> + <location filename="categories.cpp" line="272"/> <source>invalid index %1</source> <translation>index invalide %1</translation> </message> <message> - <location filename="categories.cpp" line="276"/> + <location filename="categories.cpp" line="283"/> <source>invalid category id %1</source> <translation type="unfinished"></translation> </message> @@ -4601,7 +4793,7 @@ p, li { white-space: pre-wrap; } <translation>impossible de détermine le nom d'usager</translation> </message> <message> - <location filename="installationmanager.cpp" line="63"/> + <location filename="installationmanager.cpp" line="64"/> <location filename="selfupdater.cpp" line="52"/> <source>invalid 7-zip32.dll: %1</source> <translation>7-zip32.dll invalide: %1</translation> @@ -4671,12 +4863,12 @@ 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="93"/> + <location filename="profile.cpp" line="95"/> <source>"%1" is missing</source> <translation>"%1" manquant</translation> </message> <message> - <location filename="main.cpp" line="134"/> + <location filename="main.cpp" line="138"/> <source>Permissions required</source> <translation>Permissions requises</translation> </message> @@ -4685,86 +4877,91 @@ p, li { white-space: pre-wrap; } <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> </message> <message> - <location filename="main.cpp" line="234"/> - <location filename="main.cpp" line="272"/> + <location filename="main.cpp" line="230"/> + <location filename="main.cpp" line="268"/> <source>Woops</source> <translation type="unfinished"></translation> </message> <message> - <location filename="main.cpp" line="135"/> - <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> + <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"></translation> </message> <message> - <location filename="main.cpp" line="235"/> + <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> </message> <message> - <location filename="main.cpp" line="273"/> + <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> </message> <message> - <location filename="main.cpp" line="335"/> - <location filename="settings.cpp" line="462"/> + <location filename="main.cpp" line="331"/> + <location filename="settings.cpp" line="528"/> <source>Mod Organizer</source> <translation>Mod Organizer</translation> </message> <message> - <location filename="main.cpp" line="335"/> + <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="357"/> + <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"></translation> </message> <message> - <location filename="main.cpp" line="360"/> - <location filename="main.cpp" line="389"/> + <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="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"></translation> + </message> + <message> <source>"%1" not found</source> <translation type="obsolete">"%1" introuvable</translation> </message> <message> - <location filename="mainwindow.cpp" line="752"/> + <location filename="mainwindow.cpp" line="770"/> <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="1470"/> - <location filename="mainwindow.cpp" line="3723"/> + <location filename="mainwindow.cpp" line="1538"/> + <location filename="mainwindow.cpp" line="4024"/> <source><Manage...></source> <translation><Gérer...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1488"/> + <location filename="mainwindow.cpp" line="1556"/> <source>failed to parse profile %1: %2</source> <translation>impossible d'analyser le profil %1: %2</translation> </message> <message> - <location filename="pluginlist.cpp" line="310"/> - <location filename="profile.cpp" line="228"/> + <location filename="pluginlist.cpp" line="320"/> + <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="467"/> + <location filename="pluginlist.cpp" line="479"/> <source>failed to access %1</source> <translation>impossible d'accéder à %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="481"/> + <location filename="pluginlist.cpp" line="493"/> <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="67"/> + <location filename="profile.cpp" line="69"/> <source>failed to create %1</source> <translation>impossible de créer %1</translation> </message> @@ -4803,12 +5000,12 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Français</translation> </message> <message> - <location filename="settings.cpp" line="469"/> + <location filename="settings.cpp" line="535"/> <source>Script Extender</source> <translation>Extenseur de script</translation> </message> <message> - <location filename="settings.cpp" line="476"/> + <location filename="settings.cpp" line="542"/> <source>Proxy DLL</source> <translation>DLL par procuration</translation> </message> @@ -4947,14 +5144,6 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe </message> </context> <context> - <name>QuestionBoxMemory</name> - <message> - <location filename="questionboxmemory.ui" line="86"/> - <source>Remember selection</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> <name>SaveGameInfoWidget</name> <message> <location filename="savegameinfowidget.ui" line="39"/> @@ -5054,9 +5243,9 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe </message> <message> <location filename="selfupdater.cpp" line="116"/> - <location filename="selfupdater.cpp" line="140"/> - <location filename="selfupdater.cpp" line="269"/> - <location filename="selfupdater.cpp" line="417"/> + <location filename="selfupdater.cpp" line="139"/> + <location filename="selfupdater.cpp" line="268"/> + <location filename="selfupdater.cpp" line="415"/> <source>Update</source> <translation>Mettre à jour</translation> </message> @@ -5066,7 +5255,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <translation>Une mise à jour est disponible (dernière version: %1), voulez-vous l'installer?</translation> </message> <message> - <location filename="selfupdater.cpp" line="141"/> + <location filename="selfupdater.cpp" line="140"/> <source>Download in progress</source> <translation>Téléchargement en cours</translation> </message> @@ -5080,57 +5269,57 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <translation type="unfinished"></translation> </message> <message> - <location filename="selfupdater.cpp" line="196"/> + <location filename="selfupdater.cpp" line="195"/> <source>Download failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="selfupdater.cpp" line="207"/> + <location filename="selfupdater.cpp" line="206"/> <source>Failed to install update: %1</source> <translation>Impossible d'installer la mise à jour %1</translation> </message> <message> - <location filename="selfupdater.cpp" line="228"/> + <location filename="selfupdater.cpp" line="227"/> <source>failed to open archive "%1": %2</source> <translation>impossible d'ouvrir l'archive "%1": %2</translation> </message> <message> - <location filename="selfupdater.cpp" line="251"/> + <location filename="selfupdater.cpp" line="250"/> <source>failed to move outdated files: %1. Please update manually.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="selfupdater.cpp" line="269"/> + <location filename="selfupdater.cpp" line="268"/> <source>Update installed, Mod Organizer will now be restarted.</source> <translation>Mise à jour complétée, Mod Organizer va maintenant redémarrer.</translation> </message> <message> - <location filename="selfupdater.cpp" line="297"/> + <location filename="selfupdater.cpp" line="296"/> <source>Error</source> <translation>Erreur</translation> </message> <message> - <location filename="selfupdater.cpp" line="353"/> + <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> </message> <message> - <location filename="selfupdater.cpp" line="418"/> + <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> </message> <message> - <location filename="selfupdater.cpp" line="427"/> + <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="461"/> + <location filename="selfupdater.cpp" line="459"/> <source>No download server available. Please try again later.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="selfupdater.cpp" line="441"/> + <location filename="selfupdater.cpp" line="439"/> <source>Failed to retrieve update information: %1</source> <translation type="unfinished"></translation> </message> @@ -5146,26 +5335,22 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <context> <name>Settings</name> <message> - <location filename="settings.cpp" line="278"/> - <source>setting for invalid plugin "%1" requested</source> - <translation type="unfinished"></translation> + <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="282"/> - <source>invalid setting "%1" requested for plugin "%2"</source> + <location filename="settings.cpp" line="306"/> + <location filename="settings.cpp" line="325"/> + <source>attempt to store setting for unknown plugin "%1"</source> <translation type="unfinished"></translation> </message> <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="573"/> + <location filename="settings.cpp" line="646"/> <source>Confirm</source> <translation type="unfinished">Confirmer</translation> </message> <message> - <location filename="settings.cpp" line="573"/> + <location filename="settings.cpp" line="646"/> <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> @@ -5358,7 +5543,12 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="594"/> + <location filename="settingsdialog.ui" line="512"/> + <source>Blacklisted Plugins (use <del> to remove):</source> + <translation type="unfinished"></translation> + </message> + <message> + <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. @@ -5422,47 +5612,47 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="427"/> + <location filename="settingsdialog.ui" line="429"/> <source>Author:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="441"/> + <location filename="settingsdialog.ui" line="443"/> <source>Version:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="455"/> + <location filename="settingsdialog.ui" line="457"/> <source>Description:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="493"/> + <location filename="settingsdialog.ui" line="495"/> <source>Key</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="498"/> + <location filename="settingsdialog.ui" line="500"/> <source>Value</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="509"/> + <location filename="settingsdialog.ui" line="523"/> <source>Workarounds</source> <translation>Solutions alternatives</translation> </message> <message> - <location filename="settingsdialog.ui" line="517"/> + <location filename="settingsdialog.ui" line="531"/> <source>Steam App ID</source> <translation>ID d'application Steam</translation> </message> <message> - <location filename="settingsdialog.ui" line="537"/> + <location filename="settingsdialog.ui" line="551"/> <source>The Steam AppID for your game</source> <translation>L'AppID Steam de votre jeu</translation> </message> <message> - <location filename="settingsdialog.ui" line="540"/> + <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; } @@ -5489,12 +5679,12 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">22380 est l'App ID que vous cherchez.</span></p></body></html></translation> </message> <message> - <location filename="settingsdialog.ui" line="571"/> + <location filename="settingsdialog.ui" line="585"/> <source>Load Mechanism</source> <translation>Chargement MO</translation> </message> <message> - <location filename="settingsdialog.ui" line="591"/> + <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> </message> @@ -5519,17 +5709,17 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">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> </message> <message> - <location filename="settingsdialog.ui" line="611"/> + <location filename="settingsdialog.ui" line="625"/> <source>NMM Version</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="631"/> + <location filename="settingsdialog.ui" line="645"/> <source>The Version of Nexus Mod Manager to impersonate.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="634"/> + <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. @@ -5538,53 +5728,53 @@ tl;dr-version: If Nexus-features don't work, insert the current version num <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="656"/> + <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="659"/> + <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="663"/> + <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="670"/> + <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> </message> <message> - <location filename="settingsdialog.ui" line="673"/> + <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> </message> <message> - <location filename="settingsdialog.ui" line="677"/> + <location filename="settingsdialog.ui" line="691"/> <source>Force-enable game files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="687"/> - <location filename="settingsdialog.ui" line="691"/> + <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> </message> <message> - <location filename="settingsdialog.ui" line="695"/> + <location filename="settingsdialog.ui" line="709"/> <source>Back-date BSAs</source> <translation>Antidater les BSAs</translation> </message> <message> - <location filename="settingsdialog.ui" line="719"/> + <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> @@ -5593,27 +5783,27 @@ Pour les autres jeux, ceci ne suffit pas à remplacer l'invalidation des ar <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="89"/> + <location filename="settingsdialog.cpp" line="94"/> <source>Select download directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.cpp" line="97"/> + <location filename="settingsdialog.cpp" line="102"/> <source>Select mod directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.cpp" line="105"/> + <location filename="settingsdialog.cpp" line="110"/> <source>Select cache directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.cpp" line="113"/> + <location filename="settingsdialog.cpp" line="118"/> <source>Confirm?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.cpp" line="114"/> + <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"></translation> </message> diff --git a/src/organizer_ru.qm b/src/organizer_ru.qm Binary files differindex 5921c2dc..bd861ebb 100644 --- a/src/organizer_ru.qm +++ b/src/organizer_ru.qm diff --git a/src/organizer_ru.ts b/src/organizer_ru.ts index 9b7b8101..d377c1e0 100644 --- a/src/organizer_ru.ts +++ b/src/organizer_ru.ts @@ -1,3 +1,4 @@ +<?xml version="1.0" encoding="utf-8"?> <!DOCTYPE TS> <TS version="2.0" language="ru"> <context> @@ -14,22 +15,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;">Это список 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"/> @@ -72,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"/> @@ -154,20 +155,20 @@ If there is a component called "00 Core" it is usually required. Options are ord </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"/> @@ -199,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>Эта функция может не работать, если вход выполнен с Nexus</translation> </message> <message> @@ -249,41 +250,46 @@ p, li { white-space: pre-wrap; } <translation>Выполнено</translation> </message> <message> - <location filename="downloadlist.cpp" line="79"/> - <source>Information missing, please select "Query Info" from the context menu to re-retrieve.</source> - <translation>Информация отсутствует, пожалуйста, выберите пункт "Справочная информация" из контекстного меню.</translation> + <location filename="downloadlist.cpp" line="80"/> + <source>Information missing, please select "Query Info" from the context menu to re-retrieve.</source> + <translation>Информация отсутствует, пожалуйста, выберите пункт "Справочная информация" из контекстного меню.</translation> </message> </context> <context> <name>DownloadListWidget</name> <message> <location filename="downloadlistwidget.ui" line="17"/> - <location filename="downloadlistwidget.ui" line="59"/> + <location filename="downloadlistwidget.ui" line="61"/> <source>Placeholder</source> <translation>Заполнитель</translation> </message> <message> - <location filename="downloadlistwidget.ui" line="68"/> - <location filename="downloadlistwidget.cpp" line="143"/> + <location filename="downloadlistwidget.ui" line="88"/> + <source>KB</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidget.ui" line="99"/> <location filename="downloadlistwidget.cpp" line="145"/> + <location filename="downloadlistwidget.cpp" line="147"/> <source>Done - Double Click to install</source> <translation>Готово - двойной щелчок для установки.</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="109"/> <location filename="downloadlistwidget.cpp" line="111"/> + <location filename="downloadlistwidget.cpp" line="113"/> <source>Paused - Double Click to resume</source> <translation>Пауза - двойной клик для продолжения</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="129"/> <location filename="downloadlistwidget.cpp" line="131"/> + <location filename="downloadlistwidget.cpp" line="133"/> <source>Installed - Double Click to re-install</source> <translation>Установлено - двойной клик для переустановки</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="136"/> <location filename="downloadlistwidget.cpp" line="138"/> + <location filename="downloadlistwidget.cpp" line="140"/> <source>Uninstalled - Double Click to re-install</source> <translation>Удалено - двойной клик для переустановки</translation> </message> @@ -292,12 +298,12 @@ p, li { white-space: pre-wrap; } <name>DownloadListWidgetCompact</name> <message> <location filename="downloadlistwidgetcompact.ui" line="17"/> - <location filename="downloadlistwidgetcompact.ui" line="47"/> + <location filename="downloadlistwidgetcompact.ui" line="56"/> <source>Placeholder</source> <translation>Заполнитель</translation> </message> <message> - <location filename="downloadlistwidgetcompact.ui" line="100"/> + <location filename="downloadlistwidgetcompact.ui" line="122"/> <source>Done</source> <translation>Готово</translation> </message> @@ -305,120 +311,125 @@ p, li { white-space: pre-wrap; } <context> <name>DownloadListWidgetCompactDelegate</name> <message> - <location filename="downloadlistwidgetcompact.cpp" line="113"/> + <location filename="downloadlistwidgetcompact.cpp" line="120"/> <source>Paused</source> <translation>Приостановлено</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="116"/> + <location filename="downloadlistwidgetcompact.cpp" line="123"/> <source>Fetching Info 1</source> <translation>Извлечение информации 1</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="118"/> + <location filename="downloadlistwidgetcompact.cpp" line="125"/> <source>Fetching Info 2</source> <translation>Извлечение информации 2</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="123"/> + <location filename="downloadlistwidgetcompact.cpp" line="130"/> <source>Installed</source> <translation>Установлено</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="126"/> + <location filename="downloadlistwidgetcompact.cpp" line="133"/> <source>Uninstalled</source> <translation>Удалено</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="129"/> + <location filename="downloadlistwidgetcompact.cpp" line="136"/> <source>Done</source> <translation>Готово</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="208"/> - <location filename="downloadlistwidgetcompact.cpp" line="217"/> - <location filename="downloadlistwidgetcompact.cpp" line="226"/> - <location filename="downloadlistwidgetcompact.cpp" line="235"/> + <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="209"/> + <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="218"/> + <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="227"/> + <location filename="downloadlistwidgetcompact.cpp" line="239"/> <source>This will permanently remove all finished downloads from this list (but NOT from disk).</source> <translation>Это полностью удалит все завершенные загрузки из этого списка (но НЕ с диска).</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="236"/> + <location filename="downloadlistwidgetcompact.cpp" line="248"/> <source>This will permanently remove all installed downloads from this list (but NOT from disk).</source> <translation>Это полностью удалит все установленные загрузки из этого списка (но НЕ с диска).</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="262"/> + <location filename="downloadlistwidgetcompact.cpp" line="275"/> <source>Install</source> <translation>Установка</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="264"/> + <location filename="downloadlistwidgetcompact.cpp" line="277"/> <source>Query Info</source> <translation>Справочная информация</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="266"/> + <location filename="downloadlistwidgetcompact.cpp" line="279"/> <source>Delete</source> <translation>Удалить</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="267"/> + <location filename="downloadlistwidgetcompact.cpp" line="281"/> + <source>Un-Hide</source> + <translation type="unfinished">Показать</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="283"/> <source>Remove from View</source> <translation>Скрыть от просмотра</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="269"/> + <location filename="downloadlistwidgetcompact.cpp" line="286"/> <source>Cancel</source> <translation>Отмена</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="270"/> + <location filename="downloadlistwidgetcompact.cpp" line="287"/> <source>Pause</source> <translation>Пауза</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="272"/> + <location filename="downloadlistwidgetcompact.cpp" line="289"/> <source>Remove</source> <translation>Удаление</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="273"/> + <location filename="downloadlistwidgetcompact.cpp" line="290"/> <source>Resume</source> <translation>Возобновить</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="277"/> + <location filename="downloadlistwidgetcompact.cpp" line="294"/> <source>Delete Installed...</source> <translation>Удалить установленное...</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="278"/> + <location filename="downloadlistwidgetcompact.cpp" line="295"/> <source>Delete All...</source> <translation>Удалить все...</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="280"/> + <location filename="downloadlistwidgetcompact.cpp" line="298"/> <source>Remove Installed...</source> <translation>Отменить установку</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="281"/> + <location filename="downloadlistwidgetcompact.cpp" line="299"/> <source>Remove All...</source> <translation>Удалить все</translation> </message> @@ -426,100 +437,105 @@ p, li { white-space: pre-wrap; } <context> <name>DownloadListWidgetDelegate</name> <message> - <location filename="downloadlistwidget.cpp" line="116"/> + <location filename="downloadlistwidget.cpp" line="118"/> <source>Fetching Info 1</source> <translation>Извлечение информации 1</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="119"/> + <location filename="downloadlistwidget.cpp" line="121"/> <source>Fetching Info 2</source> <translation>Извлечение информации 2</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="226"/> - <location filename="downloadlistwidget.cpp" line="235"/> - <location filename="downloadlistwidget.cpp" line="244"/> - <location filename="downloadlistwidget.cpp" line="253"/> + <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="227"/> + <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="236"/> + <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="245"/> + <location filename="downloadlistwidget.cpp" line="252"/> <source>This will remove all finished downloads from this list (but NOT from disk).</source> <translation>Это удалит все готовые загрузки из этого списка (но НЕ с диска).</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="254"/> + <location filename="downloadlistwidget.cpp" line="261"/> <source>This will remove all installed downloads from this list (but NOT from disk).</source> <translation>Это удалит все установленные загрузки из этого списка (но НЕ с диска).</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="279"/> + <location filename="downloadlistwidget.cpp" line="287"/> <source>Install</source> <translation>Установить</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="281"/> + <location filename="downloadlistwidget.cpp" line="289"/> <source>Query Info</source> <translation>Справочная информация</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="283"/> + <location filename="downloadlistwidget.cpp" line="291"/> <source>Delete</source> <translation>Удалить</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="284"/> + <location filename="downloadlistwidget.cpp" line="293"/> + <source>Un-Hide</source> + <translation type="unfinished">Показать</translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="295"/> <source>Remove from View</source> <translation>Скрыть от просмотра</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="286"/> + <location filename="downloadlistwidget.cpp" line="298"/> <source>Cancel</source> <translation>Отмена</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="287"/> + <location filename="downloadlistwidget.cpp" line="299"/> <source>Pause</source> <translation>Пауза</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="289"/> + <location filename="downloadlistwidget.cpp" line="301"/> <source>Remove</source> <translation>Удалить</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="290"/> + <location filename="downloadlistwidget.cpp" line="302"/> <source>Resume</source> <translation>Возобновить</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="294"/> + <location filename="downloadlistwidget.cpp" line="306"/> <source>Delete Installed...</source> <translation>Удалить установленное...</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="295"/> + <location filename="downloadlistwidget.cpp" line="307"/> <source>Delete All...</source> <translation>Удалить все...</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="297"/> + <location filename="downloadlistwidget.cpp" line="310"/> <source>Remove Installed...</source> <translation>Удалить установленные</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="298"/> + <location filename="downloadlistwidget.cpp" line="311"/> <source>Remove All...</source> <translation>Удалить все</translation> </message> @@ -527,101 +543,116 @@ p, li { white-space: pre-wrap; } <context> <name>DownloadManager</name> <message> - <location filename="downloadmanager.cpp" line="123"/> - <source>failed to rename "%1" to "%2"</source> - <translation>не удалось переименовать "%1" в "%2"</translation> + <location filename="downloadmanager.cpp" line="132"/> + <source>failed to rename "%1" to "%2"</source> + <translation>не удалось переименовать "%1" в "%2"</translation> </message> <message> - <location filename="downloadmanager.cpp" line="274"/> + <location filename="downloadmanager.cpp" line="322"/> <source>Download again?</source> <translation>Скачать снова</translation> </message> <message> - <location filename="downloadmanager.cpp" line="274"/> + <location filename="downloadmanager.cpp" line="322"/> <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="304"/> + <location filename="downloadmanager.cpp" line="354"/> <source>failed to download %1: could not open output file: %2</source> <translation>не удалось загрузить %1: не удалось открыть выходной файл: %2</translation> </message> <message> - <location filename="downloadmanager.cpp" line="334"/> - <location filename="downloadmanager.cpp" line="543"/> - <location filename="downloadmanager.cpp" line="553"/> - <location filename="downloadmanager.cpp" line="563"/> - <location filename="downloadmanager.cpp" line="573"/> - <location filename="downloadmanager.cpp" line="583"/> - <location filename="downloadmanager.cpp" line="594"/> - <location filename="downloadmanager.cpp" line="603"/> - <location filename="downloadmanager.cpp" line="613"/> - <location filename="downloadmanager.cpp" line="628"/> + <location filename="downloadmanager.cpp" line="383"/> + <source>Wrong Game</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="383"/> + <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> + </message> + <message> + <location filename="downloadmanager.cpp" line="395"/> + <location filename="downloadmanager.cpp" line="462"/> + <location filename="downloadmanager.cpp" line="634"/> + <location filename="downloadmanager.cpp" line="644"/> + <location filename="downloadmanager.cpp" line="653"/> + <location filename="downloadmanager.cpp" line="667"/> + <location filename="downloadmanager.cpp" line="677"/> + <location filename="downloadmanager.cpp" line="687"/> + <location filename="downloadmanager.cpp" line="697"/> + <location filename="downloadmanager.cpp" line="708"/> + <location filename="downloadmanager.cpp" line="716"/> + <location filename="downloadmanager.cpp" line="725"/> + <location filename="downloadmanager.cpp" line="735"/> + <location filename="downloadmanager.cpp" line="750"/> <source>invalid index</source> <translation>неверный индекс</translation> </message> <message> - <location filename="downloadmanager.cpp" line="352"/> + <location filename="downloadmanager.cpp" line="413"/> <source>failed to delete %1</source> <translation>не удалось удалить %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="358"/> + <location filename="downloadmanager.cpp" line="419"/> <source>failed to delete meta file for %1</source> <translation>не удалось удалить мета-файл %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="418"/> - <location filename="downloadmanager.cpp" line="436"/> - <location filename="downloadmanager.cpp" line="449"/> - <location filename="downloadmanager.cpp" line="463"/> - <location filename="downloadmanager.cpp" line="498"/> + <location filename="downloadmanager.cpp" line="495"/> + <location filename="downloadmanager.cpp" line="513"/> + <location filename="downloadmanager.cpp" line="526"/> + <location filename="downloadmanager.cpp" line="543"/> + <location filename="downloadmanager.cpp" line="554"/> + <location filename="downloadmanager.cpp" line="589"/> <source>invalid index %1</source> <translation>неверный индекс %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="515"/> + <location filename="downloadmanager.cpp" line="606"/> <source>Please enter the nexus mod id</source> <translation>Пожалуйста, введите ID мода на Nexus</translation> </message> <message> - <location filename="downloadmanager.cpp" line="515"/> + <location filename="downloadmanager.cpp" line="606"/> <source>Mod ID:</source> <translation>ID мода:</translation> </message> <message> - <location filename="downloadmanager.cpp" line="848"/> + <location filename="downloadmanager.cpp" line="972"/> <source>Information updated</source> <translation>Информация обновлена</translation> </message> <message> - <location filename="downloadmanager.cpp" line="850"/> - <location filename="downloadmanager.cpp" line="864"/> + <location filename="downloadmanager.cpp" line="974"/> + <location filename="downloadmanager.cpp" line="988"/> <source>No matching file found on Nexus! Maybe this file is no longer available or it was renamed?</source> <translation>Нет соответствующих модов на Nexus! Возможно фал был удален или переименован?</translation> </message> <message> - <location filename="downloadmanager.cpp" line="852"/> + <location filename="downloadmanager.cpp" line="976"/> <source>No file on Nexus matches the selected file by name. Please manually choose the correct one.</source> <translation>Нет соответствующих фалов на Nexus. Выберите файл вручную.</translation> </message> <message> - <location filename="downloadmanager.cpp" line="981"/> + <location filename="downloadmanager.cpp" line="1109"/> <source>No download server available. Please try again later.</source> <translation>Сервер недоступен. Попробуйте позже.</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1021"/> + <location filename="downloadmanager.cpp" line="1151"/> <source>Failed to request file info from nexus: %1</source> <translation>Не удалось получить информацию о файле: %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1044"/> + <location filename="downloadmanager.cpp" line="1175"/> <source>Download failed: %1 (%2)</source> <translation>Загрузка не удалась: %1 (%2)</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1110"/> + <location filename="downloadmanager.cpp" line="1254"/> <source>failed to re-open %1</source> <translation>не удалось повторно открыть %1</translation> </message> @@ -797,8 +828,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="169"/> - <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="194"/> @@ -877,8 +908,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"/> @@ -925,7 +956,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>Выбери имя для мода. Это также используется в качестве имени каталога, поэтому, пожалуйста, не используйте символы, которые запрещены в именах файлов.</translation> </message> <message> @@ -940,16 +971,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: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; представляет базовый каталог, данные в котором будут сопоставлены с данными каталога игры. Вы можете изменить базовый каталог нажатием правой кнопки мыши, через контекстное меню, а также можете перемещаться по файлам с помощью drag&amp;drop</span></p></body></html></translation> </message> <message> <location filename="installdialog.ui" line="121"/> @@ -970,104 +1001,104 @@ p, li { white-space: pre-wrap; } <context> <name>InstallationManager</name> <message> - <location filename="installationmanager.cpp" line="75"/> - <source>archive.dll not loaded: "%1"</source> - <translation>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="97"/> + <location filename="installationmanager.cpp" line="98"/> <source>Password required</source> <translation>Требуется пароль</translation> </message> <message> - <location filename="installationmanager.cpp" line="97"/> + <location filename="installationmanager.cpp" line="98"/> <source>Password</source> <translation>Пароль</translation> </message> <message> - <location filename="installationmanager.cpp" line="162"/> - <location filename="installationmanager.cpp" line="244"/> - <location filename="installationmanager.cpp" line="520"/> + <location filename="installationmanager.cpp" line="164"/> + <location filename="installationmanager.cpp" line="248"/> + <location filename="installationmanager.cpp" line="525"/> <source>Extracting files</source> <translation>Извлечение файлов</translation> </message> <message> - <location filename="installationmanager.cpp" line="433"/> + <location filename="installationmanager.cpp" line="439"/> <source>failed to create backup</source> <translation>не удалось создать резервную копию</translation> </message> <message> - <location filename="installationmanager.cpp" line="439"/> + <location filename="installationmanager.cpp" line="445"/> <source>Mod Name</source> <translation>Имя мода</translation> </message> <message> - <location filename="installationmanager.cpp" line="439"/> + <location filename="installationmanager.cpp" line="445"/> <source>Name</source> <translation type="unfinished">Имя</translation> </message> <message> - <location filename="installationmanager.cpp" line="492"/> + <location filename="installationmanager.cpp" line="498"/> <source>Invalid name</source> <translation>Недопустимое имя</translation> </message> <message> - <location filename="installationmanager.cpp" line="493"/> + <location filename="installationmanager.cpp" line="499"/> <source>The name you entered is invalid, please enter a different one.</source> <translation>Введенное вами имя недопустимо, пожалуйста введите другое.</translation> </message> <message> - <location filename="installationmanager.cpp" line="613"/> - <source>File format "%1" not supported</source> - <translation>Формат файла "%1" не поддерживается</translation> + <location filename="installationmanager.cpp" line="605"/> + <source>File format "%1" not supported</source> + <translation>Формат файла "%1" не поддерживается</translation> </message> <message> - <location filename="installationmanager.cpp" line="739"/> + <location filename="installationmanager.cpp" line="731"/> <source>None of the available installer plugins were able to handle that archive</source> <translation>Не один из доступных плагинов-установщиков не смог просмотреть этот архив</translation> </message> <message> - <location filename="installationmanager.cpp" line="749"/> + <location filename="installationmanager.cpp" line="741"/> <source>no error</source> <translation>ошибки отсутствуют</translation> </message> <message> - <location filename="installationmanager.cpp" line="752"/> + <location filename="installationmanager.cpp" line="744"/> <source>7z.dll not found</source> <translation>7z.dll не найден</translation> </message> <message> - <location filename="installationmanager.cpp" line="755"/> - <source>7z.dll isn't valid</source> + <location filename="installationmanager.cpp" line="747"/> + <source>7z.dll isn't valid</source> <translation>7z.dll поврежден</translation> </message> <message> - <location filename="installationmanager.cpp" line="758"/> + <location filename="installationmanager.cpp" line="750"/> <source>archive not found</source> <translation>архив не найден</translation> </message> <message> - <location filename="installationmanager.cpp" line="761"/> + <location filename="installationmanager.cpp" line="753"/> <source>failed to open archive</source> <translation>не удалось открыть архив</translation> </message> <message> - <location filename="installationmanager.cpp" line="764"/> + <location filename="installationmanager.cpp" line="756"/> <source>unsupported archive type</source> <translation>не поддерживаемый тип архива</translation> </message> <message> - <location filename="installationmanager.cpp" line="767"/> + <location filename="installationmanager.cpp" line="759"/> <source>internal library error</source> <translation>внутренняя ошибка библиотеки</translation> </message> <message> - <location filename="installationmanager.cpp" line="770"/> + <location filename="installationmanager.cpp" line="762"/> <source>archive invalid</source> <translation>архив поврежден</translation> </message> <message> - <location filename="installationmanager.cpp" line="774"/> + <location filename="installationmanager.cpp" line="766"/> <source>unknown archive error</source> <translation>неизвестная ошибка архива</translation> </message> @@ -1081,7 +1112,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> @@ -1106,12 +1137,12 @@ p, li { white-space: pre-wrap; } <context> <name>MOApplication</name> <message> - <location filename="moapplication.cpp" line="60"/> + <location filename="moapplication.cpp" line="68"/> <source>an error occured: %1</source> <translation>произошла ошибка: %1</translation> </message> <message> - <location filename="moapplication.cpp" line="65"/> + <location filename="moapplication.cpp" line="73"/> <source>an error occured</source> <translation>произошла ошибка</translation> </message> @@ -1136,18 +1167,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"/> @@ -1166,7 +1197,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> @@ -1187,7 +1218,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="mainwindow.ui" line="405"/> <location filename="mainwindow.ui" line="722"/> - <location filename="mainwindow.ui" line="1021"/> + <location filename="mainwindow.ui" line="1035"/> <source>Namefilter</source> <translation>Фильтр по имени</translation> </message> @@ -1198,18 +1229,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"/> @@ -1218,16 +1249,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"/> @@ -1241,16 +1272,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"/> @@ -1264,16 +1295,16 @@ 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="751"/> @@ -1282,242 +1313,250 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="mainwindow.ui" line="754"/> - <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> </message> <message> - <location filename="mainwindow.ui" line="794"/> - <location filename="mainwindow.ui" line="868"/> + <location filename="mainwindow.ui" line="800"/> + <location filename="mainwindow.ui" line="869"/> <source>File</source> <translation type="unfinished">Файл</translation> </message> <message> - <location filename="mainwindow.ui" line="799"/> - <location filename="mainwindow.ui" line="873"/> + <location filename="mainwindow.ui" line="808"/> + <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="874"/> <source>Mod</source> <translation type="unfinished">Мод</translation> </message> <message> - <location filename="mainwindow.ui" line="807"/> - <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><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/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> </message> <message> - <location filename="mainwindow.ui" line="818"/> + <location filename="mainwindow.ui" line="819"/> <source>Data</source> <translation>Данные</translation> </message> <message> - <location filename="mainwindow.ui" line="836"/> + <location filename="mainwindow.ui" line="837"/> <source>refresh data-directory overview</source> <translation>обновить обзор каталога Data</translation> </message> <message> - <location filename="mainwindow.ui" line="839"/> + <location filename="mainwindow.ui" line="840"/> <source>Refresh the overview. This may take a moment.</source> <translation>Обновление обзора. Это может занять некоторое время.</translation> </message> <message> - <location filename="mainwindow.ui" line="842"/> - <location filename="mainwindow.cpp" line="3257"/> - <location filename="mainwindow.cpp" line="3982"/> + <location filename="mainwindow.ui" line="843"/> + <location filename="mainwindow.cpp" line="3612"/> + <location filename="mainwindow.cpp" line="4360"/> <source>Refresh</source> <translation>Обновить</translation> </message> <message> - <location filename="mainwindow.ui" line="858"/> + <location filename="mainwindow.ui" line="859"/> <source>This is an overview of your data directory as visible to the game (and tools). </source> <translation>Это обзор вашего каталога данных так, как он будет видим игре (и инструментам).</translation> </message> <message> - <location filename="mainwindow.ui" line="883"/> - <location filename="mainwindow.ui" line="886"/> + <location filename="mainwindow.ui" line="884"/> + <location filename="mainwindow.ui" line="887"/> <source>Filter the above list so that only conflicts are displayed.</source> <translation>Отфильтровать вышеприведенный список так, чтобы отображались только конфликты.</translation> </message> <message> - <location filename="mainwindow.ui" line="889"/> + <location filename="mainwindow.ui" line="890"/> <source>Show only conflicts</source> <translation>Показать только конфликты</translation> </message> <message> - <location filename="mainwindow.ui" line="897"/> + <location filename="mainwindow.ui" line="898"/> <source>Saves</source> <translation>Сохранения</translation> </message> <message> - <location filename="mainwindow.ui" line="921"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD 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="922"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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="935"/> + <location filename="mainwindow.ui" line="936"/> <source>Downloads</source> <translation>Загрузки</translation> </message> <message> - <location filename="mainwindow.ui" line="967"/> + <location filename="mainwindow.ui" line="968"/> <source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source> <translation>Список модов, загруженных с Nexus. Двойной клик для установки.</translation> </message> <message> - <location filename="mainwindow.ui" line="1014"/> + <location filename="mainwindow.ui" line="1021"/> <source>Compact</source> <translation>Упаковать</translation> </message> <message> - <location filename="mainwindow.ui" line="1045"/> + <location filename="mainwindow.ui" line="1028"/> + <source>Show Hidden</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1059"/> <source>Tool Bar</source> <translation>Панель инструментов</translation> </message> <message> - <location filename="mainwindow.ui" line="1087"/> + <location filename="mainwindow.ui" line="1101"/> <source>Install Mod</source> <translation>Установить мод</translation> </message> <message> - <location filename="mainwindow.ui" line="1090"/> + <location filename="mainwindow.ui" line="1104"/> <source>Install &Mod</source> <translation>Установить &мод</translation> </message> <message> - <location filename="mainwindow.ui" line="1093"/> + <location filename="mainwindow.ui" line="1107"/> <source>Install a new mod from an archive</source> <translation>Установить новый мод из архива</translation> </message> <message> - <location filename="mainwindow.ui" line="1096"/> + <location filename="mainwindow.ui" line="1110"/> <source>Ctrl+M</source> <translation>Ctrl+M</translation> </message> <message> - <location filename="mainwindow.ui" line="1105"/> + <location filename="mainwindow.ui" line="1119"/> <source>Profiles</source> <translation>Профили</translation> </message> <message> - <location filename="mainwindow.ui" line="1108"/> + <location filename="mainwindow.ui" line="1122"/> <source>&Profiles</source> <translation>&Профили</translation> </message> <message> - <location filename="mainwindow.ui" line="1111"/> + <location filename="mainwindow.ui" line="1125"/> <source>Configure Profiles</source> <translation>Настройка профилей</translation> </message> <message> - <location filename="mainwindow.ui" line="1114"/> + <location filename="mainwindow.ui" line="1128"/> <source>Ctrl+P</source> <translation>Ctrl+P</translation> </message> <message> - <location filename="mainwindow.ui" line="1123"/> + <location filename="mainwindow.ui" line="1137"/> <source>Executables</source> <translation>Программы</translation> </message> <message> - <location filename="mainwindow.ui" line="1126"/> + <location filename="mainwindow.ui" line="1140"/> <source>&Executables</source> <translation>&Программы</translation> </message> <message> - <location filename="mainwindow.ui" line="1129"/> + <location filename="mainwindow.ui" line="1143"/> <source>Configure the executables that can be started through Mod Organizer</source> <translation>Настройка программ, которые могут быть запущены через Mod Organizer</translation> </message> <message> - <location filename="mainwindow.ui" line="1132"/> + <location filename="mainwindow.ui" line="1146"/> <source>Ctrl+E</source> <translation>Ctrl+E</translation> </message> <message> - <location filename="mainwindow.ui" line="1141"/> - <location filename="mainwindow.ui" line="1147"/> + <location filename="mainwindow.ui" line="1155"/> + <location filename="mainwindow.ui" line="1161"/> <source>Tools</source> <translation>Инструменты</translation> </message> <message> - <location filename="mainwindow.ui" line="1144"/> + <location filename="mainwindow.ui" line="1158"/> <source>&Tools</source> <translation>&Инструменты</translation> </message> <message> - <location filename="mainwindow.ui" line="1150"/> + <location filename="mainwindow.ui" line="1164"/> <source>Ctrl+I</source> <translation>Ctrl+I</translation> </message> <message> - <location filename="mainwindow.ui" line="1159"/> + <location filename="mainwindow.ui" line="1173"/> <source>Settings</source> <translation>Настройки</translation> </message> <message> - <location filename="mainwindow.ui" line="1162"/> + <location filename="mainwindow.ui" line="1176"/> <source>&Settings</source> <translation>&Настройки</translation> </message> <message> - <location filename="mainwindow.ui" line="1165"/> + <location filename="mainwindow.ui" line="1179"/> <source>Configure settings and workarounds</source> <translation>Настройка параметров и способов обхода</translation> </message> <message> - <location filename="mainwindow.ui" line="1168"/> + <location filename="mainwindow.ui" line="1182"/> <source>Ctrl+S</source> <translation>Ctrl+S</translation> </message> <message> - <location filename="mainwindow.ui" line="1177"/> + <location filename="mainwindow.ui" line="1191"/> <source>Nexus</source> <translation>Nexus</translation> </message> <message> - <location filename="mainwindow.ui" line="1180"/> + <location filename="mainwindow.ui" line="1194"/> <source>Search nexus network for more mods</source> <translation>Поиск дополнительных модов на Nexus</translation> </message> <message> - <location filename="mainwindow.ui" line="1183"/> + <location filename="mainwindow.ui" line="1197"/> <source>Ctrl+N</source> <translation>Ctrl+N</translation> </message> <message> - <location filename="mainwindow.ui" line="1195"/> - <location filename="mainwindow.cpp" line="3930"/> + <location filename="mainwindow.ui" line="1209"/> + <location filename="mainwindow.cpp" line="4308"/> <source>Update</source> <translation>Обновление</translation> </message> <message> - <location filename="mainwindow.ui" line="1198"/> + <location filename="mainwindow.ui" line="1212"/> <source>Mod Organizer is up-to-date</source> <translation>Mod Organizer обновлен</translation> </message> <message> - <location filename="mainwindow.ui" line="1210"/> - <location filename="mainwindow.cpp" line="430"/> + <location filename="mainwindow.ui" line="1224"/> + <location filename="mainwindow.cpp" line="496"/> <source>No Problems</source> <translation>Проблем не обнаружено</translation> </message> <message> - <location filename="mainwindow.ui" line="1213"/> + <location filename="mainwindow.ui" line="1227"/> <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! @@ -1528,810 +1567,897 @@ Right now this has very limited functionality</source> Прямо сейчас этот функционал сильно ограничен</translation> </message> <message> - <location filename="mainwindow.ui" line="1225"/> - <location filename="mainwindow.ui" line="1228"/> + <location filename="mainwindow.ui" line="1239"/> + <location filename="mainwindow.ui" line="1242"/> <source>Help</source> <translation>Справка</translation> </message> <message> - <location filename="mainwindow.ui" line="1231"/> + <location filename="mainwindow.ui" line="1245"/> <source>Ctrl+H</source> <translation>Ctrl+H</translation> </message> <message> - <location filename="mainwindow.ui" line="1240"/> + <location filename="mainwindow.ui" line="1254"/> <source>Endorse MO</source> <translation>Одобрить MO</translation> </message> <message> - <location filename="mainwindow.ui" line="1243"/> - <location filename="mainwindow.cpp" line="4010"/> + <location filename="mainwindow.ui" line="1257"/> + <location filename="mainwindow.cpp" line="4389"/> <source>Endorse Mod Organizer</source> <translation>Одобрить Mod Organizer</translation> </message> <message> - <location filename="mainwindow.cpp" line="223"/> + <location filename="mainwindow.cpp" line="214"/> <source>Toolbar</source> <translation>Панель инструментов</translation> </message> <message> - <location filename="mainwindow.cpp" line="224"/> + <location filename="mainwindow.cpp" line="215"/> <source>Desktop</source> <translation>Рабочий стол</translation> </message> <message> - <location filename="mainwindow.cpp" line="225"/> + <location filename="mainwindow.cpp" line="216"/> <source>Start Menu</source> <translation>Меню Пуск</translation> </message> <message> - <location filename="mainwindow.cpp" line="427"/> + <location filename="mainwindow.cpp" line="492"/> <source>Problems</source> <translation>Проблемы</translation> </message> <message> - <location filename="mainwindow.cpp" line="428"/> + <location filename="mainwindow.cpp" line="493"/> <source>There are potential problems with your setup</source> <translation>Есть возможные проблемы с вашей установкой</translation> </message> <message> - <location filename="mainwindow.cpp" line="431"/> + <location filename="mainwindow.cpp" line="497"/> <source>Everything seems to be in order</source> <translation>Кажется всё в порядке</translation> </message> <message> - <location filename="mainwindow.cpp" line="483"/> + <location filename="mainwindow.cpp" line="549"/> <source>Help on UI</source> <translation>Справка по интерфейсу</translation> </message> <message> - <location filename="mainwindow.cpp" line="487"/> + <location filename="mainwindow.cpp" line="553"/> <source>Documentation Wiki</source> <translation>Wiki-документация</translation> </message> <message> - <location filename="mainwindow.cpp" line="491"/> + <location filename="mainwindow.cpp" line="557"/> <source>Report Issue</source> <translation>Сообщить о проблеме</translation> </message> <message> - <location filename="mainwindow.cpp" line="495"/> + <location filename="mainwindow.cpp" line="561"/> <source>Tutorials</source> <translation>Уроки</translation> </message> <message> - <location filename="mainwindow.cpp" line="549"/> - <source>failed to save archives order, do you have write access to "%1"?</source> - <translation>не удалось сохранить порядок архивов, у вас имеется доступ на запись к "%1"?</translation> + <location filename="mainwindow.cpp" line="618"/> + <source>failed to save archives order, do you have write access to "%1"?</source> + <translation>не удалось сохранить порядок архивов, у вас имеется доступ на запись к "%1"?</translation> </message> <message> - <location filename="mainwindow.cpp" line="619"/> + <location filename="mainwindow.cpp" line="688"/> <source>failed to save load order: %1</source> <translation>не удалось сохранить порядок загрузки: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="636"/> + <location filename="mainwindow.cpp" line="705"/> <source>Name</source> <translation type="unfinished">Имя</translation> </message> <message> - <location filename="mainwindow.cpp" line="637"/> + <location filename="mainwindow.cpp" line="706"/> <source>Please enter a name for the new profile</source> <translation>Введите имя нового профиля</translation> </message> <message> - <location filename="mainwindow.cpp" line="645"/> + <location filename="mainwindow.cpp" line="714"/> <source>failed to create profile: %1</source> <translation>не удалось создать профиль: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="688"/> + <location filename="mainwindow.cpp" line="757"/> <source>Show tutorial?</source> <translation>Показать урок?</translation> </message> <message> - <location filename="mainwindow.cpp" line="689"/> - <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> + <location filename="mainwindow.cpp" line="758"/> + <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="716"/> + <location filename="mainwindow.cpp" line="787"/> <source>Downloads in progress</source> <translation>Загрузки в процессе</translation> </message> <message> - <location filename="mainwindow.cpp" line="717"/> + <location filename="mainwindow.cpp" line="788"/> <source>There are still downloads in progress, do you really want to quit?</source> <translation>Загрузки всё ещё в процессе, вы правда хотите выйти?</translation> </message> <message> - <location filename="mainwindow.cpp" line="760"/> + <location filename="mainwindow.cpp" line="834"/> <source>failed to read savegame: %1</source> <translation>не удалось прочесть сохранение: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="885"/> - <source>Plugin "%1" failed: %2</source> - <translation>Плагин "%1" не удалось: %2</translation> + <location filename="mainwindow.cpp" line="958"/> + <source>Plugin "%1" failed: %2</source> + <translation>Плагин "%1" не удалось: %2</translation> </message> <message> - <location filename="mainwindow.cpp" line="887"/> - <source>Plugin "%1" failed</source> - <translation>Плагин "%1" не удалось</translation> + <location filename="mainwindow.cpp" line="960"/> + <source>Plugin "%1" failed</source> + <translation>Плагин "%1" не удалось</translation> </message> <message> - <location filename="mainwindow.cpp" line="951"/> + <location filename="mainwindow.cpp" line="1026"/> <source>failed to init plugin %1: %2</source> <translation>не удалось инициализировать плагин %1: %2</translation> </message> <message> - <location filename="mainwindow.cpp" line="1127"/> - <source>Failed to start "%1"</source> - <translation>Не удалось запустить "%1"</translation> + <location filename="mainwindow.cpp" line="1064"/> + <source>Plugin error</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1129"/> + <location filename="mainwindow.cpp" line="1065"/> + <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="1249"/> + <source>Failed to start "%1"</source> + <translation>Не удалось запустить "%1"</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1251"/> <source>Waiting</source> <translation>Ожидание</translation> </message> <message> - <location filename="mainwindow.cpp" line="1129"/> - <source>Please press OK once you're logged into steam.</source> + <location filename="mainwindow.cpp" line="1251"/> + <source>Please press OK once you're logged into steam.</source> <translation>Нажмите OK как только вы войдете в Steam.</translation> </message> <message> - <location filename="mainwindow.cpp" line="1141"/> - <source>"%1" not found</source> - <translation>"%1" не найден</translation> + <location filename="mainwindow.cpp" line="1263"/> + <source>"%1" not found</source> + <translation>"%1" не найден</translation> </message> <message> - <location filename="mainwindow.cpp" line="1155"/> + <location filename="mainwindow.cpp" line="1277"/> <source>Start Steam?</source> <translation>Запустить Steam?</translation> </message> <message> - <location filename="mainwindow.cpp" line="1156"/> + <location filename="mainwindow.cpp" line="1278"/> <source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source> <translation>Требуется запущенный Steam, для корректного запуска игры. Должен ли MO попытаться запустить Steam сейчас?</translation> </message> <message> - <location filename="mainwindow.cpp" line="1370"/> + <location filename="mainwindow.cpp" line="1492"/> <source>Also in: <br></source> <translation>Также в: <br></translation> </message> <message> - <location filename="mainwindow.cpp" line="1381"/> + <location filename="mainwindow.cpp" line="1503"/> <source>No conflict</source> <translation>Конфликтов нет</translation> </message> <message> - <location filename="mainwindow.cpp" line="1496"/> + <location filename="mainwindow.cpp" line="1620"/> <source><Edit...></source> <translation><Правка...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1714"/> + <location filename="mainwindow.cpp" line="1704"/> + <source>Failed to refresh list of esps: %s</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1844"/> <source>This bsa is enabled in the ini file so it may be required!</source> <translation>Этот bsa подключен через ini, так что он может быть необходим!</translation> </message> <message> - <location filename="mainwindow.cpp" line="1721"/> + <location filename="mainwindow.cpp" line="1851"/> <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>Этот архив все равно будет загружен, так как есть плагин с одноименным названием, но его файлы не будут следовать порядку установки!</translation> </message> <message> - <location filename="mainwindow.cpp" line="1776"/> + <location filename="mainwindow.cpp" line="1906"/> <source>Activating Network Proxy</source> <translation>Подключение сетевого прокси</translation> </message> <message> - <location filename="mainwindow.cpp" line="1900"/> - <location filename="mainwindow.cpp" line="3678"/> + <location filename="mainwindow.cpp" line="2037"/> + <location filename="mainwindow.cpp" line="4056"/> <source>Installation successful</source> <translation>Установка завершена</translation> </message> <message> - <location filename="mainwindow.cpp" line="1911"/> - <location filename="mainwindow.cpp" line="3691"/> + <location filename="mainwindow.cpp" line="2048"/> + <location filename="mainwindow.cpp" line="4069"/> <source>Configure Mod</source> <translation>Настройка мода</translation> </message> <message> - <location filename="mainwindow.cpp" line="1912"/> - <location filename="mainwindow.cpp" line="3692"/> + <location filename="mainwindow.cpp" line="2049"/> + <location filename="mainwindow.cpp" line="4070"/> <source>This mod contains ini tweaks. Do you want to configure them now?</source> <translation>Этот мод включает настройки ini. Вы хотите настроить их сейчас?</translation> </message> <message> - <location filename="mainwindow.cpp" line="1918"/> - <location filename="mainwindow.cpp" line="3698"/> - <source>mod "%1" not found</source> - <translation>мод "%1" не найден</translation> + <location filename="mainwindow.cpp" line="2055"/> + <location filename="mainwindow.cpp" line="4076"/> + <source>mod "%1" not found</source> + <translation>мод "%1" не найден</translation> </message> <message> - <location filename="mainwindow.cpp" line="1921"/> - <location filename="mainwindow.cpp" line="3704"/> + <location filename="mainwindow.cpp" line="2058"/> + <location filename="mainwindow.cpp" line="4082"/> <source>Installation cancelled</source> <translation>Установка отменена</translation> </message> <message> - <location filename="mainwindow.cpp" line="1921"/> - <location filename="mainwindow.cpp" line="3704"/> + <location filename="mainwindow.cpp" line="2058"/> + <location filename="mainwindow.cpp" line="4082"/> <source>The mod was not installed completely.</source> <translation>Мод не был установлен полностью.</translation> </message> <message> - <location filename="mainwindow.cpp" line="1956"/> + <location filename="mainwindow.cpp" line="2207"/> <source>Some plugins could not be loaded</source> <translation>Некоторые плагины не могут быть загружены</translation> </message> <message> - <location filename="mainwindow.cpp" line="1965"/> <source>The following Plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:<ul></source> - <translation>Следующие плагины не могут быть загружены. Причина может быть в отсутствующих зависимостях (таких как python) или в устаревшей версии:<ul></translation> + <translation type="obsolete">Следующие плагины не могут быть загружены. Причина может быть в отсутствующих зависимостях (таких как python) или в устаревшей версии:<ul></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2210"/> + <source>Too many esps and esms enabled</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2213"/> + <location filename="mainwindow.cpp" line="2234"/> + <source>Description missing</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1992"/> + <location filename="mainwindow.cpp" line="2222"/> + <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="2230"/> + <source>The game doesn't allow more than 256 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="2256"/> <source>Choose Mod</source> <translation>Выберете мод</translation> </message> <message> - <location filename="mainwindow.cpp" line="1993"/> + <location filename="mainwindow.cpp" line="2257"/> <source>Mod Archive</source> <translation>Архив мода</translation> </message> <message> - <location filename="mainwindow.cpp" line="2146"/> + <location filename="mainwindow.cpp" line="2410"/> <source>Start Tutorial?</source> <translation>Начать обучение?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2147"/> - <source>You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue?</source> + <location filename="mainwindow.cpp" line="2411"/> + <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="2292"/> - <location filename="mainwindow.cpp" line="3606"/> + <location filename="mainwindow.cpp" line="2566"/> + <location filename="mainwindow.cpp" line="3984"/> <source>Download started</source> <translation>Загрузка начата</translation> </message> <message> - <location filename="mainwindow.cpp" line="2323"/> + <location filename="mainwindow.cpp" line="2597"/> <source>failed to update mod list: %1</source> <translation>не удалось обновить список модов: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2350"/> + <location filename="mainwindow.cpp" line="2624"/> <source>failed to spawn notepad.exe: %1</source> <translation>не удалось вызвать notepad.exe: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2391"/> + <location filename="mainwindow.cpp" line="2665"/> <source>failed to open %1</source> <translation>не удалось открыть %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2469"/> + <location filename="mainwindow.cpp" line="2743"/> <source>failed to change origin name: %1</source> <translation>не удалось изменить оригинальное имя: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2521"/> + <location filename="mainwindow.cpp" line="2769"/> + <source>Failed to move "%1" from mod "%2" to "%3": %4</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2818"/> <source><Checked></source> <translation><Подключен></translation> </message> <message> - <location filename="mainwindow.cpp" line="2522"/> + <location filename="mainwindow.cpp" line="2819"/> <source><Unchecked></source> <translation><Отключен></translation> </message> <message> - <location filename="mainwindow.cpp" line="2523"/> + <location filename="mainwindow.cpp" line="2820"/> <source><Update></source> <translation><Обновлен></translation> </message> <message> - <location filename="mainwindow.cpp" line="2524"/> + <location filename="mainwindow.cpp" line="2821"/> <source><No category></source> <translation><Без категории></translation> </message> <message> - <location filename="mainwindow.cpp" line="2525"/> + <location filename="mainwindow.cpp" line="2822"/> <source><Conflicted></source> <translation><Конфликтует></translation> </message> <message> - <location filename="mainwindow.cpp" line="2558"/> + <location filename="mainwindow.cpp" line="2823"/> + <source><Not Endorsed></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2856"/> <source>failed to rename mod: %1</source> <translation>не удалось переименовать мод: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2571"/> + <location filename="mainwindow.cpp" line="2869"/> <source>Overwrite?</source> <translation>Перезаписать?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2572"/> - <source>This will replace the existing mod "%1". Continue?</source> - <translation>Это заменит существующий мод "%1". Продолжить?</translation> + <location filename="mainwindow.cpp" line="2870"/> + <source>This will replace the existing mod "%1". Continue?</source> + <translation>Это заменит существующий мод "%1". Продолжить?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2575"/> - <source>failed to remove mod "%1"</source> - <translation>не удалось удалить мод "%1"</translation> + <location filename="mainwindow.cpp" line="2873"/> + <source>failed to remove mod "%1"</source> + <translation>не удалось удалить мод "%1"</translation> </message> <message> - <location filename="mainwindow.cpp" line="2579"/> - <location filename="mainwindow.cpp" line="3876"/> - <location filename="mainwindow.cpp" line="3900"/> - <source>failed to rename "%1" to "%2"</source> - <translation>не удалось переименовать "%1" в "%2"</translation> + <location filename="mainwindow.cpp" line="2877"/> + <location filename="mainwindow.cpp" line="4254"/> + <location filename="mainwindow.cpp" line="4278"/> + <source>failed to rename "%1" to "%2"</source> + <translation>не удалось переименовать "%1" в "%2"</translation> </message> <message> - <location filename="mainwindow.cpp" line="2608"/> - <source>Multiple esps activated, please check that they don't conflict.</source> + <location filename="mainwindow.cpp" line="2906"/> + <source>Multiple esps activated, please check that they don't conflict.</source> <translation>Подключено несколько esp, выберете из них не конфликтующие.</translation> </message> <message> - <location filename="mainwindow.cpp" line="2634"/> - <location filename="mainwindow.cpp" line="3172"/> - <location filename="mainwindow.cpp" line="3181"/> + <location filename="mainwindow.cpp" line="2932"/> + <location filename="mainwindow.cpp" line="3518"/> + <location filename="mainwindow.cpp" line="3526"/> <source>Confirm</source> <translation>Подтверждение</translation> </message> <message> - <location filename="mainwindow.cpp" line="2635"/> + <location filename="mainwindow.cpp" line="2933"/> <source>Remove the following mods?<br><ul>%1</ul></source> <translation>Удалить следующие моды?<br><ul>%1</ul></translation> </message> <message> - <location filename="mainwindow.cpp" line="2646"/> + <location filename="mainwindow.cpp" line="2944"/> <source>failed to remove mod: %1</source> <translation>не удалось удалить мод: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2676"/> - <location filename="mainwindow.cpp" line="2679"/> + <location filename="mainwindow.cpp" line="2979"/> + <location filename="mainwindow.cpp" line="2982"/> <source>Failed</source> <translation>Неудача</translation> </message> <message> - <location filename="mainwindow.cpp" line="2676"/> + <location filename="mainwindow.cpp" line="2979"/> <source>Installation file no longer exists</source> <translation>Установочный файл больше не существует</translation> </message> <message> - <location filename="mainwindow.cpp" line="2680"/> - <source>Mods installed with old versions of MO can't be reinstalled in this way.</source> + <location filename="mainwindow.cpp" line="2983"/> + <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="2695"/> - <location filename="mainwindow.cpp" line="2722"/> + <location filename="mainwindow.cpp" line="2998"/> + <location filename="mainwindow.cpp" line="3025"/> <source>You need to be logged in with Nexus to endorse</source> <translation>Вы должны быть авторизированы на Nexus, чтобы одобрять.</translation> </message> <message> - <location filename="mainwindow.cpp" line="2838"/> - <location filename="mainwindow.cpp" line="4259"/> + <location filename="mainwindow.cpp" line="3154"/> + <location filename="mainwindow.cpp" line="4638"/> <source>Extract BSA</source> <translation>Извлечь BSA</translation> </message> <message> - <location filename="mainwindow.cpp" line="2839"/> + <location filename="mainwindow.cpp" line="3155"/> <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> <message> - <location filename="mainwindow.cpp" line="2849"/> - <location filename="mainwindow.cpp" line="4216"/> - <location filename="mainwindow.cpp" line="4268"/> + <location filename="mainwindow.cpp" line="3165"/> + <location filename="mainwindow.cpp" line="4595"/> + <location filename="mainwindow.cpp" line="4646"/> <source>failed to read %1: %2</source> <translation>не удалось прочесть %1: %2</translation> </message> <message> - <location filename="mainwindow.cpp" line="2862"/> - <location filename="mainwindow.cpp" line="4281"/> + <location filename="mainwindow.cpp" line="3178"/> + <location filename="mainwindow.cpp" line="4657"/> <source>This archive contains invalid hashes. Some files may be broken.</source> <translation>Архив содержит неверные хеши. Некоторые файлы могут быть испорчены.</translation> </message> <message> - <location filename="mainwindow.cpp" line="2896"/> + <location filename="mainwindow.cpp" line="3212"/> <source>Nexus ID for this Mod is unknown</source> <translation>Nexus ID для этого мода неизвестен</translation> </message> <message> - <location filename="mainwindow.cpp" line="2937"/> - <location filename="mainwindow.cpp" line="3268"/> + <location filename="mainwindow.cpp" line="3251"/> + <location filename="mainwindow.cpp" line="3623"/> <source>Create Mod...</source> <translation>Создать мод...</translation> </message> <message> - <location filename="mainwindow.cpp" line="2938"/> + <location filename="mainwindow.cpp" line="3252"/> <source>This will move all files from overwrite into a new, regular mod. Please enter a name: </source> <translation>Это переместит все файлы от перезаписи в новый, отдельный мод. Пожалуйста, введите имя: </translation> </message> <message> - <location filename="mainwindow.cpp" line="2947"/> + <location filename="mainwindow.cpp" line="3261"/> <source>A mod with this name already exists</source> <translation>Мод с таким именем уже существует</translation> </message> <message> - <location filename="mainwindow.cpp" line="3172"/> + <location filename="mainwindow.cpp" line="3444"/> + <source>Continue?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3445"/> + <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="3465"/> + <source>Sorry</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3466"/> + <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="3518"/> <source>Really enable all visible mods?</source> <translation>Действительно подключить все видимые моды?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3181"/> + <location filename="mainwindow.cpp" line="3526"/> <source>Really disable all visible mods?</source> <translation>Действительно отключить все видимые моды?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3190"/> + <location filename="mainwindow.cpp" line="3534"/> <source>Choose what to export</source> <translation>Выберете, что экспортировать</translation> </message> <message> - <location filename="mainwindow.cpp" line="3192"/> + <location filename="mainwindow.cpp" line="3536"/> <source>Everything</source> <translation>Всё</translation> </message> <message> - <location filename="mainwindow.cpp" line="3192"/> + <location filename="mainwindow.cpp" line="3536"/> <source>All installed mods are included in the list</source> <translation>Все установленные моды, включенные в список</translation> </message> <message> - <location filename="mainwindow.cpp" line="3193"/> + <location filename="mainwindow.cpp" line="3537"/> <source>Active Mods</source> <translation>Активные моды</translation> </message> <message> - <location filename="mainwindow.cpp" line="3193"/> + <location filename="mainwindow.cpp" line="3537"/> <source>Only active (checked) mods from your current profile are included</source> <translation>Включены все активные (подключенные) моды вашего текущего профиля</translation> </message> <message> - <location filename="mainwindow.cpp" line="3194"/> + <location filename="mainwindow.cpp" line="3538"/> <source>Visible</source> <translation>Видимые</translation> </message> <message> - <location filename="mainwindow.cpp" line="3194"/> + <location filename="mainwindow.cpp" line="3538"/> <source>All mods visible in the mod list are included</source> <translation>Включены все моды, видимые в списке модов</translation> </message> <message> - <location filename="mainwindow.cpp" line="3237"/> + <location filename="mainwindow.cpp" line="3581"/> <source>export failed: %1</source> <translation>экспорт не удался: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3250"/> + <location filename="mainwindow.cpp" line="3605"/> <source>Install Mod...</source> <translation>Установить мод...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3252"/> + <location filename="mainwindow.cpp" line="3607"/> <source>Enable all visible</source> <translation>Включить все видимые</translation> </message> <message> - <location filename="mainwindow.cpp" line="3253"/> + <location filename="mainwindow.cpp" line="3608"/> <source>Disable all visible</source> <translation>Отключить все видимые</translation> </message> <message> - <location filename="mainwindow.cpp" line="3255"/> + <location filename="mainwindow.cpp" line="3610"/> <source>Check all for update</source> <translation>Проверить все на обновления</translation> </message> <message> - <location filename="mainwindow.cpp" line="3259"/> + <location filename="mainwindow.cpp" line="3614"/> <source>Export to csv...</source> <translation>Экспорт в csv...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3267"/> + <location filename="mainwindow.cpp" line="3622"/> <source>Sync to Mods...</source> <translation>Синхронизировать с модами...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3271"/> + <location filename="mainwindow.cpp" line="3626"/> <source>Restore Backup</source> <translation>Восстановить из резервной копии</translation> </message> <message> - <location filename="mainwindow.cpp" line="3272"/> + <location filename="mainwindow.cpp" line="3627"/> <source>Remove Backup...</source> <translation>Удалить резервную копию...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3274"/> + <location filename="mainwindow.cpp" line="3630"/> <source>Set Category</source> <translation>Задать категорию</translation> </message> <message> - <location filename="mainwindow.cpp" line="3278"/> + <location filename="mainwindow.cpp" line="3635"/> <source>Primary Category</source> <translation>Основная категория</translation> </message> <message> - <location filename="mainwindow.cpp" line="3282"/> + <location filename="mainwindow.cpp" line="3642"/> + <source>Change versioning scheme</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3646"/> + <source>Un-ignore update</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3648"/> + <source>Ignore update</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3653"/> <source>Rename Mod...</source> <translation>Переименовать мод...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3283"/> + <location filename="mainwindow.cpp" line="3654"/> <source>Remove Mod...</source> <translation>Удалить мод...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3284"/> + <location filename="mainwindow.cpp" line="3655"/> <source>Reinstall Mod</source> <translation>Переустановить мод</translation> </message> <message> - <location filename="mainwindow.cpp" line="3287"/> + <location filename="mainwindow.cpp" line="3658"/> <source>Un-Endorse</source> <translation>Отменить одобрение</translation> </message> <message> - <location filename="mainwindow.cpp" line="3290"/> - <location filename="mainwindow.cpp" line="3294"/> + <location filename="mainwindow.cpp" line="3661"/> + <location filename="mainwindow.cpp" line="3665"/> <source>Endorse</source> <translation>Одобрить</translation> </message> <message> - <location filename="mainwindow.cpp" line="3291"/> - <source>Won't endorse</source> + <location filename="mainwindow.cpp" line="3662"/> + <source>Won't endorse</source> <translation>Не одобрять</translation> </message> <message> - <location filename="mainwindow.cpp" line="3297"/> + <location filename="mainwindow.cpp" line="3668"/> <source>Endorsement state unknown</source> <translation>Статус одобрения неизвестен</translation> </message> <message> - <location filename="mainwindow.cpp" line="3304"/> + <location filename="mainwindow.cpp" line="3675"/> <source>Ignore missing data</source> <translation>Игнорировать отсутствующие данные</translation> </message> <message> - <location filename="mainwindow.cpp" line="3307"/> + <location filename="mainwindow.cpp" line="3678"/> <source>Visit on Nexus</source> <translation>Перейти на Nexus</translation> </message> <message> - <location filename="mainwindow.cpp" line="3308"/> + <location filename="mainwindow.cpp" line="3679"/> <source>Open in explorer</source> <translation>Открыть в проводнике</translation> </message> <message> - <location filename="mainwindow.cpp" line="3311"/> + <location filename="mainwindow.cpp" line="3682"/> <source>Information...</source> <translation>Информация...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3317"/> - <location filename="mainwindow.cpp" line="4437"/> + <location filename="mainwindow.cpp" line="3688"/> + <location filename="mainwindow.cpp" line="4842"/> <source>Exception: </source> <translation>Исключение: </translation> </message> <message> - <location filename="mainwindow.cpp" line="3319"/> - <location filename="mainwindow.cpp" line="4439"/> + <location filename="mainwindow.cpp" line="3690"/> + <location filename="mainwindow.cpp" line="4844"/> <source>Unknown exception</source> <translation>Неизвестное исключение</translation> </message> <message> - <location filename="mainwindow.cpp" line="3339"/> + <location filename="mainwindow.cpp" line="3710"/> <source><All></source> <translation><Все></translation> </message> <message> - <location filename="mainwindow.cpp" line="3341"/> + <location filename="mainwindow.cpp" line="3712"/> <source><Multiple></source> <translation><Несколько></translation> </message> <message> - <location filename="mainwindow.cpp" line="3453"/> + <location filename="mainwindow.cpp" line="3824"/> <source>Fix Mods...</source> <translation>Исправить моды...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3477"/> - <location filename="mainwindow.cpp" line="3508"/> + <location filename="mainwindow.cpp" line="3848"/> + <location filename="mainwindow.cpp" line="3879"/> <source>failed to remove %1</source> <translation>не удалось удалить %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3492"/> - <location filename="mainwindow.cpp" line="3523"/> + <location filename="mainwindow.cpp" line="3863"/> + <location filename="mainwindow.cpp" line="3894"/> <source>failed to create %1</source> <translation>не удалось создать %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3538"/> - <source>Can't change download directory while downloads are in progress!</source> + <location filename="mainwindow.cpp" line="3916"/> + <source>Can't change download directory while downloads are in progress!</source> <translation>Нельзя изменить каталог для загрузок, когда загрузки ещё не завершены!</translation> </message> <message> - <location filename="mainwindow.cpp" line="3609"/> + <location filename="mainwindow.cpp" line="3987"/> <source>Download failed</source> <translation>Загрузка не удалась</translation> </message> <message> - <location filename="mainwindow.cpp" line="3753"/> + <location filename="mainwindow.cpp" line="4131"/> <source>failed to write to file %1</source> <translation>ошибка записи в файл %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3759"/> + <location filename="mainwindow.cpp" line="4137"/> <source>%1 written</source> <translation>%1 записан</translation> </message> <message> - <location filename="mainwindow.cpp" line="3798"/> + <location filename="mainwindow.cpp" line="4176"/> <source>Select binary</source> <translation>Выбрать исполняемый файл</translation> </message> <message> - <location filename="mainwindow.cpp" line="3798"/> + <location filename="mainwindow.cpp" line="4176"/> <source>Binary</source> <translation>Исполняемый файл</translation> </message> <message> - <location filename="mainwindow.cpp" line="3824"/> + <location filename="mainwindow.cpp" line="4202"/> <source>Enter Name</source> <translation>Введите имя</translation> </message> <message> - <location filename="mainwindow.cpp" line="3825"/> + <location filename="mainwindow.cpp" line="4203"/> <source>Please enter a name for the executable</source> <translation>Введите название для программы</translation> </message> <message> - <location filename="mainwindow.cpp" line="3836"/> + <location filename="mainwindow.cpp" line="4214"/> <source>Not an executable</source> <translation>Не является исполняемым</translation> </message> <message> - <location filename="mainwindow.cpp" line="3836"/> + <location filename="mainwindow.cpp" line="4214"/> <source>This is not a recognized executable.</source> <translation>Это неверный исполняемый файл.</translation> </message> <message> - <location filename="mainwindow.cpp" line="3861"/> - <location filename="mainwindow.cpp" line="3886"/> + <location filename="mainwindow.cpp" line="4239"/> + <location filename="mainwindow.cpp" line="4264"/> <source>Replace file?</source> <translation>Заменить файл?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3861"/> + <location filename="mainwindow.cpp" line="4239"/> <source>There already is a hidden version of this file. Replace it?</source> <translation>Уже существует скрытая версия этого файла. Заменить?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3864"/> - <location filename="mainwindow.cpp" line="3889"/> + <location filename="mainwindow.cpp" line="4242"/> + <location filename="mainwindow.cpp" line="4267"/> <source>File operation failed</source> <translation>Операция с файлом не удалась</translation> </message> <message> - <location filename="mainwindow.cpp" line="3864"/> - <location filename="mainwindow.cpp" line="3889"/> - <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> - <translation>Не удалось удалить "%1". Может быть, вам не хватает необходимых прав доступа к файлу?</translation> + <location filename="mainwindow.cpp" line="4242"/> + <location filename="mainwindow.cpp" line="4267"/> + <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> + <translation>Не удалось удалить "%1". Может быть, вам не хватает необходимых прав доступа к файлу?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3886"/> + <location filename="mainwindow.cpp" line="4264"/> <source>There already is a visible version of this file. Replace it?</source> <translation>Видимая версия этого файла уже существует. Заменить?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3932"/> + <location filename="mainwindow.cpp" line="4310"/> <source>Update available</source> <translation>Доступно обновление</translation> </message> <message> - <location filename="mainwindow.cpp" line="3969"/> + <location filename="mainwindow.cpp" line="4347"/> <source>Open/Execute</source> <translation>Открыть/Выполнить</translation> </message> <message> - <location filename="mainwindow.cpp" line="3970"/> + <location filename="mainwindow.cpp" line="4348"/> <source>Add as Executable</source> <translation>Добавить как исполняемый</translation> </message> <message> - <location filename="mainwindow.cpp" line="3974"/> + <location filename="mainwindow.cpp" line="4352"/> <source>Un-Hide</source> <translation>Показать</translation> </message> <message> - <location filename="mainwindow.cpp" line="3976"/> + <location filename="mainwindow.cpp" line="4354"/> <source>Hide</source> <translation>Скрыть</translation> </message> <message> - <location filename="mainwindow.cpp" line="3981"/> + <location filename="mainwindow.cpp" line="4359"/> <source>Write To File...</source> <translation>Записать в файл...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4011"/> + <location filename="mainwindow.cpp" line="4390"/> <source>Do you want to endorse Mod Organizer on %1 now?</source> <translation>Вы хотите одобрить Mod Organizer на %1 сейчас?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4147"/> + <location filename="mainwindow.cpp" line="4526"/> <source>Request to Nexus failed: %1</source> <translation>Запрос на Nexus не удался: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4154"/> - <location filename="mainwindow.cpp" line="4171"/> + <location filename="mainwindow.cpp" line="4533"/> + <location filename="mainwindow.cpp" line="4550"/> <source>login successful</source> <translation>успешный вход</translation> </message> <message> - <location filename="mainwindow.cpp" line="4180"/> + <location filename="mainwindow.cpp" line="4559"/> <source>login failed: %1. Trying to download anyway</source> <translation>вход не удался: %1. Пытаюсь загрузить всё равно</translation> </message> <message> - <location filename="mainwindow.cpp" line="4186"/> + <location filename="mainwindow.cpp" line="4565"/> <source>login failed: %1</source> <translation>войти не удалось: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4195"/> + <location filename="mainwindow.cpp" line="4574"/> <source>login failed: %1. You need to log-in with Nexus to update MO.</source> <translation>войти не удалось: %1. Вам нужно войти на Nexus, чтобы обновить MO.</translation> </message> <message> - <location filename="mainwindow.cpp" line="4228"/> + <location filename="mainwindow.cpp" line="4607"/> <source>Error</source> <translation>Ошибка</translation> </message> <message> - <location filename="mainwindow.cpp" line="4228"/> + <location filename="mainwindow.cpp" line="4607"/> <source>failed to extract %1 (errorcode %2)</source> <translation>не удалось извлечь %1 (код ошибки %2)</translation> </message> <message> - <location filename="mainwindow.cpp" line="4324"/> + <location filename="mainwindow.cpp" line="4702"/> <source>Extract...</source> <translation>Распаковка...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4374"/> + <location filename="mainwindow.cpp" line="4758"/> <source>Edit Categories...</source> <translation>Изменить категории...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4410"/> + <location filename="mainwindow.cpp" line="4803"/> + <source>Remove</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4813"/> <source>Enable all</source> <translation>Включить все</translation> </message> <message> - <location filename="mainwindow.cpp" line="4411"/> + <location filename="mainwindow.cpp" line="4814"/> <source>Disable all</source> <translation>Отключить все</translation> </message> <message> - <location filename="mainwindow.cpp" line="4428"/> + <location filename="mainwindow.cpp" line="4833"/> <source>Unlock load order</source> <translation>Разблокировать порядок загрузки</translation> </message> <message> - <location filename="mainwindow.cpp" line="4431"/> + <location filename="mainwindow.cpp" line="4836"/> <source>Lock load order</source> <translation>Заблокировать порядок загрузки</translation> </message> @@ -2357,7 +2483,7 @@ Please enter a name: </source> <context> <name>ModInfoBackup</name> <message> - <location filename="modinfo.cpp" line="784"/> + <location filename="modinfo.cpp" line="813"/> <source>This is the backup of a mod</source> <translation>Это резервная копия мода</translation> </message> @@ -2386,7 +2512,7 @@ Please enter a name: </source> </message> <message> <location filename="modinfodialog.ui" line="64"/> - <location filename="modinfodialog.ui" line="149"/> + <location filename="modinfodialog.ui" line="152"/> <source>Save</source> <translation>Сохранить</translation> </message> @@ -2406,272 +2532,283 @@ Please enter a name: </source> <translation>Это список INI - файлов мода. Они используются для кофигурации поведения модов, если это возможно.</translation> </message> <message> - <location filename="modinfodialog.ui" line="143"/> + <location filename="modinfodialog.ui" line="146"/> <source>Save changes to the file.</source> <translation>Сохранить изменения в файле.</translation> </message> <message> - <location filename="modinfodialog.ui" line="146"/> + <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="159"/> + <location filename="modinfodialog.ui" line="162"/> <source>Images</source> <translation>Изображение</translation> </message> <message> - <location filename="modinfodialog.ui" line="214"/> + <location filename="modinfodialog.ui" line="217"/> <source>Images located in the mod.</source> <translation>Изображения мода.</translation> </message> <message> - <location filename="modinfodialog.ui" line="217"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD 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 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><!DOCTYPE HTML PUBLIC "-//W3C//DTD 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 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> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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> </message> <message> - <location filename="modinfodialog.ui" line="254"/> - <location filename="modinfodialog.ui" line="277"/> + <location filename="modinfodialog.ui" line="244"/> + <location filename="modinfodialog.ui" line="263"/> <source>Optional ESPs</source> <translation>Дополнительный ESP</translation> </message> <message> - <location filename="modinfodialog.ui" line="260"/> + <location filename="modinfodialog.ui" line="250"/> <source>List of esps and esms that can not be loaded by the game.</source> <translation>Список esp и esm, которые не могут быть загружены игрой.</translation> </message> <message> - <location filename="modinfodialog.ui" line="263"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD 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;">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><!DOCTYPE HTML PUBLIC "-//W3C//DTD 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;">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> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" 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="220"/> + <source>This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="253"/> + <source>List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window. +They usually contain optional functionality, see the readme. + +Most mods do not have optional esps, so chances are good you are looking at an empty list.</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="292"/> + <location filename="modinfodialog.ui" line="278"/> <source>Make the selected mod in the lower list unavailable.</source> <translation>Сделать выбранный мод недоступным.</translation> </message> <message> - <location filename="modinfodialog.ui" line="295"/> - <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> + <location filename="modinfodialog.ui" line="281"/> + <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="321"/> + <location filename="modinfodialog.ui" line="307"/> <source>Move a file to the data directory.</source> <translation>Переместить файл в каталог Data.</translation> </message> <message> - <location filename="modinfodialog.ui" line="324"/> - <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> + <location filename="modinfodialog.ui" line="310"/> + <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="359"/> + <location filename="modinfodialog.ui" line="345"/> <source>ESPs in the data directory and thus visible to the game.</source> <translation>ESP в каталоге Data и виден для игры.</translation> </message> <message> - <location filename="modinfodialog.ui" line="362"/> + <location filename="modinfodialog.ui" line="348"/> <source>These are the mod files that are in the (virtual) data directory of your game and will thus be selecteable in the esp list in the main window.</source> <translation>Это файлы модов которые находятся в (виртуальном)каталоге данных вашей игры и могут быть выбираемыми в списке esp, в главном окне.</translation> </message> <message> - <location filename="modinfodialog.ui" line="369"/> + <location filename="modinfodialog.ui" line="355"/> <source>Available ESPs</source> <translation>Доступные ESP</translation> </message> <message> - <location filename="modinfodialog.ui" line="377"/> + <location filename="modinfodialog.ui" line="363"/> <source>Conflicts</source> <translation>Конфликты</translation> </message> <message> - <location filename="modinfodialog.ui" line="385"/> + <location filename="modinfodialog.ui" line="371"/> <source>The following conflicted files are provided by this mod</source> <translation>Данные конфликты вызваны этим модом.</translation> </message> <message> - <location filename="modinfodialog.ui" line="432"/> - <location filename="modinfodialog.ui" line="479"/> + <location filename="modinfodialog.ui" line="418"/> + <location filename="modinfodialog.ui" line="465"/> <source>File</source> <translation>Файл</translation> </message> <message> - <location filename="modinfodialog.ui" line="437"/> + <location filename="modinfodialog.ui" line="423"/> <source>Overwritten Mods</source> <translation>Моды перезаписаны</translation> </message> <message> - <location filename="modinfodialog.ui" line="447"/> + <location filename="modinfodialog.ui" line="433"/> <source>The following conflicted files are provided by other mods</source> <translation>Конфликтные файлы других модов.</translation> </message> <message> - <location filename="modinfodialog.ui" line="484"/> + <location filename="modinfodialog.ui" line="470"/> <source>Providing Mod</source> <translation>Обеспечение мода</translation> </message> <message> - <location filename="modinfodialog.ui" line="494"/> + <location filename="modinfodialog.ui" line="480"/> <source>Non-Conflicted files</source> <translation>Не конфликтные файлы</translation> </message> <message> - <location filename="modinfodialog.ui" line="514"/> + <location filename="modinfodialog.ui" line="500"/> <source>Categories</source> <translation>Категории</translation> </message> <message> - <location filename="modinfodialog.ui" line="537"/> + <location filename="modinfodialog.ui" line="523"/> <source>Primary Category</source> <translation>Основная категория</translation> </message> <message> - <location filename="modinfodialog.ui" line="554"/> + <location filename="modinfodialog.ui" line="540"/> <source>Nexus Info</source> <translation>Информация Nexus.</translation> </message> <message> - <location filename="modinfodialog.ui" line="562"/> + <location filename="modinfodialog.ui" line="548"/> <source>Mod ID</source> <translation>ID мода</translation> </message> <message> - <location filename="modinfodialog.ui" line="569"/> + <location filename="modinfodialog.ui" line="555"/> <source>Mod ID for this mod on Nexus.</source> <translation>ID мода на Nexus.</translation> </message> <message> - <location filename="modinfodialog.ui" line="572"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD 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="558"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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="596"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD 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="582"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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="603"/> + <location filename="modinfodialog.ui" line="589"/> <source>Version</source> <translation>Версия</translation> </message> <message> - <location filename="modinfodialog.ui" line="633"/> + <location filename="modinfodialog.ui" line="619"/> <source>Refresh</source> <translation>Обновить информацию</translation> </message> <message> - <location filename="modinfodialog.ui" line="636"/> + <location filename="modinfodialog.ui" line="622"/> <source>Refresh all information from Nexus.</source> <translation>Обновить всю информацию с Nexus</translation> </message> <message> - <location filename="modinfodialog.ui" line="650"/> + <location filename="modinfodialog.ui" line="636"/> <source>Description</source> <translation>Описание</translation> </message> <message> - <location filename="modinfodialog.ui" line="665"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD 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="651"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: 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><!DOCTYPE HTML PUBLIC "-//W3C//DTD 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> +<p 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> -<p 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> +<p 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="701"/> + <location filename="modinfodialog.ui" line="687"/> <source>Endorse</source> <translation>Одобрить</translation> </message> <message> - <location filename="modinfodialog.ui" line="715"/> + <location filename="modinfodialog.ui" line="701"/> <source>Notes</source> <translation>Примечания</translation> </message> <message> - <location filename="modinfodialog.ui" line="725"/> + <location filename="modinfodialog.ui" line="711"/> <source>Filetree</source> <translation>Файловое древо</translation> </message> <message> - <location filename="modinfodialog.ui" line="734"/> + <location filename="modinfodialog.ui" line="720"/> <source>A directory view of this mod</source> <translation>Каталог этого мода</translation> </message> <message> - <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"> + <location filename="modinfodialog.ui" line="723"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" 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="764"/> + <location filename="modinfodialog.ui" line="750"/> <source>Previous</source> <translation>Предыдущий</translation> </message> <message> - <location filename="modinfodialog.ui" line="771"/> + <location filename="modinfodialog.ui" line="757"/> <source>Next</source> <translation>Вперед</translation> </message> <message> - <location filename="modinfodialog.ui" line="791"/> + <location filename="modinfodialog.ui" line="777"/> <source>Close</source> <translation type="unfinished">Закрыть</translation> </message> @@ -2706,197 +2843,227 @@ p, li { white-space: pre-wrap; } <translation>&Новая папка</translation> </message> <message> - <location filename="modinfodialog.cpp" line="352"/> - <location filename="modinfodialog.cpp" line="367"/> + <location filename="modinfodialog.cpp" line="354"/> + <location filename="modinfodialog.cpp" line="369"/> <source>Save changes?</source> <translation>Сохранить изменения?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="352"/> - <location filename="modinfodialog.cpp" line="367"/> - <source>Save changes to "%1"?</source> - <translation>Сохранить изменения в "%1"?</translation> + <location filename="modinfodialog.cpp" line="354"/> + <location filename="modinfodialog.cpp" line="369"/> + <source>Save changes to "%1"?</source> + <translation>Сохранить изменения в "%1"?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="563"/> + <location filename="modinfodialog.cpp" line="570"/> <source>File Exists</source> <translation>Файл уже существует</translation> </message> <message> - <location filename="modinfodialog.cpp" line="563"/> + <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="580"/> + <location filename="modinfodialog.cpp" line="587"/> <source>failed to move file</source> <translation>не удалось переместить файл</translation> </message> <message> - <location filename="modinfodialog.cpp" line="605"/> - <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="643"/> - <location filename="modinfodialog.cpp" line="1155"/> + <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="697"/> + <location filename="modinfodialog.cpp" line="704"/> <source>Main</source> <translation>Главное</translation> </message> <message> - <location filename="modinfodialog.cpp" line="698"/> + <location filename="modinfodialog.cpp" line="705"/> <source>Update</source> <translation>Обновление</translation> </message> <message> - <location filename="modinfodialog.cpp" line="699"/> + <location filename="modinfodialog.cpp" line="706"/> <source>Optional</source> <translation>Опционально</translation> </message> <message> - <location filename="modinfodialog.cpp" line="700"/> + <location filename="modinfodialog.cpp" line="707"/> <source>Old</source> <translation>Старые</translation> </message> <message> - <location filename="modinfodialog.cpp" line="701"/> + <location filename="modinfodialog.cpp" line="708"/> <source>Misc</source> <translation>Разное</translation> </message> <message> - <location filename="modinfodialog.cpp" line="702"/> + <location filename="modinfodialog.cpp" line="709"/> <source>Unknown</source> <translation>Неизвестно</translation> </message> <message> - <location filename="modinfodialog.cpp" line="713"/> + <location filename="modinfodialog.cpp" line="720"/> <source>Current Version: %1</source> <translation>Текущая версия: %1</translation> </message> <message> - <location filename="modinfodialog.cpp" line="717"/> + <location filename="modinfodialog.cpp" line="724"/> <source>No update available</source> <translation>Нет доступных обновлений</translation> </message> <message> - <location filename="modinfodialog.cpp" line="758"/> + <location filename="modinfodialog.cpp" line="765"/> <source>(description incomplete, please visit nexus)</source> <translation>(описание не завершено, смотрите на nexus)</translation> </message> <message> - <location filename="modinfodialog.cpp" line="779"/> - <source><a href="%1">Visit on Nexus</a></source> - <translation><a href="%1">Перейти на Nexus</a></translation> + <location filename="modinfodialog.cpp" line="780"/> + <source><a href="%1">Visit on Nexus</a></source> + <translation><a href="%1">Перейти на Nexus</a></translation> </message> <message> - <location filename="modinfodialog.cpp" line="858"/> + <location filename="modinfodialog.cpp" line="859"/> <source>Failed to delete %1</source> <translation type="unfinished">Не удалось удалить %1</translation> </message> <message> - <location filename="modinfodialog.cpp" line="869"/> - <location filename="modinfodialog.cpp" line="874"/> + <location filename="modinfodialog.cpp" line="870"/> + <location filename="modinfodialog.cpp" line="875"/> <source>Confirm</source> <translation>Подтверждение</translation> </message> <message> - <location filename="modinfodialog.cpp" line="869"/> - <source>Are sure you want to delete "%1"?</source> - <translation>Вы уверены, что хотите удалить "%1"?</translation> + <location filename="modinfodialog.cpp" line="870"/> + <source>Are sure you want to delete "%1"?</source> + <translation>Вы уверены, что хотите удалить "%1"?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="874"/> + <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="948"/> - <location filename="modinfodialog.cpp" line="954"/> + <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="960"/> - <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="1064"/> - <location filename="modinfodialog.cpp" line="1088"/> + <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="1064"/> + <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="1067"/> - <location filename="modinfodialog.cpp" line="1091"/> + <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="1067"/> - <location filename="modinfodialog.cpp" line="1091"/> - <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="1078"/> - <location filename="modinfodialog.cpp" line="1101"/> + <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="1088"/> + <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="1135"/> + <location filename="modinfodialog.cpp" line="1136"/> <source>Un-Hide</source> <translation>Показать</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1137"/> + <location filename="modinfodialog.cpp" line="1138"/> <source>Hide</source> <translation>Скрыть</translation> </message> + <message> + <location filename="modinfodialog.cpp" line="1179"/> + <source>Name</source> + <translation type="unfinished">Имя</translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1179"/> + <source>Please enter a name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1183"/> + <location filename="modinfodialog.cpp" line="1186"/> + <source>Error</source> + <translation type="unfinished">Ошибка</translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1183"/> + <source>Invalid name. Must be a valid file name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1186"/> + <source>A tweak by that name exists</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1198"/> + <source>Create Tweak</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>ModInfoOverwrite</name> <message> - <location filename="modinfo.cpp" line="821"/> + <location filename="modinfo.cpp" line="859"/> <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> - <location filename="modinfo.h" line="812"/> <source>Overwrite</source> - <translation>Замена</translation> + <translation type="obsolete">Замена</translation> </message> </context> <context> <name>ModInfoRegular</name> <message> - <location filename="modinfo.cpp" line="392"/> + <location filename="modinfo.cpp" line="393"/> <source>failed to write %1/meta.ini: %2</source> <translation>не удалось записать %1/meta.ini: %2</translation> </message> <message> - <location filename="modinfo.cpp" line="625"/> + <location filename="modinfo.cpp" line="654"/> <source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source> <translation>%1 не содержит ни esp/esm, ни папок ресурсов (textures, meshes, interface, ...)</translation> </message> <message> - <location filename="modinfo.cpp" line="629"/> + <location filename="modinfo.cpp" line="658"/> <source>Categories: <br></source> <translation>Категории: <br></translation> </message> @@ -2904,9 +3071,8 @@ p, li { white-space: pre-wrap; } <context> <name>ModList</name> <message> - <location filename="modlist.cpp" line="94"/> <source>Overwrite</source> - <translation>Замена</translation> + <translation type="obsolete">Замена</translation> </message> <message> <location filename="modlist.cpp" line="109"/> @@ -2949,113 +3115,118 @@ p, li { white-space: pre-wrap; } <translation>Избыточные</translation> </message> <message> - <location filename="modlist.cpp" line="184"/> + <location filename="modlist.cpp" line="196"/> <source>invalid</source> <translation>неверные</translation> </message> <message> - <location filename="modlist.cpp" line="294"/> + <location filename="modlist.cpp" line="307"/> <source>installed version: %1, newest version: %2</source> <translation>установленная версия: %1, новейшая версия: %2</translation> </message> <message> - <location filename="modlist.cpp" line="298"/> + <location filename="modlist.cpp" line="309"/> + <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="317"/> <source>Categories: <br></source> <translation>Категории: <br></translation> </message> <message> - <location filename="modlist.cpp" line="327"/> + <location filename="modlist.cpp" line="346"/> <source>Invalid name</source> <translation>Недопустимое имя</translation> </message> <message> - <location filename="modlist.cpp" line="603"/> + <location filename="modlist.cpp" line="716"/> <source>drag&drop failed: %1</source> <translation>перетаскивание не удалось: %1</translation> </message> <message> - <location filename="modlist.cpp" line="662"/> + <location filename="modlist.cpp" line="775"/> <source>Confirm</source> <translation>Подтверждение</translation> </message> <message> - <location filename="modlist.cpp" line="662"/> - <source>Are you sure you want to remove "%1"?</source> - <translation>Вы действительно хотите удалить "%1"?</translation> + <location filename="modlist.cpp" line="775"/> + <source>Are you sure you want to remove "%1"?</source> + <translation>Вы действительно хотите удалить "%1"?</translation> </message> <message> - <location filename="modlist.cpp" line="717"/> + <location filename="modlist.cpp" line="830"/> <source>Flags</source> <translation>Флаги</translation> </message> <message> - <location filename="modlist.cpp" line="718"/> + <location filename="modlist.cpp" line="831"/> <source>Mod Name</source> <translation>Имя мода</translation> </message> <message> - <location filename="modlist.cpp" line="719"/> + <location filename="modlist.cpp" line="832"/> <source>Version</source> <translation type="unfinished">Версия</translation> </message> <message> - <location filename="modlist.cpp" line="720"/> + <location filename="modlist.cpp" line="833"/> <source>Priority</source> <translation>Приоритет</translation> </message> <message> - <location filename="modlist.cpp" line="721"/> + <location filename="modlist.cpp" line="834"/> <source>Category</source> <translation>Категория</translation> </message> <message> - <location filename="modlist.cpp" line="722"/> + <location filename="modlist.cpp" line="835"/> <source>Nexus ID</source> <translation>Nexus ID</translation> </message> <message> - <location filename="modlist.cpp" line="723"/> + <location filename="modlist.cpp" line="836"/> <source>Installation</source> <translation>Установка</translation> </message> <message> - <location filename="modlist.cpp" line="724"/> - <location filename="modlist.cpp" line="740"/> + <location filename="modlist.cpp" line="837"/> + <location filename="modlist.cpp" line="853"/> <source>unknown</source> <translation>неизвестный</translation> </message> <message> - <location filename="modlist.cpp" line="732"/> + <location filename="modlist.cpp" line="845"/> <source>Name of your mods</source> <translation>Имя ваших модов</translation> </message> <message> - <location filename="modlist.cpp" line="733"/> + <location filename="modlist.cpp" line="846"/> <source>Version of the mod (if available)</source> <translation>Версия мода (если доступно)</translation> </message> <message> - <location filename="modlist.cpp" line="734"/> - <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source> + <location filename="modlist.cpp" line="847"/> + <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="736"/> + <location filename="modlist.cpp" line="849"/> <source>Category of the mod.</source> <translation>Категория мода.</translation> </message> <message> - <location filename="modlist.cpp" line="737"/> + <location filename="modlist.cpp" line="850"/> <source>Id of the mod as used on Nexus.</source> <translation>ID мода, используемый на Nexus.</translation> </message> <message> - <location filename="modlist.cpp" line="738"/> + <location filename="modlist.cpp" line="851"/> <source>Emblemes to highlight things that might require attention.</source> <translation>Выделяет подсветкой вещи, которые могут потребовать внимания.</translation> </message> <message> - <location filename="modlist.cpp" line="739"/> + <location filename="modlist.cpp" line="852"/> <source>Time this mod was installed</source> <translation>Время, когда мод был установлен.</translation> </message> @@ -3076,12 +3247,12 @@ p, li { white-space: pre-wrap; } <context> <name>MyFileSystemModel</name> <message> - <location filename="overwriteinfodialog.cpp" line="48"/> + <location filename="overwriteinfodialog.cpp" line="47"/> <source>Overwrites</source> <translation>Заменяет</translation> </message> <message> - <location filename="overwriteinfodialog.cpp" line="60"/> + <location filename="overwriteinfodialog.cpp" line="59"/> <source>not implemented</source> <translation>не реализовано</translation> </message> @@ -3090,11 +3261,16 @@ p, li { white-space: pre-wrap; } <name>NXMAccessManager</name> <message> <location filename="nxmaccessmanager.cpp" line="130"/> + <source>Logging into Nexus</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="nxmaccessmanager.cpp" line="145"/> <source>timeout</source> <translation>задержка</translation> </message> <message> - <location filename="nxmaccessmanager.cpp" line="168"/> + <location filename="nxmaccessmanager.cpp" line="185"/> <source>Please check your password</source> <translation>Проверьте ваш пароль</translation> </message> @@ -3102,17 +3278,17 @@ p, li { white-space: pre-wrap; } <context> <name>NexusInterface</name> <message> - <location filename="nexusinterface.cpp" line="201"/> - <source>Failed to guess mod id for "%1", please pick the correct one</source> - <translation>Не удалось опознать id мода "%1", пожалуйста, выберете правильный</translation> + <location filename="nexusinterface.cpp" line="219"/> + <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="421"/> + <location filename="nexusinterface.cpp" line="440"/> <source>empty response</source> <translation>пустой ответ</translation> </message> <message> - <location filename="nexusinterface.cpp" line="450"/> + <location filename="nexusinterface.cpp" line="469"/> <source>invalid response</source> <translation>неверный ответ</translation> </message> @@ -3150,109 +3326,140 @@ p, li { white-space: pre-wrap; } <translation>&Новая папка</translation> </message> <message> - <location filename="overwriteinfodialog.cpp" line="137"/> - <source>Failed to delete "%1"</source> - <translation>Не удалось удалить "%1"</translation> + <location filename="overwriteinfodialog.cpp" line="136"/> + <source>Failed to delete "%1"</source> + <translation>Не удалось удалить "%1"</translation> </message> <message> - <location filename="overwriteinfodialog.cpp" line="148"/> - <location filename="overwriteinfodialog.cpp" line="153"/> + <location filename="overwriteinfodialog.cpp" line="147"/> + <location filename="overwriteinfodialog.cpp" line="152"/> <source>Confirm</source> <translation>Подтверждение</translation> </message> <message> - <location filename="overwriteinfodialog.cpp" line="148"/> - <source>Are sure you want to delete "%1"?</source> - <translation>Вы уверены, что хотите удалить "%1"?</translation> + <location filename="overwriteinfodialog.cpp" line="147"/> + <source>Are sure you want to delete "%1"?</source> + <translation>Вы уверены, что хотите удалить "%1"?</translation> </message> <message> - <location filename="overwriteinfodialog.cpp" line="153"/> + <location filename="overwriteinfodialog.cpp" line="152"/> <source>Are sure you want to delete the selected files?</source> <translation>Вы действительно хотите удалить выбранные файлы?</translation> </message> <message> - <location filename="overwriteinfodialog.cpp" line="203"/> - <location filename="overwriteinfodialog.cpp" line="209"/> + <location filename="overwriteinfodialog.cpp" line="202"/> + <location filename="overwriteinfodialog.cpp" line="208"/> <source>New Folder</source> <translation>Новая папка</translation> </message> <message> - <location filename="overwriteinfodialog.cpp" line="215"/> - <source>Failed to create "%1"</source> - <translation>Не удалось создать "%1"</translation> + <location filename="overwriteinfodialog.cpp" line="214"/> + <source>Failed to create "%1"</source> + <translation>Не удалось создать "%1"</translation> </message> </context> <context> <name>PluginList</name> <message> - <location filename="pluginlist.cpp" line="87"/> + <location filename="pluginlist.cpp" line="101"/> <source>Name</source> <translation type="unfinished">Имя</translation> </message> <message> - <location filename="pluginlist.cpp" line="88"/> + <location filename="pluginlist.cpp" line="102"/> <source>Priority</source> <translation>Приоритет</translation> </message> <message> - <location filename="pluginlist.cpp" line="89"/> + <location filename="pluginlist.cpp" line="103"/> <source>Mod Index</source> <translation>Индекс мода</translation> </message> <message> - <location filename="pluginlist.cpp" line="90"/> - <location filename="pluginlist.cpp" line="102"/> + <location filename="pluginlist.cpp" line="104"/> + <location filename="pluginlist.cpp" line="116"/> <source>unknown</source> <translation>неизвестно</translation> </message> <message> - <location filename="pluginlist.cpp" line="98"/> + <location filename="pluginlist.cpp" line="112"/> <source>Name of your mods</source> <translation>Имена ваших модов</translation> </message> <message> - <location filename="pluginlist.cpp" line="99"/> - <source>Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority.</source> + <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>Приоритет загрузки ваших модов. Моды с большим приоритетом перезапишут данные модов с меньшим приоритетом.</translation> </message> <message> - <location filename="pluginlist.cpp" line="101"/> + <location filename="pluginlist.cpp" line="115"/> <source>The modindex determins the formids of objects originating from this mods.</source> <translation>Индекс мода определяющий id форм объектов, происходящих из этих модов.</translation> </message> <message> - <location filename="pluginlist.cpp" line="199"/> + <location filename="pluginlist.cpp" line="151"/> + <source>failed to update esp info for file %1 (source id: %2), error: %3</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="pluginlist.cpp" line="218"/> <source>esp not found: %1</source> <translation>esp не найден: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="338"/> + <location filename="pluginlist.cpp" line="225"/> + <location filename="pluginlist.cpp" line="237"/> + <source>Confirm</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="pluginlist.cpp" line="225"/> + <source>Really enable all plugins?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="pluginlist.cpp" line="237"/> + <source>Really disable all plugins?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="pluginlist.cpp" line="365"/> <source>The file containing locked plugin indices is broken</source> <translation>Файл, содержащий индексы заблокированного плагина, не работает.</translation> </message> <message> - <location filename="pluginlist.cpp" line="351"/> - <location filename="pluginlist.cpp" line="405"/> + <location filename="pluginlist.cpp" line="378"/> + <location filename="pluginlist.cpp" line="417"/> <source>failed to open output file: %1</source> <translation>не удалось открыть выходной файл: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="393"/> + <location filename="pluginlist.cpp" line="405"/> <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="631"/> - <source>This plugin can't be disabled (enforced by the game)</source> + <location filename="pluginlist.cpp" line="751"/> + <source>This plugin can't be disabled (enforced by the game)</source> <translation>Этот плагин не может быть отключен (грузится игрой принудительно)</translation> </message> <message> - <location filename="pluginlist.cpp" line="633"/> + <location filename="pluginlist.cpp" line="753"/> <source>Origin: %1</source> <translation>Источник: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="737"/> + <location filename="pluginlist.cpp" line="755"/> + <source>Missing Masters</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="pluginlist.cpp" line="761"/> + <source>Enabled Masters</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="pluginlist.cpp" line="873"/> <source>failed to restore load order for %1</source> <translation>не удалось восстановить порядок загрузки для %1</translation> </message> @@ -3266,29 +3473,39 @@ 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"> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: 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> + <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: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></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: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></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"> 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; font-size:8pt;"><br /></p></body></html></translation> + </message> + <message> + <location filename="problemsdialog.ui" line="75"/> + <source>Close</source> + <translation type="unfinished">Закрыть</translation> </message> <message> - <location filename="problemsdialog.cpp" line="29"/> <source>fix</source> - <translation>исправить</translation> + <translation type="obsolete">исправить</translation> </message> <message> - <location filename="problemsdialog.cpp" line="30"/> + <location filename="problemsdialog.cpp" line="44"/> + <location filename="problemsdialog.cpp" line="45"/> <source>Fix</source> <translation>Исправить</translation> </message> <message> - <location filename="problemsdialog.cpp" line="34"/> + <location filename="problemsdialog.cpp" line="49"/> <source>No guided fix</source> <translation>Не управляемое исправление</translation> </message> @@ -3296,73 +3513,83 @@ p, li { white-space: pre-wrap; } <context> <name>Profile</name> <message> - <location filename="profile.cpp" line="56"/> + <location filename="profile.cpp" line="58"/> <source>invalid profile name %1</source> <translation>неверное имя профиля %1</translation> </message> <message> - <location filename="profile.cpp" line="60"/> + <location filename="profile.cpp" line="62"/> <source>failed to create %1</source> <translation>не удалось создать %1</translation> </message> <message> - <location filename="profile.cpp" line="152"/> - <source>failed to open "%1" for writing</source> - <translation>не удалось открыть "%1" для записи</translation> + <location filename="profile.cpp" line="155"/> + <source>failed to open temporary file</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profile.cpp" line="192"/> + <source>failed to open "%1" for writing</source> + <translation>не удалось открыть "%1" для записи</translation> </message> <message> - <location filename="profile.cpp" line="189"/> + <location filename="profile.cpp" line="198"/> + <source>failed to write mod list: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profile.cpp" line="209"/> <source>failed to update tweaked ini file, wrong settings may be used: %1</source> <translation>не удалось обновить настроенный ini-файл, вероятно используются ошибочные настройки: %1</translation> </message> <message> - <location filename="profile.cpp" line="219"/> + <location filename="profile.cpp" line="239"/> <source>failed to create tweaked ini: %1</source> <translation>не удалось создать настроенный ini: %1</translation> </message> <message> - <location filename="profile.cpp" line="271"/> - <location filename="profile.cpp" line="300"/> - <location filename="profile.cpp" line="384"/> - <location filename="profile.cpp" line="402"/> - <location filename="profile.cpp" line="412"/> + <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="365"/> - <source>Overwrite directory couldn't be parsed</source> + <location filename="profile.cpp" line="387"/> + <source>Overwrite directory couldn't be parsed</source> <translation>Замена каталога не может быть обработана</translation> </message> <message> - <location filename="profile.cpp" line="374"/> + <location filename="profile.cpp" line="396"/> <source>invalid priority %1</source> <translation>неверный приоритет %1</translation> </message> <message> - <location filename="profile.cpp" line="561"/> + <location filename="profile.cpp" line="584"/> <source>failed to parse ini file (%1)</source> <translation>не удалось обработать ini файл (%1)</translation> </message> <message> - <location filename="profile.cpp" line="589"/> + <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="613"/> - <location filename="profile.cpp" line="650"/> - <source>failed to modify "%1"</source> - <translation>не удалось изменить "%1"</translation> + <location filename="profile.cpp" line="636"/> + <location filename="profile.cpp" line="673"/> + <source>failed to modify "%1"</source> + <translation>не удалось изменить "%1"</translation> </message> <message> - <location filename="profile.cpp" line="679"/> + <location filename="profile.cpp" line="701"/> <source>Delete savegames?</source> <translation>Удалить сохранения?</translation> </message> <message> - <location filename="profile.cpp" line="680"/> - <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> + <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> @@ -3385,7 +3612,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> @@ -3408,20 +3635,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"/> @@ -3441,22 +3668,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"/> @@ -3523,7 +3750,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> @@ -3543,37 +3770,61 @@ p, li { white-space: pre-wrap; } <translation>Введите имя нового профиля</translation> </message> <message> - <location filename="profilesdialog.cpp" line="160"/> + <location filename="profilesdialog.cpp" line="162"/> <source>failed to copy profile: %1</source> <translation>не удалось скопировать профиль: %1</translation> </message> <message> - <location filename="profilesdialog.cpp" line="167"/> + <location filename="profilesdialog.cpp" line="165"/> + <source>Invalid name</source> + <translation type="unfinished">Недопустимое имя</translation> + </message> + <message> + <location filename="profilesdialog.cpp" line="165"/> + <source>Invalid profile name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.cpp" line="172"/> <source>Confirm</source> <translation>Подтверждение</translation> </message> <message> - <location filename="profilesdialog.cpp" line="167"/> + <location filename="profilesdialog.cpp" line="172"/> + <source>Are you sure you want to remove this profile (including local savegames if any)?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.cpp" line="182"/> + <source>Profile broken</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.cpp" line="183"/> + <source>This profile you'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>Вы действительно хотите удалить этот профиль?</translation> + <translation type="obsolete">Вы действительно хотите удалить этот профиль?</translation> </message> <message> - <location filename="profilesdialog.cpp" line="196"/> + <location filename="profilesdialog.cpp" line="215"/> <source>Rename Profile</source> <translation>Переименовать профиль</translation> </message> <message> - <location filename="profilesdialog.cpp" line="196"/> + <location filename="profilesdialog.cpp" line="215"/> <source>New Name</source> <translation>Новое имя</translation> </message> <message> - <location filename="profilesdialog.cpp" line="233"/> + <location filename="profilesdialog.cpp" line="252"/> <source>failed to change archive invalidation state: %1</source> <translation>не удалось изменить режим инвалидации: %1</translation> </message> <message> - <location filename="profilesdialog.cpp" line="270"/> + <location filename="profilesdialog.cpp" line="289"/> <source>failed to determine if invalidation is active: %1</source> <translation>не удалось определить активность инвалидации: %1</translation> </message> @@ -3581,42 +3832,42 @@ p, li { white-space: pre-wrap; } <context> <name>QObject</name> <message> - <location filename="categories.cpp" line="133"/> + <location filename="categories.cpp" line="140"/> <source>Failed to save custom categories</source> <translation>Не удалось сохранить пользовательские категории</translation> </message> <message> - <location filename="categories.cpp" line="210"/> - <location filename="categories.cpp" line="245"/> - <location filename="categories.cpp" line="255"/> - <location filename="categories.cpp" line="265"/> + <location filename="categories.cpp" line="217"/> + <location filename="categories.cpp" line="252"/> + <location filename="categories.cpp" line="262"/> + <location filename="categories.cpp" line="272"/> <source>invalid index %1</source> <translation>неверный индекс %1</translation> </message> <message> - <location filename="categories.cpp" line="276"/> + <location filename="categories.cpp" line="283"/> <source>invalid category id %1</source> <translation>неверный id категории %1</translation> </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"/> @@ -3625,13 +3876,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"/> @@ -3655,7 +3906,7 @@ p, li { white-space: pre-wrap; } <translation>не удалось определить имя аккаунта</translation> </message> <message> - <location filename="installationmanager.cpp" line="63"/> + <location filename="installationmanager.cpp" line="64"/> <location filename="selfupdater.cpp" line="52"/> <source>invalid 7-zip32.dll: %1</source> <translation>неверный 7-zip32.dll: %1</translation> @@ -3725,99 +3976,107 @@ p, li { white-space: pre-wrap; } <translation>Не удалось установить загрузку proxy-dll</translation> </message> <message> - <location filename="main.cpp" line="134"/> + <location filename="main.cpp" line="138"/> <source>Permissions required</source> <translation>Требуются права доступа</translation> </message> <message> - <location filename="main.cpp" line="135"/> - <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> + <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="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"></translation> </message> <message> - <location filename="main.cpp" line="234"/> - <location filename="main.cpp" line="272"/> + <location filename="main.cpp" line="230"/> + <location filename="main.cpp" line="268"/> <source>Woops</source> <translation>Упс</translation> </message> <message> - <location filename="main.cpp" line="235"/> + <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>Mod Organizer вышел из строя! Нужно ли создать диагностический файл? Если вы вышлите файл (%1) по адресу sherb@gmx.net, ошибка с намного большей вероятностью будет исправлена. Пожалуйста, добавьте краткое описание своих действий, перед тем, как произошла ошибка</translation> </message> <message> - <location filename="main.cpp" line="273"/> + <location filename="main.cpp" line="269"/> <source>ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1</source> <translation>ModOrganizer вышел из строя! К сожалению не удалось записать диагностический файл: %1</translation> </message> <message> - <location filename="main.cpp" line="335"/> - <location filename="settings.cpp" line="441"/> + <location filename="main.cpp" line="331"/> + <location filename="settings.cpp" line="528"/> <source>Mod Organizer</source> <translation>Mod Organizer</translation> </message> <message> - <location filename="main.cpp" line="335"/> + <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="357"/> - <source>No game identified in "%1". The directory is required to contain the game binary and its launcher.</source> - <translation>Игра не обнаружена в "%1". Требуется, чтобы папка содержала исполняемые файлы игры.</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". Требуется, чтобы папка содержала исполняемые файлы игры.</translation> </message> <message> - <location filename="main.cpp" line="360"/> - <location filename="main.cpp" line="389"/> + <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="mainwindow.cpp" line="701"/> - <source>Please use "Help" from the toolbar to get usage instructions to all elements</source> - <translation>Используйте пункт "Справка" на панели инструментов, чтобы получить инструкции по использованию всех элементов.</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"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1414"/> - <location filename="mainwindow.cpp" line="3646"/> + <location filename="mainwindow.cpp" line="770"/> + <source>Please use "Help" from the toolbar to get usage instructions to all elements</source> + <translation>Используйте пункт "Справка" на панели инструментов, чтобы получить инструкции по использованию всех элементов.</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1538"/> + <location filename="mainwindow.cpp" line="4024"/> <source><Manage...></source> <translation><Управлять...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1432"/> + <location filename="mainwindow.cpp" line="1556"/> <source>failed to parse profile %1: %2</source> <translation>не удалось обработать профиль %1: %2</translation> </message> <message> - <location filename="pluginlist.cpp" line="295"/> - <location filename="profile.cpp" line="228"/> - <source>failed to find "%1"</source> - <translation>не удалось найти "%1"</translation> + <location filename="pluginlist.cpp" line="320"/> + <location filename="profile.cpp" line="249"/> + <source>failed to find "%1"</source> + <translation>не удалось найти "%1"</translation> </message> <message> - <location filename="pluginlist.cpp" line="367"/> <source>encoding error, please report this as a bug and include the file mo_interface.log!</source> - <translation>ошибка кодирования, пожалуйста сообщите об этом баге, включив файл mo_interface.log!</translation> + <translation type="obsolete">ошибка кодирования, пожалуйста сообщите об этом баге, включив файл mo_interface.log!</translation> </message> <message> - <location filename="pluginlist.cpp" line="467"/> + <location filename="pluginlist.cpp" line="479"/> <source>failed to access %1</source> <translation>не удалось получить доступ к %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="481"/> + <location filename="pluginlist.cpp" line="493"/> <source>failed to set file time %1</source> <translation>не удалось изменить дату модификации для %1</translation> </message> <message> - <location filename="profile.cpp" line="67"/> + <location filename="profile.cpp" line="69"/> <source>failed to create %1</source> <translation>не удалось создать %1</translation> </message> <message> - <location filename="profile.cpp" line="93"/> - <source>"%1" is missing</source> - <translation>"%1" отсутствует</translation> + <location filename="profile.cpp" line="95"/> + <source>"%1" is missing</source> + <translation>"%1" отсутствует</translation> </message> <message> <location filename="profilesdialog.cpp" line="80"/> @@ -3843,19 +4102,19 @@ p, li { white-space: pre-wrap; } <translation>не удалось открыть %1</translation> </message> <message> - <location filename="settings.cpp" line="448"/> + <location filename="settings.cpp" line="535"/> <source>Script Extender</source> <translation>Script Extender</translation> </message> <message> - <location filename="settings.cpp" line="455"/> + <location filename="settings.cpp" line="542"/> <source>Proxy DLL</source> <translation>Proxy 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"/> @@ -3866,36 +4125,36 @@ 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="128"/> - <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="137"/> - <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="144"/> - <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="152"/> - <source>failed to run "%1"</source> - <translation>не удалось запустить "%1"</translation> + <source>failed to run "%1"</source> + <translation>не удалось запустить "%1"</translation> </message> </context> <context> @@ -3939,9 +4198,8 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <context> <name>QuestionBoxMemory</name> <message> - <location filename="questionboxmemory.ui" line="86"/> <source>Remember selection</source> - <translation>Запомнить выбор</translation> + <translation type="obsolete">Запомнить выбор</translation> </message> </context> <context> @@ -4014,8 +4272,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> @@ -4040,14 +4298,14 @@ 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"/> - <location filename="selfupdater.cpp" line="140"/> - <location filename="selfupdater.cpp" line="269"/> - <location filename="selfupdater.cpp" line="417"/> + <location filename="selfupdater.cpp" line="139"/> + <location filename="selfupdater.cpp" line="268"/> + <location filename="selfupdater.cpp" line="415"/> <source>Update</source> <translation>Обновление</translation> </message> @@ -4057,62 +4315,62 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <translation>Доступно обновление (последняя версия: %1). Вы хотите установить его?</translation> </message> <message> - <location filename="selfupdater.cpp" line="141"/> + <location filename="selfupdater.cpp" line="140"/> <source>Download in progress</source> <translation>Загрузка в процессе</translation> </message> <message> - <location filename="selfupdater.cpp" line="196"/> + <location filename="selfupdater.cpp" line="195"/> <source>Download failed: %1</source> <translation>Загрузка не удалась: %1</translation> </message> <message> - <location filename="selfupdater.cpp" line="207"/> + <location filename="selfupdater.cpp" line="206"/> <source>Failed to install update: %1</source> <translation>Не удалось установить обновление: %1</translation> </message> <message> - <location filename="selfupdater.cpp" line="228"/> - <source>failed to open archive "%1": %2</source> - <translation>не удалось открыть архив "%1": %2</translation> + <location filename="selfupdater.cpp" line="227"/> + <source>failed to open archive "%1": %2</source> + <translation>не удалось открыть архив "%1": %2</translation> </message> <message> - <location filename="selfupdater.cpp" line="251"/> + <location filename="selfupdater.cpp" line="250"/> <source>failed to move outdated files: %1. Please update manually.</source> <translation>не удалось переместить устаревшие файлы: %1. Пожалуйста, обновите вручную.</translation> </message> <message> - <location filename="selfupdater.cpp" line="269"/> + <location filename="selfupdater.cpp" line="268"/> <source>Update installed, Mod Organizer will now be restarted.</source> <translation>Обновление установлено, Mod Organizer будет перезапущен.</translation> </message> <message> - <location filename="selfupdater.cpp" line="297"/> + <location filename="selfupdater.cpp" line="296"/> <source>Error</source> <translation>Ошибка</translation> </message> <message> - <location filename="selfupdater.cpp" line="353"/> + <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>Не удалось обработать запрос. Пожалуйста, сообщите об этом баге, включив в сообщение файл mo_interface.log.</translation> </message> <message> - <location filename="selfupdater.cpp" line="418"/> + <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>Нет дополнительных обновлений для этой версии, необходимо загрузить полный пакет (%1 kB)</translation> </message> <message> - <location filename="selfupdater.cpp" line="427"/> + <location filename="selfupdater.cpp" line="425"/> <source>no file for update found. Please update manually.</source> <translation>не найдено файла для обновления. Пожалуйста, обновите вручную.</translation> </message> <message> - <location filename="selfupdater.cpp" line="441"/> + <location filename="selfupdater.cpp" line="439"/> <source>Failed to retrieve update information: %1</source> <translation>Не удалось получить сведения об обновлении: %1</translation> </message> <message> - <location filename="selfupdater.cpp" line="461"/> + <location filename="selfupdater.cpp" line="459"/> <source>No download server available. Please try again later.</source> <translation>Нет доступных для загрузки серверов. Пожалуйста, попробуйте позже.</translation> </message> @@ -4120,22 +4378,26 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <context> <name>Settings</name> <message> - <location filename="settings.cpp" line="260"/> - <source>setting for invalid plugin "%1" requested</source> - <translation>запрошена настройка для недействительного плагина "%1"</translation> + <source>setting for invalid plugin "%1" requested</source> + <translation type="obsolete">запрошена настройка для недействительного плагина "%1"</translation> </message> <message> - <location filename="settings.cpp" line="264"/> - <source>invalid setting "%1" requested for plugin "%2"</source> - <translation>неверная настройка "%1" запрошена для плагина "%2"</translation> + <source>invalid setting "%1" requested for plugin "%2"</source> + <translation type="obsolete">неверная настройка "%1" запрошена для плагина "%2"</translation> </message> <message> - <location filename="settings.cpp" line="552"/> + <location filename="settings.cpp" line="306"/> + <location filename="settings.cpp" line="325"/> + <source>attempt to store setting for unknown plugin "%1"</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settings.cpp" line="646"/> <source>Confirm</source> <translation>Подтверждение</translation> </message> <message> - <location filename="settings.cpp" line="552"/> + <location filename="settings.cpp" line="646"/> <source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed?</source> <translation>Изменение каталога для модов отразится на всех ваших профилях. Нельзя будет отменить это, если только вы не сохранили резервные копии ваших профилей вручную. Продолжить?</translation> </message> @@ -4164,16 +4426,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"/> @@ -4197,15 +4459,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"/> @@ -4245,7 +4507,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> @@ -4265,8 +4527,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"/> @@ -4297,16 +4559,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"/> @@ -4374,198 +4636,203 @@ p, li { white-space: pre-wrap; } <translation>Плагины</translation> </message> <message> - <location filename="settingsdialog.ui" line="427"/> + <location filename="settingsdialog.ui" line="429"/> <source>Author:</source> <translation>Автор:</translation> </message> <message> - <location filename="settingsdialog.ui" line="441"/> + <location filename="settingsdialog.ui" line="443"/> <source>Version:</source> <translation>Версия:</translation> </message> <message> - <location filename="settingsdialog.ui" line="455"/> + <location filename="settingsdialog.ui" line="457"/> <source>Description:</source> <translation>Описание:</translation> </message> <message> - <location filename="settingsdialog.ui" line="493"/> + <location filename="settingsdialog.ui" line="495"/> <source>Key</source> <translation>Клавиша</translation> </message> <message> - <location filename="settingsdialog.ui" line="498"/> + <location filename="settingsdialog.ui" line="500"/> <source>Value</source> <translation>Значение</translation> </message> <message> - <location filename="settingsdialog.ui" line="509"/> + <location filename="settingsdialog.ui" line="512"/> + <source>Blacklisted Plugins (use <del> to remove):</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="523"/> <source>Workarounds</source> <translation>Способы обхода</translation> </message> <message> - <location filename="settingsdialog.ui" line="517"/> + <location filename="settingsdialog.ui" line="531"/> <source>Steam App ID</source> <translation>ID приложения Steam</translation> </message> <message> - <location filename="settingsdialog.ui" line="537"/> + <location filename="settingsdialog.ui" line="551"/> <source>The Steam AppID for your game</source> <translation>ID в Steam для вашей игры</translation> </message> <message> - <location filename="settingsdialog.ui" line="540"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD 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;">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="571"/> + <location filename="settingsdialog.ui" line="585"/> <source>Load Mechanism</source> <translation>Механизм загрузки</translation> </message> <message> - <location filename="settingsdialog.ui" line="591"/> + <location filename="settingsdialog.ui" line="605"/> <source>Select loading mechanism. See help for details.</source> <translation>Выберете механизм загрузки. Смотрите справку для подробностей.</translation> </message> <message> - <location filename="settingsdialog.ui" line="594"/> + <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. +*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="611"/> + <location filename="settingsdialog.ui" line="625"/> <source>NMM Version</source> <translation>Версия NMM</translation> </message> <message> - <location filename="settingsdialog.ui" line="631"/> + <location filename="settingsdialog.ui" line="645"/> <source>The Version of Nexus Mod Manager to impersonate.</source> <translation>Версия Nexus Mod Manager для представления.</translation> </message> <message> - <location filename="settingsdialog.ui" line="634"/> + <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 использует API Nexus , для предоставления таких возможностей, как проверка обновлений и загрузка файлов. К сожалению этот API не был сделан официально доступным прочим утилитам, вроде MO, так что нужно представляться как Nexus Mod Manager, чтобы получить доступ. Помимо этого Nexus использует идентификатор версий, чтобы блокировать устаревшии версии NMM и принудительно заставить пользователей обновиться. Это значит, что MO также нужно представляться последней версией NMM, даже если MO не нуждается в обновлении. Поэтому вы можете настроить здесь также и версию для идентификации. -Обратите внимание, что MO идентифицирует себя вебсерверу как MO, он не подделывает данные о себе. Он всего лишь добавляется как "совместимая" с NMM версия, в поле user agent. +Обратите внимание, что MO идентифицирует себя вебсерверу как MO, он не подделывает данные о себе. Он всего лишь добавляется как "совместимая" с NMM версия, в поле user agent. tl;dr-версия: Если возможности Nexus не работают, вставьте здесь текущую версию NMM и повторите попытку.</translation> </message> <message> - <location filename="settingsdialog.ui" line="656"/> + <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="659"/> - <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="663"/> + <location filename="settingsdialog.ui" line="677"/> <source>Hide inactive ESPs/ESMs</source> <translation>Скрыть неактивные ESPs/ESMs</translation> </message> <message> - <location filename="settingsdialog.ui" line="670"/> + <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>Если отмечено, файлы (т.е. esp, esm и bsa) принадлежащие основной игре не смогут быть отключены из интерфейса. (по умолчанию: вкл)</translation> </message> <message> - <location filename="settingsdialog.ui" line="673"/> + <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>Если отмечено, файлы (т.е. esp, esm и bsa) принадлежащие основной игре не смогут быть отключены из интерфейса. (по умолчанию: вкл) Снимите флажок, если вы собираетесь использовать Mod Organizer с тотальными конверсиями (как Nehrim) , но будьте осторожны, игра может вылететь, если требуемые файлы будут отключены.</translation> </message> <message> - <location filename="settingsdialog.ui" line="677"/> + <location filename="settingsdialog.ui" line="691"/> <source>Force-enable game files</source> <translation>Принудительно подключить файлы игры</translation> </message> <message> - <location filename="settingsdialog.ui" line="687"/> - <location filename="settingsdialog.ui" line="691"/> + <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>Для Скайрим это может быть использовано вместо инвалидации. Это должно сделать AI избыточным для всех профилей. Для других игр недостаточно замены для AI!</translation> </message> <message> - <location filename="settingsdialog.ui" line="695"/> + <location filename="settingsdialog.ui" line="709"/> <source>Back-date BSAs</source> <translation>Back-date BSAs</translation> </message> <message> - <location filename="settingsdialog.ui" line="719"/> + <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>Это способы обхода проблем с Mod Organizer. Убедитесь, что вы прочли справку, перед тем, как делать какие-либо изменения здесь.</translation> </message> <message> - <location filename="settingsdialog.cpp" line="89"/> + <location filename="settingsdialog.cpp" line="94"/> <source>Select download directory</source> <translation>Выберете каталог для загрузок</translation> </message> <message> - <location filename="settingsdialog.cpp" line="97"/> + <location filename="settingsdialog.cpp" line="102"/> <source>Select mod directory</source> <translation>Выберете каталог для модов</translation> </message> <message> - <location filename="settingsdialog.cpp" line="105"/> + <location filename="settingsdialog.cpp" line="110"/> <source>Select cache directory</source> <translation>Выберете каталог для кеша</translation> </message> <message> - <location filename="settingsdialog.cpp" line="113"/> + <location filename="settingsdialog.cpp" line="118"/> <source>Confirm?</source> <translation>Подтвердить?</translation> </message> <message> - <location filename="settingsdialog.cpp" line="114"/> - <source>This will make all dialogs show up again where you checked the "Remember selection"-box. Continue?</source> - <translation>Это позволить снова отобразить все диалоги, для которых вы ранее выбрали флажок "Запомнить выбор".</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>Это позволить снова отобразить все диалоги, для которых вы ранее выбрали флажок "Запомнить выбор".</translation> </message> </context> <context> @@ -4640,7 +4907,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> @@ -4748,8 +5015,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"/> @@ -4762,18 +5029,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.qm b/src/organizer_tr.qm Binary files differindex 1069c0dc..bb7116bf 100644 --- a/src/organizer_tr.qm +++ b/src/organizer_tr.qm diff --git a/src/organizer_tr.ts b/src/organizer_tr.ts index 78e719a8..c23ee738 100644 --- a/src/organizer_tr.ts +++ b/src/organizer_tr.ts @@ -256,7 +256,7 @@ p, li { white-space: pre-wrap; } <translation type="unfinished">Bitti</translation> </message> <message> - <location filename="downloadlist.cpp" line="79"/> + <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> @@ -270,11 +270,6 @@ p, li { white-space: pre-wrap; } <translation>Yer tutucu</translation> </message> <message> - <location filename="downloadlistwidget.ui" line="81"/> - <source>0</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="downloadlistwidget.ui" line="88"/> <source>KB</source> <translation type="unfinished"></translation> @@ -337,60 +332,65 @@ p, li { white-space: pre-wrap; } <translation>Bitti</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="215"/> - <location filename="downloadlistwidgetcompact.cpp" line="224"/> - <location filename="downloadlistwidgetcompact.cpp" line="233"/> - <location filename="downloadlistwidgetcompact.cpp" line="242"/> + <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="216"/> + <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="225"/> + <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="234"/> + <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> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="243"/> + <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> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="269"/> + <location filename="downloadlistwidgetcompact.cpp" line="275"/> <source>Install</source> <translation>Yükle</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="271"/> + <location filename="downloadlistwidgetcompact.cpp" line="277"/> <source>Query Info</source> <translation>Sorgu Bilgisi</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="273"/> + <location filename="downloadlistwidgetcompact.cpp" line="279"/> <source>Delete</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="274"/> + <location filename="downloadlistwidgetcompact.cpp" line="281"/> + <source>Un-Hide</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="283"/> <source>Remove from View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="279"/> + <location filename="downloadlistwidgetcompact.cpp" line="289"/> <source>Remove</source> <translation>Kaldır</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="276"/> + <location filename="downloadlistwidgetcompact.cpp" line="286"/> <source>Cancel</source> <translation>İptal et</translation> </message> @@ -410,32 +410,32 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="277"/> + <location filename="downloadlistwidgetcompact.cpp" line="287"/> <source>Pause</source> <translation>Duraklat</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="280"/> + <location filename="downloadlistwidgetcompact.cpp" line="290"/> <source>Resume</source> <translation>Devam et</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="284"/> + <location filename="downloadlistwidgetcompact.cpp" line="294"/> <source>Delete Installed...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="285"/> + <location filename="downloadlistwidgetcompact.cpp" line="295"/> <source>Delete All...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="287"/> + <location filename="downloadlistwidgetcompact.cpp" line="298"/> <source>Remove Installed...</source> <translation>Yüklenmişleri kaldır...</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="288"/> + <location filename="downloadlistwidgetcompact.cpp" line="299"/> <source>Remove All...</source> <translation>Hepsini kaldır...</translation> </message> @@ -443,60 +443,65 @@ p, li { white-space: pre-wrap; } <context> <name>DownloadListWidgetDelegate</name> <message> - <location filename="downloadlistwidget.cpp" line="228"/> - <location filename="downloadlistwidget.cpp" line="237"/> - <location filename="downloadlistwidget.cpp" line="246"/> - <location filename="downloadlistwidget.cpp" line="255"/> + <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="229"/> + <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="238"/> + <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="247"/> + <location filename="downloadlistwidget.cpp" line="252"/> <source>This will remove all finished downloads from this list (but NOT from disk).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="256"/> + <location filename="downloadlistwidget.cpp" line="261"/> <source>This will remove all installed downloads from this list (but NOT from disk).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="281"/> + <location filename="downloadlistwidget.cpp" line="287"/> <source>Install</source> <translation>Yükle</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="283"/> + <location filename="downloadlistwidget.cpp" line="289"/> <source>Query Info</source> <translation>Bilgi sorgula</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="285"/> + <location filename="downloadlistwidget.cpp" line="291"/> <source>Delete</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="286"/> + <location filename="downloadlistwidget.cpp" line="293"/> + <source>Un-Hide</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="295"/> <source>Remove from View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="291"/> + <location filename="downloadlistwidget.cpp" line="301"/> <source>Remove</source> <translation>Kaldır</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="288"/> + <location filename="downloadlistwidget.cpp" line="298"/> <source>Cancel</source> <translation>İptal et</translation> </message> @@ -511,32 +516,32 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="289"/> + <location filename="downloadlistwidget.cpp" line="299"/> <source>Pause</source> <translation>Duraklat</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="292"/> + <location filename="downloadlistwidget.cpp" line="302"/> <source>Resume</source> <translation>Devam et</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="296"/> + <location filename="downloadlistwidget.cpp" line="306"/> <source>Delete Installed...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="297"/> + <location filename="downloadlistwidget.cpp" line="307"/> <source>Delete All...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="299"/> + <location filename="downloadlistwidget.cpp" line="310"/> <source>Remove Installed...</source> <translation>Yüklenmişleri kaldır</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="300"/> + <location filename="downloadlistwidget.cpp" line="311"/> <source>Remove All...</source> <translation>Hepsini kaldır...</translation> </message> @@ -544,67 +549,80 @@ p, li { white-space: pre-wrap; } <context> <name>DownloadManager</name> <message> - <location filename="downloadmanager.cpp" line="125"/> + <location filename="downloadmanager.cpp" line="132"/> <source>failed to rename "%1" to "%2"</source> <translation>"%1"yi "%2" olarak yeniden adlandırma başarılı olamadı.</translation> </message> <message> - <location filename="downloadmanager.cpp" line="306"/> + <location filename="downloadmanager.cpp" line="322"/> <source>Download again?</source> <translation>Tekrar indir?</translation> </message> <message> - <location filename="downloadmanager.cpp" line="306"/> + <location filename="downloadmanager.cpp" line="322"/> <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="336"/> + <location filename="downloadmanager.cpp" line="354"/> <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="366"/> - <location filename="downloadmanager.cpp" line="585"/> - <location filename="downloadmanager.cpp" line="595"/> - <location filename="downloadmanager.cpp" line="604"/> - <location filename="downloadmanager.cpp" line="614"/> - <location filename="downloadmanager.cpp" line="624"/> + <location filename="downloadmanager.cpp" line="383"/> + <source>Wrong Game</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="383"/> + <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> + </message> + <message> + <location filename="downloadmanager.cpp" line="395"/> + <location filename="downloadmanager.cpp" line="462"/> <location filename="downloadmanager.cpp" line="634"/> - <location filename="downloadmanager.cpp" line="645"/> - <location filename="downloadmanager.cpp" line="654"/> - <location filename="downloadmanager.cpp" line="664"/> - <location filename="downloadmanager.cpp" line="679"/> + <location filename="downloadmanager.cpp" line="644"/> + <location filename="downloadmanager.cpp" line="653"/> + <location filename="downloadmanager.cpp" line="667"/> + <location filename="downloadmanager.cpp" line="677"/> + <location filename="downloadmanager.cpp" line="687"/> + <location filename="downloadmanager.cpp" line="697"/> + <location filename="downloadmanager.cpp" line="708"/> + <location filename="downloadmanager.cpp" line="716"/> + <location filename="downloadmanager.cpp" line="725"/> + <location filename="downloadmanager.cpp" line="735"/> + <location filename="downloadmanager.cpp" line="750"/> <source>invalid index</source> <translation>geçersiz dizin</translation> </message> <message> - <location filename="downloadmanager.cpp" line="384"/> + <location filename="downloadmanager.cpp" line="413"/> <source>failed to delete %1</source> <translation>%1 silinemedi</translation> </message> <message> - <location filename="downloadmanager.cpp" line="390"/> + <location filename="downloadmanager.cpp" line="419"/> <source>failed to delete meta file for %1</source> <translation>%1'in meta dosyası silinemedi</translation> </message> <message> - <location filename="downloadmanager.cpp" line="450"/> - <location filename="downloadmanager.cpp" line="468"/> - <location filename="downloadmanager.cpp" line="481"/> - <location filename="downloadmanager.cpp" line="494"/> - <location filename="downloadmanager.cpp" line="505"/> - <location filename="downloadmanager.cpp" line="540"/> + <location filename="downloadmanager.cpp" line="495"/> + <location filename="downloadmanager.cpp" line="513"/> + <location filename="downloadmanager.cpp" line="526"/> + <location filename="downloadmanager.cpp" line="543"/> + <location filename="downloadmanager.cpp" line="554"/> + <location filename="downloadmanager.cpp" line="589"/> <source>invalid index %1</source> <translation>geçeriz dizin %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="557"/> + <location filename="downloadmanager.cpp" line="606"/> <source>Please enter the nexus mod id</source> <translation>Lütfen nexus mod kimliğini girin</translation> </message> <message> - <location filename="downloadmanager.cpp" line="557"/> + <location filename="downloadmanager.cpp" line="606"/> <source>Mod ID:</source> <translation>Mod kimliği:</translation> </message> @@ -613,38 +631,38 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">geçersiz alfabetik dizin %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="899"/> + <location filename="downloadmanager.cpp" line="972"/> <source>Information updated</source> <translation>bilgi güncellendi</translation> </message> <message> - <location filename="downloadmanager.cpp" line="901"/> - <location filename="downloadmanager.cpp" line="915"/> + <location filename="downloadmanager.cpp" line="974"/> + <location filename="downloadmanager.cpp" line="988"/> <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> </message> <message> - <location filename="downloadmanager.cpp" line="903"/> + <location filename="downloadmanager.cpp" line="976"/> <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> </message> <message> - <location filename="downloadmanager.cpp" line="1032"/> + <location filename="downloadmanager.cpp" line="1109"/> <source>No download server available. Please try again later.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadmanager.cpp" line="1074"/> + <location filename="downloadmanager.cpp" line="1151"/> <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="1097"/> + <location filename="downloadmanager.cpp" line="1175"/> <source>Download failed: %1 (%2)</source> <translation>İndirme başarızı: %1 (%2)</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1174"/> + <location filename="downloadmanager.cpp" line="1254"/> <source>failed to re-open %1</source> <translation>%1 tekrar açılamadı</translation> </message> @@ -1095,12 +1113,12 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">mo_archive.dll yüklü değil: "%1"</translation> </message> <message> - <location filename="installationmanager.cpp" line="97"/> + <location filename="installationmanager.cpp" line="98"/> <source>Password required</source> <translation>Şifre gerekli</translation> </message> <message> - <location filename="installationmanager.cpp" line="97"/> + <location filename="installationmanager.cpp" line="98"/> <source>Password</source> <translation>Şifre</translation> </message> @@ -1122,8 +1140,8 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="installationmanager.cpp" line="164"/> - <location filename="installationmanager.cpp" line="252"/> - <location filename="installationmanager.cpp" line="530"/> + <location filename="installationmanager.cpp" line="248"/> + <location filename="installationmanager.cpp" line="525"/> <source>Extracting files</source> <translation>Dosyalar çıkarılıyor</translation> </message> @@ -1158,7 +1176,7 @@ Not: Bu yükleyici diğer modlardan haberdar olmayacak!</translation> <translation type="obsolete">yükleme başarısız (hatakodu %1)</translation> </message> <message> - <location filename="installationmanager.cpp" line="624"/> + <location filename="installationmanager.cpp" line="605"/> <source>File format "%1" not supported</source> <translation>Dosya formatı "%1" desteklenmiyor.</translation> </message> @@ -1167,32 +1185,32 @@ Not: Bu yükleyici diğer modlardan haberdar olmayacak!</translation> <translation type="obsolete">Arşiv "%1": %2 açılamadı.</translation> </message> <message> - <location filename="installationmanager.cpp" line="75"/> + <location filename="installationmanager.cpp" line="76"/> <source>archive.dll not loaded: "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="installationmanager.cpp" line="443"/> + <location filename="installationmanager.cpp" line="439"/> <source>failed to create backup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="installationmanager.cpp" line="449"/> + <location filename="installationmanager.cpp" line="445"/> <source>Mod Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="installationmanager.cpp" line="449"/> + <location filename="installationmanager.cpp" line="445"/> <source>Name</source> <translation type="unfinished">İsim</translation> </message> <message> - <location filename="installationmanager.cpp" line="502"/> + <location filename="installationmanager.cpp" line="498"/> <source>Invalid name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="installationmanager.cpp" line="503"/> + <location filename="installationmanager.cpp" line="499"/> <source>The name you entered is invalid, please enter a different one.</source> <translation type="unfinished"></translation> </message> @@ -1209,52 +1227,52 @@ Not: Bu yükleyici diğer modlardan haberdar olmayacak!</translation> <translation type="obsolete">Lüttfen NCC'yi yükleyiniz.</translation> </message> <message> - <location filename="installationmanager.cpp" line="750"/> + <location filename="installationmanager.cpp" line="731"/> <source>None of the available installer plugins were able to handle that archive</source> <translation type="unfinished"></translation> </message> <message> - <location filename="installationmanager.cpp" line="760"/> + <location filename="installationmanager.cpp" line="741"/> <source>no error</source> <translation>hata yok</translation> </message> <message> - <location filename="installationmanager.cpp" line="763"/> + <location filename="installationmanager.cpp" line="744"/> <source>7z.dll not found</source> <translation>7z.dll bulunamadı</translation> </message> <message> - <location filename="installationmanager.cpp" line="766"/> + <location filename="installationmanager.cpp" line="747"/> <source>7z.dll isn't valid</source> <translation>7z.dll geçerli değil</translation> </message> <message> - <location filename="installationmanager.cpp" line="769"/> + <location filename="installationmanager.cpp" line="750"/> <source>archive not found</source> <translation>arşiv bulunamadı</translation> </message> <message> - <location filename="installationmanager.cpp" line="772"/> + <location filename="installationmanager.cpp" line="753"/> <source>failed to open archive</source> <translation>arşiv açılamadı</translation> </message> <message> - <location filename="installationmanager.cpp" line="775"/> + <location filename="installationmanager.cpp" line="756"/> <source>unsupported archive type</source> <translation>desteklenmeyen arşiv türü</translation> </message> <message> - <location filename="installationmanager.cpp" line="778"/> + <location filename="installationmanager.cpp" line="759"/> <source>internal library error</source> <translation>içsel kütüphane hatası</translation> </message> <message> - <location filename="installationmanager.cpp" line="781"/> + <location filename="installationmanager.cpp" line="762"/> <source>archive invalid</source> <translation>arşiv geçersiz</translation> </message> <message> - <location filename="installationmanager.cpp" line="785"/> + <location filename="installationmanager.cpp" line="766"/> <source>unknown archive error</source> <translation>bilinmeyen arşiv hatası</translation> </message> @@ -1293,12 +1311,12 @@ Not: Bu yükleyici diğer modlardan haberdar olmayacak!</translation> <context> <name>MOApplication</name> <message> - <location filename="moapplication.cpp" line="60"/> + <location filename="moapplication.cpp" line="68"/> <source>an error occured: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="moapplication.cpp" line="65"/> + <location filename="moapplication.cpp" line="73"/> <source>an error occured</source> <translation type="unfinished"></translation> </message> @@ -1369,7 +1387,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="mainwindow.ui" line="405"/> <location filename="mainwindow.ui" line="722"/> - <location filename="mainwindow.ui" line="1027"/> + <location filename="mainwindow.ui" line="1035"/> <source>Namefilter</source> <translation type="unfinished"></translation> </message> @@ -1458,67 +1476,66 @@ BSAs checked here are loaded in such a way that your installation order is obeye <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="794"/> - <location filename="mainwindow.ui" line="868"/> + <location filename="mainwindow.ui" line="800"/> + <location filename="mainwindow.ui" line="869"/> <source>File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="799"/> - <location filename="mainwindow.ui" line="873"/> - <source>Mod</source> - <translation type="unfinished">Mod</translation> + <location filename="mainwindow.ui" line="808"/> + <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="807"/> - <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="unfinished"></translation> + <location filename="mainwindow.ui" line="874"/> + <source>Mod</source> + <translation type="unfinished">Mod</translation> </message> <message> - <location filename="mainwindow.ui" line="818"/> + <location filename="mainwindow.ui" line="819"/> <source>Data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="836"/> + <location filename="mainwindow.ui" line="837"/> <source>refresh data-directory overview</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="839"/> + <location filename="mainwindow.ui" line="840"/> <source>Refresh the overview. This may take a moment.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="842"/> - <location filename="mainwindow.cpp" line="3328"/> - <location filename="mainwindow.cpp" line="4059"/> + <location filename="mainwindow.ui" line="843"/> + <location filename="mainwindow.cpp" line="3612"/> + <location filename="mainwindow.cpp" line="4360"/> <source>Refresh</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="858"/> + <location filename="mainwindow.ui" line="859"/> <source>This is an overview of your data directory as visible to the game (and tools). </source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="883"/> - <location filename="mainwindow.ui" line="886"/> + <location filename="mainwindow.ui" line="884"/> + <location filename="mainwindow.ui" line="887"/> <source>Filter the above list so that only conflicts are displayed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="889"/> + <location filename="mainwindow.ui" line="890"/> <source>Show only conflicts</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="897"/> + <location filename="mainwindow.ui" line="898"/> <source>Saves</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="921"/> + <location filename="mainwindow.ui" line="922"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1529,155 +1546,160 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="935"/> + <location filename="mainwindow.ui" line="936"/> <source>Downloads</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="967"/> + <location filename="mainwindow.ui" line="968"/> <source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1020"/> + <location filename="mainwindow.ui" line="1021"/> <source>Compact</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1051"/> + <location filename="mainwindow.ui" line="1028"/> + <source>Show Hidden</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1059"/> <source>Tool Bar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1093"/> + <location filename="mainwindow.ui" line="1101"/> <source>Install Mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1096"/> + <location filename="mainwindow.ui" line="1104"/> <source>Install &Mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1099"/> + <location filename="mainwindow.ui" line="1107"/> <source>Install a new mod from an archive</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1102"/> + <location filename="mainwindow.ui" line="1110"/> <source>Ctrl+M</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1111"/> + <location filename="mainwindow.ui" line="1119"/> <source>Profiles</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1114"/> + <location filename="mainwindow.ui" line="1122"/> <source>&Profiles</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1117"/> + <location filename="mainwindow.ui" line="1125"/> <source>Configure Profiles</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1120"/> + <location filename="mainwindow.ui" line="1128"/> <source>Ctrl+P</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1129"/> + <location filename="mainwindow.ui" line="1137"/> <source>Executables</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1132"/> + <location filename="mainwindow.ui" line="1140"/> <source>&Executables</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1135"/> + <location filename="mainwindow.ui" line="1143"/> <source>Configure the executables that can be started through Mod Organizer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1138"/> + <location filename="mainwindow.ui" line="1146"/> <source>Ctrl+E</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1147"/> - <location filename="mainwindow.ui" line="1153"/> + <location filename="mainwindow.ui" line="1155"/> + <location filename="mainwindow.ui" line="1161"/> <source>Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1150"/> + <location filename="mainwindow.ui" line="1158"/> <source>&Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1156"/> + <location filename="mainwindow.ui" line="1164"/> <source>Ctrl+I</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1165"/> + <location filename="mainwindow.ui" line="1173"/> <source>Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1168"/> + <location filename="mainwindow.ui" line="1176"/> <source>&Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1171"/> + <location filename="mainwindow.ui" line="1179"/> <source>Configure settings and workarounds</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1174"/> + <location filename="mainwindow.ui" line="1182"/> <source>Ctrl+S</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1183"/> + <location filename="mainwindow.ui" line="1191"/> <source>Nexus</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1186"/> + <location filename="mainwindow.ui" line="1194"/> <source>Search nexus network for more mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1189"/> + <location filename="mainwindow.ui" line="1197"/> <source>Ctrl+N</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1201"/> - <location filename="mainwindow.cpp" line="4007"/> + <location filename="mainwindow.ui" line="1209"/> + <location filename="mainwindow.cpp" line="4308"/> <source>Update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1204"/> + <location filename="mainwindow.ui" line="1212"/> <source>Mod Organizer is up-to-date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1216"/> - <location filename="mainwindow.cpp" line="478"/> + <location filename="mainwindow.ui" line="1224"/> + <location filename="mainwindow.cpp" line="496"/> <source>No Problems</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1219"/> + <location filename="mainwindow.ui" line="1227"/> <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! @@ -1685,814 +1707,891 @@ Right now this has very limited functionality</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1231"/> - <location filename="mainwindow.ui" line="1234"/> + <location filename="mainwindow.ui" line="1239"/> + <location filename="mainwindow.ui" line="1242"/> <source>Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1237"/> + <location filename="mainwindow.ui" line="1245"/> <source>Ctrl+H</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1246"/> + <location filename="mainwindow.ui" line="1254"/> <source>Endorse MO</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1249"/> - <location filename="mainwindow.cpp" line="4087"/> + <location filename="mainwindow.ui" line="1257"/> + <location filename="mainwindow.cpp" line="4389"/> <source>Endorse Mod Organizer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="204"/> + <location filename="mainwindow.cpp" line="214"/> <source>Toolbar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="205"/> + <location filename="mainwindow.cpp" line="215"/> <source>Desktop</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="206"/> + <location filename="mainwindow.cpp" line="216"/> <source>Start Menu</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="475"/> + <location filename="mainwindow.cpp" line="492"/> <source>Problems</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="476"/> + <location filename="mainwindow.cpp" line="493"/> <source>There are potential problems with your setup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="479"/> + <location filename="mainwindow.cpp" line="497"/> <source>Everything seems to be in order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="531"/> + <location filename="mainwindow.cpp" line="549"/> <source>Help on UI</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="535"/> + <location filename="mainwindow.cpp" line="553"/> <source>Documentation Wiki</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="539"/> + <location filename="mainwindow.cpp" line="557"/> <source>Report Issue</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="543"/> + <location filename="mainwindow.cpp" line="561"/> <source>Tutorials</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="670"/> + <location filename="mainwindow.cpp" line="688"/> <source>failed to save load order: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="600"/> + <location filename="mainwindow.cpp" line="618"/> <source>failed to save archives order, do you have write access to "%1"?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="687"/> + <location filename="mainwindow.cpp" line="705"/> <source>Name</source> <translation type="unfinished">İsim</translation> </message> <message> - <location filename="mainwindow.cpp" line="688"/> + <location filename="mainwindow.cpp" line="706"/> <source>Please enter a name for the new profile</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="696"/> + <location filename="mainwindow.cpp" line="714"/> <source>failed to create profile: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="739"/> + <location filename="mainwindow.cpp" line="757"/> <source>Show tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="740"/> + <location filename="mainwindow.cpp" line="758"/> <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> </message> <message> - <location filename="mainwindow.cpp" line="769"/> + <location filename="mainwindow.cpp" line="787"/> <source>Downloads in progress</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="770"/> + <location filename="mainwindow.cpp" line="788"/> <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="816"/> + <location filename="mainwindow.cpp" line="834"/> <source>failed to read savegame: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="941"/> + <location filename="mainwindow.cpp" line="958"/> <source>Plugin "%1" failed: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1183"/> + <location filename="mainwindow.cpp" line="1249"/> <source>Failed to start "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1185"/> + <location filename="mainwindow.cpp" line="1251"/> <source>Waiting</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1185"/> + <location filename="mainwindow.cpp" line="1251"/> <source>Please press OK once you're logged into steam.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1197"/> + <location filename="mainwindow.cpp" line="1263"/> <source>"%1" not found</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1211"/> + <location filename="mainwindow.cpp" line="1277"/> <source>Start Steam?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1212"/> + <location filename="mainwindow.cpp" line="1278"/> <source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1426"/> + <location filename="mainwindow.cpp" line="1492"/> <source>Also in: <br></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1437"/> + <location filename="mainwindow.cpp" line="1503"/> <source>No conflict</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1552"/> + <location filename="mainwindow.cpp" line="1620"/> <source><Edit...></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1771"/> + <location filename="mainwindow.cpp" line="1844"/> <source>This bsa is enabled in the ini file so it may be required!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1778"/> + <location filename="mainwindow.cpp" line="1851"/> <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="1833"/> + <location filename="mainwindow.cpp" line="1906"/> <source>Activating Network Proxy</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1962"/> - <location filename="mainwindow.cpp" line="3755"/> + <location filename="mainwindow.cpp" line="2037"/> + <location filename="mainwindow.cpp" line="4056"/> <source>Installation successful</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1973"/> - <location filename="mainwindow.cpp" line="3768"/> + <location filename="mainwindow.cpp" line="2048"/> + <location filename="mainwindow.cpp" line="4069"/> <source>Configure Mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1974"/> - <location filename="mainwindow.cpp" line="3769"/> + <location filename="mainwindow.cpp" line="2049"/> + <location filename="mainwindow.cpp" line="4070"/> <source>This mod contains ini tweaks. Do you want to configure them now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1980"/> - <location filename="mainwindow.cpp" line="3775"/> + <location filename="mainwindow.cpp" line="2055"/> + <location filename="mainwindow.cpp" line="4076"/> <source>mod "%1" not found</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1983"/> - <location filename="mainwindow.cpp" line="3781"/> + <location filename="mainwindow.cpp" line="2058"/> + <location filename="mainwindow.cpp" line="4082"/> <source>Installation cancelled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1983"/> - <location filename="mainwindow.cpp" line="3781"/> + <location filename="mainwindow.cpp" line="2058"/> + <location filename="mainwindow.cpp" line="4082"/> <source>The mod was not installed completely.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2018"/> + <location filename="mainwindow.cpp" line="2207"/> <source>Some plugins could not be loaded</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2030"/> - <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="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2060"/> + <location filename="mainwindow.cpp" line="2256"/> <source>Choose Mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2061"/> + <location filename="mainwindow.cpp" line="2257"/> <source>Mod Archive</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2214"/> + <location filename="mainwindow.cpp" line="2410"/> <source>Start Tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2215"/> + <location filename="mainwindow.cpp" line="2411"/> <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> </message> <message> - <location filename="mainwindow.cpp" line="2360"/> - <location filename="mainwindow.cpp" line="3683"/> + <location filename="mainwindow.cpp" line="2566"/> + <location filename="mainwindow.cpp" line="3984"/> <source>Download started</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2391"/> + <location filename="mainwindow.cpp" line="2597"/> <source>failed to update mod list: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2418"/> + <location filename="mainwindow.cpp" line="2624"/> <source>failed to spawn notepad.exe: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2459"/> + <location filename="mainwindow.cpp" line="2665"/> <source>failed to open %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2537"/> + <location filename="mainwindow.cpp" line="2743"/> <source>failed to change origin name: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2676"/> + <location filename="mainwindow.cpp" line="2906"/> <source>Multiple esps activated, please check that they don't conflict.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3005"/> - <location filename="mainwindow.cpp" line="3339"/> + <location filename="mainwindow.cpp" line="3251"/> + <location filename="mainwindow.cpp" line="3623"/> <source>Create Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3006"/> + <location filename="mainwindow.cpp" line="3252"/> <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="3015"/> + <location filename="mainwindow.cpp" line="3261"/> <source>A mod with this name already exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3410"/> + <location filename="mainwindow.cpp" line="3710"/> <source><All></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2589"/> + <location filename="mainwindow.cpp" line="2818"/> <source><Checked></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="943"/> + <location filename="mainwindow.cpp" line="960"/> <source>Plugin "%1" failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1007"/> + <location filename="mainwindow.cpp" line="1026"/> <source>failed to init plugin %1: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2021"/> - <location filename="mainwindow.cpp" line="2038"/> + <location filename="mainwindow.cpp" line="1064"/> + <source>Plugin error</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1065"/> + <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="1704"/> + <source>Failed to refresh list of esps: %s</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2210"/> + <source>Too many esps and esms enabled</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2213"/> + <location filename="mainwindow.cpp" line="2234"/> <source>Description missing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2590"/> + <location filename="mainwindow.cpp" line="2222"/> + <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="2230"/> + <source>The game doesn't allow more than 256 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="2769"/> + <source>Failed to move "%1" from mod "%2" to "%3": %4</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2819"/> <source><Unchecked></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2591"/> + <location filename="mainwindow.cpp" line="2820"/> <source><Update></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2592"/> + <location filename="mainwindow.cpp" line="2821"/> <source><No category></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2593"/> + <location filename="mainwindow.cpp" line="2822"/> <source><Conflicted></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2626"/> + <location filename="mainwindow.cpp" line="2823"/> + <source><Not Endorsed></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2856"/> <source>failed to rename mod: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2639"/> + <location filename="mainwindow.cpp" line="2869"/> <source>Overwrite?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2640"/> + <location filename="mainwindow.cpp" line="2870"/> <source>This will replace the existing mod "%1". Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2643"/> + <location filename="mainwindow.cpp" line="2873"/> <source>failed to remove mod "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2647"/> - <location filename="mainwindow.cpp" line="3953"/> - <location filename="mainwindow.cpp" line="3977"/> + <location filename="mainwindow.cpp" line="2877"/> + <location filename="mainwindow.cpp" line="4254"/> + <location filename="mainwindow.cpp" line="4278"/> <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="2702"/> - <location filename="mainwindow.cpp" line="3243"/> - <location filename="mainwindow.cpp" line="3252"/> + <location filename="mainwindow.cpp" line="2932"/> + <location filename="mainwindow.cpp" line="3518"/> + <location filename="mainwindow.cpp" line="3526"/> <source>Confirm</source> <translation type="unfinished">Onayla</translation> </message> <message> - <location filename="mainwindow.cpp" line="2703"/> + <location filename="mainwindow.cpp" line="2933"/> <source>Remove the following mods?<br><ul>%1</ul></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2714"/> + <location filename="mainwindow.cpp" line="2944"/> <source>failed to remove mod: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2744"/> - <location filename="mainwindow.cpp" line="2747"/> + <location filename="mainwindow.cpp" line="2979"/> + <location filename="mainwindow.cpp" line="2982"/> <source>Failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2744"/> + <location filename="mainwindow.cpp" line="2979"/> <source>Installation file no longer exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2748"/> + <location filename="mainwindow.cpp" line="2983"/> <source>Mods installed with old versions of MO can't be reinstalled in this way.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2763"/> - <location filename="mainwindow.cpp" line="2790"/> + <location filename="mainwindow.cpp" line="2998"/> + <location filename="mainwindow.cpp" line="3025"/> <source>You need to be logged in with Nexus to endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2906"/> - <location filename="mainwindow.cpp" line="4335"/> + <location filename="mainwindow.cpp" line="3154"/> + <location filename="mainwindow.cpp" line="4638"/> <source>Extract BSA</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2907"/> + <location filename="mainwindow.cpp" line="3155"/> <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> </message> <message> - <location filename="mainwindow.cpp" line="2917"/> - <location filename="mainwindow.cpp" line="4292"/> - <location filename="mainwindow.cpp" line="4343"/> + <location filename="mainwindow.cpp" line="3165"/> + <location filename="mainwindow.cpp" line="4595"/> + <location filename="mainwindow.cpp" line="4646"/> <source>failed to read %1: %2</source> <translation type="unfinished">%1: %2 okunamadı</translation> </message> <message> - <location filename="mainwindow.cpp" line="2930"/> - <location filename="mainwindow.cpp" line="4354"/> + <location filename="mainwindow.cpp" line="3178"/> + <location filename="mainwindow.cpp" line="4657"/> <source>This archive contains invalid hashes. Some files may be broken.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2964"/> + <location filename="mainwindow.cpp" line="3212"/> <source>Nexus ID for this Mod is unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3243"/> + <location filename="mainwindow.cpp" line="3444"/> + <source>Continue?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3445"/> + <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="3465"/> + <source>Sorry</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3466"/> + <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="3518"/> <source>Really enable all visible mods?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3252"/> + <location filename="mainwindow.cpp" line="3526"/> <source>Really disable all visible mods?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3261"/> + <location filename="mainwindow.cpp" line="3534"/> <source>Choose what to export</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3263"/> + <location filename="mainwindow.cpp" line="3536"/> <source>Everything</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3263"/> + <location filename="mainwindow.cpp" line="3536"/> <source>All installed mods are included in the list</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3264"/> + <location filename="mainwindow.cpp" line="3537"/> <source>Active Mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3264"/> + <location filename="mainwindow.cpp" line="3537"/> <source>Only active (checked) mods from your current profile are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3265"/> + <location filename="mainwindow.cpp" line="3538"/> <source>Visible</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3265"/> + <location filename="mainwindow.cpp" line="3538"/> <source>All mods visible in the mod list are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3308"/> + <location filename="mainwindow.cpp" line="3581"/> <source>export failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3321"/> + <location filename="mainwindow.cpp" line="3605"/> <source>Install Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3323"/> + <location filename="mainwindow.cpp" line="3607"/> <source>Enable all visible</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3324"/> + <location filename="mainwindow.cpp" line="3608"/> <source>Disable all visible</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3326"/> + <location filename="mainwindow.cpp" line="3610"/> <source>Check all for update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3330"/> + <location filename="mainwindow.cpp" line="3614"/> <source>Export to csv...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3338"/> + <location filename="mainwindow.cpp" line="3622"/> <source>Sync to Mods...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3342"/> + <location filename="mainwindow.cpp" line="3626"/> <source>Restore Backup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3343"/> + <location filename="mainwindow.cpp" line="3627"/> <source>Remove Backup...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3345"/> + <location filename="mainwindow.cpp" line="3630"/> <source>Set Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3349"/> + <location filename="mainwindow.cpp" line="3635"/> <source>Primary Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3353"/> + <location filename="mainwindow.cpp" line="3642"/> + <source>Change versioning scheme</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3646"/> + <source>Un-ignore update</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3648"/> + <source>Ignore update</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3653"/> <source>Rename Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3354"/> + <location filename="mainwindow.cpp" line="3654"/> <source>Remove Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3355"/> + <location filename="mainwindow.cpp" line="3655"/> <source>Reinstall Mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3358"/> + <location filename="mainwindow.cpp" line="3658"/> <source>Un-Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3361"/> - <location filename="mainwindow.cpp" line="3365"/> + <location filename="mainwindow.cpp" line="3661"/> + <location filename="mainwindow.cpp" line="3665"/> <source>Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3362"/> + <location filename="mainwindow.cpp" line="3662"/> <source>Won't endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3368"/> + <location filename="mainwindow.cpp" line="3668"/> <source>Endorsement state unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3375"/> + <location filename="mainwindow.cpp" line="3675"/> <source>Ignore missing data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3378"/> + <location filename="mainwindow.cpp" line="3678"/> <source>Visit on Nexus</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3379"/> + <location filename="mainwindow.cpp" line="3679"/> <source>Open in explorer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3382"/> + <location filename="mainwindow.cpp" line="3682"/> <source>Information...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3388"/> - <location filename="mainwindow.cpp" line="4514"/> + <location filename="mainwindow.cpp" line="3688"/> + <location filename="mainwindow.cpp" line="4842"/> <source>Exception: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3390"/> - <location filename="mainwindow.cpp" line="4516"/> + <location filename="mainwindow.cpp" line="3690"/> + <location filename="mainwindow.cpp" line="4844"/> <source>Unknown exception</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3412"/> + <location filename="mainwindow.cpp" line="3712"/> <source><Multiple></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3524"/> + <location filename="mainwindow.cpp" line="3824"/> <source>Fix Mods...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3548"/> - <location filename="mainwindow.cpp" line="3579"/> + <location filename="mainwindow.cpp" line="3848"/> + <location filename="mainwindow.cpp" line="3879"/> <source>failed to remove %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3563"/> - <location filename="mainwindow.cpp" line="3594"/> + <location filename="mainwindow.cpp" line="3863"/> + <location filename="mainwindow.cpp" line="3894"/> <source>failed to create %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3615"/> + <location filename="mainwindow.cpp" line="3916"/> <source>Can't change download directory while downloads are in progress!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3686"/> + <location filename="mainwindow.cpp" line="3987"/> <source>Download failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3830"/> + <location filename="mainwindow.cpp" line="4131"/> <source>failed to write to file %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3836"/> + <location filename="mainwindow.cpp" line="4137"/> <source>%1 written</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3875"/> + <location filename="mainwindow.cpp" line="4176"/> <source>Select binary</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3875"/> + <location filename="mainwindow.cpp" line="4176"/> <source>Binary</source> <translation type="unfinished">İkili değer</translation> </message> <message> - <location filename="mainwindow.cpp" line="3901"/> + <location filename="mainwindow.cpp" line="4202"/> <source>Enter Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3902"/> + <location filename="mainwindow.cpp" line="4203"/> <source>Please enter a name for the executable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3913"/> + <location filename="mainwindow.cpp" line="4214"/> <source>Not an executable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3913"/> + <location filename="mainwindow.cpp" line="4214"/> <source>This is not a recognized executable.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3938"/> - <location filename="mainwindow.cpp" line="3963"/> + <location filename="mainwindow.cpp" line="4239"/> + <location filename="mainwindow.cpp" line="4264"/> <source>Replace file?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3938"/> + <location filename="mainwindow.cpp" line="4239"/> <source>There already is a hidden version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3941"/> - <location filename="mainwindow.cpp" line="3966"/> + <location filename="mainwindow.cpp" line="4242"/> + <location filename="mainwindow.cpp" line="4267"/> <source>File operation failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3941"/> - <location filename="mainwindow.cpp" line="3966"/> + <location filename="mainwindow.cpp" line="4242"/> + <location filename="mainwindow.cpp" line="4267"/> <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3963"/> + <location filename="mainwindow.cpp" line="4264"/> <source>There already is a visible version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4009"/> + <location filename="mainwindow.cpp" line="4310"/> <source>Update available</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4046"/> + <location filename="mainwindow.cpp" line="4347"/> <source>Open/Execute</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4047"/> + <location filename="mainwindow.cpp" line="4348"/> <source>Add as Executable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4051"/> + <location filename="mainwindow.cpp" line="4352"/> <source>Un-Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4053"/> + <location filename="mainwindow.cpp" line="4354"/> <source>Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4058"/> + <location filename="mainwindow.cpp" line="4359"/> <source>Write To File...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4088"/> + <location filename="mainwindow.cpp" line="4390"/> <source>Do you want to endorse Mod Organizer on %1 now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4505"/> + <location filename="mainwindow.cpp" line="4803"/> + <source>Remove</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4833"/> <source>Unlock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4508"/> + <location filename="mainwindow.cpp" line="4836"/> <source>Lock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4223"/> + <location filename="mainwindow.cpp" line="4526"/> <source>Request to Nexus failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4230"/> - <location filename="mainwindow.cpp" line="4247"/> + <location filename="mainwindow.cpp" line="4533"/> + <location filename="mainwindow.cpp" line="4550"/> <source>login successful</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4256"/> + <location filename="mainwindow.cpp" line="4559"/> <source>login failed: %1. Trying to download anyway</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4262"/> + <location filename="mainwindow.cpp" line="4565"/> <source>login failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4271"/> + <location filename="mainwindow.cpp" line="4574"/> <source>login failed: %1. You need to log-in with Nexus to update MO.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4304"/> + <location filename="mainwindow.cpp" line="4607"/> <source>Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4304"/> + <location filename="mainwindow.cpp" line="4607"/> <source>failed to extract %1 (errorcode %2)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4399"/> + <location filename="mainwindow.cpp" line="4702"/> <source>Extract...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4449"/> + <location filename="mainwindow.cpp" line="4758"/> <source>Edit Categories...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4485"/> + <location filename="mainwindow.cpp" line="4813"/> <source>Enable all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4486"/> + <location filename="mainwindow.cpp" line="4814"/> <source>Disable all</source> <translation type="unfinished"></translation> </message> @@ -2526,7 +2625,7 @@ Please enter a name: </source> <context> <name>ModInfoBackup</name> <message> - <location filename="modinfo.cpp" line="784"/> + <location filename="modinfo.cpp" line="813"/> <source>This is the backup of a mod</source> <translation type="unfinished"></translation> </message> @@ -2555,7 +2654,7 @@ Please enter a name: </source> </message> <message> <location filename="modinfodialog.ui" line="64"/> - <location filename="modinfodialog.ui" line="149"/> + <location filename="modinfodialog.ui" line="152"/> <source>Save</source> <translation>Kaydet</translation> </message> @@ -2575,51 +2674,49 @@ Please enter a name: </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="143"/> + <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="146"/> + <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="159"/> + <location filename="modinfodialog.ui" line="162"/> <source>Images</source> <translation>Resimler</translation> </message> <message> - <location filename="modinfodialog.ui" line="214"/> + <location filename="modinfodialog.ui" line="217"/> <source>Images located in the mod.</source> <translation>Modun içinde yer alan resimler</translation> </message> <message> - <location filename="modinfodialog.ui" line="217"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" 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><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <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> </message> <message> - <location filename="modinfodialog.ui" line="254"/> - <location filename="modinfodialog.ui" line="277"/> + <location filename="modinfodialog.ui" line="244"/> + <location filename="modinfodialog.ui" line="263"/> <source>Optional ESPs</source> <translation>İsteğe bağlı ESP'ler</translation> </message> <message> - <location filename="modinfodialog.ui" line="260"/> + <location filename="modinfodialog.ui" line="250"/> <source>List of esps and esms that can not be loaded by the game.</source> <translation>Oyun tarafından yüklenemeyen espler ve esmlerin bir listesi.</translation> </message> <message> - <location filename="modinfodialog.ui" line="263"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -2628,7 +2725,7 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">They usually contain optional functionality, see the readme.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Most mods do not have optional esps, so chances are good you are looking at an empty list.</span></p></body></html></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <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;"> @@ -2638,103 +2735,116 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">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="292"/> + <location filename="modinfodialog.ui" line="220"/> + <source>This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="253"/> + <source>List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window. +They usually contain optional functionality, see the readme. + +Most mods do not have optional esps, so chances are good you are looking at an empty list.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="278"/> <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="295"/> + <location filename="modinfodialog.ui" line="281"/> <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="321"/> + <location filename="modinfodialog.ui" line="307"/> <source>Move a file to the data directory.</source> <translation>Dosyayı veri klasörüne taşı.</translation> </message> <message> - <location filename="modinfodialog.ui" line="324"/> + <location filename="modinfodialog.ui" line="310"/> <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> </message> <message> - <location filename="modinfodialog.ui" line="359"/> + <location filename="modinfodialog.ui" line="345"/> <source>ESPs in the data directory and thus visible to the game.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="362"/> + <location filename="modinfodialog.ui" line="348"/> <source>These are the mod files that are in the (virtual) data directory of your game and will thus be selecteable in the esp list in the main window.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="369"/> + <location filename="modinfodialog.ui" line="355"/> <source>Available ESPs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="377"/> + <location filename="modinfodialog.ui" line="363"/> <source>Conflicts</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="385"/> + <location filename="modinfodialog.ui" line="371"/> <source>The following conflicted files are provided by this mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="432"/> - <location filename="modinfodialog.ui" line="479"/> + <location filename="modinfodialog.ui" line="418"/> + <location filename="modinfodialog.ui" line="465"/> <source>File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="437"/> + <location filename="modinfodialog.ui" line="423"/> <source>Overwritten Mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="447"/> + <location filename="modinfodialog.ui" line="433"/> <source>The following conflicted files are provided by other mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="484"/> + <location filename="modinfodialog.ui" line="470"/> <source>Providing Mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="494"/> + <location filename="modinfodialog.ui" line="480"/> <source>Non-Conflicted files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="514"/> + <location filename="modinfodialog.ui" line="500"/> <source>Categories</source> <translation type="unfinished">Kategoriler</translation> </message> <message> - <location filename="modinfodialog.ui" line="537"/> + <location filename="modinfodialog.ui" line="523"/> <source>Primary Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="554"/> + <location filename="modinfodialog.ui" line="540"/> <source>Nexus Info</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="562"/> + <location filename="modinfodialog.ui" line="548"/> <source>Mod ID</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="569"/> + <location filename="modinfodialog.ui" line="555"/> <source>Mod ID for this mod on Nexus.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="572"/> + <location filename="modinfodialog.ui" line="558"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -2743,7 +2853,7 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="596"/> + <location filename="modinfodialog.ui" line="582"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -2752,27 +2862,27 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="603"/> + <location filename="modinfodialog.ui" line="589"/> <source>Version</source> <translation type="unfinished">Versiyon</translation> </message> <message> - <location filename="modinfodialog.ui" line="633"/> + <location filename="modinfodialog.ui" line="619"/> <source>Refresh</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="636"/> + <location filename="modinfodialog.ui" line="622"/> <source>Refresh all information from Nexus.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="650"/> + <location filename="modinfodialog.ui" line="636"/> <source>Description</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="665"/> + <location filename="modinfodialog.ui" line="651"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -2782,31 +2892,32 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> + <location filename="modinfodialog.cpp" line="1179"/> <source>Name</source> - <translation type="obsolete">İsim</translation> + <translation type="unfinished">İsim</translation> </message> <message> - <location filename="modinfodialog.ui" line="701"/> + <location filename="modinfodialog.ui" line="687"/> <source>Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="715"/> + <location filename="modinfodialog.ui" line="701"/> <source>Notes</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="725"/> + <location filename="modinfodialog.ui" line="711"/> <source>Filetree</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="734"/> + <location filename="modinfodialog.ui" line="720"/> <source>A directory view of this mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="737"/> + <location filename="modinfodialog.ui" line="723"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -2816,17 +2927,17 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="764"/> + <location filename="modinfodialog.ui" line="750"/> <source>Previous</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="771"/> + <location filename="modinfodialog.ui" line="757"/> <source>Next</source> <translation type="unfinished">Sonraki</translation> </message> <message> - <location filename="modinfodialog.ui" line="791"/> + <location filename="modinfodialog.ui" line="777"/> <source>Close</source> <translation type="unfinished">Kapat</translation> </message> @@ -2861,166 +2972,192 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="352"/> - <location filename="modinfodialog.cpp" line="367"/> + <location filename="modinfodialog.cpp" line="354"/> + <location filename="modinfodialog.cpp" line="369"/> <source>Save changes?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="563"/> + <location filename="modinfodialog.cpp" line="570"/> <source>File Exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="563"/> + <location filename="modinfodialog.cpp" line="570"/> <source>A file with that name exists, please enter a new one</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="580"/> + <location filename="modinfodialog.cpp" line="587"/> <source>failed to move file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="605"/> + <location filename="modinfodialog.cpp" line="612"/> <source>failed to create directory "optional"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="643"/> - <location filename="modinfodialog.cpp" line="1155"/> + <location filename="modinfodialog.cpp" line="650"/> + <location filename="modinfodialog.cpp" line="1156"/> <source>Info requested, please wait</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="758"/> + <location filename="modinfodialog.cpp" line="765"/> <source>(description incomplete, please visit nexus)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="713"/> + <location filename="modinfodialog.cpp" line="1179"/> + <source>Please enter a name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1183"/> + <location filename="modinfodialog.cpp" line="1186"/> + <source>Error</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1183"/> + <source>Invalid name. Must be a valid file name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1186"/> + <source>A tweak by that name exists</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1198"/> + <source>Create Tweak</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="720"/> <source>Current Version: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="717"/> + <location filename="modinfodialog.cpp" line="724"/> <source>No update available</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="697"/> + <location filename="modinfodialog.cpp" line="704"/> <source>Main</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="352"/> - <location filename="modinfodialog.cpp" line="367"/> + <location filename="modinfodialog.cpp" line="354"/> + <location filename="modinfodialog.cpp" line="369"/> <source>Save changes to "%1"?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="698"/> + <location filename="modinfodialog.cpp" line="705"/> <source>Update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="699"/> + <location filename="modinfodialog.cpp" line="706"/> <source>Optional</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="700"/> + <location filename="modinfodialog.cpp" line="707"/> <source>Old</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="701"/> + <location filename="modinfodialog.cpp" line="708"/> <source>Misc</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="702"/> + <location filename="modinfodialog.cpp" line="709"/> <source>Unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="779"/> + <location filename="modinfodialog.cpp" line="780"/> <source><a href="%1">Visit on Nexus</a></source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="869"/> - <location filename="modinfodialog.cpp" line="874"/> + <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="858"/> + <location filename="modinfodialog.cpp" line="859"/> <source>Failed to delete %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="869"/> + <location filename="modinfodialog.cpp" line="870"/> <source>Are sure you want to delete "%1"?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="874"/> + <location filename="modinfodialog.cpp" line="875"/> <source>Are sure you want to delete the selected files?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="948"/> - <location filename="modinfodialog.cpp" line="954"/> + <location filename="modinfodialog.cpp" line="949"/> + <location filename="modinfodialog.cpp" line="955"/> <source>New Folder</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="960"/> + <location filename="modinfodialog.cpp" line="961"/> <source>Failed to create "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1064"/> - <location filename="modinfodialog.cpp" line="1088"/> + <location filename="modinfodialog.cpp" line="1065"/> + <location filename="modinfodialog.cpp" line="1089"/> <source>Replace file?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1064"/> + <location filename="modinfodialog.cpp" line="1065"/> <source>There already is a hidden version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1067"/> - <location filename="modinfodialog.cpp" line="1091"/> + <location filename="modinfodialog.cpp" line="1068"/> + <location filename="modinfodialog.cpp" line="1092"/> <source>File operation failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1067"/> - <location filename="modinfodialog.cpp" line="1091"/> + <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"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1078"/> - <location filename="modinfodialog.cpp" line="1101"/> + <location filename="modinfodialog.cpp" line="1079"/> + <location filename="modinfodialog.cpp" line="1102"/> <source>failed to rename %1 to %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1088"/> + <location filename="modinfodialog.cpp" line="1089"/> <source>There already is a visible version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1135"/> + <location filename="modinfodialog.cpp" line="1136"/> <source>Un-Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1137"/> + <location filename="modinfodialog.cpp" line="1138"/> <source>Hide</source> <translation type="unfinished"></translation> </message> @@ -3028,12 +3165,7 @@ p, li { white-space: pre-wrap; } <context> <name>ModInfoOverwrite</name> <message> - <location filename="modinfo.h" line="812"/> - <source>Overwrite</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfo.cpp" line="821"/> + <location filename="modinfo.cpp" line="859"/> <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source> <translation type="unfinished"></translation> </message> @@ -3041,17 +3173,17 @@ p, li { white-space: pre-wrap; } <context> <name>ModInfoRegular</name> <message> - <location filename="modinfo.cpp" line="392"/> + <location filename="modinfo.cpp" line="393"/> <source>failed to write %1/meta.ini: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfo.cpp" line="625"/> + <location filename="modinfo.cpp" line="654"/> <source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfo.cpp" line="629"/> + <location filename="modinfo.cpp" line="658"/> <source>Categories: <br></source> <translation type="unfinished"></translation> </message> @@ -3059,16 +3191,11 @@ p, li { white-space: pre-wrap; } <context> <name>ModList</name> <message> - <location filename="modlist.cpp" line="662"/> + <location filename="modlist.cpp" line="775"/> <source>Confirm</source> <translation type="unfinished">Onayla</translation> </message> <message> - <location filename="modlist.cpp" line="94"/> - <source>Overwrite</source> - <translation type="unfinished"></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> @@ -3109,27 +3236,27 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="736"/> + <location filename="modlist.cpp" line="849"/> <source>Category of the mod.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="737"/> + <location filename="modlist.cpp" line="850"/> <source>Id of the mod as used on Nexus.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="738"/> + <location filename="modlist.cpp" line="851"/> <source>Emblemes to highlight things that might require attention.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="298"/> + <location filename="modlist.cpp" line="317"/> <source>Categories: <br></source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="294"/> + <location filename="modlist.cpp" line="307"/> <source>installed version: %1, newest version: %2</source> <translation type="unfinished"></translation> </message> @@ -3138,83 +3265,88 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">İsim</translation> </message> <message> - <location filename="modlist.cpp" line="719"/> + <location filename="modlist.cpp" line="832"/> <source>Version</source> <translation type="unfinished">Versiyon</translation> </message> <message> - <location filename="modlist.cpp" line="733"/> + <location filename="modlist.cpp" line="846"/> <source>Version of the mod (if available)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="720"/> + <location filename="modlist.cpp" line="833"/> <source>Priority</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="184"/> + <location filename="modlist.cpp" line="196"/> <source>invalid</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="327"/> + <location filename="modlist.cpp" line="309"/> + <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="346"/> <source>Invalid name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="603"/> + <location filename="modlist.cpp" line="716"/> <source>drag&drop failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="717"/> + <location filename="modlist.cpp" line="830"/> <source>Flags</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="718"/> + <location filename="modlist.cpp" line="831"/> <source>Mod Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="721"/> + <location filename="modlist.cpp" line="834"/> <source>Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="722"/> + <location filename="modlist.cpp" line="835"/> <source>Nexus ID</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="723"/> + <location filename="modlist.cpp" line="836"/> <source>Installation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="724"/> - <location filename="modlist.cpp" line="740"/> + <location filename="modlist.cpp" line="837"/> + <location filename="modlist.cpp" line="853"/> <source>unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="732"/> + <location filename="modlist.cpp" line="845"/> <source>Name of your mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="734"/> + <location filename="modlist.cpp" line="847"/> <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> </message> <message> - <location filename="modlist.cpp" line="739"/> + <location filename="modlist.cpp" line="852"/> <source>Time this mod was installed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="662"/> + <location filename="modlist.cpp" line="775"/> <source>Are you sure you want to remove "%1"?</source> <translation type="unfinished"></translation> </message> @@ -3235,12 +3367,12 @@ p, li { white-space: pre-wrap; } <context> <name>MyFileSystemModel</name> <message> - <location filename="overwriteinfodialog.cpp" line="48"/> + <location filename="overwriteinfodialog.cpp" line="47"/> <source>Overwrites</source> <translation type="unfinished"></translation> </message> <message> - <location filename="overwriteinfodialog.cpp" line="60"/> + <location filename="overwriteinfodialog.cpp" line="59"/> <source>not implemented</source> <translation type="unfinished"></translation> </message> @@ -3249,11 +3381,16 @@ p, li { white-space: pre-wrap; } <name>NXMAccessManager</name> <message> <location filename="nxmaccessmanager.cpp" line="130"/> + <source>Logging into Nexus</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="nxmaccessmanager.cpp" line="145"/> <source>timeout</source> <translation type="unfinished"></translation> </message> <message> - <location filename="nxmaccessmanager.cpp" line="168"/> + <location filename="nxmaccessmanager.cpp" line="185"/> <source>Please check your password</source> <translation type="unfinished"></translation> </message> @@ -3261,17 +3398,17 @@ p, li { white-space: pre-wrap; } <context> <name>NexusInterface</name> <message> - <location filename="nexusinterface.cpp" line="201"/> + <location filename="nexusinterface.cpp" line="219"/> <source>Failed to guess mod id for "%1", please pick the correct one</source> <translation type="unfinished"></translation> </message> <message> - <location filename="nexusinterface.cpp" line="421"/> + <location filename="nexusinterface.cpp" line="440"/> <source>empty response</source> <translation type="unfinished"></translation> </message> <message> - <location filename="nexusinterface.cpp" line="450"/> + <location filename="nexusinterface.cpp" line="469"/> <source>invalid response</source> <translation type="unfinished"></translation> </message> @@ -3309,34 +3446,34 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="overwriteinfodialog.cpp" line="137"/> + <location filename="overwriteinfodialog.cpp" line="136"/> <source>Failed to delete "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="overwriteinfodialog.cpp" line="148"/> - <location filename="overwriteinfodialog.cpp" line="153"/> + <location filename="overwriteinfodialog.cpp" line="147"/> + <location filename="overwriteinfodialog.cpp" line="152"/> <source>Confirm</source> <translation type="unfinished">Onayla</translation> </message> <message> - <location filename="overwriteinfodialog.cpp" line="148"/> + <location filename="overwriteinfodialog.cpp" line="147"/> <source>Are sure you want to delete "%1"?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="overwriteinfodialog.cpp" line="153"/> + <location filename="overwriteinfodialog.cpp" line="152"/> <source>Are sure you want to delete the selected files?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="overwriteinfodialog.cpp" line="203"/> - <location filename="overwriteinfodialog.cpp" line="209"/> + <location filename="overwriteinfodialog.cpp" line="202"/> + <location filename="overwriteinfodialog.cpp" line="208"/> <source>New Folder</source> <translation type="unfinished"></translation> </message> <message> - <location filename="overwriteinfodialog.cpp" line="215"/> + <location filename="overwriteinfodialog.cpp" line="214"/> <source>Failed to create "%1"</source> <translation type="unfinished"></translation> </message> @@ -3344,90 +3481,105 @@ p, li { white-space: pre-wrap; } <context> <name>PluginList</name> <message> - <location filename="pluginlist.cpp" line="98"/> + <location filename="pluginlist.cpp" line="103"/> <source>Mod Index</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="99"/> - <location filename="pluginlist.cpp" line="111"/> + <location filename="pluginlist.cpp" line="104"/> + <location filename="pluginlist.cpp" line="116"/> <source>unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="107"/> + <location filename="pluginlist.cpp" line="112"/> <source>Name of your mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="108"/> + <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"></translation> </message> <message> - <location filename="pluginlist.cpp" line="110"/> + <location filename="pluginlist.cpp" line="115"/> <source>The modindex determins the formids of objects originating from this mods.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="208"/> + <location filename="pluginlist.cpp" line="151"/> + <source>failed to update esp info for file %1 (source id: %2), error: %3</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="pluginlist.cpp" line="218"/> <source>esp not found: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="215"/> - <location filename="pluginlist.cpp" line="227"/> + <location filename="pluginlist.cpp" line="225"/> + <location filename="pluginlist.cpp" line="237"/> <source>Confirm</source> <translation type="unfinished">Onayla</translation> </message> <message> - <location filename="pluginlist.cpp" line="215"/> + <location filename="pluginlist.cpp" line="225"/> <source>Really enable all plugins?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="227"/> + <location filename="pluginlist.cpp" line="237"/> <source>Really disable all plugins?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="353"/> + <location filename="pluginlist.cpp" line="365"/> <source>The file containing locked plugin indices is broken</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="366"/> - <location filename="pluginlist.cpp" line="405"/> + <location filename="pluginlist.cpp" line="378"/> + <location filename="pluginlist.cpp" line="417"/> <source>failed to open output file: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="393"/> + <location filename="pluginlist.cpp" line="405"/> <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="737"/> + <location filename="pluginlist.cpp" line="755"/> + <source>Missing Masters</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="pluginlist.cpp" line="761"/> + <source>Enabled Masters</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="pluginlist.cpp" line="873"/> <source>failed to restore load order for %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="631"/> + <location filename="pluginlist.cpp" line="751"/> <source>This plugin can't be disabled (enforced by the game)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="633"/> + <location filename="pluginlist.cpp" line="753"/> <source>Origin: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="96"/> + <location filename="pluginlist.cpp" line="101"/> <source>Name</source> <translation type="unfinished">İsim</translation> </message> <message> - <location filename="pluginlist.cpp" line="97"/> + <location filename="pluginlist.cpp" line="102"/> <source>Priority</source> <translation type="unfinished"></translation> </message> @@ -3444,22 +3596,28 @@ p, li { white-space: pre-wrap; } <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" 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;"> +</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> + <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: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></oldsource> <translation type="unfinished"></translation> </message> <message> - <location filename="problemsdialog.cpp" line="29"/> - <source>fix</source> - <translation type="unfinished"></translation> + <location filename="problemsdialog.ui" line="75"/> + <source>Close</source> + <translation type="unfinished">Kapat</translation> </message> <message> - <location filename="problemsdialog.cpp" line="30"/> + <location filename="problemsdialog.cpp" line="44"/> + <location filename="problemsdialog.cpp" line="45"/> <source>Fix</source> <translation type="unfinished"></translation> </message> <message> - <location filename="problemsdialog.cpp" line="34"/> + <location filename="problemsdialog.cpp" line="49"/> <source>No guided fix</source> <translation type="unfinished"></translation> </message> @@ -3467,72 +3625,82 @@ p, li { white-space: pre-wrap; } <context> <name>Profile</name> <message> - <location filename="profile.cpp" line="56"/> + <location filename="profile.cpp" line="58"/> <source>invalid profile name %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="60"/> + <location filename="profile.cpp" line="62"/> <source>failed to create %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="152"/> + <location filename="profile.cpp" line="155"/> + <source>failed to open temporary file</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profile.cpp" line="192"/> <source>failed to open "%1" for writing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="189"/> + <location filename="profile.cpp" line="198"/> + <source>failed to write mod list: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profile.cpp" line="209"/> <source>failed to update tweaked ini file, wrong settings may be used: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="219"/> + <location filename="profile.cpp" line="239"/> <source>failed to create tweaked ini: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="271"/> - <location filename="profile.cpp" line="300"/> - <location filename="profile.cpp" line="384"/> - <location filename="profile.cpp" line="402"/> - <location filename="profile.cpp" line="412"/> + <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> </message> <message> - <location filename="profile.cpp" line="365"/> + <location filename="profile.cpp" line="387"/> <source>Overwrite directory couldn't be parsed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="374"/> + <location filename="profile.cpp" line="396"/> <source>invalid priority %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="561"/> + <location filename="profile.cpp" line="584"/> <source>failed to parse ini file (%1)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="589"/> + <location filename="profile.cpp" line="612"/> <source>failed to parse ini file (%1): %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="613"/> - <location filename="profile.cpp" line="650"/> + <location filename="profile.cpp" line="636"/> + <location filename="profile.cpp" line="673"/> <source>failed to modify "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="678"/> + <location filename="profile.cpp" line="701"/> <source>Delete savegames?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="679"/> + <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"></translation> </message> @@ -3701,37 +3869,57 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="profilesdialog.cpp" line="160"/> + <location filename="profilesdialog.cpp" line="162"/> <source>failed to copy profile: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profilesdialog.cpp" line="167"/> + <location filename="profilesdialog.cpp" line="165"/> + <source>Invalid name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.cpp" line="165"/> + <source>Invalid profile name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.cpp" line="172"/> <source>Confirm</source> <translation type="unfinished">Onayla</translation> </message> <message> - <location filename="profilesdialog.cpp" line="167"/> - <source>Are you sure you want to remove this profile?</source> + <location filename="profilesdialog.cpp" line="172"/> + <source>Are you sure you want to remove this profile (including local savegames if any)?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profilesdialog.cpp" line="196"/> + <location filename="profilesdialog.cpp" line="182"/> + <source>Profile broken</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.cpp" line="183"/> + <source>This profile you'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> + <location filename="profilesdialog.cpp" line="215"/> <source>Rename Profile</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profilesdialog.cpp" line="196"/> + <location filename="profilesdialog.cpp" line="215"/> <source>New Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profilesdialog.cpp" line="233"/> + <location filename="profilesdialog.cpp" line="252"/> <source>failed to change archive invalidation state: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profilesdialog.cpp" line="270"/> + <location filename="profilesdialog.cpp" line="289"/> <source>failed to determine if invalidation is active: %1</source> <translation type="unfinished"></translation> </message> @@ -3739,20 +3927,20 @@ p, li { white-space: pre-wrap; } <context> <name>QObject</name> <message> - <location filename="categories.cpp" line="133"/> + <location filename="categories.cpp" line="140"/> <source>Failed to save custom categories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="categories.cpp" line="210"/> - <location filename="categories.cpp" line="245"/> - <location filename="categories.cpp" line="255"/> - <location filename="categories.cpp" line="265"/> + <location filename="categories.cpp" line="217"/> + <location filename="categories.cpp" line="252"/> + <location filename="categories.cpp" line="262"/> + <location filename="categories.cpp" line="272"/> <source>invalid index %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="categories.cpp" line="276"/> + <location filename="categories.cpp" line="283"/> <source>invalid category id %1</source> <translation type="unfinished"></translation> </message> @@ -3768,7 +3956,7 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="installationmanager.cpp" line="63"/> + <location filename="installationmanager.cpp" line="64"/> <location filename="selfupdater.cpp" line="52"/> <source>invalid 7-zip32.dll: %1</source> <translation type="unfinished"></translation> @@ -3838,92 +4026,97 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="93"/> + <location filename="profile.cpp" line="95"/> <source>"%1" is missing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="main.cpp" line="134"/> + <location filename="main.cpp" line="138"/> <source>Permissions required</source> <translation type="unfinished"></translation> </message> <message> - <location filename="main.cpp" line="234"/> - <location filename="main.cpp" line="272"/> - <source>Woops</source> + <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"></translation> </message> <message> - <location filename="main.cpp" line="135"/> - <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> + <location filename="main.cpp" line="230"/> + <location filename="main.cpp" line="268"/> + <source>Woops</source> <translation type="unfinished"></translation> </message> <message> - <location filename="main.cpp" line="235"/> + <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> </message> <message> - <location filename="main.cpp" line="273"/> + <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> </message> <message> - <location filename="main.cpp" line="335"/> - <location filename="settings.cpp" line="462"/> + <location filename="main.cpp" line="331"/> + <location filename="settings.cpp" line="528"/> <source>Mod Organizer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="main.cpp" line="335"/> + <location filename="main.cpp" line="331"/> <source>An instance of Mod Organizer is already running</source> <translation type="unfinished"></translation> </message> <message> - <location filename="main.cpp" line="357"/> + <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"></translation> </message> <message> - <location filename="main.cpp" line="360"/> - <location filename="main.cpp" line="389"/> + <location filename="main.cpp" line="356"/> + <location filename="main.cpp" line="385"/> <source>Please select the game to manage</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="752"/> + <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"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="770"/> <source>Please use "Help" from the toolbar to get usage instructions to all elements</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1470"/> - <location filename="mainwindow.cpp" line="3723"/> + <location filename="mainwindow.cpp" line="1538"/> + <location filename="mainwindow.cpp" line="4024"/> <source><Manage...></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1488"/> + <location filename="mainwindow.cpp" line="1556"/> <source>failed to parse profile %1: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="310"/> - <location filename="profile.cpp" line="228"/> + <location filename="pluginlist.cpp" line="320"/> + <location filename="profile.cpp" line="249"/> <source>failed to find "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="467"/> + <location filename="pluginlist.cpp" line="479"/> <source>failed to access %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="481"/> + <location filename="pluginlist.cpp" line="493"/> <source>failed to set file time %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="67"/> + <location filename="profile.cpp" line="69"/> <source>failed to create %1</source> <translation type="unfinished"></translation> </message> @@ -3951,12 +4144,12 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="settings.cpp" line="469"/> + <location filename="settings.cpp" line="535"/> <source>Script Extender</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settings.cpp" line="476"/> + <location filename="settings.cpp" line="542"/> <source>Proxy DLL</source> <translation type="unfinished"></translation> </message> @@ -4085,14 +4278,6 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe </message> </context> <context> - <name>QuestionBoxMemory</name> - <message> - <location filename="questionboxmemory.ui" line="86"/> - <source>Remember selection</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> <name>SaveGameInfoWidget</name> <message> <location filename="savegameinfowidget.ui" line="39"/> @@ -4193,9 +4378,9 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe </message> <message> <location filename="selfupdater.cpp" line="116"/> - <location filename="selfupdater.cpp" line="140"/> - <location filename="selfupdater.cpp" line="269"/> - <location filename="selfupdater.cpp" line="417"/> + <location filename="selfupdater.cpp" line="139"/> + <location filename="selfupdater.cpp" line="268"/> + <location filename="selfupdater.cpp" line="415"/> <source>Update</source> <translation type="unfinished"></translation> </message> @@ -4205,62 +4390,62 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <translation type="unfinished"></translation> </message> <message> - <location filename="selfupdater.cpp" line="141"/> + <location filename="selfupdater.cpp" line="140"/> <source>Download in progress</source> <translation type="unfinished"></translation> </message> <message> - <location filename="selfupdater.cpp" line="196"/> + <location filename="selfupdater.cpp" line="195"/> <source>Download failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="selfupdater.cpp" line="207"/> + <location filename="selfupdater.cpp" line="206"/> <source>Failed to install update: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="selfupdater.cpp" line="228"/> + <location filename="selfupdater.cpp" line="227"/> <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="251"/> + <location filename="selfupdater.cpp" line="250"/> <source>failed to move outdated files: %1. Please update manually.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="selfupdater.cpp" line="269"/> + <location filename="selfupdater.cpp" line="268"/> <source>Update installed, Mod Organizer will now be restarted.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="selfupdater.cpp" line="297"/> + <location filename="selfupdater.cpp" line="296"/> <source>Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="selfupdater.cpp" line="353"/> + <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> </message> <message> - <location filename="selfupdater.cpp" line="418"/> + <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> </message> <message> - <location filename="selfupdater.cpp" line="427"/> + <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="461"/> + <location filename="selfupdater.cpp" line="459"/> <source>No download server available. Please try again later.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="selfupdater.cpp" line="441"/> + <location filename="selfupdater.cpp" line="439"/> <source>Failed to retrieve update information: %1</source> <translation type="unfinished"></translation> </message> @@ -4268,22 +4453,18 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <context> <name>Settings</name> <message> - <location filename="settings.cpp" line="278"/> - <source>setting for invalid plugin "%1" requested</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settings.cpp" line="282"/> - <source>invalid setting "%1" requested for plugin "%2"</source> + <location filename="settings.cpp" line="306"/> + <location filename="settings.cpp" line="325"/> + <source>attempt to store setting for unknown plugin "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settings.cpp" line="573"/> + <location filename="settings.cpp" line="646"/> <source>Confirm</source> <translation type="unfinished">Onayla</translation> </message> <message> - <location filename="settings.cpp" line="573"/> + <location filename="settings.cpp" line="646"/> <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> @@ -4468,7 +4649,12 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="594"/> + <location filename="settingsdialog.ui" line="512"/> + <source>Blacklisted Plugins (use <del> to remove):</source> + <translation type="unfinished"></translation> + </message> + <message> + <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. @@ -4524,47 +4710,47 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="427"/> + <location filename="settingsdialog.ui" line="429"/> <source>Author:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="441"/> + <location filename="settingsdialog.ui" line="443"/> <source>Version:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="455"/> + <location filename="settingsdialog.ui" line="457"/> <source>Description:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="493"/> + <location filename="settingsdialog.ui" line="495"/> <source>Key</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="498"/> + <location filename="settingsdialog.ui" line="500"/> <source>Value</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="509"/> + <location filename="settingsdialog.ui" line="523"/> <source>Workarounds</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="517"/> + <location filename="settingsdialog.ui" line="531"/> <source>Steam App ID</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="537"/> + <location filename="settingsdialog.ui" line="551"/> <source>The Steam AppID for your game</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="540"/> + <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; } @@ -4580,27 +4766,27 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="571"/> + <location filename="settingsdialog.ui" line="585"/> <source>Load Mechanism</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="591"/> + <location filename="settingsdialog.ui" line="605"/> <source>Select loading mechanism. See help for details.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="611"/> + <location filename="settingsdialog.ui" line="625"/> <source>NMM Version</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="631"/> + <location filename="settingsdialog.ui" line="645"/> <source>The Version of Nexus Mod Manager to impersonate.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="634"/> + <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. @@ -4609,76 +4795,76 @@ tl;dr-version: If Nexus-features don't work, insert the current version num <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="656"/> + <location filename="settingsdialog.ui" line="670"/> <source>Enforces that inactive ESPs and ESMs are never loaded.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="659"/> + <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"></translation> </message> <message> - <location filename="settingsdialog.ui" line="663"/> + <location filename="settingsdialog.ui" line="677"/> <source>Hide inactive ESPs/ESMs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="670"/> + <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> </message> <message> - <location filename="settingsdialog.ui" line="673"/> + <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> </message> <message> - <location filename="settingsdialog.ui" line="677"/> + <location filename="settingsdialog.ui" line="691"/> <source>Force-enable game files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="687"/> - <location filename="settingsdialog.ui" line="691"/> + <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> </message> <message> - <location filename="settingsdialog.ui" line="695"/> + <location filename="settingsdialog.ui" line="709"/> <source>Back-date BSAs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="719"/> + <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> - <location filename="settingsdialog.cpp" line="89"/> + <location filename="settingsdialog.cpp" line="94"/> <source>Select download directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.cpp" line="97"/> + <location filename="settingsdialog.cpp" line="102"/> <source>Select mod directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.cpp" line="105"/> + <location filename="settingsdialog.cpp" line="110"/> <source>Select cache directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.cpp" line="113"/> + <location filename="settingsdialog.cpp" line="118"/> <source>Confirm?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.cpp" line="114"/> + <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"></translation> </message> diff --git a/src/organizer_zh_CN.qm b/src/organizer_zh_CN.qm Binary files differindex ca363b5c..266fa16b 100644 --- a/src/organizer_zh_CN.qm +++ b/src/organizer_zh_CN.qm diff --git a/src/organizer_zh_CN.ts b/src/organizer_zh_CN.ts index 2ca0cc2a..5ef313be 100644 --- a/src/organizer_zh_CN.ts +++ b/src/organizer_zh_CN.ts @@ -255,7 +255,7 @@ p, li { white-space: pre-wrap; } <translation type="unfinished">完成</translation> </message> <message> - <location filename="downloadlist.cpp" line="79"/> + <location filename="downloadlist.cpp" line="80"/> <source>Information missing, please select "Query Info" from the context menu to re-retrieve.</source> <translation>信息丢失,请在右键菜单里选择“查询信息”来重新检索。</translation> </message> @@ -269,11 +269,6 @@ p, li { white-space: pre-wrap; } <translation>占位符</translation> </message> <message> - <location filename="downloadlistwidget.ui" line="81"/> - <source>0</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="downloadlistwidget.ui" line="88"/> <source>KB</source> <translation type="unfinished"></translation> @@ -336,60 +331,65 @@ p, li { white-space: pre-wrap; } <translation>完成</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="215"/> - <location filename="downloadlistwidgetcompact.cpp" line="224"/> - <location filename="downloadlistwidgetcompact.cpp" line="233"/> - <location filename="downloadlistwidgetcompact.cpp" line="242"/> + <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="216"/> + <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="225"/> + <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="234"/> + <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> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="243"/> + <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> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="269"/> + <location filename="downloadlistwidgetcompact.cpp" line="275"/> <source>Install</source> <translation>安装</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="271"/> + <location filename="downloadlistwidgetcompact.cpp" line="277"/> <source>Query Info</source> <translation>查询信息</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="273"/> + <location filename="downloadlistwidgetcompact.cpp" line="279"/> <source>Delete</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="274"/> + <location filename="downloadlistwidgetcompact.cpp" line="281"/> + <source>Un-Hide</source> + <translation type="unfinished">取消隐藏</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="283"/> <source>Remove from View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="279"/> + <location filename="downloadlistwidgetcompact.cpp" line="289"/> <source>Remove</source> <translation>移除</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="276"/> + <location filename="downloadlistwidgetcompact.cpp" line="286"/> <source>Cancel</source> <translation>取消</translation> </message> @@ -409,32 +409,32 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="277"/> + <location filename="downloadlistwidgetcompact.cpp" line="287"/> <source>Pause</source> <translation>暂停</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="280"/> + <location filename="downloadlistwidgetcompact.cpp" line="290"/> <source>Resume</source> <translation>继续</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="284"/> + <location filename="downloadlistwidgetcompact.cpp" line="294"/> <source>Delete Installed...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="285"/> + <location filename="downloadlistwidgetcompact.cpp" line="295"/> <source>Delete All...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="287"/> + <location filename="downloadlistwidgetcompact.cpp" line="298"/> <source>Remove Installed...</source> <translation>移除已安装的项目...</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="288"/> + <location filename="downloadlistwidgetcompact.cpp" line="299"/> <source>Remove All...</source> <translation>移除所有...</translation> </message> @@ -442,60 +442,65 @@ p, li { white-space: pre-wrap; } <context> <name>DownloadListWidgetDelegate</name> <message> - <location filename="downloadlistwidget.cpp" line="228"/> - <location filename="downloadlistwidget.cpp" line="237"/> - <location filename="downloadlistwidget.cpp" line="246"/> - <location filename="downloadlistwidget.cpp" line="255"/> + <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="229"/> + <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="238"/> + <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="247"/> + <location filename="downloadlistwidget.cpp" line="252"/> <source>This will remove all finished downloads from this list (but NOT from disk).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="256"/> + <location filename="downloadlistwidget.cpp" line="261"/> <source>This will remove all installed downloads from this list (but NOT from disk).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="281"/> + <location filename="downloadlistwidget.cpp" line="287"/> <source>Install</source> <translation>安装</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="283"/> + <location filename="downloadlistwidget.cpp" line="289"/> <source>Query Info</source> <translation>查询信息</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="285"/> + <location filename="downloadlistwidget.cpp" line="291"/> <source>Delete</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="286"/> + <location filename="downloadlistwidget.cpp" line="293"/> + <source>Un-Hide</source> + <translation type="unfinished">取消隐藏</translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="295"/> <source>Remove from View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="291"/> + <location filename="downloadlistwidget.cpp" line="301"/> <source>Remove</source> <translation>移除</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="288"/> + <location filename="downloadlistwidget.cpp" line="298"/> <source>Cancel</source> <translation>取消</translation> </message> @@ -510,32 +515,32 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="289"/> + <location filename="downloadlistwidget.cpp" line="299"/> <source>Pause</source> <translation>暂停</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="292"/> + <location filename="downloadlistwidget.cpp" line="302"/> <source>Resume</source> <translation>继续</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="296"/> + <location filename="downloadlistwidget.cpp" line="306"/> <source>Delete Installed...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="297"/> + <location filename="downloadlistwidget.cpp" line="307"/> <source>Delete All...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="299"/> + <location filename="downloadlistwidget.cpp" line="310"/> <source>Remove Installed...</source> <translation>移除已安装的项目...</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="300"/> + <location filename="downloadlistwidget.cpp" line="311"/> <source>Remove All...</source> <translation>移除所有...</translation> </message> @@ -543,67 +548,80 @@ p, li { white-space: pre-wrap; } <context> <name>DownloadManager</name> <message> - <location filename="downloadmanager.cpp" line="125"/> + <location filename="downloadmanager.cpp" line="132"/> <source>failed to rename "%1" to "%2"</source> <translation>重命名 "%1 "为 "%2" 时出错</translation> </message> <message> - <location filename="downloadmanager.cpp" line="306"/> + <location filename="downloadmanager.cpp" line="322"/> <source>Download again?</source> <translation>重新下载?</translation> </message> <message> - <location filename="downloadmanager.cpp" line="306"/> + <location filename="downloadmanager.cpp" line="322"/> <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="336"/> + <location filename="downloadmanager.cpp" line="354"/> <source>failed to download %1: could not open output file: %2</source> <translation>下载 %1 失败: 无法打开输出文件: %2</translation> </message> <message> - <location filename="downloadmanager.cpp" line="366"/> - <location filename="downloadmanager.cpp" line="585"/> - <location filename="downloadmanager.cpp" line="595"/> - <location filename="downloadmanager.cpp" line="604"/> - <location filename="downloadmanager.cpp" line="614"/> - <location filename="downloadmanager.cpp" line="624"/> + <location filename="downloadmanager.cpp" line="383"/> + <source>Wrong Game</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="383"/> + <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> + </message> + <message> + <location filename="downloadmanager.cpp" line="395"/> + <location filename="downloadmanager.cpp" line="462"/> <location filename="downloadmanager.cpp" line="634"/> - <location filename="downloadmanager.cpp" line="645"/> - <location filename="downloadmanager.cpp" line="654"/> - <location filename="downloadmanager.cpp" line="664"/> - <location filename="downloadmanager.cpp" line="679"/> + <location filename="downloadmanager.cpp" line="644"/> + <location filename="downloadmanager.cpp" line="653"/> + <location filename="downloadmanager.cpp" line="667"/> + <location filename="downloadmanager.cpp" line="677"/> + <location filename="downloadmanager.cpp" line="687"/> + <location filename="downloadmanager.cpp" line="697"/> + <location filename="downloadmanager.cpp" line="708"/> + <location filename="downloadmanager.cpp" line="716"/> + <location filename="downloadmanager.cpp" line="725"/> + <location filename="downloadmanager.cpp" line="735"/> + <location filename="downloadmanager.cpp" line="750"/> <source>invalid index</source> <translation>无效的索引</translation> </message> <message> - <location filename="downloadmanager.cpp" line="384"/> + <location filename="downloadmanager.cpp" line="413"/> <source>failed to delete %1</source> <translation>无法删除 %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="390"/> + <location filename="downloadmanager.cpp" line="419"/> <source>failed to delete meta file for %1</source> <translation>无法从 %1 中删除 mate 文件</translation> </message> <message> - <location filename="downloadmanager.cpp" line="450"/> - <location filename="downloadmanager.cpp" line="468"/> - <location filename="downloadmanager.cpp" line="481"/> - <location filename="downloadmanager.cpp" line="494"/> - <location filename="downloadmanager.cpp" line="505"/> - <location filename="downloadmanager.cpp" line="540"/> + <location filename="downloadmanager.cpp" line="495"/> + <location filename="downloadmanager.cpp" line="513"/> + <location filename="downloadmanager.cpp" line="526"/> + <location filename="downloadmanager.cpp" line="543"/> + <location filename="downloadmanager.cpp" line="554"/> + <location filename="downloadmanager.cpp" line="589"/> <source>invalid index %1</source> <translation>无效的索引 %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="557"/> + <location filename="downloadmanager.cpp" line="606"/> <source>Please enter the nexus mod id</source> <translation>请输入N网 Mod ID</translation> </message> <message> - <location filename="downloadmanager.cpp" line="557"/> + <location filename="downloadmanager.cpp" line="606"/> <source>Mod ID:</source> <translation>Mod ID:</translation> </message> @@ -612,38 +630,38 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">无效的字顺索引 %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="899"/> + <location filename="downloadmanager.cpp" line="972"/> <source>Information updated</source> <translation>信息已更新</translation> </message> <message> - <location filename="downloadmanager.cpp" line="901"/> - <location filename="downloadmanager.cpp" line="915"/> + <location filename="downloadmanager.cpp" line="974"/> + <location filename="downloadmanager.cpp" line="988"/> <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="903"/> + <location filename="downloadmanager.cpp" line="976"/> <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="1032"/> + <location filename="downloadmanager.cpp" line="1109"/> <source>No download server available. Please try again later.</source> <translation>没有可用的下载服务器,请稍后再尝试下载。</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1074"/> + <location filename="downloadmanager.cpp" line="1151"/> <source>Failed to request file info from nexus: %1</source> <translation>无法从N网上请求文件信息: %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1097"/> + <location filename="downloadmanager.cpp" line="1175"/> <source>Download failed: %1 (%2)</source> <translation>下载失败: %1 (%2)</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1174"/> + <location filename="downloadmanager.cpp" line="1254"/> <source>failed to re-open %1</source> <translation>无法重新打开 %1</translation> </message> @@ -1092,12 +1110,12 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">mo_archive.dll 未加载: "%1"</translation> </message> <message> - <location filename="installationmanager.cpp" line="97"/> + <location filename="installationmanager.cpp" line="98"/> <source>Password required</source> <translation>需要密码</translation> </message> <message> - <location filename="installationmanager.cpp" line="97"/> + <location filename="installationmanager.cpp" line="98"/> <source>Password</source> <translation>密码</translation> </message> @@ -1119,8 +1137,8 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="installationmanager.cpp" line="164"/> - <location filename="installationmanager.cpp" line="252"/> - <location filename="installationmanager.cpp" line="530"/> + <location filename="installationmanager.cpp" line="248"/> + <location filename="installationmanager.cpp" line="525"/> <source>Extracting files</source> <translation>正在解压文件</translation> </message> @@ -1155,7 +1173,7 @@ Note: This installer will not be aware of other installed mods!</source> <translation type="obsolete">安装失败 (错误代码 %1)</translation> </message> <message> - <location filename="installationmanager.cpp" line="624"/> + <location filename="installationmanager.cpp" line="605"/> <source>File format "%1" not supported</source> <translation>暂不支持文件格式: "%1"</translation> </message> @@ -1164,32 +1182,32 @@ Note: This installer will not be aware of other installed mods!</source> <translation type="obsolete">无法打开压缩包 "%1": %2</translation> </message> <message> - <location filename="installationmanager.cpp" line="75"/> + <location filename="installationmanager.cpp" line="76"/> <source>archive.dll not loaded: "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="installationmanager.cpp" line="443"/> + <location filename="installationmanager.cpp" line="439"/> <source>failed to create backup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="installationmanager.cpp" line="449"/> + <location filename="installationmanager.cpp" line="445"/> <source>Mod Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="installationmanager.cpp" line="449"/> + <location filename="installationmanager.cpp" line="445"/> <source>Name</source> <translation type="unfinished">名称</translation> </message> <message> - <location filename="installationmanager.cpp" line="502"/> + <location filename="installationmanager.cpp" line="498"/> <source>Invalid name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="installationmanager.cpp" line="503"/> + <location filename="installationmanager.cpp" line="499"/> <source>The name you entered is invalid, please enter a different one.</source> <translation type="unfinished"></translation> </message> @@ -1206,52 +1224,52 @@ Note: This installer will not be aware of other installed mods!</source> <translation type="obsolete">请安装 NCC</translation> </message> <message> - <location filename="installationmanager.cpp" line="750"/> + <location filename="installationmanager.cpp" line="731"/> <source>None of the available installer plugins were able to handle that archive</source> <translation type="unfinished"></translation> </message> <message> - <location filename="installationmanager.cpp" line="760"/> + <location filename="installationmanager.cpp" line="741"/> <source>no error</source> <translation>没有错误</translation> </message> <message> - <location filename="installationmanager.cpp" line="763"/> + <location filename="installationmanager.cpp" line="744"/> <source>7z.dll not found</source> <translation>未找到 7z.dll</translation> </message> <message> - <location filename="installationmanager.cpp" line="766"/> + <location filename="installationmanager.cpp" line="747"/> <source>7z.dll isn't valid</source> <translation>无效的 7z.dll</translation> </message> <message> - <location filename="installationmanager.cpp" line="769"/> + <location filename="installationmanager.cpp" line="750"/> <source>archive not found</source> <translation>未找到压缩包</translation> </message> <message> - <location filename="installationmanager.cpp" line="772"/> + <location filename="installationmanager.cpp" line="753"/> <source>failed to open archive</source> <translation>无法打开压缩包</translation> </message> <message> - <location filename="installationmanager.cpp" line="775"/> + <location filename="installationmanager.cpp" line="756"/> <source>unsupported archive type</source> <translation>不支持的压缩包类型</translation> </message> <message> - <location filename="installationmanager.cpp" line="778"/> + <location filename="installationmanager.cpp" line="759"/> <source>internal library error</source> <translation>内部库错误</translation> </message> <message> - <location filename="installationmanager.cpp" line="781"/> + <location filename="installationmanager.cpp" line="762"/> <source>archive invalid</source> <translation>无效的压缩包</translation> </message> <message> - <location filename="installationmanager.cpp" line="785"/> + <location filename="installationmanager.cpp" line="766"/> <source>unknown archive error</source> <translation>未知压缩包错误</translation> </message> @@ -1290,12 +1308,12 @@ Note: This installer will not be aware of other installed mods!</source> <context> <name>MOApplication</name> <message> - <location filename="moapplication.cpp" line="60"/> + <location filename="moapplication.cpp" line="68"/> <source>an error occured: %1</source> <translation type="unfinished">发生错误: %1</translation> </message> <message> - <location filename="moapplication.cpp" line="65"/> + <location filename="moapplication.cpp" line="73"/> <source>an error occured</source> <translation type="unfinished">发生错误</translation> </message> @@ -1371,7 +1389,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="mainwindow.ui" line="405"/> <location filename="mainwindow.ui" line="722"/> - <location filename="mainwindow.ui" line="1027"/> + <location filename="mainwindow.ui" line="1035"/> <source>Namefilter</source> <translation type="unfinished"></translation> </message> @@ -1504,67 +1522,66 @@ BSAs checked here are loaded in such a way that your installation order is obeye 这里勾选的 BSA 将会依从您的安装顺序,并且会自行调整加载顺序。</translation> </message> <message> - <location filename="mainwindow.ui" line="794"/> - <location filename="mainwindow.ui" line="868"/> + <location filename="mainwindow.ui" line="800"/> + <location filename="mainwindow.ui" line="869"/> <source>File</source> <translation type="unfinished">文件</translation> </message> <message> - <location filename="mainwindow.ui" line="799"/> - <location filename="mainwindow.ui" line="873"/> - <source>Mod</source> - <translation type="unfinished">Mod</translation> + <location filename="mainwindow.ui" line="808"/> + <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="807"/> - <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="unfinished"></translation> + <location filename="mainwindow.ui" line="874"/> + <source>Mod</source> + <translation type="unfinished">Mod</translation> </message> <message> - <location filename="mainwindow.ui" line="818"/> + <location filename="mainwindow.ui" line="819"/> <source>Data</source> <translation type="unfinished">Data</translation> </message> <message> - <location filename="mainwindow.ui" line="836"/> + <location filename="mainwindow.ui" line="837"/> <source>refresh data-directory overview</source> <translation type="unfinished">刷新 Data 目录总览</translation> </message> <message> - <location filename="mainwindow.ui" line="839"/> + <location filename="mainwindow.ui" line="840"/> <source>Refresh the overview. This may take a moment.</source> <translation type="unfinished">刷新总览,这可能需要一些时间。</translation> </message> <message> - <location filename="mainwindow.ui" line="842"/> - <location filename="mainwindow.cpp" line="3328"/> - <location filename="mainwindow.cpp" line="4059"/> + <location filename="mainwindow.ui" line="843"/> + <location filename="mainwindow.cpp" line="3612"/> + <location filename="mainwindow.cpp" line="4360"/> <source>Refresh</source> <translation type="unfinished">刷新</translation> </message> <message> - <location filename="mainwindow.ui" line="858"/> + <location filename="mainwindow.ui" line="859"/> <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="883"/> - <location filename="mainwindow.ui" line="886"/> + <location filename="mainwindow.ui" line="884"/> + <location filename="mainwindow.ui" line="887"/> <source>Filter the above list so that only conflicts are displayed.</source> <translation type="unfinished">过滤上面的列表,使您只能看到有冲突的文件。</translation> </message> <message> - <location filename="mainwindow.ui" line="889"/> + <location filename="mainwindow.ui" line="890"/> <source>Show only conflicts</source> <translation type="unfinished">只显示冲突</translation> </message> <message> - <location filename="mainwindow.ui" line="897"/> + <location filename="mainwindow.ui" line="898"/> <source>Saves</source> <translation type="unfinished">存档</translation> </message> <message> - <location filename="mainwindow.ui" line="921"/> + <location filename="mainwindow.ui" line="922"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1581,155 +1598,160 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">如果您在右键菜单中点击“修复 Mod”,那么 MO 便会尝试激活所有 Mod 和 esp 来修复那些缺失的 esp,它并不会禁用任何东西!</span></p></body></html></translation> </message> <message> - <location filename="mainwindow.ui" line="935"/> + <location filename="mainwindow.ui" line="936"/> <source>Downloads</source> <translation type="unfinished">下载</translation> </message> <message> - <location filename="mainwindow.ui" line="967"/> + <location filename="mainwindow.ui" line="968"/> <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="1020"/> + <location filename="mainwindow.ui" line="1021"/> <source>Compact</source> <translation type="unfinished">紧凑</translation> </message> <message> - <location filename="mainwindow.ui" line="1051"/> + <location filename="mainwindow.ui" line="1028"/> + <source>Show Hidden</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1059"/> <source>Tool Bar</source> <translation type="unfinished">工具栏</translation> </message> <message> - <location filename="mainwindow.ui" line="1093"/> + <location filename="mainwindow.ui" line="1101"/> <source>Install Mod</source> <translation type="unfinished">安装 Mod</translation> </message> <message> - <location filename="mainwindow.ui" line="1096"/> + <location filename="mainwindow.ui" line="1104"/> <source>Install &Mod</source> <translation type="unfinished">安装 &Mod</translation> </message> <message> - <location filename="mainwindow.ui" line="1099"/> + <location filename="mainwindow.ui" line="1107"/> <source>Install a new mod from an archive</source> <translation type="unfinished">通过压缩包来安装一个新 Mod</translation> </message> <message> - <location filename="mainwindow.ui" line="1102"/> + <location filename="mainwindow.ui" line="1110"/> <source>Ctrl+M</source> <translation type="unfinished">Ctrl+M</translation> </message> <message> - <location filename="mainwindow.ui" line="1111"/> + <location filename="mainwindow.ui" line="1119"/> <source>Profiles</source> <translation type="unfinished">配置文件</translation> </message> <message> - <location filename="mainwindow.ui" line="1114"/> + <location filename="mainwindow.ui" line="1122"/> <source>&Profiles</source> <translation type="unfinished">&配置文件</translation> </message> <message> - <location filename="mainwindow.ui" line="1117"/> + <location filename="mainwindow.ui" line="1125"/> <source>Configure Profiles</source> <translation type="unfinished">设置配置文件</translation> </message> <message> - <location filename="mainwindow.ui" line="1120"/> + <location filename="mainwindow.ui" line="1128"/> <source>Ctrl+P</source> <translation type="unfinished">Ctrl+P</translation> </message> <message> - <location filename="mainwindow.ui" line="1129"/> + <location filename="mainwindow.ui" line="1137"/> <source>Executables</source> <translation type="unfinished">可执行程序</translation> </message> <message> - <location filename="mainwindow.ui" line="1132"/> + <location filename="mainwindow.ui" line="1140"/> <source>&Executables</source> <translation type="unfinished">&可执行程序</translation> </message> <message> - <location filename="mainwindow.ui" line="1135"/> + <location filename="mainwindow.ui" line="1143"/> <source>Configure the executables that can be started through Mod Organizer</source> <translation type="unfinished">配置可通过 MO 来启动的程序</translation> </message> <message> - <location filename="mainwindow.ui" line="1138"/> + <location filename="mainwindow.ui" line="1146"/> <source>Ctrl+E</source> <translation type="unfinished">Ctrl+E</translation> </message> <message> - <location filename="mainwindow.ui" line="1147"/> - <location filename="mainwindow.ui" line="1153"/> + <location filename="mainwindow.ui" line="1155"/> + <location filename="mainwindow.ui" line="1161"/> <source>Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1150"/> + <location filename="mainwindow.ui" line="1158"/> <source>&Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1156"/> + <location filename="mainwindow.ui" line="1164"/> <source>Ctrl+I</source> <translation type="unfinished">Ctrl+I</translation> </message> <message> - <location filename="mainwindow.ui" line="1165"/> + <location filename="mainwindow.ui" line="1173"/> <source>Settings</source> <translation type="unfinished">设置</translation> </message> <message> - <location filename="mainwindow.ui" line="1168"/> + <location filename="mainwindow.ui" line="1176"/> <source>&Settings</source> <translation type="unfinished">&设置</translation> </message> <message> - <location filename="mainwindow.ui" line="1171"/> + <location filename="mainwindow.ui" line="1179"/> <source>Configure settings and workarounds</source> <translation type="unfinished">配置设定和解决方案</translation> </message> <message> - <location filename="mainwindow.ui" line="1174"/> + <location filename="mainwindow.ui" line="1182"/> <source>Ctrl+S</source> <translation type="unfinished">Ctrl+S</translation> </message> <message> - <location filename="mainwindow.ui" line="1183"/> + <location filename="mainwindow.ui" line="1191"/> <source>Nexus</source> <translation type="unfinished">N网</translation> </message> <message> - <location filename="mainwindow.ui" line="1186"/> + <location filename="mainwindow.ui" line="1194"/> <source>Search nexus network for more mods</source> <translation type="unfinished">搜索N网以获取更多 Mod</translation> </message> <message> - <location filename="mainwindow.ui" line="1189"/> + <location filename="mainwindow.ui" line="1197"/> <source>Ctrl+N</source> <translation type="unfinished">Ctrl+N</translation> </message> <message> - <location filename="mainwindow.ui" line="1201"/> - <location filename="mainwindow.cpp" line="4007"/> + <location filename="mainwindow.ui" line="1209"/> + <location filename="mainwindow.cpp" line="4308"/> <source>Update</source> <translation type="unfinished">更新</translation> </message> <message> - <location filename="mainwindow.ui" line="1204"/> + <location filename="mainwindow.ui" line="1212"/> <source>Mod Organizer is up-to-date</source> <translation type="unfinished">Mod Organizer 现在是最新版本</translation> </message> <message> - <location filename="mainwindow.ui" line="1216"/> - <location filename="mainwindow.cpp" line="478"/> + <location filename="mainwindow.ui" line="1224"/> + <location filename="mainwindow.cpp" line="496"/> <source>No Problems</source> <translation type="unfinished">没有问题</translation> </message> <message> - <location filename="mainwindow.ui" line="1219"/> + <location filename="mainwindow.ui" line="1227"/> <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! @@ -1740,54 +1762,54 @@ Right now this has very limited functionality</source> 当前此功能所能提供的项目非常有限</translation> </message> <message> - <location filename="mainwindow.ui" line="1231"/> - <location filename="mainwindow.ui" line="1234"/> + <location filename="mainwindow.ui" line="1239"/> + <location filename="mainwindow.ui" line="1242"/> <source>Help</source> <translation type="unfinished">帮助</translation> </message> <message> - <location filename="mainwindow.ui" line="1237"/> + <location filename="mainwindow.ui" line="1245"/> <source>Ctrl+H</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1246"/> + <location filename="mainwindow.ui" line="1254"/> <source>Endorse MO</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1249"/> - <location filename="mainwindow.cpp" line="4087"/> + <location filename="mainwindow.ui" line="1257"/> + <location filename="mainwindow.cpp" line="4389"/> <source>Endorse Mod Organizer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="204"/> + <location filename="mainwindow.cpp" line="214"/> <source>Toolbar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="205"/> + <location filename="mainwindow.cpp" line="215"/> <source>Desktop</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="206"/> + <location filename="mainwindow.cpp" line="216"/> <source>Start Menu</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="475"/> + <location filename="mainwindow.cpp" line="492"/> <source>Problems</source> <translation type="unfinished">问题</translation> </message> <message> - <location filename="mainwindow.cpp" line="476"/> + <location filename="mainwindow.cpp" line="493"/> <source>There are potential problems with your setup</source> <translation type="unfinished">您的安装中存在潜在的问题</translation> </message> <message> - <location filename="mainwindow.cpp" line="479"/> + <location filename="mainwindow.cpp" line="497"/> <source>Everything seems to be in order</source> <translation type="unfinished">一切井然有序</translation> </message> @@ -1804,22 +1826,22 @@ Right now this has very limited functionality</source> <translation type="obsolete"><li>.Net 未安装或版本过旧。想要运行 NCC 您必须先安装 .Net,您可以在以下地址中获取: <a href="%1">%1</a></li></translation> </message> <message> - <location filename="mainwindow.cpp" line="531"/> + <location filename="mainwindow.cpp" line="549"/> <source>Help on UI</source> <translation type="unfinished">界面帮助</translation> </message> <message> - <location filename="mainwindow.cpp" line="535"/> + <location filename="mainwindow.cpp" line="553"/> <source>Documentation Wiki</source> <translation type="unfinished">说明文档 (维基)</translation> </message> <message> - <location filename="mainwindow.cpp" line="539"/> + <location filename="mainwindow.cpp" line="557"/> <source>Report Issue</source> <translation type="unfinished">报告问题</translation> </message> <message> - <location filename="mainwindow.cpp" line="543"/> + <location filename="mainwindow.cpp" line="561"/> <source>Tutorials</source> <translation type="unfinished"></translation> </message> @@ -1828,374 +1850,431 @@ Right now this has very limited functionality</source> <translation type="obsolete">无法保存加载顺序</translation> </message> <message> - <location filename="mainwindow.cpp" line="670"/> + <location filename="mainwindow.cpp" line="688"/> <source>failed to save load order: %1</source> <translation type="unfinished">无法保存加载顺序: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="600"/> + <location filename="mainwindow.cpp" line="618"/> <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="687"/> + <location filename="mainwindow.cpp" line="705"/> <source>Name</source> <translation type="unfinished">名称</translation> </message> <message> - <location filename="mainwindow.cpp" line="688"/> + <location filename="mainwindow.cpp" line="706"/> <source>Please enter a name for the new profile</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="696"/> + <location filename="mainwindow.cpp" line="714"/> <source>failed to create profile: %1</source> <translation type="unfinished">无法创建配置文件: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="739"/> + <location filename="mainwindow.cpp" line="757"/> <source>Show tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="740"/> + <location filename="mainwindow.cpp" line="758"/> <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> </message> <message> - <location filename="mainwindow.cpp" line="769"/> + <location filename="mainwindow.cpp" line="787"/> <source>Downloads in progress</source> <translation type="unfinished">正在下载</translation> </message> <message> - <location filename="mainwindow.cpp" line="770"/> + <location filename="mainwindow.cpp" line="788"/> <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="816"/> + <location filename="mainwindow.cpp" line="834"/> <source>failed to read savegame: %1</source> <translation type="unfinished">无法读取存档: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="941"/> + <location filename="mainwindow.cpp" line="958"/> <source>Plugin "%1" failed: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1183"/> + <location filename="mainwindow.cpp" line="1064"/> + <source>Plugin error</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1065"/> + <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="1249"/> <source>Failed to start "%1"</source> <translation type="unfinished">无法启动 "%1"</translation> </message> <message> - <location filename="mainwindow.cpp" line="1185"/> + <location filename="mainwindow.cpp" line="1251"/> <source>Waiting</source> <translation type="unfinished">稍等</translation> </message> <message> - <location filename="mainwindow.cpp" line="1185"/> + <location filename="mainwindow.cpp" line="1251"/> <source>Please press OK once you're logged into steam.</source> <translation type="unfinished">当您登录 Steam 时请点击确定。</translation> </message> <message> - <location filename="mainwindow.cpp" line="1197"/> + <location filename="mainwindow.cpp" line="1263"/> <source>"%1" not found</source> <translation type="unfinished">"%1" 未找到</translation> </message> <message> - <location filename="mainwindow.cpp" line="1211"/> + <location filename="mainwindow.cpp" line="1277"/> <source>Start Steam?</source> <translation type="unfinished">启动 Steam?</translation> </message> <message> - <location filename="mainwindow.cpp" line="1212"/> + <location filename="mainwindow.cpp" line="1278"/> <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="1426"/> + <location filename="mainwindow.cpp" line="1492"/> <source>Also in: <br></source> <translation type="unfinished">也在: <br></translation> </message> <message> - <location filename="mainwindow.cpp" line="1437"/> + <location filename="mainwindow.cpp" line="1503"/> <source>No conflict</source> <translation type="unfinished">没有冲突</translation> </message> <message> - <location filename="mainwindow.cpp" line="1552"/> + <location filename="mainwindow.cpp" line="1620"/> <source><Edit...></source> <translation type="unfinished"><编辑...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1771"/> + <location filename="mainwindow.cpp" line="1704"/> + <source>Failed to refresh list of esps: %s</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1844"/> <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="1778"/> + <location filename="mainwindow.cpp" line="1851"/> <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="1833"/> + <location filename="mainwindow.cpp" line="1906"/> <source>Activating Network Proxy</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1962"/> - <location filename="mainwindow.cpp" line="3755"/> + <location filename="mainwindow.cpp" line="2037"/> + <location filename="mainwindow.cpp" line="4056"/> <source>Installation successful</source> <translation type="unfinished">安装成功</translation> </message> <message> - <location filename="mainwindow.cpp" line="1973"/> - <location filename="mainwindow.cpp" line="3768"/> + <location filename="mainwindow.cpp" line="2048"/> + <location filename="mainwindow.cpp" line="4069"/> <source>Configure Mod</source> <translation type="unfinished">配置 Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="1974"/> - <location filename="mainwindow.cpp" line="3769"/> + <location filename="mainwindow.cpp" line="2049"/> + <location filename="mainwindow.cpp" line="4070"/> <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="1980"/> - <location filename="mainwindow.cpp" line="3775"/> + <location filename="mainwindow.cpp" line="2055"/> + <location filename="mainwindow.cpp" line="4076"/> <source>mod "%1" not found</source> <translation type="unfinished">Mod "%1" 未找到</translation> </message> <message> - <location filename="mainwindow.cpp" line="1983"/> - <location filename="mainwindow.cpp" line="3781"/> + <location filename="mainwindow.cpp" line="2058"/> + <location filename="mainwindow.cpp" line="4082"/> <source>Installation cancelled</source> <translation type="unfinished">安装已取消</translation> </message> <message> - <location filename="mainwindow.cpp" line="1983"/> - <location filename="mainwindow.cpp" line="3781"/> + <location filename="mainwindow.cpp" line="2058"/> + <location filename="mainwindow.cpp" line="4082"/> <source>The mod was not installed completely.</source> <translation type="unfinished">Mod 没有完全安装。</translation> </message> <message> - <location filename="mainwindow.cpp" line="2018"/> + <location filename="mainwindow.cpp" line="2207"/> <source>Some plugins could not be loaded</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2021"/> - <location filename="mainwindow.cpp" line="2038"/> - <source>Description missing</source> + <location filename="mainwindow.cpp" line="2210"/> + <source>Too many esps and esms enabled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2030"/> - <source>The following Plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:<ul></source> + <location filename="mainwindow.cpp" line="2213"/> + <location filename="mainwindow.cpp" line="2234"/> + <source>Description missing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2060"/> + <location filename="mainwindow.cpp" line="2256"/> <source>Choose Mod</source> <translation type="unfinished">选择 Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2061"/> + <location filename="mainwindow.cpp" line="2257"/> <source>Mod Archive</source> <translation type="unfinished">Mod 压缩包</translation> </message> <message> - <location filename="mainwindow.cpp" line="2214"/> + <location filename="mainwindow.cpp" line="2410"/> <source>Start Tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2215"/> + <location filename="mainwindow.cpp" line="2411"/> <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> </message> <message> - <location filename="mainwindow.cpp" line="2360"/> - <location filename="mainwindow.cpp" line="3683"/> + <location filename="mainwindow.cpp" line="2566"/> + <location filename="mainwindow.cpp" line="3984"/> <source>Download started</source> <translation type="unfinished">开始下载</translation> </message> <message> - <location filename="mainwindow.cpp" line="2391"/> + <location filename="mainwindow.cpp" line="2597"/> <source>failed to update mod list: %1</source> <translation type="unfinished">无法更新 Mod 列表: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2418"/> + <location filename="mainwindow.cpp" line="2624"/> <source>failed to spawn notepad.exe: %1</source> <translation type="unfinished">无法生成 notepad.exe: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2459"/> + <location filename="mainwindow.cpp" line="2665"/> <source>failed to open %1</source> <translation type="unfinished">无法打开 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2537"/> + <location filename="mainwindow.cpp" line="2743"/> <source>failed to change origin name: %1</source> <translation type="unfinished">无法更改原始文件名: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2676"/> + <location filename="mainwindow.cpp" line="2906"/> <source>Multiple esps activated, please check that they don't conflict.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3005"/> - <location filename="mainwindow.cpp" line="3339"/> + <location filename="mainwindow.cpp" line="3251"/> + <location filename="mainwindow.cpp" line="3623"/> <source>Create Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3006"/> + <location filename="mainwindow.cpp" line="3252"/> <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="3015"/> + <location filename="mainwindow.cpp" line="3261"/> <source>A mod with this name already exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3410"/> + <location filename="mainwindow.cpp" line="3444"/> + <source>Continue?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3445"/> + <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="3465"/> + <source>Sorry</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3466"/> + <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="3710"/> <source><All></source> <translation type="unfinished"><全部></translation> </message> <message> - <location filename="mainwindow.cpp" line="2589"/> + <location filename="mainwindow.cpp" line="2818"/> <source><Checked></source> <translation type="unfinished"><已勾选></translation> </message> <message> - <location filename="mainwindow.cpp" line="943"/> + <location filename="mainwindow.cpp" line="960"/> <source>Plugin "%1" failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1007"/> + <location filename="mainwindow.cpp" line="1026"/> <source>failed to init plugin %1: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2590"/> + <location filename="mainwindow.cpp" line="2222"/> + <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="2230"/> + <source>The game doesn't allow more than 256 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="2769"/> + <source>Failed to move "%1" from mod "%2" to "%3": %4</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2819"/> <source><Unchecked></source> <translation type="unfinished"><未勾选></translation> </message> <message> - <location filename="mainwindow.cpp" line="2591"/> + <location filename="mainwindow.cpp" line="2820"/> <source><Update></source> <translation type="unfinished"><有更新></translation> </message> <message> - <location filename="mainwindow.cpp" line="2592"/> + <location filename="mainwindow.cpp" line="2821"/> <source><No category></source> <translation type="unfinished"><无类别></translation> </message> <message> - <location filename="mainwindow.cpp" line="2593"/> + <location filename="mainwindow.cpp" line="2822"/> <source><Conflicted></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2626"/> + <location filename="mainwindow.cpp" line="2823"/> + <source><Not Endorsed></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2856"/> <source>failed to rename mod: %1</source> <translation type="unfinished">无法重命名 Mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2639"/> + <location filename="mainwindow.cpp" line="2869"/> <source>Overwrite?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2640"/> + <location filename="mainwindow.cpp" line="2870"/> <source>This will replace the existing mod "%1". Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2643"/> + <location filename="mainwindow.cpp" line="2873"/> <source>failed to remove mod "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2647"/> - <location filename="mainwindow.cpp" line="3953"/> - <location filename="mainwindow.cpp" line="3977"/> + <location filename="mainwindow.cpp" line="2877"/> + <location filename="mainwindow.cpp" line="4254"/> + <location filename="mainwindow.cpp" line="4278"/> <source>failed to rename "%1" to "%2"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2702"/> - <location filename="mainwindow.cpp" line="3243"/> - <location filename="mainwindow.cpp" line="3252"/> + <location filename="mainwindow.cpp" line="2932"/> + <location filename="mainwindow.cpp" line="3518"/> + <location filename="mainwindow.cpp" line="3526"/> <source>Confirm</source> <translation type="unfinished">确认</translation> </message> <message> - <location filename="mainwindow.cpp" line="2703"/> + <location filename="mainwindow.cpp" line="2933"/> <source>Remove the following mods?<br><ul>%1</ul></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2714"/> + <location filename="mainwindow.cpp" line="2944"/> <source>failed to remove mod: %1</source> <translation type="unfinished">无法移动 Mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2744"/> - <location filename="mainwindow.cpp" line="2747"/> + <location filename="mainwindow.cpp" line="2979"/> + <location filename="mainwindow.cpp" line="2982"/> <source>Failed</source> <translation type="unfinished">失败</translation> </message> <message> - <location filename="mainwindow.cpp" line="2744"/> + <location filename="mainwindow.cpp" line="2979"/> <source>Installation file no longer exists</source> <translation type="unfinished">安装文件不复存在</translation> </message> <message> - <location filename="mainwindow.cpp" line="2748"/> + <location filename="mainwindow.cpp" line="2983"/> <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="2763"/> - <location filename="mainwindow.cpp" line="2790"/> + <location filename="mainwindow.cpp" line="2998"/> + <location filename="mainwindow.cpp" line="3025"/> <source>You need to be logged in with Nexus to endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2906"/> - <location filename="mainwindow.cpp" line="4335"/> + <location filename="mainwindow.cpp" line="3154"/> + <location filename="mainwindow.cpp" line="4638"/> <source>Extract BSA</source> <translation type="unfinished">解压 BSA</translation> </message> <message> - <location filename="mainwindow.cpp" line="2907"/> + <location filename="mainwindow.cpp" line="3155"/> <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。您确定要解压吗? (解压完成后,BSA 文件将会被删除。如果您不了解 BSA 的话,请选择“否”)</translation> </message> <message> - <location filename="mainwindow.cpp" line="2917"/> - <location filename="mainwindow.cpp" line="4292"/> - <location filename="mainwindow.cpp" line="4343"/> + <location filename="mainwindow.cpp" line="3165"/> + <location filename="mainwindow.cpp" line="4595"/> + <location filename="mainwindow.cpp" line="4646"/> <source>failed to read %1: %2</source> <translation type="unfinished">无法读取 %1: %2</translation> </message> <message> - <location filename="mainwindow.cpp" line="2930"/> - <location filename="mainwindow.cpp" line="4354"/> + <location filename="mainwindow.cpp" line="3178"/> + <location filename="mainwindow.cpp" line="4657"/> <source>This archive contains invalid hashes. Some files may be broken.</source> <translation type="unfinished">压缩包 Hash 值错误。部分文件可能已经损坏。</translation> </message> <message> - <location filename="mainwindow.cpp" line="2964"/> + <location filename="mainwindow.cpp" line="3212"/> <source>Nexus ID for this Mod is unknown</source> <translation type="unfinished">此 Mod 的N网 ID 未知</translation> </message> @@ -2208,371 +2287,391 @@ Please enter a name: </source> <translation type="obsolete">选择优先级</translation> </message> <message> - <location filename="mainwindow.cpp" line="3243"/> + <location filename="mainwindow.cpp" line="3518"/> <source>Really enable all visible mods?</source> <translation type="unfinished">确定要启用全部可见的 Mod 吗?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3252"/> + <location filename="mainwindow.cpp" line="3526"/> <source>Really disable all visible mods?</source> <translation type="unfinished">确定要禁用全部可见的 Mod 吗?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3261"/> + <location filename="mainwindow.cpp" line="3534"/> <source>Choose what to export</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3263"/> + <location filename="mainwindow.cpp" line="3536"/> <source>Everything</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3263"/> + <location filename="mainwindow.cpp" line="3536"/> <source>All installed mods are included in the list</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3264"/> + <location filename="mainwindow.cpp" line="3537"/> <source>Active Mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3264"/> + <location filename="mainwindow.cpp" line="3537"/> <source>Only active (checked) mods from your current profile are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3265"/> + <location filename="mainwindow.cpp" line="3538"/> <source>Visible</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3265"/> + <location filename="mainwindow.cpp" line="3538"/> <source>All mods visible in the mod list are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3308"/> + <location filename="mainwindow.cpp" line="3581"/> <source>export failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3321"/> + <location filename="mainwindow.cpp" line="3605"/> <source>Install Mod...</source> <translation type="unfinished">安装 Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3323"/> + <location filename="mainwindow.cpp" line="3607"/> <source>Enable all visible</source> <translation type="unfinished">启用所有可见项目</translation> </message> <message> - <location filename="mainwindow.cpp" line="3324"/> + <location filename="mainwindow.cpp" line="3608"/> <source>Disable all visible</source> <translation type="unfinished">禁用所有可见项目</translation> </message> <message> - <location filename="mainwindow.cpp" line="3326"/> + <location filename="mainwindow.cpp" line="3610"/> <source>Check all for update</source> <translation type="unfinished">检查更新</translation> </message> <message> - <location filename="mainwindow.cpp" line="3330"/> + <location filename="mainwindow.cpp" line="3614"/> <source>Export to csv...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3338"/> + <location filename="mainwindow.cpp" line="3622"/> <source>Sync to Mods...</source> <translation type="unfinished">同步到 Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3342"/> + <location filename="mainwindow.cpp" line="3626"/> <source>Restore Backup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3343"/> + <location filename="mainwindow.cpp" line="3627"/> <source>Remove Backup...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3345"/> + <location filename="mainwindow.cpp" line="3630"/> <source>Set Category</source> <translation type="unfinished">设置类别</translation> </message> <message> - <location filename="mainwindow.cpp" line="3349"/> + <location filename="mainwindow.cpp" line="3635"/> <source>Primary Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3353"/> + <location filename="mainwindow.cpp" line="3642"/> + <source>Change versioning scheme</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3646"/> + <source>Un-ignore update</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3648"/> + <source>Ignore update</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3653"/> <source>Rename Mod...</source> <translation type="unfinished">重命名...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3354"/> + <location filename="mainwindow.cpp" line="3654"/> <source>Remove Mod...</source> <translation type="unfinished">移除 Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3355"/> + <location filename="mainwindow.cpp" line="3655"/> <source>Reinstall Mod</source> <translation type="unfinished">重新安装 Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="3358"/> + <location filename="mainwindow.cpp" line="3658"/> <source>Un-Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3361"/> - <location filename="mainwindow.cpp" line="3365"/> + <location filename="mainwindow.cpp" line="3661"/> + <location filename="mainwindow.cpp" line="3665"/> <source>Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3362"/> + <location filename="mainwindow.cpp" line="3662"/> <source>Won't endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3368"/> + <location filename="mainwindow.cpp" line="3668"/> <source>Endorsement state unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3375"/> + <location filename="mainwindow.cpp" line="3675"/> <source>Ignore missing data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3378"/> + <location filename="mainwindow.cpp" line="3678"/> <source>Visit on Nexus</source> <translation type="unfinished">在N网上浏览</translation> </message> <message> - <location filename="mainwindow.cpp" line="3379"/> + <location filename="mainwindow.cpp" line="3679"/> <source>Open in explorer</source> <translation type="unfinished">在资源管理器中打开</translation> </message> <message> - <location filename="mainwindow.cpp" line="3382"/> + <location filename="mainwindow.cpp" line="3682"/> <source>Information...</source> <translation type="unfinished">信息...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3388"/> - <location filename="mainwindow.cpp" line="4514"/> + <location filename="mainwindow.cpp" line="3688"/> + <location filename="mainwindow.cpp" line="4842"/> <source>Exception: </source> <translation type="unfinished">例外: </translation> </message> <message> - <location filename="mainwindow.cpp" line="3390"/> - <location filename="mainwindow.cpp" line="4516"/> + <location filename="mainwindow.cpp" line="3690"/> + <location filename="mainwindow.cpp" line="4844"/> <source>Unknown exception</source> <translation type="unfinished">未知的例外</translation> </message> <message> - <location filename="mainwindow.cpp" line="3412"/> + <location filename="mainwindow.cpp" line="3712"/> <source><Multiple></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3524"/> + <location filename="mainwindow.cpp" line="3824"/> <source>Fix Mods...</source> <translation type="unfinished">修复 Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3548"/> - <location filename="mainwindow.cpp" line="3579"/> + <location filename="mainwindow.cpp" line="3848"/> + <location filename="mainwindow.cpp" line="3879"/> <source>failed to remove %1</source> <translation type="unfinished">无法删除 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3563"/> - <location filename="mainwindow.cpp" line="3594"/> + <location filename="mainwindow.cpp" line="3863"/> + <location filename="mainwindow.cpp" line="3894"/> <source>failed to create %1</source> <translation type="unfinished">无法创建 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3615"/> + <location filename="mainwindow.cpp" line="3916"/> <source>Can't change download directory while downloads are in progress!</source> <translation type="unfinished">下载文件时不能修改下载目录!</translation> </message> <message> - <location filename="mainwindow.cpp" line="3686"/> + <location filename="mainwindow.cpp" line="3987"/> <source>Download failed</source> <translation type="unfinished">下载失败</translation> </message> <message> - <location filename="mainwindow.cpp" line="3830"/> + <location filename="mainwindow.cpp" line="4131"/> <source>failed to write to file %1</source> <translation type="unfinished">无法写入文件 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3836"/> + <location filename="mainwindow.cpp" line="4137"/> <source>%1 written</source> <translation type="unfinished">已写入 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3875"/> + <location filename="mainwindow.cpp" line="4176"/> <source>Select binary</source> <translation type="unfinished">选择可执行文件</translation> </message> <message> - <location filename="mainwindow.cpp" line="3875"/> + <location filename="mainwindow.cpp" line="4176"/> <source>Binary</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3901"/> + <location filename="mainwindow.cpp" line="4202"/> <source>Enter Name</source> <translation type="unfinished">输入名称</translation> </message> <message> - <location filename="mainwindow.cpp" line="3902"/> + <location filename="mainwindow.cpp" line="4203"/> <source>Please enter a name for the executable</source> <translation type="unfinished">请为程序输入一个名称</translation> </message> <message> - <location filename="mainwindow.cpp" line="3913"/> + <location filename="mainwindow.cpp" line="4214"/> <source>Not an executable</source> <translation type="unfinished">不是可执行程序</translation> </message> <message> - <location filename="mainwindow.cpp" line="3913"/> + <location filename="mainwindow.cpp" line="4214"/> <source>This is not a recognized executable.</source> <translation type="unfinished">无法识别的可执行文件</translation> </message> <message> - <location filename="mainwindow.cpp" line="3938"/> - <location filename="mainwindow.cpp" line="3963"/> + <location filename="mainwindow.cpp" line="4239"/> + <location filename="mainwindow.cpp" line="4264"/> <source>Replace file?</source> <translation type="unfinished">替换文件?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3938"/> + <location filename="mainwindow.cpp" line="4239"/> <source>There already is a hidden version of this file. Replace it?</source> <translation type="unfinished">已存在同名文件,但该文件被隐藏了。确定要覆盖吗?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3941"/> - <location filename="mainwindow.cpp" line="3966"/> + <location filename="mainwindow.cpp" line="4242"/> + <location filename="mainwindow.cpp" line="4267"/> <source>File operation failed</source> <translation type="unfinished">文件操作错误</translation> </message> <message> - <location filename="mainwindow.cpp" line="3941"/> - <location filename="mainwindow.cpp" line="3966"/> + <location filename="mainwindow.cpp" line="4242"/> + <location filename="mainwindow.cpp" line="4267"/> <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3963"/> + <location filename="mainwindow.cpp" line="4264"/> <source>There already is a visible version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4009"/> + <location filename="mainwindow.cpp" line="4310"/> <source>Update available</source> <translation type="unfinished">更新可用</translation> </message> <message> - <location filename="mainwindow.cpp" line="4046"/> + <location filename="mainwindow.cpp" line="4347"/> <source>Open/Execute</source> <translation type="unfinished">打开/执行</translation> </message> <message> - <location filename="mainwindow.cpp" line="4047"/> + <location filename="mainwindow.cpp" line="4348"/> <source>Add as Executable</source> <translation type="unfinished">添加为可执行文件</translation> </message> <message> - <location filename="mainwindow.cpp" line="4051"/> + <location filename="mainwindow.cpp" line="4352"/> <source>Un-Hide</source> <translation type="unfinished">取消隐藏</translation> </message> <message> - <location filename="mainwindow.cpp" line="4053"/> + <location filename="mainwindow.cpp" line="4354"/> <source>Hide</source> <translation type="unfinished">隐藏</translation> </message> <message> - <location filename="mainwindow.cpp" line="4058"/> + <location filename="mainwindow.cpp" line="4359"/> <source>Write To File...</source> <translation type="unfinished">写入文件...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4088"/> + <location filename="mainwindow.cpp" line="4390"/> <source>Do you want to endorse Mod Organizer on %1 now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4505"/> + <location filename="mainwindow.cpp" line="4803"/> + <source>Remove</source> + <translation type="unfinished">移除</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4833"/> <source>Unlock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4508"/> + <location filename="mainwindow.cpp" line="4836"/> <source>Lock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4223"/> + <location filename="mainwindow.cpp" line="4526"/> <source>Request to Nexus failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4230"/> - <location filename="mainwindow.cpp" line="4247"/> + <location filename="mainwindow.cpp" line="4533"/> + <location filename="mainwindow.cpp" line="4550"/> <source>login successful</source> <translation type="unfinished">登录成功</translation> </message> <message> - <location filename="mainwindow.cpp" line="4256"/> + <location filename="mainwindow.cpp" line="4559"/> <source>login failed: %1. Trying to download anyway</source> <translation type="unfinished">登录失败: %1,请尝试使用别的方法下载</translation> </message> <message> - <location filename="mainwindow.cpp" line="4262"/> + <location filename="mainwindow.cpp" line="4565"/> <source>login failed: %1</source> <translation type="unfinished">无法登录: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4271"/> + <location filename="mainwindow.cpp" line="4574"/> <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="4304"/> + <location filename="mainwindow.cpp" line="4607"/> <source>Error</source> <translation type="unfinished">错误</translation> </message> <message> - <location filename="mainwindow.cpp" line="4304"/> + <location filename="mainwindow.cpp" line="4607"/> <source>failed to extract %1 (errorcode %2)</source> <translation type="unfinished">无法解压 %1 (错误代码 %2)</translation> </message> <message> - <location filename="mainwindow.cpp" line="4399"/> + <location filename="mainwindow.cpp" line="4702"/> <source>Extract...</source> <translation type="unfinished">解压...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4449"/> + <location filename="mainwindow.cpp" line="4758"/> <source>Edit Categories...</source> <translation type="unfinished">编辑类别...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4485"/> + <location filename="mainwindow.cpp" line="4813"/> <source>Enable all</source> <translation type="unfinished">全部启用</translation> </message> <message> - <location filename="mainwindow.cpp" line="4486"/> + <location filename="mainwindow.cpp" line="4814"/> <source>Disable all</source> <translation type="unfinished">全部禁用</translation> </message> @@ -2606,7 +2705,7 @@ Please enter a name: </source> <context> <name>ModInfoBackup</name> <message> - <location filename="modinfo.cpp" line="784"/> + <location filename="modinfo.cpp" line="813"/> <source>This is the backup of a mod</source> <translation type="unfinished"></translation> </message> @@ -2635,7 +2734,7 @@ Please enter a name: </source> </message> <message> <location filename="modinfodialog.ui" line="64"/> - <location filename="modinfodialog.ui" line="149"/> + <location filename="modinfodialog.ui" line="152"/> <source>Save</source> <translation>保存</translation> </message> @@ -2655,51 +2754,49 @@ Please enter a name: </source> <translation>Mod 目录里包含的 Ini 文件的列表,这些文件通常用来配置 Mod 的行为,如果有可设置的参数的话。</translation> </message> <message> - <location filename="modinfodialog.ui" line="143"/> + <location filename="modinfodialog.ui" line="146"/> <source>Save changes to the file.</source> <translation>保存更改到文件中。</translation> </message> <message> - <location filename="modinfodialog.ui" line="146"/> + <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="159"/> + <location filename="modinfodialog.ui" line="162"/> <source>Images</source> <translation>图片</translation> </message> <message> - <location filename="modinfodialog.ui" line="214"/> + <location filename="modinfodialog.ui" line="217"/> <source>Images located in the mod.</source> <translation>位于 Mod 中的图片。</translation> </message> <message> - <location filename="modinfodialog.ui" line="217"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" 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><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <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> </message> <message> - <location filename="modinfodialog.ui" line="254"/> - <location filename="modinfodialog.ui" line="277"/> + <location filename="modinfodialog.ui" line="244"/> + <location filename="modinfodialog.ui" line="263"/> <source>Optional ESPs</source> <translation>可选 ESP</translation> </message> <message> - <location filename="modinfodialog.ui" line="260"/> + <location filename="modinfodialog.ui" line="250"/> <source>List of esps and esms that can not be loaded by the game.</source> <translation>包含了不会被游戏载入的 esp 和 esm 的列表。</translation> </message> <message> - <location filename="modinfodialog.ui" line="263"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -2708,7 +2805,7 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">They usually contain optional functionality, see the readme.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Most mods do not have optional esps, so chances are good you are looking at an empty list.</span></p></body></html></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <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;"> @@ -2719,103 +2816,116 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">大部分 Mod 没有可选 esp,因此您正在看的很有可能只是一个空列表。</span></p></body></html></translation> </message> <message> - <location filename="modinfodialog.ui" line="292"/> + <location filename="modinfodialog.ui" line="220"/> + <source>This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="253"/> + <source>List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window. +They usually contain optional functionality, see the readme. + +Most mods do not have optional esps, so chances are good you are looking at an empty list.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="278"/> <source>Make the selected mod in the lower list unavailable.</source> <translation>使下表中已选的 Mod 变得不可用。</translation> </message> <message> - <location filename="modinfodialog.ui" line="295"/> + <location filename="modinfodialog.ui" line="281"/> <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="321"/> + <location filename="modinfodialog.ui" line="307"/> <source>Move a file to the data directory.</source> <translation>移动一个文件到 Data 目录。</translation> </message> <message> - <location filename="modinfodialog.ui" line="324"/> + <location filename="modinfodialog.ui" line="310"/> <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="359"/> + <location filename="modinfodialog.ui" line="345"/> <source>ESPs in the data directory and thus visible to the game.</source> <translation>ESP 在 Data 目录,因此它在游戏里会变得可见。</translation> </message> <message> - <location filename="modinfodialog.ui" line="362"/> + <location filename="modinfodialog.ui" line="348"/> <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="369"/> + <location filename="modinfodialog.ui" line="355"/> <source>Available ESPs</source> <translation>可用 ESP</translation> </message> <message> - <location filename="modinfodialog.ui" line="377"/> + <location filename="modinfodialog.ui" line="363"/> <source>Conflicts</source> <translation>冲突</translation> </message> <message> - <location filename="modinfodialog.ui" line="385"/> + <location filename="modinfodialog.ui" line="371"/> <source>The following conflicted files are provided by this mod</source> <translation>以下冲突文件由此 Mod 提供</translation> </message> <message> - <location filename="modinfodialog.ui" line="432"/> - <location filename="modinfodialog.ui" line="479"/> + <location filename="modinfodialog.ui" line="418"/> + <location filename="modinfodialog.ui" line="465"/> <source>File</source> <translation>文件</translation> </message> <message> - <location filename="modinfodialog.ui" line="437"/> + <location filename="modinfodialog.ui" line="423"/> <source>Overwritten Mods</source> <translation>覆盖的 Mod</translation> </message> <message> - <location filename="modinfodialog.ui" line="447"/> + <location filename="modinfodialog.ui" line="433"/> <source>The following conflicted files are provided by other mods</source> <translation>以下冲突文件由其它 Mod 提供</translation> </message> <message> - <location filename="modinfodialog.ui" line="484"/> + <location filename="modinfodialog.ui" line="470"/> <source>Providing Mod</source> <translation>提供的 Mod</translation> </message> <message> - <location filename="modinfodialog.ui" line="494"/> + <location filename="modinfodialog.ui" line="480"/> <source>Non-Conflicted files</source> <translation>非冲突文件</translation> </message> <message> - <location filename="modinfodialog.ui" line="514"/> + <location filename="modinfodialog.ui" line="500"/> <source>Categories</source> <translation>类别</translation> </message> <message> - <location filename="modinfodialog.ui" line="537"/> + <location filename="modinfodialog.ui" line="523"/> <source>Primary Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="554"/> + <location filename="modinfodialog.ui" line="540"/> <source>Nexus Info</source> <translation>N网信息</translation> </message> <message> - <location filename="modinfodialog.ui" line="562"/> + <location filename="modinfodialog.ui" line="548"/> <source>Mod ID</source> <translation>Mod ID</translation> </message> <message> - <location filename="modinfodialog.ui" line="569"/> + <location filename="modinfodialog.ui" line="555"/> <source>Mod ID for this mod on Nexus.</source> <translation>N网上此 Mod 的 ID。</translation> </message> <message> - <location filename="modinfodialog.ui" line="572"/> + <location filename="modinfodialog.ui" line="558"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -2828,7 +2938,7 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">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="596"/> + <location filename="modinfodialog.ui" line="582"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -2841,27 +2951,27 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">Mod 的已安装版本,鼠标提示将显示N网上的当前版本,已安装的版本号只有在您通过 MO 来安装 Mod 的时候才会自动填写。</span></p></body></html></translation> </message> <message> - <location filename="modinfodialog.ui" line="603"/> + <location filename="modinfodialog.ui" line="589"/> <source>Version</source> <translation>版本</translation> </message> <message> - <location filename="modinfodialog.ui" line="633"/> + <location filename="modinfodialog.ui" line="619"/> <source>Refresh</source> <translation type="unfinished">刷新</translation> </message> <message> - <location filename="modinfodialog.ui" line="636"/> + <location filename="modinfodialog.ui" line="622"/> <source>Refresh all information from Nexus.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="650"/> + <location filename="modinfodialog.ui" line="636"/> <source>Description</source> <translation>描述</translation> </message> <message> - <location filename="modinfodialog.ui" line="665"/> + <location filename="modinfodialog.ui" line="651"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -2887,20 +2997,21 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">类型</translation> </message> <message> + <location filename="modinfodialog.cpp" line="1179"/> <source>Name</source> - <translation type="obsolete">名称</translation> + <translation type="unfinished">名称</translation> </message> <message> <source>Size (kB)</source> <translation type="obsolete">大小 (KB)</translation> </message> <message> - <location filename="modinfodialog.ui" line="701"/> + <location filename="modinfodialog.ui" line="687"/> <source>Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="715"/> + <location filename="modinfodialog.ui" line="701"/> <source>Notes</source> <translation type="unfinished"></translation> </message> @@ -2913,17 +3024,17 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">您支持过这个 Mod 了吗?</translation> </message> <message> - <location filename="modinfodialog.ui" line="725"/> + <location filename="modinfodialog.ui" line="711"/> <source>Filetree</source> <translation>文件树</translation> </message> <message> - <location filename="modinfodialog.ui" line="734"/> + <location filename="modinfodialog.ui" line="720"/> <source>A directory view of this mod</source> <translation>这个 Mod 的目录视图</translation> </message> <message> - <location filename="modinfodialog.ui" line="737"/> + <location filename="modinfodialog.ui" line="723"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -2938,17 +3049,17 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size: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="764"/> + <location filename="modinfodialog.ui" line="750"/> <source>Previous</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="771"/> + <location filename="modinfodialog.ui" line="757"/> <source>Next</source> <translation type="unfinished">下一步</translation> </message> <message> - <location filename="modinfodialog.ui" line="791"/> + <location filename="modinfodialog.ui" line="777"/> <source>Close</source> <translation>关闭</translation> </message> @@ -2983,8 +3094,8 @@ p, li { white-space: pre-wrap; } <translation>&新建文件夹</translation> </message> <message> - <location filename="modinfodialog.cpp" line="352"/> - <location filename="modinfodialog.cpp" line="367"/> + <location filename="modinfodialog.cpp" line="354"/> + <location filename="modinfodialog.cpp" line="369"/> <source>Save changes?</source> <translation>保存更改吗?</translation> </message> @@ -2993,79 +3104,79 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">保存更改到 "%1"?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="563"/> + <location filename="modinfodialog.cpp" line="570"/> <source>File Exists</source> <translation>文件已存在</translation> </message> <message> - <location filename="modinfodialog.cpp" line="563"/> + <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="580"/> + <location filename="modinfodialog.cpp" line="587"/> <source>failed to move file</source> <translation>无法移动文件</translation> </message> <message> - <location filename="modinfodialog.cpp" line="605"/> + <location filename="modinfodialog.cpp" line="612"/> <source>failed to create directory "optional"</source> <translation>无法创建 "optional" 目录</translation> </message> <message> - <location filename="modinfodialog.cpp" line="643"/> - <location filename="modinfodialog.cpp" line="1155"/> + <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="758"/> + <location filename="modinfodialog.cpp" line="765"/> <source>(description incomplete, please visit nexus)</source> <translation>(描述信息不完整,请访问N网)</translation> </message> <message> - <location filename="modinfodialog.cpp" line="713"/> + <location filename="modinfodialog.cpp" line="720"/> <source>Current Version: %1</source> <translation>当前版本: %1</translation> </message> <message> - <location filename="modinfodialog.cpp" line="717"/> + <location filename="modinfodialog.cpp" line="724"/> <source>No update available</source> <translation>没有可用的更新</translation> </message> <message> - <location filename="modinfodialog.cpp" line="697"/> + <location filename="modinfodialog.cpp" line="704"/> <source>Main</source> <translation>主要文件</translation> </message> <message> - <location filename="modinfodialog.cpp" line="352"/> - <location filename="modinfodialog.cpp" line="367"/> + <location filename="modinfodialog.cpp" line="354"/> + <location filename="modinfodialog.cpp" line="369"/> <source>Save changes to "%1"?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="698"/> + <location filename="modinfodialog.cpp" line="705"/> <source>Update</source> <translation>更新</translation> </message> <message> - <location filename="modinfodialog.cpp" line="699"/> + <location filename="modinfodialog.cpp" line="706"/> <source>Optional</source> <translation>可选文件</translation> </message> <message> - <location filename="modinfodialog.cpp" line="700"/> + <location filename="modinfodialog.cpp" line="707"/> <source>Old</source> <translation>旧档</translation> </message> <message> - <location filename="modinfodialog.cpp" line="701"/> + <location filename="modinfodialog.cpp" line="708"/> <source>Misc</source> <translation>杂项</translation> </message> <message> - <location filename="modinfodialog.cpp" line="702"/> + <location filename="modinfodialog.cpp" line="709"/> <source>Unknown</source> <translation>未知</translation> </message> @@ -3074,13 +3185,13 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">请求失败: %1</translation> </message> <message> - <location filename="modinfodialog.cpp" line="779"/> + <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="869"/> - <location filename="modinfodialog.cpp" line="874"/> + <location filename="modinfodialog.cpp" line="870"/> + <location filename="modinfodialog.cpp" line="875"/> <source>Confirm</source> <translation>确认</translation> </message> @@ -3097,85 +3208,110 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">例外: %1</translation> </message> <message> - <location filename="modinfodialog.cpp" line="858"/> + <location filename="modinfodialog.cpp" line="859"/> <source>Failed to delete %1</source> <translation>无法删除 %1</translation> </message> <message> - <location filename="modinfodialog.cpp" line="869"/> + <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="874"/> + <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="948"/> - <location filename="modinfodialog.cpp" line="954"/> + <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="960"/> + <location filename="modinfodialog.cpp" line="961"/> <source>Failed to create "%1"</source> <translation>无法创建 "%1"</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1064"/> - <location filename="modinfodialog.cpp" line="1088"/> + <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="1064"/> + <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="1067"/> - <location filename="modinfodialog.cpp" line="1091"/> + <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="1067"/> - <location filename="modinfodialog.cpp" line="1091"/> + <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="1078"/> - <location filename="modinfodialog.cpp" line="1101"/> + <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="1088"/> + <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="1135"/> + <location filename="modinfodialog.cpp" line="1136"/> <source>Un-Hide</source> <translation>取消隐藏</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1137"/> + <location filename="modinfodialog.cpp" line="1138"/> <source>Hide</source> <translation>隐藏</translation> </message> + <message> + <location filename="modinfodialog.cpp" line="1179"/> + <source>Please enter a name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1183"/> + <location filename="modinfodialog.cpp" line="1186"/> + <source>Error</source> + <translation type="unfinished">错误</translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1183"/> + <source>Invalid name. Must be a valid file name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1186"/> + <source>A tweak by that name exists</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1198"/> + <source>Create Tweak</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>ModInfoOverwrite</name> <message> - <location filename="modinfo.h" line="812"/> <source>Overwrite</source> - <translation>覆盖</translation> + <translation type="obsolete">覆盖</translation> </message> <message> - <location filename="modinfo.cpp" line="821"/> + <location filename="modinfo.cpp" line="859"/> <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source> <translation type="unfinished">此虚拟安装包内包含来自虚拟 Data 树的文件,但文件发生了变化 (例: 被CK修改了)</translation> </message> @@ -3183,17 +3319,17 @@ p, li { white-space: pre-wrap; } <context> <name>ModInfoRegular</name> <message> - <location filename="modinfo.cpp" line="392"/> + <location filename="modinfo.cpp" line="393"/> <source>failed to write %1/meta.ini: %2</source> <translation>无法写入 %1/meta.ini: %2</translation> </message> <message> - <location filename="modinfo.cpp" line="625"/> + <location filename="modinfo.cpp" line="654"/> <source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source> <translation type="unfinished">%1 中未包含 esp 或 esm 和有效的目录 (textures, meshes, interface, ...)</translation> </message> <message> - <location filename="modinfo.cpp" line="629"/> + <location filename="modinfo.cpp" line="658"/> <source>Categories: <br></source> <translation type="unfinished">种类: <br></translation> </message> @@ -3201,7 +3337,7 @@ p, li { white-space: pre-wrap; } <context> <name>ModList</name> <message> - <location filename="modlist.cpp" line="662"/> + <location filename="modlist.cpp" line="775"/> <source>Confirm</source> <translation>确认</translation> </message> @@ -3218,9 +3354,8 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">无效的行索引 %1</translation> </message> <message> - <location filename="modlist.cpp" line="94"/> <source>Overwrite</source> - <translation>覆盖</translation> + <translation type="obsolete">覆盖</translation> </message> <message> <location filename="modlist.cpp" line="109"/> @@ -3271,17 +3406,17 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">最高值</translation> </message> <message> - <location filename="modlist.cpp" line="736"/> + <location filename="modlist.cpp" line="849"/> <source>Category of the mod.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="737"/> + <location filename="modlist.cpp" line="850"/> <source>Id of the mod as used on Nexus.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="738"/> + <location filename="modlist.cpp" line="851"/> <source>Emblemes to highlight things that might require attention.</source> <translation type="unfinished"></translation> </message> @@ -3290,7 +3425,7 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">%1 中未包含 esp 或 esm 和有效的目录 (textures, meshes, interface, ...)</translation> </message> <message> - <location filename="modlist.cpp" line="298"/> + <location filename="modlist.cpp" line="317"/> <source>Categories: <br></source> <translation>种类: <br></translation> </message> @@ -3299,7 +3434,7 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">此虚拟安装包内包含来自虚拟 Data 树的文件,但文件发生了变化 (例: 被CK修改了)</translation> </message> <message> - <location filename="modlist.cpp" line="294"/> + <location filename="modlist.cpp" line="307"/> <source>installed version: %1, newest version: %2</source> <translation>当前版本: %1,最新版本: %2</translation> </message> @@ -3312,83 +3447,88 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Mod 名称</translation> </message> <message> - <location filename="modlist.cpp" line="719"/> + <location filename="modlist.cpp" line="832"/> <source>Version</source> <translation>版本</translation> </message> <message> - <location filename="modlist.cpp" line="733"/> + <location filename="modlist.cpp" line="846"/> <source>Version of the mod (if available)</source> <translation>Mod 版本 (如果可用)</translation> </message> <message> - <location filename="modlist.cpp" line="720"/> + <location filename="modlist.cpp" line="833"/> <source>Priority</source> <translation>优先级</translation> </message> <message> - <location filename="modlist.cpp" line="184"/> + <location filename="modlist.cpp" line="196"/> <source>invalid</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="327"/> + <location filename="modlist.cpp" line="309"/> + <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="346"/> <source>Invalid name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="603"/> + <location filename="modlist.cpp" line="716"/> <source>drag&drop failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="717"/> + <location filename="modlist.cpp" line="830"/> <source>Flags</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="718"/> + <location filename="modlist.cpp" line="831"/> <source>Mod Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="721"/> + <location filename="modlist.cpp" line="834"/> <source>Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="722"/> + <location filename="modlist.cpp" line="835"/> <source>Nexus ID</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="723"/> + <location filename="modlist.cpp" line="836"/> <source>Installation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="724"/> - <location filename="modlist.cpp" line="740"/> + <location filename="modlist.cpp" line="837"/> + <location filename="modlist.cpp" line="853"/> <source>unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="732"/> + <location filename="modlist.cpp" line="845"/> <source>Name of your mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="734"/> + <location filename="modlist.cpp" line="847"/> <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="739"/> + <location filename="modlist.cpp" line="852"/> <source>Time this mod was installed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="662"/> + <location filename="modlist.cpp" line="775"/> <source>Are you sure you want to remove "%1"?</source> <translation>确定要移除 "%1" 吗?</translation> </message> @@ -3424,12 +3564,12 @@ p, li { white-space: pre-wrap; } <context> <name>MyFileSystemModel</name> <message> - <location filename="overwriteinfodialog.cpp" line="48"/> + <location filename="overwriteinfodialog.cpp" line="47"/> <source>Overwrites</source> <translation>覆盖</translation> </message> <message> - <location filename="overwriteinfodialog.cpp" line="60"/> + <location filename="overwriteinfodialog.cpp" line="59"/> <source>not implemented</source> <translation>未实现</translation> </message> @@ -3438,11 +3578,16 @@ p, li { white-space: pre-wrap; } <name>NXMAccessManager</name> <message> <location filename="nxmaccessmanager.cpp" line="130"/> + <source>Logging into Nexus</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="nxmaccessmanager.cpp" line="145"/> <source>timeout</source> <translation>超时</translation> </message> <message> - <location filename="nxmaccessmanager.cpp" line="168"/> + <location filename="nxmaccessmanager.cpp" line="185"/> <source>Please check your password</source> <translation>请检查您的密码</translation> </message> @@ -3492,17 +3637,17 @@ p, li { white-space: pre-wrap; } <context> <name>NexusInterface</name> <message> - <location filename="nexusinterface.cpp" line="201"/> + <location filename="nexusinterface.cpp" line="219"/> <source>Failed to guess mod id for "%1", please pick the correct one</source> <translation type="unfinished"></translation> </message> <message> - <location filename="nexusinterface.cpp" line="421"/> + <location filename="nexusinterface.cpp" line="440"/> <source>empty response</source> <translation>未响应</translation> </message> <message> - <location filename="nexusinterface.cpp" line="450"/> + <location filename="nexusinterface.cpp" line="469"/> <source>invalid response</source> <translation>无效的响应</translation> </message> @@ -4429,34 +4574,34 @@ Right now this has very limited functionality</source> <translation>&新建文件夹</translation> </message> <message> - <location filename="overwriteinfodialog.cpp" line="137"/> + <location filename="overwriteinfodialog.cpp" line="136"/> <source>Failed to delete "%1"</source> <translation>无法删除 "%1"</translation> </message> <message> - <location filename="overwriteinfodialog.cpp" line="148"/> - <location filename="overwriteinfodialog.cpp" line="153"/> + <location filename="overwriteinfodialog.cpp" line="147"/> + <location filename="overwriteinfodialog.cpp" line="152"/> <source>Confirm</source> <translation>确认</translation> </message> <message> - <location filename="overwriteinfodialog.cpp" line="148"/> + <location filename="overwriteinfodialog.cpp" line="147"/> <source>Are sure you want to delete "%1"?</source> <translation>确定要删除 "%1" 吗?</translation> </message> <message> - <location filename="overwriteinfodialog.cpp" line="153"/> + <location filename="overwriteinfodialog.cpp" line="152"/> <source>Are sure you want to delete the selected files?</source> <translation>确定要删除所选的文件吗?</translation> </message> <message> - <location filename="overwriteinfodialog.cpp" line="203"/> - <location filename="overwriteinfodialog.cpp" line="209"/> + <location filename="overwriteinfodialog.cpp" line="202"/> + <location filename="overwriteinfodialog.cpp" line="208"/> <source>New Folder</source> <translation>新建文件夹</translation> </message> <message> - <location filename="overwriteinfodialog.cpp" line="215"/> + <location filename="overwriteinfodialog.cpp" line="214"/> <source>Failed to create "%1"</source> <translation>无法创建 "%1"</translation> </message> @@ -4468,70 +4613,85 @@ Right now this has very limited functionality</source> <translation type="obsolete">ESP 文件没有找到: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="98"/> + <location filename="pluginlist.cpp" line="103"/> <source>Mod Index</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="99"/> - <location filename="pluginlist.cpp" line="111"/> + <location filename="pluginlist.cpp" line="104"/> + <location filename="pluginlist.cpp" line="116"/> <source>unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="107"/> + <location filename="pluginlist.cpp" line="112"/> <source>Name of your mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="108"/> + <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"></translation> </message> <message> - <location filename="pluginlist.cpp" line="110"/> + <location filename="pluginlist.cpp" line="115"/> <source>The modindex determins the formids of objects originating from this mods.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="208"/> + <location filename="pluginlist.cpp" line="151"/> + <source>failed to update esp info for file %1 (source id: %2), error: %3</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="pluginlist.cpp" line="218"/> <source>esp not found: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="215"/> - <location filename="pluginlist.cpp" line="227"/> + <location filename="pluginlist.cpp" line="225"/> + <location filename="pluginlist.cpp" line="237"/> <source>Confirm</source> <translation type="unfinished">确认</translation> </message> <message> - <location filename="pluginlist.cpp" line="215"/> + <location filename="pluginlist.cpp" line="225"/> <source>Really enable all plugins?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="227"/> + <location filename="pluginlist.cpp" line="237"/> <source>Really disable all plugins?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="353"/> + <location filename="pluginlist.cpp" line="365"/> <source>The file containing locked plugin indices is broken</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="366"/> - <location filename="pluginlist.cpp" line="405"/> + <location filename="pluginlist.cpp" line="378"/> + <location filename="pluginlist.cpp" line="417"/> <source>failed to open output file: %1</source> <translation>无法打开输出文件: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="393"/> + <location filename="pluginlist.cpp" line="405"/> <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="737"/> + <location filename="pluginlist.cpp" line="755"/> + <source>Missing Masters</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="pluginlist.cpp" line="761"/> + <source>Enabled Masters</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="pluginlist.cpp" line="873"/> <source>failed to restore load order for %1</source> <translation type="unfinished"></translation> </message> @@ -4544,17 +4704,17 @@ Right now this has very limited functionality</source> <translation type="obsolete">最高值</translation> </message> <message> - <location filename="pluginlist.cpp" line="631"/> + <location filename="pluginlist.cpp" line="751"/> <source>This plugin can't be disabled (enforced by the game)</source> <translation>这个插件不能被禁用 (由游戏执行)</translation> </message> <message> - <location filename="pluginlist.cpp" line="633"/> + <location filename="pluginlist.cpp" line="753"/> <source>Origin: %1</source> <translation>隶属于: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="96"/> + <location filename="pluginlist.cpp" line="101"/> <source>Name</source> <translation>名称</translation> </message> @@ -4563,7 +4723,7 @@ Right now this has very limited functionality</source> <translation type="obsolete">Mod 名称</translation> </message> <message> - <location filename="pluginlist.cpp" line="97"/> + <location filename="pluginlist.cpp" line="102"/> <source>Priority</source> <translation>优先级</translation> </message> @@ -4592,22 +4752,28 @@ Right now this has very limited functionality</source> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" 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;"> +</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> + <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: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></oldsource> <translation type="unfinished"></translation> </message> <message> - <location filename="problemsdialog.cpp" line="29"/> - <source>fix</source> - <translation type="unfinished"></translation> + <location filename="problemsdialog.ui" line="75"/> + <source>Close</source> + <translation type="unfinished">关闭</translation> </message> <message> - <location filename="problemsdialog.cpp" line="30"/> + <location filename="problemsdialog.cpp" line="44"/> + <location filename="problemsdialog.cpp" line="45"/> <source>Fix</source> <translation type="unfinished"></translation> </message> <message> - <location filename="problemsdialog.cpp" line="34"/> + <location filename="problemsdialog.cpp" line="49"/> <source>No guided fix</source> <translation type="unfinished"></translation> </message> @@ -4619,72 +4785,82 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">无法应用 Ini 设定</translation> </message> <message> - <location filename="profile.cpp" line="56"/> + <location filename="profile.cpp" line="58"/> <source>invalid profile name %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="60"/> + <location filename="profile.cpp" line="62"/> <source>failed to create %1</source> <translation type="unfinished">无法创建 %1</translation> </message> <message> - <location filename="profile.cpp" line="152"/> + <location filename="profile.cpp" line="155"/> + <source>failed to open temporary file</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profile.cpp" line="192"/> <source>failed to open "%1" for writing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="189"/> + <location filename="profile.cpp" line="198"/> + <source>failed to write mod list: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profile.cpp" line="209"/> <source>failed to update tweaked ini file, wrong settings may be used: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="219"/> + <location filename="profile.cpp" line="239"/> <source>failed to create tweaked ini: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="271"/> - <location filename="profile.cpp" line="300"/> - <location filename="profile.cpp" line="384"/> - <location filename="profile.cpp" line="402"/> - <location filename="profile.cpp" line="412"/> + <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="365"/> + <location filename="profile.cpp" line="387"/> <source>Overwrite directory couldn't be parsed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="374"/> + <location filename="profile.cpp" line="396"/> <source>invalid priority %1</source> <translation>无效的优先级 %1</translation> </message> <message> - <location filename="profile.cpp" line="561"/> + <location filename="profile.cpp" line="584"/> <source>failed to parse ini file (%1)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="589"/> + <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="613"/> - <location filename="profile.cpp" line="650"/> + <location filename="profile.cpp" line="636"/> + <location filename="profile.cpp" line="673"/> <source>failed to modify "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="678"/> + <location filename="profile.cpp" line="701"/> <source>Delete savegames?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="679"/> + <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"></translation> </message> @@ -4900,37 +5076,61 @@ p, li { white-space: pre-wrap; } <translation>请输入配置文件的名称</translation> </message> <message> - <location filename="profilesdialog.cpp" line="160"/> + <location filename="profilesdialog.cpp" line="162"/> <source>failed to copy profile: %1</source> <translation>无法复制配置文件: %1</translation> </message> <message> - <location filename="profilesdialog.cpp" line="167"/> + <location filename="profilesdialog.cpp" line="165"/> + <source>Invalid name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.cpp" line="165"/> + <source>Invalid profile name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.cpp" line="172"/> <source>Confirm</source> <translation>确认</translation> </message> <message> - <location filename="profilesdialog.cpp" line="167"/> + <location filename="profilesdialog.cpp" line="172"/> + <source>Are you sure you want to remove this profile (including local savegames if any)?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.cpp" line="182"/> + <source>Profile broken</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.cpp" line="183"/> + <source>This profile you'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>确定要移除这个配置吗?</translation> + <translation type="obsolete">确定要移除这个配置吗?</translation> </message> <message> - <location filename="profilesdialog.cpp" line="196"/> + <location filename="profilesdialog.cpp" line="215"/> <source>Rename Profile</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profilesdialog.cpp" line="196"/> + <location filename="profilesdialog.cpp" line="215"/> <source>New Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profilesdialog.cpp" line="233"/> + <location filename="profilesdialog.cpp" line="252"/> <source>failed to change archive invalidation state: %1</source> <translation>无法改变档案无效化状态: %1</translation> </message> <message> - <location filename="profilesdialog.cpp" line="270"/> + <location filename="profilesdialog.cpp" line="289"/> <source>failed to determine if invalidation is active: %1</source> <translation>无法确定无效化是否被激活: %1</translation> </message> @@ -4938,20 +5138,20 @@ p, li { white-space: pre-wrap; } <context> <name>QObject</name> <message> - <location filename="categories.cpp" line="133"/> + <location filename="categories.cpp" line="140"/> <source>Failed to save custom categories</source> <translation>无法保存自定义类别</translation> </message> <message> - <location filename="categories.cpp" line="210"/> - <location filename="categories.cpp" line="245"/> - <location filename="categories.cpp" line="255"/> - <location filename="categories.cpp" line="265"/> + <location filename="categories.cpp" line="217"/> + <location filename="categories.cpp" line="252"/> + <location filename="categories.cpp" line="262"/> + <location filename="categories.cpp" line="272"/> <source>invalid index %1</source> <translation>无效的索引 %1</translation> </message> <message> - <location filename="categories.cpp" line="276"/> + <location filename="categories.cpp" line="283"/> <source>invalid category id %1</source> <translation>无效的类别 %1</translation> </message> @@ -4967,7 +5167,7 @@ p, li { white-space: pre-wrap; } <translation>无法确认帐户名称</translation> </message> <message> - <location filename="installationmanager.cpp" line="63"/> + <location filename="installationmanager.cpp" line="64"/> <location filename="selfupdater.cpp" line="52"/> <source>invalid 7-zip32.dll: %1</source> <translation>无效的 7-zip32.dll: %1</translation> @@ -5037,12 +5237,12 @@ p, li { white-space: pre-wrap; } <translation>无法设置代理DLL加载</translation> </message> <message> - <location filename="profile.cpp" line="93"/> + <location filename="profile.cpp" line="95"/> <source>"%1" is missing</source> <translation>"%1" 缺失</translation> </message> <message> - <location filename="main.cpp" line="134"/> + <location filename="main.cpp" line="138"/> <source>Permissions required</source> <translation>需要权限</translation> </message> @@ -5051,8 +5251,8 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">当前的用户帐户没有运行 Mod Organizer 所需的访问权限,必要的修改将会自动进行 (MO 的目录将会为当前用户帐户而变得可写),您将被请求使用管理员权限执行 "mo_helper.exe"。</translation> </message> <message> - <location filename="main.cpp" line="234"/> - <location filename="main.cpp" line="272"/> + <location filename="main.cpp" line="230"/> + <location filename="main.cpp" line="268"/> <source>Woops</source> <translation>糟糕</translation> </message> @@ -5061,61 +5261,66 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Mod Organizer 崩溃了!要生成诊断文件吗?如果您发送这个文件到我的邮箱 (sherb@gmx.net) 里的话,这个 Bug 会很有可能被修复。</translation> </message> <message> - <location filename="main.cpp" line="135"/> - <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> + <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"></translation> </message> <message> - <location filename="main.cpp" line="235"/> + <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> </message> <message> - <location filename="main.cpp" line="273"/> + <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="335"/> - <location filename="settings.cpp" line="462"/> + <location filename="main.cpp" line="331"/> + <location filename="settings.cpp" line="528"/> <source>Mod Organizer</source> <translation>Mod Organizer</translation> </message> <message> - <location filename="main.cpp" line="335"/> + <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="357"/> + <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="360"/> - <location filename="main.cpp" line="389"/> + <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="mainwindow.cpp" line="752"/> + <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"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="770"/> <source>Please use "Help" from the toolbar to get usage instructions to all elements</source> <translation>请使用工具栏上的“帮助”来获得所有元素的使用说明</translation> </message> <message> - <location filename="mainwindow.cpp" line="1470"/> - <location filename="mainwindow.cpp" line="3723"/> + <location filename="mainwindow.cpp" line="1538"/> + <location filename="mainwindow.cpp" line="4024"/> <source><Manage...></source> <translation><管理...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1488"/> + <location filename="mainwindow.cpp" line="1556"/> <source>failed to parse profile %1: %2</source> <translation>无法解析配置文件 %1: %2</translation> </message> <message> - <location filename="pluginlist.cpp" line="310"/> - <location filename="profile.cpp" line="228"/> + <location filename="pluginlist.cpp" line="320"/> + <location filename="profile.cpp" line="249"/> <source>failed to find "%1"</source> <translation>未能找到 "%1"</translation> </message> @@ -5124,17 +5329,17 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">编码错误,请向作者汇报此 Bug 并且附上 mo_interface.log 文件!</translation> </message> <message> - <location filename="pluginlist.cpp" line="467"/> + <location filename="pluginlist.cpp" line="479"/> <source>failed to access %1</source> <translation>无法访问 %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="481"/> + <location filename="pluginlist.cpp" line="493"/> <source>failed to set file time %1</source> <translation>无法设置文件时间 %1</translation> </message> <message> - <location filename="profile.cpp" line="67"/> + <location filename="profile.cpp" line="69"/> <source>failed to create %1</source> <translation>无法创建 %1</translation> </message> @@ -5170,12 +5375,12 @@ p, li { white-space: pre-wrap; } <translation>无法打开 %1</translation> </message> <message> - <location filename="settings.cpp" line="469"/> + <location filename="settings.cpp" line="535"/> <source>Script Extender</source> <translation>脚本拓展</translation> </message> <message> - <location filename="settings.cpp" line="476"/> + <location filename="settings.cpp" line="542"/> <source>Proxy DLL</source> <translation>代理DLL</translation> </message> @@ -5318,9 +5523,8 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <context> <name>QuestionBoxMemory</name> <message> - <location filename="questionboxmemory.ui" line="86"/> <source>Remember selection</source> - <translation>记住我的选择</translation> + <translation type="obsolete">记住我的选择</translation> </message> </context> <context> @@ -5428,9 +5632,9 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe </message> <message> <location filename="selfupdater.cpp" line="116"/> - <location filename="selfupdater.cpp" line="140"/> - <location filename="selfupdater.cpp" line="269"/> - <location filename="selfupdater.cpp" line="417"/> + <location filename="selfupdater.cpp" line="139"/> + <location filename="selfupdater.cpp" line="268"/> + <location filename="selfupdater.cpp" line="415"/> <source>Update</source> <translation>更新</translation> </message> @@ -5440,57 +5644,57 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <translation>有可用的更新 (最新版本: %1),您想要安装它吗?</translation> </message> <message> - <location filename="selfupdater.cpp" line="141"/> + <location filename="selfupdater.cpp" line="140"/> <source>Download in progress</source> <translation>正在下载</translation> </message> <message> - <location filename="selfupdater.cpp" line="196"/> + <location filename="selfupdater.cpp" line="195"/> <source>Download failed: %1</source> <translation>下载失败: %1</translation> </message> <message> - <location filename="selfupdater.cpp" line="207"/> + <location filename="selfupdater.cpp" line="206"/> <source>Failed to install update: %1</source> <translation>无法安装更新: %1</translation> </message> <message> - <location filename="selfupdater.cpp" line="228"/> + <location filename="selfupdater.cpp" line="227"/> <source>failed to open archive "%1": %2</source> <translation>无法打开压缩包 "%1": %2</translation> </message> <message> - <location filename="selfupdater.cpp" line="251"/> + <location filename="selfupdater.cpp" line="250"/> <source>failed to move outdated files: %1. Please update manually.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="selfupdater.cpp" line="269"/> + <location filename="selfupdater.cpp" line="268"/> <source>Update installed, Mod Organizer will now be restarted.</source> <translation>更新完成,Mod Organizer 现在将重新启动。</translation> </message> <message> - <location filename="selfupdater.cpp" line="297"/> + <location filename="selfupdater.cpp" line="296"/> <source>Error</source> <translation>错误</translation> </message> <message> - <location filename="selfupdater.cpp" line="353"/> + <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>解析响应时发生错误。请回报此 Bug 并附上 mo_interface.log!</translation> </message> <message> - <location filename="selfupdater.cpp" line="418"/> + <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>没有可用于此版本的更新文件,需要下载完整的安装包 (%1 KB)</translation> </message> <message> - <location filename="selfupdater.cpp" line="427"/> + <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="461"/> + <location filename="selfupdater.cpp" line="459"/> <source>No download server available. Please try again later.</source> <translation type="unfinished">没有可用的下载服务器,请稍后再尝试下载。</translation> </message> @@ -5499,7 +5703,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <translation type="obsolete">未找到更新文件</translation> </message> <message> - <location filename="selfupdater.cpp" line="441"/> + <location filename="selfupdater.cpp" line="439"/> <source>Failed to retrieve update information: %1</source> <translation>无法检索更新信息: %1</translation> </message> @@ -5507,26 +5711,22 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <context> <name>Settings</name> <message> - <location filename="settings.cpp" line="278"/> - <source>setting for invalid plugin "%1" requested</source> - <translation type="unfinished"></translation> + <source>Administrative rights required to change this.</source> + <translation type="obsolete">需要管理员的权限来更改这个。</translation> </message> <message> - <location filename="settings.cpp" line="282"/> - <source>invalid setting "%1" requested for plugin "%2"</source> + <location filename="settings.cpp" line="306"/> + <location filename="settings.cpp" line="325"/> + <source>attempt to store setting for unknown plugin "%1"</source> <translation type="unfinished"></translation> </message> <message> - <source>Administrative rights required to change this.</source> - <translation type="obsolete">需要管理员的权限来更改这个。</translation> - </message> - <message> - <location filename="settings.cpp" line="573"/> + <location filename="settings.cpp" line="646"/> <source>Confirm</source> <translation>确认</translation> </message> <message> - <location filename="settings.cpp" line="573"/> + <location filename="settings.cpp" line="646"/> <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> @@ -5715,7 +5915,12 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="594"/> + <location filename="settingsdialog.ui" line="512"/> + <source>Blacklisted Plugins (use <del> to remove):</source> + <translation type="unfinished"></translation> + </message> + <message> + <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. @@ -5811,47 +6016,47 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="427"/> + <location filename="settingsdialog.ui" line="429"/> <source>Author:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="441"/> + <location filename="settingsdialog.ui" line="443"/> <source>Version:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="455"/> + <location filename="settingsdialog.ui" line="457"/> <source>Description:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="493"/> + <location filename="settingsdialog.ui" line="495"/> <source>Key</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="498"/> + <location filename="settingsdialog.ui" line="500"/> <source>Value</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="509"/> + <location filename="settingsdialog.ui" line="523"/> <source>Workarounds</source> <translation>解决方案</translation> </message> <message> - <location filename="settingsdialog.ui" line="517"/> + <location filename="settingsdialog.ui" line="531"/> <source>Steam App ID</source> <translation>Steam App ID</translation> </message> <message> - <location filename="settingsdialog.ui" line="537"/> + <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="540"/> + <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; } @@ -5878,12 +6083,12 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">其中 22380 就是您要找的 ID。</span></p></body></html></translation> </message> <message> - <location filename="settingsdialog.ui" line="571"/> + <location filename="settingsdialog.ui" line="585"/> <source>Load Mechanism</source> <translation>加载机制</translation> </message> <message> - <location filename="settingsdialog.ui" line="591"/> + <location filename="settingsdialog.ui" line="605"/> <source>Select loading mechanism. See help for details.</source> <translation>选择加载机制,使用帮助查看更多细节。</translation> </message> @@ -5908,17 +6113,17 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt; font-weight:600;">代理DLL</span><span style=" font-size:9pt;"> 在这种模式下,MO 将替换一个游戏的 dll 来加载 MO (当然原来的 dll),这仅适用于 Steam 版本的游戏,并且只在 Skyrim 上做过测试。请只在其它加载机制不能工作的情况下才使用它。</span></p></body></html></translation> </message> <message> - <location filename="settingsdialog.ui" line="611"/> + <location filename="settingsdialog.ui" line="625"/> <source>NMM Version</source> <translation>NMM 版本</translation> </message> <message> - <location filename="settingsdialog.ui" line="631"/> + <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="634"/> + <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. @@ -5931,7 +6136,7 @@ tl;dr-version: If Nexus-features don't work, insert the current version num 变更版本号: 如果N网功能不正常了,那么请在这里输入 NMM 的当前版本号并重试一下。</translation> </message> <message> - <location filename="settingsdialog.ui" line="719"/> + <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> @@ -5944,48 +6149,48 @@ tl;dr-version: If Nexus-features don't work, insert the current version num <translation type="obsolete">例如: 0.33.1</translation> </message> <message> - <location filename="settingsdialog.ui" line="656"/> + <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="659"/> + <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="663"/> + <location filename="settingsdialog.ui" line="677"/> <source>Hide inactive ESPs/ESMs</source> <translation>隐藏未激活的 ESP 或 ESM</translation> </message> <message> - <location filename="settingsdialog.ui" line="670"/> + <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> </message> <message> - <location filename="settingsdialog.ui" line="673"/> + <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> </message> <message> - <location filename="settingsdialog.ui" line="677"/> + <location filename="settingsdialog.ui" line="691"/> <source>Force-enable game files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="687"/> - <location filename="settingsdialog.ui" line="691"/> + <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="695"/> + <location filename="settingsdialog.ui" line="709"/> <source>Back-date BSAs</source> <translation>重置 BSA 文件修改日期</translation> </message> @@ -5994,27 +6199,27 @@ For the other games this is not a sufficient replacement for AI!</source> <translation type="obsolete">这些是 Mod Organizer 的问题解决方案。它们通常是不必修改的,请确保在您变更了这里的任何东西之前已经读过了帮助文档。</translation> </message> <message> - <location filename="settingsdialog.cpp" line="89"/> + <location filename="settingsdialog.cpp" line="94"/> <source>Select download directory</source> <translation>选择下载目录</translation> </message> <message> - <location filename="settingsdialog.cpp" line="97"/> + <location filename="settingsdialog.cpp" line="102"/> <source>Select mod directory</source> <translation>选择 Mod 目录</translation> </message> <message> - <location filename="settingsdialog.cpp" line="105"/> + <location filename="settingsdialog.cpp" line="110"/> <source>Select cache directory</source> <translation>选择缓存目录</translation> </message> <message> - <location filename="settingsdialog.cpp" line="113"/> + <location filename="settingsdialog.cpp" line="118"/> <source>Confirm?</source> <translation>确认?</translation> </message> <message> - <location filename="settingsdialog.cpp" line="114"/> + <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> diff --git a/src/organizer_zh_TW.qm b/src/organizer_zh_TW.qm Binary files differindex 73a06572..8cbe75e4 100644 --- a/src/organizer_zh_TW.qm +++ b/src/organizer_zh_TW.qm diff --git a/src/organizer_zh_TW.ts b/src/organizer_zh_TW.ts index c6868f95..70b41e50 100644 --- a/src/organizer_zh_TW.ts +++ b/src/organizer_zh_TW.ts @@ -255,7 +255,7 @@ p, li { white-space: pre-wrap; } <translation type="unfinished">完成</translation> </message> <message> - <location filename="downloadlist.cpp" line="79"/> + <location filename="downloadlist.cpp" line="80"/> <source>Information missing, please select "Query Info" from the context menu to re-retrieve.</source> <translation>訊息丟失,請在右鍵菜單裡選擇“查詢訊息”來重新檢索。</translation> </message> @@ -269,11 +269,6 @@ p, li { white-space: pre-wrap; } <translation>占位符</translation> </message> <message> - <location filename="downloadlistwidget.ui" line="81"/> - <source>0</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="downloadlistwidget.ui" line="88"/> <source>KB</source> <translation type="unfinished"></translation> @@ -336,60 +331,65 @@ p, li { white-space: pre-wrap; } <translation>完成</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="215"/> - <location filename="downloadlistwidgetcompact.cpp" line="224"/> - <location filename="downloadlistwidgetcompact.cpp" line="233"/> - <location filename="downloadlistwidgetcompact.cpp" line="242"/> + <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="216"/> + <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="225"/> + <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="234"/> + <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> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="243"/> + <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> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="269"/> + <location filename="downloadlistwidgetcompact.cpp" line="275"/> <source>Install</source> <translation>安裝</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="271"/> + <location filename="downloadlistwidgetcompact.cpp" line="277"/> <source>Query Info</source> <translation>查詢訊息</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="273"/> + <location filename="downloadlistwidgetcompact.cpp" line="279"/> <source>Delete</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="274"/> + <location filename="downloadlistwidgetcompact.cpp" line="281"/> + <source>Un-Hide</source> + <translation type="unfinished">取消隱藏</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="283"/> <source>Remove from View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="279"/> + <location filename="downloadlistwidgetcompact.cpp" line="289"/> <source>Remove</source> <translation>移除</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="276"/> + <location filename="downloadlistwidgetcompact.cpp" line="286"/> <source>Cancel</source> <translation>取消</translation> </message> @@ -409,32 +409,32 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="277"/> + <location filename="downloadlistwidgetcompact.cpp" line="287"/> <source>Pause</source> <translation>暫停</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="280"/> + <location filename="downloadlistwidgetcompact.cpp" line="290"/> <source>Resume</source> <translation>繼續</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="284"/> + <location filename="downloadlistwidgetcompact.cpp" line="294"/> <source>Delete Installed...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="285"/> + <location filename="downloadlistwidgetcompact.cpp" line="295"/> <source>Delete All...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="287"/> + <location filename="downloadlistwidgetcompact.cpp" line="298"/> <source>Remove Installed...</source> <translation>移除已安裝的項目...</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="288"/> + <location filename="downloadlistwidgetcompact.cpp" line="299"/> <source>Remove All...</source> <translation>移除所有...</translation> </message> @@ -442,60 +442,65 @@ p, li { white-space: pre-wrap; } <context> <name>DownloadListWidgetDelegate</name> <message> - <location filename="downloadlistwidget.cpp" line="228"/> - <location filename="downloadlistwidget.cpp" line="237"/> - <location filename="downloadlistwidget.cpp" line="246"/> - <location filename="downloadlistwidget.cpp" line="255"/> + <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="229"/> + <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="238"/> + <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="247"/> + <location filename="downloadlistwidget.cpp" line="252"/> <source>This will remove all finished downloads from this list (but NOT from disk).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="256"/> + <location filename="downloadlistwidget.cpp" line="261"/> <source>This will remove all installed downloads from this list (but NOT from disk).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="281"/> + <location filename="downloadlistwidget.cpp" line="287"/> <source>Install</source> <translation>安裝</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="283"/> + <location filename="downloadlistwidget.cpp" line="289"/> <source>Query Info</source> <translation>查詢訊息</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="285"/> + <location filename="downloadlistwidget.cpp" line="291"/> <source>Delete</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="286"/> + <location filename="downloadlistwidget.cpp" line="293"/> + <source>Un-Hide</source> + <translation type="unfinished">取消隱藏</translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="295"/> <source>Remove from View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="291"/> + <location filename="downloadlistwidget.cpp" line="301"/> <source>Remove</source> <translation>移除</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="288"/> + <location filename="downloadlistwidget.cpp" line="298"/> <source>Cancel</source> <translation>取消</translation> </message> @@ -510,32 +515,32 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="289"/> + <location filename="downloadlistwidget.cpp" line="299"/> <source>Pause</source> <translation>暫停</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="292"/> + <location filename="downloadlistwidget.cpp" line="302"/> <source>Resume</source> <translation>繼續</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="296"/> + <location filename="downloadlistwidget.cpp" line="306"/> <source>Delete Installed...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="297"/> + <location filename="downloadlistwidget.cpp" line="307"/> <source>Delete All...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="299"/> + <location filename="downloadlistwidget.cpp" line="310"/> <source>Remove Installed...</source> <translation>移除已安裝的項目...</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="300"/> + <location filename="downloadlistwidget.cpp" line="311"/> <source>Remove All...</source> <translation>移除所有...</translation> </message> @@ -543,67 +548,80 @@ p, li { white-space: pre-wrap; } <context> <name>DownloadManager</name> <message> - <location filename="downloadmanager.cpp" line="125"/> + <location filename="downloadmanager.cpp" line="132"/> <source>failed to rename "%1" to "%2"</source> <translation>重新命名 "%1 "為 "%2" 時出錯</translation> </message> <message> - <location filename="downloadmanager.cpp" line="306"/> + <location filename="downloadmanager.cpp" line="322"/> <source>Download again?</source> <translation>重新下載?</translation> </message> <message> - <location filename="downloadmanager.cpp" line="306"/> + <location filename="downloadmanager.cpp" line="322"/> <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="336"/> + <location filename="downloadmanager.cpp" line="354"/> <source>failed to download %1: could not open output file: %2</source> <translation>下載 %1 失敗: 無法開啟輸出檔案: %2</translation> </message> <message> - <location filename="downloadmanager.cpp" line="366"/> - <location filename="downloadmanager.cpp" line="585"/> - <location filename="downloadmanager.cpp" line="595"/> - <location filename="downloadmanager.cpp" line="604"/> - <location filename="downloadmanager.cpp" line="614"/> - <location filename="downloadmanager.cpp" line="624"/> + <location filename="downloadmanager.cpp" line="383"/> + <source>Wrong Game</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="383"/> + <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> + </message> + <message> + <location filename="downloadmanager.cpp" line="395"/> + <location filename="downloadmanager.cpp" line="462"/> <location filename="downloadmanager.cpp" line="634"/> - <location filename="downloadmanager.cpp" line="645"/> - <location filename="downloadmanager.cpp" line="654"/> - <location filename="downloadmanager.cpp" line="664"/> - <location filename="downloadmanager.cpp" line="679"/> + <location filename="downloadmanager.cpp" line="644"/> + <location filename="downloadmanager.cpp" line="653"/> + <location filename="downloadmanager.cpp" line="667"/> + <location filename="downloadmanager.cpp" line="677"/> + <location filename="downloadmanager.cpp" line="687"/> + <location filename="downloadmanager.cpp" line="697"/> + <location filename="downloadmanager.cpp" line="708"/> + <location filename="downloadmanager.cpp" line="716"/> + <location filename="downloadmanager.cpp" line="725"/> + <location filename="downloadmanager.cpp" line="735"/> + <location filename="downloadmanager.cpp" line="750"/> <source>invalid index</source> <translation>無效的索引</translation> </message> <message> - <location filename="downloadmanager.cpp" line="384"/> + <location filename="downloadmanager.cpp" line="413"/> <source>failed to delete %1</source> <translation>無法刪除 %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="390"/> + <location filename="downloadmanager.cpp" line="419"/> <source>failed to delete meta file for %1</source> <translation>無法從 %1 中刪除 mate 檔案</translation> </message> <message> - <location filename="downloadmanager.cpp" line="450"/> - <location filename="downloadmanager.cpp" line="468"/> - <location filename="downloadmanager.cpp" line="481"/> - <location filename="downloadmanager.cpp" line="494"/> - <location filename="downloadmanager.cpp" line="505"/> - <location filename="downloadmanager.cpp" line="540"/> + <location filename="downloadmanager.cpp" line="495"/> + <location filename="downloadmanager.cpp" line="513"/> + <location filename="downloadmanager.cpp" line="526"/> + <location filename="downloadmanager.cpp" line="543"/> + <location filename="downloadmanager.cpp" line="554"/> + <location filename="downloadmanager.cpp" line="589"/> <source>invalid index %1</source> <translation>無效的索引 %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="557"/> + <location filename="downloadmanager.cpp" line="606"/> <source>Please enter the nexus mod id</source> <translation>請輸入N網 Mod ID</translation> </message> <message> - <location filename="downloadmanager.cpp" line="557"/> + <location filename="downloadmanager.cpp" line="606"/> <source>Mod ID:</source> <translation>Mod ID:</translation> </message> @@ -612,38 +630,38 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">無效的字順索引 %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="899"/> + <location filename="downloadmanager.cpp" line="972"/> <source>Information updated</source> <translation>訊息已更新</translation> </message> <message> - <location filename="downloadmanager.cpp" line="901"/> - <location filename="downloadmanager.cpp" line="915"/> + <location filename="downloadmanager.cpp" line="974"/> + <location filename="downloadmanager.cpp" line="988"/> <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="903"/> + <location filename="downloadmanager.cpp" line="976"/> <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="1032"/> + <location filename="downloadmanager.cpp" line="1109"/> <source>No download server available. Please try again later.</source> <translation>沒有可用的下載伺服器,請稍後再嘗試下載。</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1074"/> + <location filename="downloadmanager.cpp" line="1151"/> <source>Failed to request file info from nexus: %1</source> <translation>無法在N網上請求檔案訊息: %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1097"/> + <location filename="downloadmanager.cpp" line="1175"/> <source>Download failed: %1 (%2)</source> <translation>下載失敗: %1 (%2)</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1174"/> + <location filename="downloadmanager.cpp" line="1254"/> <source>failed to re-open %1</source> <translation>無法重新開啟 %1</translation> </message> @@ -1092,12 +1110,12 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">mo_archive.dll 未加載: "%1"</translation> </message> <message> - <location filename="installationmanager.cpp" line="97"/> + <location filename="installationmanager.cpp" line="98"/> <source>Password required</source> <translation>需要密碼</translation> </message> <message> - <location filename="installationmanager.cpp" line="97"/> + <location filename="installationmanager.cpp" line="98"/> <source>Password</source> <translation>密碼</translation> </message> @@ -1119,8 +1137,8 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="installationmanager.cpp" line="164"/> - <location filename="installationmanager.cpp" line="252"/> - <location filename="installationmanager.cpp" line="530"/> + <location filename="installationmanager.cpp" line="248"/> + <location filename="installationmanager.cpp" line="525"/> <source>Extracting files</source> <translation>正在解壓檔案</translation> </message> @@ -1155,7 +1173,7 @@ Note: This installer will not be aware of other installed mods!</source> <translation type="obsolete">安裝失敗 (錯誤代碼 %1)</translation> </message> <message> - <location filename="installationmanager.cpp" line="624"/> + <location filename="installationmanager.cpp" line="605"/> <source>File format "%1" not supported</source> <translation>暫不支持檔案格式: "%1"</translation> </message> @@ -1164,32 +1182,32 @@ Note: This installer will not be aware of other installed mods!</source> <translation type="obsolete">無法開啟壓縮包 "%1": %2</translation> </message> <message> - <location filename="installationmanager.cpp" line="75"/> + <location filename="installationmanager.cpp" line="76"/> <source>archive.dll not loaded: "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="installationmanager.cpp" line="443"/> + <location filename="installationmanager.cpp" line="439"/> <source>failed to create backup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="installationmanager.cpp" line="449"/> + <location filename="installationmanager.cpp" line="445"/> <source>Mod Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="installationmanager.cpp" line="449"/> + <location filename="installationmanager.cpp" line="445"/> <source>Name</source> <translation type="unfinished">名稱</translation> </message> <message> - <location filename="installationmanager.cpp" line="502"/> + <location filename="installationmanager.cpp" line="498"/> <source>Invalid name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="installationmanager.cpp" line="503"/> + <location filename="installationmanager.cpp" line="499"/> <source>The name you entered is invalid, please enter a different one.</source> <translation type="unfinished"></translation> </message> @@ -1206,52 +1224,52 @@ Note: This installer will not be aware of other installed mods!</source> <translation type="obsolete">請安裝 NCC</translation> </message> <message> - <location filename="installationmanager.cpp" line="750"/> + <location filename="installationmanager.cpp" line="731"/> <source>None of the available installer plugins were able to handle that archive</source> <translation type="unfinished"></translation> </message> <message> - <location filename="installationmanager.cpp" line="760"/> + <location filename="installationmanager.cpp" line="741"/> <source>no error</source> <translation>沒有錯誤</translation> </message> <message> - <location filename="installationmanager.cpp" line="763"/> + <location filename="installationmanager.cpp" line="744"/> <source>7z.dll not found</source> <translation>未找到 7z.dll</translation> </message> <message> - <location filename="installationmanager.cpp" line="766"/> + <location filename="installationmanager.cpp" line="747"/> <source>7z.dll isn't valid</source> <translation>無效的 7z.dll</translation> </message> <message> - <location filename="installationmanager.cpp" line="769"/> + <location filename="installationmanager.cpp" line="750"/> <source>archive not found</source> <translation>未找到壓縮包</translation> </message> <message> - <location filename="installationmanager.cpp" line="772"/> + <location filename="installationmanager.cpp" line="753"/> <source>failed to open archive</source> <translation>無法開啟壓縮包</translation> </message> <message> - <location filename="installationmanager.cpp" line="775"/> + <location filename="installationmanager.cpp" line="756"/> <source>unsupported archive type</source> <translation>不支持的壓縮包類型</translation> </message> <message> - <location filename="installationmanager.cpp" line="778"/> + <location filename="installationmanager.cpp" line="759"/> <source>internal library error</source> <translation>內部庫錯誤</translation> </message> <message> - <location filename="installationmanager.cpp" line="781"/> + <location filename="installationmanager.cpp" line="762"/> <source>archive invalid</source> <translation>無效的壓縮包</translation> </message> <message> - <location filename="installationmanager.cpp" line="785"/> + <location filename="installationmanager.cpp" line="766"/> <source>unknown archive error</source> <translation>未知壓縮包錯誤</translation> </message> @@ -1290,12 +1308,12 @@ Note: This installer will not be aware of other installed mods!</source> <context> <name>MOApplication</name> <message> - <location filename="moapplication.cpp" line="60"/> + <location filename="moapplication.cpp" line="68"/> <source>an error occured: %1</source> <translation type="unfinished">發生錯誤: %1</translation> </message> <message> - <location filename="moapplication.cpp" line="65"/> + <location filename="moapplication.cpp" line="73"/> <source>an error occured</source> <translation type="unfinished">發生錯誤</translation> </message> @@ -1371,7 +1389,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="mainwindow.ui" line="405"/> <location filename="mainwindow.ui" line="722"/> - <location filename="mainwindow.ui" line="1027"/> + <location filename="mainwindow.ui" line="1035"/> <source>Namefilter</source> <translation type="unfinished"></translation> </message> @@ -1504,67 +1522,66 @@ BSAs checked here are loaded in such a way that your installation order is obeye 這裡勾選的 BSA 將會依從您的安裝順序,並且會自行調整加載順序。</translation> </message> <message> - <location filename="mainwindow.ui" line="794"/> - <location filename="mainwindow.ui" line="868"/> + <location filename="mainwindow.ui" line="800"/> + <location filename="mainwindow.ui" line="869"/> <source>File</source> <translation type="unfinished">檔案</translation> </message> <message> - <location filename="mainwindow.ui" line="799"/> - <location filename="mainwindow.ui" line="873"/> - <source>Mod</source> - <translation type="unfinished">Mod</translation> + <location filename="mainwindow.ui" line="808"/> + <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="807"/> - <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="unfinished"></translation> + <location filename="mainwindow.ui" line="874"/> + <source>Mod</source> + <translation type="unfinished">Mod</translation> </message> <message> - <location filename="mainwindow.ui" line="818"/> + <location filename="mainwindow.ui" line="819"/> <source>Data</source> <translation type="unfinished">Data</translation> </message> <message> - <location filename="mainwindow.ui" line="836"/> + <location filename="mainwindow.ui" line="837"/> <source>refresh data-directory overview</source> <translation type="unfinished">重新整理 Data 目錄總覽</translation> </message> <message> - <location filename="mainwindow.ui" line="839"/> + <location filename="mainwindow.ui" line="840"/> <source>Refresh the overview. This may take a moment.</source> <translation type="unfinished">重新整理總覽,這可能需要一些時間。</translation> </message> <message> - <location filename="mainwindow.ui" line="842"/> - <location filename="mainwindow.cpp" line="3328"/> - <location filename="mainwindow.cpp" line="4059"/> + <location filename="mainwindow.ui" line="843"/> + <location filename="mainwindow.cpp" line="3612"/> + <location filename="mainwindow.cpp" line="4360"/> <source>Refresh</source> <translation type="unfinished">重新整理</translation> </message> <message> - <location filename="mainwindow.ui" line="858"/> + <location filename="mainwindow.ui" line="859"/> <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="883"/> - <location filename="mainwindow.ui" line="886"/> + <location filename="mainwindow.ui" line="884"/> + <location filename="mainwindow.ui" line="887"/> <source>Filter the above list so that only conflicts are displayed.</source> <translation type="unfinished">過濾上面的列表,使您只能看到有衝突的檔案。</translation> </message> <message> - <location filename="mainwindow.ui" line="889"/> + <location filename="mainwindow.ui" line="890"/> <source>Show only conflicts</source> <translation type="unfinished">只顯示衝突</translation> </message> <message> - <location filename="mainwindow.ui" line="897"/> + <location filename="mainwindow.ui" line="898"/> <source>Saves</source> <translation type="unfinished">存檔</translation> </message> <message> - <location filename="mainwindow.ui" line="921"/> + <location filename="mainwindow.ui" line="922"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1581,155 +1598,160 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">如果您在右鍵菜單中點擊“修復 Mod”,那麼 MO 便會嘗試激活所有 Mod 和 esp 來修復那些缺失的 esp,它並不會禁用任何東西!</span></p></body></html></translation> </message> <message> - <location filename="mainwindow.ui" line="935"/> + <location filename="mainwindow.ui" line="936"/> <source>Downloads</source> <translation type="unfinished">下載</translation> </message> <message> - <location filename="mainwindow.ui" line="967"/> + <location filename="mainwindow.ui" line="968"/> <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="1020"/> + <location filename="mainwindow.ui" line="1021"/> <source>Compact</source> <translation type="unfinished">緊湊</translation> </message> <message> - <location filename="mainwindow.ui" line="1051"/> + <location filename="mainwindow.ui" line="1028"/> + <source>Show Hidden</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1059"/> <source>Tool Bar</source> <translation type="unfinished">工具欄</translation> </message> <message> - <location filename="mainwindow.ui" line="1093"/> + <location filename="mainwindow.ui" line="1101"/> <source>Install Mod</source> <translation type="unfinished">安裝 Mod</translation> </message> <message> - <location filename="mainwindow.ui" line="1096"/> + <location filename="mainwindow.ui" line="1104"/> <source>Install &Mod</source> <translation type="unfinished">安裝 &Mod</translation> </message> <message> - <location filename="mainwindow.ui" line="1099"/> + <location filename="mainwindow.ui" line="1107"/> <source>Install a new mod from an archive</source> <translation type="unfinished">通過壓縮包來安裝一個新 Mod</translation> </message> <message> - <location filename="mainwindow.ui" line="1102"/> + <location filename="mainwindow.ui" line="1110"/> <source>Ctrl+M</source> <translation type="unfinished">Ctrl+M</translation> </message> <message> - <location filename="mainwindow.ui" line="1111"/> + <location filename="mainwindow.ui" line="1119"/> <source>Profiles</source> <translation type="unfinished">配置檔案</translation> </message> <message> - <location filename="mainwindow.ui" line="1114"/> + <location filename="mainwindow.ui" line="1122"/> <source>&Profiles</source> <translation type="unfinished">&配置檔案</translation> </message> <message> - <location filename="mainwindow.ui" line="1117"/> + <location filename="mainwindow.ui" line="1125"/> <source>Configure Profiles</source> <translation type="unfinished">設定配置檔案</translation> </message> <message> - <location filename="mainwindow.ui" line="1120"/> + <location filename="mainwindow.ui" line="1128"/> <source>Ctrl+P</source> <translation type="unfinished">Ctrl+P</translation> </message> <message> - <location filename="mainwindow.ui" line="1129"/> + <location filename="mainwindow.ui" line="1137"/> <source>Executables</source> <translation type="unfinished">可執行程式</translation> </message> <message> - <location filename="mainwindow.ui" line="1132"/> + <location filename="mainwindow.ui" line="1140"/> <source>&Executables</source> <translation type="unfinished">&可執行程式</translation> </message> <message> - <location filename="mainwindow.ui" line="1135"/> + <location filename="mainwindow.ui" line="1143"/> <source>Configure the executables that can be started through Mod Organizer</source> <translation type="unfinished">配置可通過 MO 來啟動的程式</translation> </message> <message> - <location filename="mainwindow.ui" line="1138"/> + <location filename="mainwindow.ui" line="1146"/> <source>Ctrl+E</source> <translation type="unfinished">Ctrl+E</translation> </message> <message> - <location filename="mainwindow.ui" line="1147"/> - <location filename="mainwindow.ui" line="1153"/> + <location filename="mainwindow.ui" line="1155"/> + <location filename="mainwindow.ui" line="1161"/> <source>Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1150"/> + <location filename="mainwindow.ui" line="1158"/> <source>&Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1156"/> + <location filename="mainwindow.ui" line="1164"/> <source>Ctrl+I</source> <translation type="unfinished">Ctrl+I</translation> </message> <message> - <location filename="mainwindow.ui" line="1165"/> + <location filename="mainwindow.ui" line="1173"/> <source>Settings</source> <translation type="unfinished">設定</translation> </message> <message> - <location filename="mainwindow.ui" line="1168"/> + <location filename="mainwindow.ui" line="1176"/> <source>&Settings</source> <translation type="unfinished">&設定</translation> </message> <message> - <location filename="mainwindow.ui" line="1171"/> + <location filename="mainwindow.ui" line="1179"/> <source>Configure settings and workarounds</source> <translation type="unfinished">配置設定和解決方案</translation> </message> <message> - <location filename="mainwindow.ui" line="1174"/> + <location filename="mainwindow.ui" line="1182"/> <source>Ctrl+S</source> <translation type="unfinished">Ctrl+S</translation> </message> <message> - <location filename="mainwindow.ui" line="1183"/> + <location filename="mainwindow.ui" line="1191"/> <source>Nexus</source> <translation type="unfinished">N網</translation> </message> <message> - <location filename="mainwindow.ui" line="1186"/> + <location filename="mainwindow.ui" line="1194"/> <source>Search nexus network for more mods</source> <translation type="unfinished">搜尋N網以獲取更多 Mod</translation> </message> <message> - <location filename="mainwindow.ui" line="1189"/> + <location filename="mainwindow.ui" line="1197"/> <source>Ctrl+N</source> <translation type="unfinished">Ctrl+N</translation> </message> <message> - <location filename="mainwindow.ui" line="1201"/> - <location filename="mainwindow.cpp" line="4007"/> + <location filename="mainwindow.ui" line="1209"/> + <location filename="mainwindow.cpp" line="4308"/> <source>Update</source> <translation type="unfinished">更新</translation> </message> <message> - <location filename="mainwindow.ui" line="1204"/> + <location filename="mainwindow.ui" line="1212"/> <source>Mod Organizer is up-to-date</source> <translation type="unfinished">Mod Organizer 現在是最新版本</translation> </message> <message> - <location filename="mainwindow.ui" line="1216"/> - <location filename="mainwindow.cpp" line="478"/> + <location filename="mainwindow.ui" line="1224"/> + <location filename="mainwindow.cpp" line="496"/> <source>No Problems</source> <translation type="unfinished">沒有問題</translation> </message> <message> - <location filename="mainwindow.ui" line="1219"/> + <location filename="mainwindow.ui" line="1227"/> <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! @@ -1740,54 +1762,54 @@ Right now this has very limited functionality</source> 當前此功能所能提供的項目非常有限</translation> </message> <message> - <location filename="mainwindow.ui" line="1231"/> - <location filename="mainwindow.ui" line="1234"/> + <location filename="mainwindow.ui" line="1239"/> + <location filename="mainwindow.ui" line="1242"/> <source>Help</source> <translation type="unfinished">幫助</translation> </message> <message> - <location filename="mainwindow.ui" line="1237"/> + <location filename="mainwindow.ui" line="1245"/> <source>Ctrl+H</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1246"/> + <location filename="mainwindow.ui" line="1254"/> <source>Endorse MO</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1249"/> - <location filename="mainwindow.cpp" line="4087"/> + <location filename="mainwindow.ui" line="1257"/> + <location filename="mainwindow.cpp" line="4389"/> <source>Endorse Mod Organizer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="204"/> + <location filename="mainwindow.cpp" line="214"/> <source>Toolbar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="205"/> + <location filename="mainwindow.cpp" line="215"/> <source>Desktop</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="206"/> + <location filename="mainwindow.cpp" line="216"/> <source>Start Menu</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="475"/> + <location filename="mainwindow.cpp" line="492"/> <source>Problems</source> <translation type="unfinished">問題</translation> </message> <message> - <location filename="mainwindow.cpp" line="476"/> + <location filename="mainwindow.cpp" line="493"/> <source>There are potential problems with your setup</source> <translation type="unfinished">您的安裝中存在潛在的問題</translation> </message> <message> - <location filename="mainwindow.cpp" line="479"/> + <location filename="mainwindow.cpp" line="497"/> <source>Everything seems to be in order</source> <translation type="unfinished">一切井然有序</translation> </message> @@ -1804,22 +1826,22 @@ Right now this has very limited functionality</source> <translation type="obsolete"><li>.Net 未安裝或版本過舊。想要運行 NCC 您必須先安裝 .Net,您可以在以下地址中獲取: <a href="%1">%1</a></li></translation> </message> <message> - <location filename="mainwindow.cpp" line="531"/> + <location filename="mainwindow.cpp" line="549"/> <source>Help on UI</source> <translation type="unfinished">介面幫助</translation> </message> <message> - <location filename="mainwindow.cpp" line="535"/> + <location filename="mainwindow.cpp" line="553"/> <source>Documentation Wiki</source> <translation type="unfinished">說明文檔 (維基)</translation> </message> <message> - <location filename="mainwindow.cpp" line="539"/> + <location filename="mainwindow.cpp" line="557"/> <source>Report Issue</source> <translation type="unfinished">報告問題</translation> </message> <message> - <location filename="mainwindow.cpp" line="543"/> + <location filename="mainwindow.cpp" line="561"/> <source>Tutorials</source> <translation type="unfinished"></translation> </message> @@ -1828,374 +1850,431 @@ Right now this has very limited functionality</source> <translation type="obsolete">無法儲存加載順序</translation> </message> <message> - <location filename="mainwindow.cpp" line="670"/> + <location filename="mainwindow.cpp" line="688"/> <source>failed to save load order: %1</source> <translation type="unfinished">無法儲存加載順序: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="600"/> + <location filename="mainwindow.cpp" line="618"/> <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="687"/> + <location filename="mainwindow.cpp" line="705"/> <source>Name</source> <translation type="unfinished">名稱</translation> </message> <message> - <location filename="mainwindow.cpp" line="688"/> + <location filename="mainwindow.cpp" line="706"/> <source>Please enter a name for the new profile</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="696"/> + <location filename="mainwindow.cpp" line="714"/> <source>failed to create profile: %1</source> <translation type="unfinished">無法建立配置檔案: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="739"/> + <location filename="mainwindow.cpp" line="757"/> <source>Show tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="740"/> + <location filename="mainwindow.cpp" line="758"/> <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> </message> <message> - <location filename="mainwindow.cpp" line="769"/> + <location filename="mainwindow.cpp" line="787"/> <source>Downloads in progress</source> <translation type="unfinished">正在下載</translation> </message> <message> - <location filename="mainwindow.cpp" line="770"/> + <location filename="mainwindow.cpp" line="788"/> <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="816"/> + <location filename="mainwindow.cpp" line="834"/> <source>failed to read savegame: %1</source> <translation type="unfinished">無法讀取存檔: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="941"/> + <location filename="mainwindow.cpp" line="958"/> <source>Plugin "%1" failed: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1183"/> + <location filename="mainwindow.cpp" line="1064"/> + <source>Plugin error</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1065"/> + <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="1249"/> <source>Failed to start "%1"</source> <translation type="unfinished">無法啟動 "%1"</translation> </message> <message> - <location filename="mainwindow.cpp" line="1185"/> + <location filename="mainwindow.cpp" line="1251"/> <source>Waiting</source> <translation type="unfinished">稍等</translation> </message> <message> - <location filename="mainwindow.cpp" line="1185"/> + <location filename="mainwindow.cpp" line="1251"/> <source>Please press OK once you're logged into steam.</source> <translation type="unfinished">當您登入 Steam 時請點擊確定。</translation> </message> <message> - <location filename="mainwindow.cpp" line="1197"/> + <location filename="mainwindow.cpp" line="1263"/> <source>"%1" not found</source> <translation type="unfinished">"%1" 未找到</translation> </message> <message> - <location filename="mainwindow.cpp" line="1211"/> + <location filename="mainwindow.cpp" line="1277"/> <source>Start Steam?</source> <translation type="unfinished">啟動 Steam?</translation> </message> <message> - <location filename="mainwindow.cpp" line="1212"/> + <location filename="mainwindow.cpp" line="1278"/> <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="1426"/> + <location filename="mainwindow.cpp" line="1492"/> <source>Also in: <br></source> <translation type="unfinished">也在: <br></translation> </message> <message> - <location filename="mainwindow.cpp" line="1437"/> + <location filename="mainwindow.cpp" line="1503"/> <source>No conflict</source> <translation type="unfinished">沒有衝突</translation> </message> <message> - <location filename="mainwindow.cpp" line="1552"/> + <location filename="mainwindow.cpp" line="1620"/> <source><Edit...></source> <translation type="unfinished"><編輯...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1771"/> + <location filename="mainwindow.cpp" line="1704"/> + <source>Failed to refresh list of esps: %s</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1844"/> <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="1778"/> + <location filename="mainwindow.cpp" line="1851"/> <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="1833"/> + <location filename="mainwindow.cpp" line="1906"/> <source>Activating Network Proxy</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1962"/> - <location filename="mainwindow.cpp" line="3755"/> + <location filename="mainwindow.cpp" line="2037"/> + <location filename="mainwindow.cpp" line="4056"/> <source>Installation successful</source> <translation type="unfinished">安裝成功</translation> </message> <message> - <location filename="mainwindow.cpp" line="1973"/> - <location filename="mainwindow.cpp" line="3768"/> + <location filename="mainwindow.cpp" line="2048"/> + <location filename="mainwindow.cpp" line="4069"/> <source>Configure Mod</source> <translation type="unfinished">配置 Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="1974"/> - <location filename="mainwindow.cpp" line="3769"/> + <location filename="mainwindow.cpp" line="2049"/> + <location filename="mainwindow.cpp" line="4070"/> <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="1980"/> - <location filename="mainwindow.cpp" line="3775"/> + <location filename="mainwindow.cpp" line="2055"/> + <location filename="mainwindow.cpp" line="4076"/> <source>mod "%1" not found</source> <translation type="unfinished">Mod "%1" 未找到</translation> </message> <message> - <location filename="mainwindow.cpp" line="1983"/> - <location filename="mainwindow.cpp" line="3781"/> + <location filename="mainwindow.cpp" line="2058"/> + <location filename="mainwindow.cpp" line="4082"/> <source>Installation cancelled</source> <translation type="unfinished">安裝已取消</translation> </message> <message> - <location filename="mainwindow.cpp" line="1983"/> - <location filename="mainwindow.cpp" line="3781"/> + <location filename="mainwindow.cpp" line="2058"/> + <location filename="mainwindow.cpp" line="4082"/> <source>The mod was not installed completely.</source> <translation type="unfinished">Mod 沒有完全安裝。</translation> </message> <message> - <location filename="mainwindow.cpp" line="2018"/> + <location filename="mainwindow.cpp" line="2207"/> <source>Some plugins could not be loaded</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2021"/> - <location filename="mainwindow.cpp" line="2038"/> - <source>Description missing</source> + <location filename="mainwindow.cpp" line="2210"/> + <source>Too many esps and esms enabled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2030"/> - <source>The following Plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:<ul></source> + <location filename="mainwindow.cpp" line="2213"/> + <location filename="mainwindow.cpp" line="2234"/> + <source>Description missing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2060"/> + <location filename="mainwindow.cpp" line="2256"/> <source>Choose Mod</source> <translation type="unfinished">選擇 Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2061"/> + <location filename="mainwindow.cpp" line="2257"/> <source>Mod Archive</source> <translation type="unfinished">Mod 壓縮包</translation> </message> <message> - <location filename="mainwindow.cpp" line="2214"/> + <location filename="mainwindow.cpp" line="2410"/> <source>Start Tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2215"/> + <location filename="mainwindow.cpp" line="2411"/> <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> </message> <message> - <location filename="mainwindow.cpp" line="2360"/> - <location filename="mainwindow.cpp" line="3683"/> + <location filename="mainwindow.cpp" line="2566"/> + <location filename="mainwindow.cpp" line="3984"/> <source>Download started</source> <translation type="unfinished">開始下載</translation> </message> <message> - <location filename="mainwindow.cpp" line="2391"/> + <location filename="mainwindow.cpp" line="2597"/> <source>failed to update mod list: %1</source> <translation type="unfinished">無法更新 Mod 列表: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2418"/> + <location filename="mainwindow.cpp" line="2624"/> <source>failed to spawn notepad.exe: %1</source> <translation type="unfinished">無法生成 notepad.exe: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2459"/> + <location filename="mainwindow.cpp" line="2665"/> <source>failed to open %1</source> <translation type="unfinished">無法開啟 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2537"/> + <location filename="mainwindow.cpp" line="2743"/> <source>failed to change origin name: %1</source> <translation type="unfinished">無法更改原始檔案名: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2676"/> + <location filename="mainwindow.cpp" line="2906"/> <source>Multiple esps activated, please check that they don't conflict.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3005"/> - <location filename="mainwindow.cpp" line="3339"/> + <location filename="mainwindow.cpp" line="3251"/> + <location filename="mainwindow.cpp" line="3623"/> <source>Create Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3006"/> + <location filename="mainwindow.cpp" line="3252"/> <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="3015"/> + <location filename="mainwindow.cpp" line="3261"/> <source>A mod with this name already exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3410"/> + <location filename="mainwindow.cpp" line="3444"/> + <source>Continue?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3445"/> + <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="3465"/> + <source>Sorry</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3466"/> + <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="3710"/> <source><All></source> <translation type="unfinished"><全部></translation> </message> <message> - <location filename="mainwindow.cpp" line="2589"/> + <location filename="mainwindow.cpp" line="2818"/> <source><Checked></source> <translation type="unfinished"><已勾選></translation> </message> <message> - <location filename="mainwindow.cpp" line="943"/> + <location filename="mainwindow.cpp" line="960"/> <source>Plugin "%1" failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1007"/> + <location filename="mainwindow.cpp" line="1026"/> <source>failed to init plugin %1: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2590"/> + <location filename="mainwindow.cpp" line="2222"/> + <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="2230"/> + <source>The game doesn't allow more than 256 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="2769"/> + <source>Failed to move "%1" from mod "%2" to "%3": %4</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2819"/> <source><Unchecked></source> <translation type="unfinished"><未勾選></translation> </message> <message> - <location filename="mainwindow.cpp" line="2591"/> + <location filename="mainwindow.cpp" line="2820"/> <source><Update></source> <translation type="unfinished"><有更新></translation> </message> <message> - <location filename="mainwindow.cpp" line="2592"/> + <location filename="mainwindow.cpp" line="2821"/> <source><No category></source> <translation type="unfinished"><無類別></translation> </message> <message> - <location filename="mainwindow.cpp" line="2593"/> + <location filename="mainwindow.cpp" line="2822"/> <source><Conflicted></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2626"/> + <location filename="mainwindow.cpp" line="2823"/> + <source><Not Endorsed></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2856"/> <source>failed to rename mod: %1</source> <translation type="unfinished">無法重新命名 Mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2639"/> + <location filename="mainwindow.cpp" line="2869"/> <source>Overwrite?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2640"/> + <location filename="mainwindow.cpp" line="2870"/> <source>This will replace the existing mod "%1". Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2643"/> + <location filename="mainwindow.cpp" line="2873"/> <source>failed to remove mod "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2647"/> - <location filename="mainwindow.cpp" line="3953"/> - <location filename="mainwindow.cpp" line="3977"/> + <location filename="mainwindow.cpp" line="2877"/> + <location filename="mainwindow.cpp" line="4254"/> + <location filename="mainwindow.cpp" line="4278"/> <source>failed to rename "%1" to "%2"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2702"/> - <location filename="mainwindow.cpp" line="3243"/> - <location filename="mainwindow.cpp" line="3252"/> + <location filename="mainwindow.cpp" line="2932"/> + <location filename="mainwindow.cpp" line="3518"/> + <location filename="mainwindow.cpp" line="3526"/> <source>Confirm</source> <translation type="unfinished">確認</translation> </message> <message> - <location filename="mainwindow.cpp" line="2703"/> + <location filename="mainwindow.cpp" line="2933"/> <source>Remove the following mods?<br><ul>%1</ul></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2714"/> + <location filename="mainwindow.cpp" line="2944"/> <source>failed to remove mod: %1</source> <translation type="unfinished">無法移動 Mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2744"/> - <location filename="mainwindow.cpp" line="2747"/> + <location filename="mainwindow.cpp" line="2979"/> + <location filename="mainwindow.cpp" line="2982"/> <source>Failed</source> <translation type="unfinished">失敗</translation> </message> <message> - <location filename="mainwindow.cpp" line="2744"/> + <location filename="mainwindow.cpp" line="2979"/> <source>Installation file no longer exists</source> <translation type="unfinished">安裝檔案不複存在</translation> </message> <message> - <location filename="mainwindow.cpp" line="2748"/> + <location filename="mainwindow.cpp" line="2983"/> <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="2763"/> - <location filename="mainwindow.cpp" line="2790"/> + <location filename="mainwindow.cpp" line="2998"/> + <location filename="mainwindow.cpp" line="3025"/> <source>You need to be logged in with Nexus to endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2906"/> - <location filename="mainwindow.cpp" line="4335"/> + <location filename="mainwindow.cpp" line="3154"/> + <location filename="mainwindow.cpp" line="4638"/> <source>Extract BSA</source> <translation type="unfinished">解壓 BSA</translation> </message> <message> - <location filename="mainwindow.cpp" line="2907"/> + <location filename="mainwindow.cpp" line="3155"/> <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。您確定要解壓嗎? (解壓完成後,BSA 檔案將會被刪除。如果您不瞭解 BSA 的話,請選擇“否”)</translation> </message> <message> - <location filename="mainwindow.cpp" line="2917"/> - <location filename="mainwindow.cpp" line="4292"/> - <location filename="mainwindow.cpp" line="4343"/> + <location filename="mainwindow.cpp" line="3165"/> + <location filename="mainwindow.cpp" line="4595"/> + <location filename="mainwindow.cpp" line="4646"/> <source>failed to read %1: %2</source> <translation type="unfinished">無法讀取 %1: %2</translation> </message> <message> - <location filename="mainwindow.cpp" line="2930"/> - <location filename="mainwindow.cpp" line="4354"/> + <location filename="mainwindow.cpp" line="3178"/> + <location filename="mainwindow.cpp" line="4657"/> <source>This archive contains invalid hashes. Some files may be broken.</source> <translation type="unfinished">壓縮包 Hash 值錯誤。部分檔案可能已經損壞。</translation> </message> <message> - <location filename="mainwindow.cpp" line="2964"/> + <location filename="mainwindow.cpp" line="3212"/> <source>Nexus ID for this Mod is unknown</source> <translation type="unfinished">此 Mod 的N網 ID 未知</translation> </message> @@ -2208,371 +2287,391 @@ Please enter a name: </source> <translation type="obsolete">選擇優先級</translation> </message> <message> - <location filename="mainwindow.cpp" line="3243"/> + <location filename="mainwindow.cpp" line="3518"/> <source>Really enable all visible mods?</source> <translation type="unfinished">確定要啟用全部可見的 Mod 嗎?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3252"/> + <location filename="mainwindow.cpp" line="3526"/> <source>Really disable all visible mods?</source> <translation type="unfinished">確定要禁用全部可見的 Mod 嗎?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3261"/> + <location filename="mainwindow.cpp" line="3534"/> <source>Choose what to export</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3263"/> + <location filename="mainwindow.cpp" line="3536"/> <source>Everything</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3263"/> + <location filename="mainwindow.cpp" line="3536"/> <source>All installed mods are included in the list</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3264"/> + <location filename="mainwindow.cpp" line="3537"/> <source>Active Mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3264"/> + <location filename="mainwindow.cpp" line="3537"/> <source>Only active (checked) mods from your current profile are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3265"/> + <location filename="mainwindow.cpp" line="3538"/> <source>Visible</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3265"/> + <location filename="mainwindow.cpp" line="3538"/> <source>All mods visible in the mod list are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3308"/> + <location filename="mainwindow.cpp" line="3581"/> <source>export failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3321"/> + <location filename="mainwindow.cpp" line="3605"/> <source>Install Mod...</source> <translation type="unfinished">安裝 Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3323"/> + <location filename="mainwindow.cpp" line="3607"/> <source>Enable all visible</source> <translation type="unfinished">啟用所有可見項目</translation> </message> <message> - <location filename="mainwindow.cpp" line="3324"/> + <location filename="mainwindow.cpp" line="3608"/> <source>Disable all visible</source> <translation type="unfinished">禁用所有可見項目</translation> </message> <message> - <location filename="mainwindow.cpp" line="3326"/> + <location filename="mainwindow.cpp" line="3610"/> <source>Check all for update</source> <translation type="unfinished">檢查更新</translation> </message> <message> - <location filename="mainwindow.cpp" line="3330"/> + <location filename="mainwindow.cpp" line="3614"/> <source>Export to csv...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3338"/> + <location filename="mainwindow.cpp" line="3622"/> <source>Sync to Mods...</source> <translation type="unfinished">同步到 Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3342"/> + <location filename="mainwindow.cpp" line="3626"/> <source>Restore Backup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3343"/> + <location filename="mainwindow.cpp" line="3627"/> <source>Remove Backup...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3345"/> + <location filename="mainwindow.cpp" line="3630"/> <source>Set Category</source> <translation type="unfinished">設定類別</translation> </message> <message> - <location filename="mainwindow.cpp" line="3349"/> + <location filename="mainwindow.cpp" line="3635"/> <source>Primary Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3353"/> + <location filename="mainwindow.cpp" line="3642"/> + <source>Change versioning scheme</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3646"/> + <source>Un-ignore update</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3648"/> + <source>Ignore update</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3653"/> <source>Rename Mod...</source> <translation type="unfinished">重新命名...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3354"/> + <location filename="mainwindow.cpp" line="3654"/> <source>Remove Mod...</source> <translation type="unfinished">移除 Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3355"/> + <location filename="mainwindow.cpp" line="3655"/> <source>Reinstall Mod</source> <translation type="unfinished">重新安裝 Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="3358"/> + <location filename="mainwindow.cpp" line="3658"/> <source>Un-Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3361"/> - <location filename="mainwindow.cpp" line="3365"/> + <location filename="mainwindow.cpp" line="3661"/> + <location filename="mainwindow.cpp" line="3665"/> <source>Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3362"/> + <location filename="mainwindow.cpp" line="3662"/> <source>Won't endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3368"/> + <location filename="mainwindow.cpp" line="3668"/> <source>Endorsement state unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3375"/> + <location filename="mainwindow.cpp" line="3675"/> <source>Ignore missing data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3378"/> + <location filename="mainwindow.cpp" line="3678"/> <source>Visit on Nexus</source> <translation type="unfinished">在N網上流覽</translation> </message> <message> - <location filename="mainwindow.cpp" line="3379"/> + <location filename="mainwindow.cpp" line="3679"/> <source>Open in explorer</source> <translation type="unfinished">在檔案總管中開啟</translation> </message> <message> - <location filename="mainwindow.cpp" line="3382"/> + <location filename="mainwindow.cpp" line="3682"/> <source>Information...</source> <translation type="unfinished">訊息...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3388"/> - <location filename="mainwindow.cpp" line="4514"/> + <location filename="mainwindow.cpp" line="3688"/> + <location filename="mainwindow.cpp" line="4842"/> <source>Exception: </source> <translation type="unfinished">例外: </translation> </message> <message> - <location filename="mainwindow.cpp" line="3390"/> - <location filename="mainwindow.cpp" line="4516"/> + <location filename="mainwindow.cpp" line="3690"/> + <location filename="mainwindow.cpp" line="4844"/> <source>Unknown exception</source> <translation type="unfinished">未知的例外</translation> </message> <message> - <location filename="mainwindow.cpp" line="3412"/> + <location filename="mainwindow.cpp" line="3712"/> <source><Multiple></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3524"/> + <location filename="mainwindow.cpp" line="3824"/> <source>Fix Mods...</source> <translation type="unfinished">修復 Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3548"/> - <location filename="mainwindow.cpp" line="3579"/> + <location filename="mainwindow.cpp" line="3848"/> + <location filename="mainwindow.cpp" line="3879"/> <source>failed to remove %1</source> <translation type="unfinished">無法刪除 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3563"/> - <location filename="mainwindow.cpp" line="3594"/> + <location filename="mainwindow.cpp" line="3863"/> + <location filename="mainwindow.cpp" line="3894"/> <source>failed to create %1</source> <translation type="unfinished">無法建立 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3615"/> + <location filename="mainwindow.cpp" line="3916"/> <source>Can't change download directory while downloads are in progress!</source> <translation type="unfinished">下載檔案時不能修改下載目錄!</translation> </message> <message> - <location filename="mainwindow.cpp" line="3686"/> + <location filename="mainwindow.cpp" line="3987"/> <source>Download failed</source> <translation type="unfinished">下載失敗</translation> </message> <message> - <location filename="mainwindow.cpp" line="3830"/> + <location filename="mainwindow.cpp" line="4131"/> <source>failed to write to file %1</source> <translation type="unfinished">無法寫入檔案 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3836"/> + <location filename="mainwindow.cpp" line="4137"/> <source>%1 written</source> <translation type="unfinished">已寫入 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3875"/> + <location filename="mainwindow.cpp" line="4176"/> <source>Select binary</source> <translation type="unfinished">選擇可執行檔案</translation> </message> <message> - <location filename="mainwindow.cpp" line="3875"/> + <location filename="mainwindow.cpp" line="4176"/> <source>Binary</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3901"/> + <location filename="mainwindow.cpp" line="4202"/> <source>Enter Name</source> <translation type="unfinished">輸入名稱</translation> </message> <message> - <location filename="mainwindow.cpp" line="3902"/> + <location filename="mainwindow.cpp" line="4203"/> <source>Please enter a name for the executable</source> <translation type="unfinished">請為程式輸入一個名稱</translation> </message> <message> - <location filename="mainwindow.cpp" line="3913"/> + <location filename="mainwindow.cpp" line="4214"/> <source>Not an executable</source> <translation type="unfinished">不是可執行程式</translation> </message> <message> - <location filename="mainwindow.cpp" line="3913"/> + <location filename="mainwindow.cpp" line="4214"/> <source>This is not a recognized executable.</source> <translation type="unfinished">無法識別的可執行檔案</translation> </message> <message> - <location filename="mainwindow.cpp" line="3938"/> - <location filename="mainwindow.cpp" line="3963"/> + <location filename="mainwindow.cpp" line="4239"/> + <location filename="mainwindow.cpp" line="4264"/> <source>Replace file?</source> <translation type="unfinished">取代檔案?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3938"/> + <location filename="mainwindow.cpp" line="4239"/> <source>There already is a hidden version of this file. Replace it?</source> <translation type="unfinished">已存在同名檔案,但該檔案被隱藏了。確定要覆蓋嗎?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3941"/> - <location filename="mainwindow.cpp" line="3966"/> + <location filename="mainwindow.cpp" line="4242"/> + <location filename="mainwindow.cpp" line="4267"/> <source>File operation failed</source> <translation type="unfinished">檔案操作錯誤</translation> </message> <message> - <location filename="mainwindow.cpp" line="3941"/> - <location filename="mainwindow.cpp" line="3966"/> + <location filename="mainwindow.cpp" line="4242"/> + <location filename="mainwindow.cpp" line="4267"/> <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3963"/> + <location filename="mainwindow.cpp" line="4264"/> <source>There already is a visible version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4009"/> + <location filename="mainwindow.cpp" line="4310"/> <source>Update available</source> <translation type="unfinished">更新可用</translation> </message> <message> - <location filename="mainwindow.cpp" line="4046"/> + <location filename="mainwindow.cpp" line="4347"/> <source>Open/Execute</source> <translation type="unfinished">開啟/執行</translation> </message> <message> - <location filename="mainwindow.cpp" line="4047"/> + <location filename="mainwindow.cpp" line="4348"/> <source>Add as Executable</source> <translation type="unfinished">添加為可執行檔案</translation> </message> <message> - <location filename="mainwindow.cpp" line="4051"/> + <location filename="mainwindow.cpp" line="4352"/> <source>Un-Hide</source> <translation type="unfinished">取消隱藏</translation> </message> <message> - <location filename="mainwindow.cpp" line="4053"/> + <location filename="mainwindow.cpp" line="4354"/> <source>Hide</source> <translation type="unfinished">隱藏</translation> </message> <message> - <location filename="mainwindow.cpp" line="4058"/> + <location filename="mainwindow.cpp" line="4359"/> <source>Write To File...</source> <translation type="unfinished">寫入檔案...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4088"/> + <location filename="mainwindow.cpp" line="4390"/> <source>Do you want to endorse Mod Organizer on %1 now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4505"/> + <location filename="mainwindow.cpp" line="4803"/> + <source>Remove</source> + <translation type="unfinished">移除</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4833"/> <source>Unlock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4508"/> + <location filename="mainwindow.cpp" line="4836"/> <source>Lock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4223"/> + <location filename="mainwindow.cpp" line="4526"/> <source>Request to Nexus failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4230"/> - <location filename="mainwindow.cpp" line="4247"/> + <location filename="mainwindow.cpp" line="4533"/> + <location filename="mainwindow.cpp" line="4550"/> <source>login successful</source> <translation type="unfinished">登入成功</translation> </message> <message> - <location filename="mainwindow.cpp" line="4256"/> + <location filename="mainwindow.cpp" line="4559"/> <source>login failed: %1. Trying to download anyway</source> <translation type="unfinished">登入失敗: %1,請嘗試使用別的方法下載</translation> </message> <message> - <location filename="mainwindow.cpp" line="4262"/> + <location filename="mainwindow.cpp" line="4565"/> <source>login failed: %1</source> <translation type="unfinished">無法登入: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4271"/> + <location filename="mainwindow.cpp" line="4574"/> <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="4304"/> + <location filename="mainwindow.cpp" line="4607"/> <source>Error</source> <translation type="unfinished">錯誤</translation> </message> <message> - <location filename="mainwindow.cpp" line="4304"/> + <location filename="mainwindow.cpp" line="4607"/> <source>failed to extract %1 (errorcode %2)</source> <translation type="unfinished">無法解壓 %1 (錯誤代碼 %2)</translation> </message> <message> - <location filename="mainwindow.cpp" line="4399"/> + <location filename="mainwindow.cpp" line="4702"/> <source>Extract...</source> <translation type="unfinished">解壓...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4449"/> + <location filename="mainwindow.cpp" line="4758"/> <source>Edit Categories...</source> <translation type="unfinished">編輯類別...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4485"/> + <location filename="mainwindow.cpp" line="4813"/> <source>Enable all</source> <translation type="unfinished">全部啟用</translation> </message> <message> - <location filename="mainwindow.cpp" line="4486"/> + <location filename="mainwindow.cpp" line="4814"/> <source>Disable all</source> <translation type="unfinished">全部禁用</translation> </message> @@ -2606,7 +2705,7 @@ Please enter a name: </source> <context> <name>ModInfoBackup</name> <message> - <location filename="modinfo.cpp" line="784"/> + <location filename="modinfo.cpp" line="813"/> <source>This is the backup of a mod</source> <translation type="unfinished"></translation> </message> @@ -2635,7 +2734,7 @@ Please enter a name: </source> </message> <message> <location filename="modinfodialog.ui" line="64"/> - <location filename="modinfodialog.ui" line="149"/> + <location filename="modinfodialog.ui" line="152"/> <source>Save</source> <translation>儲存</translation> </message> @@ -2655,51 +2754,49 @@ Please enter a name: </source> <translation>Mod 目錄裡包含的 Ini 檔案的列表,這些檔案通常用來配置 Mod 的行為,如果有可設定的參數的話。</translation> </message> <message> - <location filename="modinfodialog.ui" line="143"/> + <location filename="modinfodialog.ui" line="146"/> <source>Save changes to the file.</source> <translation>儲存更改到檔案中。</translation> </message> <message> - <location filename="modinfodialog.ui" line="146"/> + <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="159"/> + <location filename="modinfodialog.ui" line="162"/> <source>Images</source> <translation>圖片</translation> </message> <message> - <location filename="modinfodialog.ui" line="214"/> + <location filename="modinfodialog.ui" line="217"/> <source>Images located in the mod.</source> <translation>位於 Mod 中的圖片。</translation> </message> <message> - <location filename="modinfodialog.ui" line="217"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" 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><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <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> </message> <message> - <location filename="modinfodialog.ui" line="254"/> - <location filename="modinfodialog.ui" line="277"/> + <location filename="modinfodialog.ui" line="244"/> + <location filename="modinfodialog.ui" line="263"/> <source>Optional ESPs</source> <translation>可選 ESP</translation> </message> <message> - <location filename="modinfodialog.ui" line="260"/> + <location filename="modinfodialog.ui" line="250"/> <source>List of esps and esms that can not be loaded by the game.</source> <translation>包含了不會被遊戲載入的 esp 和 esm 的列表。</translation> </message> <message> - <location filename="modinfodialog.ui" line="263"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -2708,7 +2805,7 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">They usually contain optional functionality, see the readme.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Most mods do not have optional esps, so chances are good you are looking at an empty list.</span></p></body></html></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <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;"> @@ -2719,103 +2816,116 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">大部分 Mod 沒有可選 esp,因此您正在看的很有可能只是一個空列表。</span></p></body></html></translation> </message> <message> - <location filename="modinfodialog.ui" line="292"/> + <location filename="modinfodialog.ui" line="220"/> + <source>This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="253"/> + <source>List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window. +They usually contain optional functionality, see the readme. + +Most mods do not have optional esps, so chances are good you are looking at an empty list.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="278"/> <source>Make the selected mod in the lower list unavailable.</source> <translation>使下表中已選的 Mod 變得不可用。</translation> </message> <message> - <location filename="modinfodialog.ui" line="295"/> + <location filename="modinfodialog.ui" line="281"/> <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="321"/> + <location filename="modinfodialog.ui" line="307"/> <source>Move a file to the data directory.</source> <translation>移動一個檔案到 Data 目錄。</translation> </message> <message> - <location filename="modinfodialog.ui" line="324"/> + <location filename="modinfodialog.ui" line="310"/> <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="359"/> + <location filename="modinfodialog.ui" line="345"/> <source>ESPs in the data directory and thus visible to the game.</source> <translation>ESP 在 Data 目錄,因此它在游戲裡會變得可見。</translation> </message> <message> - <location filename="modinfodialog.ui" line="362"/> + <location filename="modinfodialog.ui" line="348"/> <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="369"/> + <location filename="modinfodialog.ui" line="355"/> <source>Available ESPs</source> <translation>可用 ESP</translation> </message> <message> - <location filename="modinfodialog.ui" line="377"/> + <location filename="modinfodialog.ui" line="363"/> <source>Conflicts</source> <translation>衝突</translation> </message> <message> - <location filename="modinfodialog.ui" line="385"/> + <location filename="modinfodialog.ui" line="371"/> <source>The following conflicted files are provided by this mod</source> <translation>以下衝突檔案由此 Mod 提供</translation> </message> <message> - <location filename="modinfodialog.ui" line="432"/> - <location filename="modinfodialog.ui" line="479"/> + <location filename="modinfodialog.ui" line="418"/> + <location filename="modinfodialog.ui" line="465"/> <source>File</source> <translation>檔案</translation> </message> <message> - <location filename="modinfodialog.ui" line="437"/> + <location filename="modinfodialog.ui" line="423"/> <source>Overwritten Mods</source> <translation>覆蓋的 Mod</translation> </message> <message> - <location filename="modinfodialog.ui" line="447"/> + <location filename="modinfodialog.ui" line="433"/> <source>The following conflicted files are provided by other mods</source> <translation>以下衝突檔案由其它 Mod 提供</translation> </message> <message> - <location filename="modinfodialog.ui" line="484"/> + <location filename="modinfodialog.ui" line="470"/> <source>Providing Mod</source> <translation>提供的 Mod</translation> </message> <message> - <location filename="modinfodialog.ui" line="494"/> + <location filename="modinfodialog.ui" line="480"/> <source>Non-Conflicted files</source> <translation>非衝突檔案</translation> </message> <message> - <location filename="modinfodialog.ui" line="514"/> + <location filename="modinfodialog.ui" line="500"/> <source>Categories</source> <translation>類別</translation> </message> <message> - <location filename="modinfodialog.ui" line="537"/> + <location filename="modinfodialog.ui" line="523"/> <source>Primary Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="554"/> + <location filename="modinfodialog.ui" line="540"/> <source>Nexus Info</source> <translation>N網訊息</translation> </message> <message> - <location filename="modinfodialog.ui" line="562"/> + <location filename="modinfodialog.ui" line="548"/> <source>Mod ID</source> <translation>Mod ID</translation> </message> <message> - <location filename="modinfodialog.ui" line="569"/> + <location filename="modinfodialog.ui" line="555"/> <source>Mod ID for this mod on Nexus.</source> <translation>N網上此 Mod 的 ID。</translation> </message> <message> - <location filename="modinfodialog.ui" line="572"/> + <location filename="modinfodialog.ui" line="558"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -2828,7 +2938,7 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">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="596"/> + <location filename="modinfodialog.ui" line="582"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -2841,27 +2951,27 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">Mod 的已安裝版本,滑鼠提示將顯示N網上的當前版本,已安裝的版本號只有在您通過 MO 來安裝 Mod 的時候才會自動填寫。</span></p></body></html></translation> </message> <message> - <location filename="modinfodialog.ui" line="603"/> + <location filename="modinfodialog.ui" line="589"/> <source>Version</source> <translation>版本</translation> </message> <message> - <location filename="modinfodialog.ui" line="633"/> + <location filename="modinfodialog.ui" line="619"/> <source>Refresh</source> <translation type="unfinished">重新整理</translation> </message> <message> - <location filename="modinfodialog.ui" line="636"/> + <location filename="modinfodialog.ui" line="622"/> <source>Refresh all information from Nexus.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="650"/> + <location filename="modinfodialog.ui" line="636"/> <source>Description</source> <translation>描述</translation> </message> <message> - <location filename="modinfodialog.ui" line="665"/> + <location filename="modinfodialog.ui" line="651"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -2887,20 +2997,21 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">類型</translation> </message> <message> + <location filename="modinfodialog.cpp" line="1179"/> <source>Name</source> - <translation type="obsolete">名稱</translation> + <translation type="unfinished">名稱</translation> </message> <message> <source>Size (kB)</source> <translation type="obsolete">大小 (KB)</translation> </message> <message> - <location filename="modinfodialog.ui" line="701"/> + <location filename="modinfodialog.ui" line="687"/> <source>Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="715"/> + <location filename="modinfodialog.ui" line="701"/> <source>Notes</source> <translation type="unfinished"></translation> </message> @@ -2913,17 +3024,17 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">您支持過這個 Mod 了嗎?</translation> </message> <message> - <location filename="modinfodialog.ui" line="725"/> + <location filename="modinfodialog.ui" line="711"/> <source>Filetree</source> <translation>檔案樹</translation> </message> <message> - <location filename="modinfodialog.ui" line="734"/> + <location filename="modinfodialog.ui" line="720"/> <source>A directory view of this mod</source> <translation>這個 Mod 的目錄視圖</translation> </message> <message> - <location filename="modinfodialog.ui" line="737"/> + <location filename="modinfodialog.ui" line="723"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -2938,17 +3049,17 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size: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="764"/> + <location filename="modinfodialog.ui" line="750"/> <source>Previous</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="771"/> + <location filename="modinfodialog.ui" line="757"/> <source>Next</source> <translation type="unfinished">下一步</translation> </message> <message> - <location filename="modinfodialog.ui" line="791"/> + <location filename="modinfodialog.ui" line="777"/> <source>Close</source> <translation>關閉</translation> </message> @@ -2983,8 +3094,8 @@ p, li { white-space: pre-wrap; } <translation>&新增資料夾</translation> </message> <message> - <location filename="modinfodialog.cpp" line="352"/> - <location filename="modinfodialog.cpp" line="367"/> + <location filename="modinfodialog.cpp" line="354"/> + <location filename="modinfodialog.cpp" line="369"/> <source>Save changes?</source> <translation>儲存更改嗎?</translation> </message> @@ -2993,79 +3104,79 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">儲存更改到 "%1"?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="563"/> + <location filename="modinfodialog.cpp" line="570"/> <source>File Exists</source> <translation>檔案已存在</translation> </message> <message> - <location filename="modinfodialog.cpp" line="563"/> + <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="580"/> + <location filename="modinfodialog.cpp" line="587"/> <source>failed to move file</source> <translation>無法移動檔案</translation> </message> <message> - <location filename="modinfodialog.cpp" line="605"/> + <location filename="modinfodialog.cpp" line="612"/> <source>failed to create directory "optional"</source> <translation>無法建立 "optional" 目錄</translation> </message> <message> - <location filename="modinfodialog.cpp" line="643"/> - <location filename="modinfodialog.cpp" line="1155"/> + <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="758"/> + <location filename="modinfodialog.cpp" line="765"/> <source>(description incomplete, please visit nexus)</source> <translation>(描述訊息不完整,請訪問N網)</translation> </message> <message> - <location filename="modinfodialog.cpp" line="713"/> + <location filename="modinfodialog.cpp" line="720"/> <source>Current Version: %1</source> <translation>當前版本: %1</translation> </message> <message> - <location filename="modinfodialog.cpp" line="717"/> + <location filename="modinfodialog.cpp" line="724"/> <source>No update available</source> <translation>沒有可用的更新</translation> </message> <message> - <location filename="modinfodialog.cpp" line="697"/> + <location filename="modinfodialog.cpp" line="704"/> <source>Main</source> <translation>主要檔案</translation> </message> <message> - <location filename="modinfodialog.cpp" line="352"/> - <location filename="modinfodialog.cpp" line="367"/> + <location filename="modinfodialog.cpp" line="354"/> + <location filename="modinfodialog.cpp" line="369"/> <source>Save changes to "%1"?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="698"/> + <location filename="modinfodialog.cpp" line="705"/> <source>Update</source> <translation>更新</translation> </message> <message> - <location filename="modinfodialog.cpp" line="699"/> + <location filename="modinfodialog.cpp" line="706"/> <source>Optional</source> <translation>可選檔案</translation> </message> <message> - <location filename="modinfodialog.cpp" line="700"/> + <location filename="modinfodialog.cpp" line="707"/> <source>Old</source> <translation>舊檔</translation> </message> <message> - <location filename="modinfodialog.cpp" line="701"/> + <location filename="modinfodialog.cpp" line="708"/> <source>Misc</source> <translation>雜項</translation> </message> <message> - <location filename="modinfodialog.cpp" line="702"/> + <location filename="modinfodialog.cpp" line="709"/> <source>Unknown</source> <translation>未知</translation> </message> @@ -3074,13 +3185,13 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">請求失敗: %1</translation> </message> <message> - <location filename="modinfodialog.cpp" line="779"/> + <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="869"/> - <location filename="modinfodialog.cpp" line="874"/> + <location filename="modinfodialog.cpp" line="870"/> + <location filename="modinfodialog.cpp" line="875"/> <source>Confirm</source> <translation>確認</translation> </message> @@ -3097,85 +3208,110 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">例外: %1</translation> </message> <message> - <location filename="modinfodialog.cpp" line="858"/> + <location filename="modinfodialog.cpp" line="859"/> <source>Failed to delete %1</source> <translation>無法刪除 %1</translation> </message> <message> - <location filename="modinfodialog.cpp" line="869"/> + <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="874"/> + <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="948"/> - <location filename="modinfodialog.cpp" line="954"/> + <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="960"/> + <location filename="modinfodialog.cpp" line="961"/> <source>Failed to create "%1"</source> <translation>無法建立 "%1"</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1064"/> - <location filename="modinfodialog.cpp" line="1088"/> + <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="1064"/> + <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="1067"/> - <location filename="modinfodialog.cpp" line="1091"/> + <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="1067"/> - <location filename="modinfodialog.cpp" line="1091"/> + <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="1078"/> - <location filename="modinfodialog.cpp" line="1101"/> + <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="1088"/> + <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="1135"/> + <location filename="modinfodialog.cpp" line="1136"/> <source>Un-Hide</source> <translation>取消隱藏</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1137"/> + <location filename="modinfodialog.cpp" line="1138"/> <source>Hide</source> <translation>隱藏</translation> </message> + <message> + <location filename="modinfodialog.cpp" line="1179"/> + <source>Please enter a name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1183"/> + <location filename="modinfodialog.cpp" line="1186"/> + <source>Error</source> + <translation type="unfinished">錯誤</translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1183"/> + <source>Invalid name. Must be a valid file name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1186"/> + <source>A tweak by that name exists</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1198"/> + <source>Create Tweak</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>ModInfoOverwrite</name> <message> - <location filename="modinfo.h" line="812"/> <source>Overwrite</source> - <translation>覆蓋</translation> + <translation type="obsolete">覆蓋</translation> </message> <message> - <location filename="modinfo.cpp" line="821"/> + <location filename="modinfo.cpp" line="859"/> <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source> <translation type="unfinished">此虛擬安裝包內包含來自虛擬 Data 樹的檔案,但檔案發生了變化 (例: 被CK修改了)</translation> </message> @@ -3183,17 +3319,17 @@ p, li { white-space: pre-wrap; } <context> <name>ModInfoRegular</name> <message> - <location filename="modinfo.cpp" line="392"/> + <location filename="modinfo.cpp" line="393"/> <source>failed to write %1/meta.ini: %2</source> <translation>無法寫入 %1/meta.ini: %2</translation> </message> <message> - <location filename="modinfo.cpp" line="625"/> + <location filename="modinfo.cpp" line="654"/> <source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source> <translation type="unfinished">%1 中未包含 esp 或 esm 和有效的目錄 (textures, meshes, interface, ...)</translation> </message> <message> - <location filename="modinfo.cpp" line="629"/> + <location filename="modinfo.cpp" line="658"/> <source>Categories: <br></source> <translation type="unfinished">種類: <br></translation> </message> @@ -3201,7 +3337,7 @@ p, li { white-space: pre-wrap; } <context> <name>ModList</name> <message> - <location filename="modlist.cpp" line="662"/> + <location filename="modlist.cpp" line="775"/> <source>Confirm</source> <translation>確認</translation> </message> @@ -3218,9 +3354,8 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">無效的行索引 %1</translation> </message> <message> - <location filename="modlist.cpp" line="94"/> <source>Overwrite</source> - <translation>覆蓋</translation> + <translation type="obsolete">覆蓋</translation> </message> <message> <location filename="modlist.cpp" line="109"/> @@ -3271,17 +3406,17 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">最高值</translation> </message> <message> - <location filename="modlist.cpp" line="736"/> + <location filename="modlist.cpp" line="849"/> <source>Category of the mod.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="737"/> + <location filename="modlist.cpp" line="850"/> <source>Id of the mod as used on Nexus.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="738"/> + <location filename="modlist.cpp" line="851"/> <source>Emblemes to highlight things that might require attention.</source> <translation type="unfinished"></translation> </message> @@ -3290,7 +3425,7 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">%1 中未包含 esp 或 esm 和有效的目錄 (textures, meshes, interface, ...)</translation> </message> <message> - <location filename="modlist.cpp" line="298"/> + <location filename="modlist.cpp" line="317"/> <source>Categories: <br></source> <translation>種類: <br></translation> </message> @@ -3299,7 +3434,7 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">此虛擬安裝包內包含來自虛擬 Data 樹的檔案,但檔案發生了變化 (例: 被CK修改了)</translation> </message> <message> - <location filename="modlist.cpp" line="294"/> + <location filename="modlist.cpp" line="307"/> <source>installed version: %1, newest version: %2</source> <translation>當前版本: %1,最新版本: %2</translation> </message> @@ -3312,83 +3447,88 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Mod 名稱</translation> </message> <message> - <location filename="modlist.cpp" line="719"/> + <location filename="modlist.cpp" line="832"/> <source>Version</source> <translation>版本</translation> </message> <message> - <location filename="modlist.cpp" line="733"/> + <location filename="modlist.cpp" line="846"/> <source>Version of the mod (if available)</source> <translation>Mod 版本 (如果可用)</translation> </message> <message> - <location filename="modlist.cpp" line="720"/> + <location filename="modlist.cpp" line="833"/> <source>Priority</source> <translation>優先級</translation> </message> <message> - <location filename="modlist.cpp" line="184"/> + <location filename="modlist.cpp" line="196"/> <source>invalid</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="327"/> + <location filename="modlist.cpp" line="309"/> + <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="346"/> <source>Invalid name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="603"/> + <location filename="modlist.cpp" line="716"/> <source>drag&drop failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="717"/> + <location filename="modlist.cpp" line="830"/> <source>Flags</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="718"/> + <location filename="modlist.cpp" line="831"/> <source>Mod Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="721"/> + <location filename="modlist.cpp" line="834"/> <source>Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="722"/> + <location filename="modlist.cpp" line="835"/> <source>Nexus ID</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="723"/> + <location filename="modlist.cpp" line="836"/> <source>Installation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="724"/> - <location filename="modlist.cpp" line="740"/> + <location filename="modlist.cpp" line="837"/> + <location filename="modlist.cpp" line="853"/> <source>unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="732"/> + <location filename="modlist.cpp" line="845"/> <source>Name of your mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="734"/> + <location filename="modlist.cpp" line="847"/> <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="739"/> + <location filename="modlist.cpp" line="852"/> <source>Time this mod was installed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="662"/> + <location filename="modlist.cpp" line="775"/> <source>Are you sure you want to remove "%1"?</source> <translation>確定要移除 "%1" 吗?</translation> </message> @@ -3424,12 +3564,12 @@ p, li { white-space: pre-wrap; } <context> <name>MyFileSystemModel</name> <message> - <location filename="overwriteinfodialog.cpp" line="48"/> + <location filename="overwriteinfodialog.cpp" line="47"/> <source>Overwrites</source> <translation>覆蓋</translation> </message> <message> - <location filename="overwriteinfodialog.cpp" line="60"/> + <location filename="overwriteinfodialog.cpp" line="59"/> <source>not implemented</source> <translation>未實現</translation> </message> @@ -3438,11 +3578,16 @@ p, li { white-space: pre-wrap; } <name>NXMAccessManager</name> <message> <location filename="nxmaccessmanager.cpp" line="130"/> + <source>Logging into Nexus</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="nxmaccessmanager.cpp" line="145"/> <source>timeout</source> <translation>超時</translation> </message> <message> - <location filename="nxmaccessmanager.cpp" line="168"/> + <location filename="nxmaccessmanager.cpp" line="185"/> <source>Please check your password</source> <translation>請檢查您的密碼</translation> </message> @@ -3492,17 +3637,17 @@ p, li { white-space: pre-wrap; } <context> <name>NexusInterface</name> <message> - <location filename="nexusinterface.cpp" line="201"/> + <location filename="nexusinterface.cpp" line="219"/> <source>Failed to guess mod id for "%1", please pick the correct one</source> <translation type="unfinished"></translation> </message> <message> - <location filename="nexusinterface.cpp" line="421"/> + <location filename="nexusinterface.cpp" line="440"/> <source>empty response</source> <translation>未回應</translation> </message> <message> - <location filename="nexusinterface.cpp" line="450"/> + <location filename="nexusinterface.cpp" line="469"/> <source>invalid response</source> <translation>無效的回應</translation> </message> @@ -4429,34 +4574,34 @@ Right now this has very limited functionality</source> <translation>&新增資料夾</translation> </message> <message> - <location filename="overwriteinfodialog.cpp" line="137"/> + <location filename="overwriteinfodialog.cpp" line="136"/> <source>Failed to delete "%1"</source> <translation>無法刪除 "%1"</translation> </message> <message> - <location filename="overwriteinfodialog.cpp" line="148"/> - <location filename="overwriteinfodialog.cpp" line="153"/> + <location filename="overwriteinfodialog.cpp" line="147"/> + <location filename="overwriteinfodialog.cpp" line="152"/> <source>Confirm</source> <translation>確認</translation> </message> <message> - <location filename="overwriteinfodialog.cpp" line="148"/> + <location filename="overwriteinfodialog.cpp" line="147"/> <source>Are sure you want to delete "%1"?</source> <translation>確定要刪除 "%1" 嗎?</translation> </message> <message> - <location filename="overwriteinfodialog.cpp" line="153"/> + <location filename="overwriteinfodialog.cpp" line="152"/> <source>Are sure you want to delete the selected files?</source> <translation>確定要刪除所選的檔案嗎?</translation> </message> <message> - <location filename="overwriteinfodialog.cpp" line="203"/> - <location filename="overwriteinfodialog.cpp" line="209"/> + <location filename="overwriteinfodialog.cpp" line="202"/> + <location filename="overwriteinfodialog.cpp" line="208"/> <source>New Folder</source> <translation>新增資料夾</translation> </message> <message> - <location filename="overwriteinfodialog.cpp" line="215"/> + <location filename="overwriteinfodialog.cpp" line="214"/> <source>Failed to create "%1"</source> <translation>無法建立 "%1"</translation> </message> @@ -4468,70 +4613,85 @@ Right now this has very limited functionality</source> <translation type="obsolete">ESP 檔案沒有找到: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="98"/> + <location filename="pluginlist.cpp" line="103"/> <source>Mod Index</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="99"/> - <location filename="pluginlist.cpp" line="111"/> + <location filename="pluginlist.cpp" line="104"/> + <location filename="pluginlist.cpp" line="116"/> <source>unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="107"/> + <location filename="pluginlist.cpp" line="112"/> <source>Name of your mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="108"/> + <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"></translation> </message> <message> - <location filename="pluginlist.cpp" line="110"/> + <location filename="pluginlist.cpp" line="115"/> <source>The modindex determins the formids of objects originating from this mods.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="208"/> + <location filename="pluginlist.cpp" line="151"/> + <source>failed to update esp info for file %1 (source id: %2), error: %3</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="pluginlist.cpp" line="218"/> <source>esp not found: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="215"/> - <location filename="pluginlist.cpp" line="227"/> + <location filename="pluginlist.cpp" line="225"/> + <location filename="pluginlist.cpp" line="237"/> <source>Confirm</source> <translation type="unfinished">確認</translation> </message> <message> - <location filename="pluginlist.cpp" line="215"/> + <location filename="pluginlist.cpp" line="225"/> <source>Really enable all plugins?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="227"/> + <location filename="pluginlist.cpp" line="237"/> <source>Really disable all plugins?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="353"/> + <location filename="pluginlist.cpp" line="365"/> <source>The file containing locked plugin indices is broken</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="366"/> - <location filename="pluginlist.cpp" line="405"/> + <location filename="pluginlist.cpp" line="378"/> + <location filename="pluginlist.cpp" line="417"/> <source>failed to open output file: %1</source> <translation>無法開啟輸出檔案: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="393"/> + <location filename="pluginlist.cpp" line="405"/> <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="737"/> + <location filename="pluginlist.cpp" line="755"/> + <source>Missing Masters</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="pluginlist.cpp" line="761"/> + <source>Enabled Masters</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="pluginlist.cpp" line="873"/> <source>failed to restore load order for %1</source> <translation type="unfinished"></translation> </message> @@ -4544,17 +4704,17 @@ Right now this has very limited functionality</source> <translation type="obsolete">最高值</translation> </message> <message> - <location filename="pluginlist.cpp" line="631"/> + <location filename="pluginlist.cpp" line="751"/> <source>This plugin can't be disabled (enforced by the game)</source> <translation>這個插件不能被禁用 (由遊戲執行)</translation> </message> <message> - <location filename="pluginlist.cpp" line="633"/> + <location filename="pluginlist.cpp" line="753"/> <source>Origin: %1</source> <translation>隸屬於: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="96"/> + <location filename="pluginlist.cpp" line="101"/> <source>Name</source> <translation>名稱</translation> </message> @@ -4563,7 +4723,7 @@ Right now this has very limited functionality</source> <translation type="obsolete">Mod 名稱</translation> </message> <message> - <location filename="pluginlist.cpp" line="97"/> + <location filename="pluginlist.cpp" line="102"/> <source>Priority</source> <translation>優先級</translation> </message> @@ -4592,22 +4752,28 @@ Right now this has very limited functionality</source> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" 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;"> +</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> + <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: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></oldsource> <translation type="unfinished"></translation> </message> <message> - <location filename="problemsdialog.cpp" line="29"/> - <source>fix</source> - <translation type="unfinished"></translation> + <location filename="problemsdialog.ui" line="75"/> + <source>Close</source> + <translation type="unfinished">關閉</translation> </message> <message> - <location filename="problemsdialog.cpp" line="30"/> + <location filename="problemsdialog.cpp" line="44"/> + <location filename="problemsdialog.cpp" line="45"/> <source>Fix</source> <translation type="unfinished"></translation> </message> <message> - <location filename="problemsdialog.cpp" line="34"/> + <location filename="problemsdialog.cpp" line="49"/> <source>No guided fix</source> <translation type="unfinished"></translation> </message> @@ -4619,72 +4785,82 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">無法套用 Ini 設定</translation> </message> <message> - <location filename="profile.cpp" line="56"/> + <location filename="profile.cpp" line="58"/> <source>invalid profile name %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="60"/> + <location filename="profile.cpp" line="62"/> <source>failed to create %1</source> <translation type="unfinished">無法建立 %1</translation> </message> <message> - <location filename="profile.cpp" line="152"/> + <location filename="profile.cpp" line="155"/> + <source>failed to open temporary file</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profile.cpp" line="192"/> <source>failed to open "%1" for writing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="189"/> + <location filename="profile.cpp" line="198"/> + <source>failed to write mod list: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profile.cpp" line="209"/> <source>failed to update tweaked ini file, wrong settings may be used: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="219"/> + <location filename="profile.cpp" line="239"/> <source>failed to create tweaked ini: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="271"/> - <location filename="profile.cpp" line="300"/> - <location filename="profile.cpp" line="384"/> - <location filename="profile.cpp" line="402"/> - <location filename="profile.cpp" line="412"/> + <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="365"/> + <location filename="profile.cpp" line="387"/> <source>Overwrite directory couldn't be parsed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="374"/> + <location filename="profile.cpp" line="396"/> <source>invalid priority %1</source> <translation>無效的優先級 %1</translation> </message> <message> - <location filename="profile.cpp" line="561"/> + <location filename="profile.cpp" line="584"/> <source>failed to parse ini file (%1)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="589"/> + <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="613"/> - <location filename="profile.cpp" line="650"/> + <location filename="profile.cpp" line="636"/> + <location filename="profile.cpp" line="673"/> <source>failed to modify "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="678"/> + <location filename="profile.cpp" line="701"/> <source>Delete savegames?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="679"/> + <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"></translation> </message> @@ -4900,37 +5076,61 @@ p, li { white-space: pre-wrap; } <translation>請輸入配置檔案的名稱</translation> </message> <message> - <location filename="profilesdialog.cpp" line="160"/> + <location filename="profilesdialog.cpp" line="162"/> <source>failed to copy profile: %1</source> <translation>無法複製配置檔案: %1</translation> </message> <message> - <location filename="profilesdialog.cpp" line="167"/> + <location filename="profilesdialog.cpp" line="165"/> + <source>Invalid name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.cpp" line="165"/> + <source>Invalid profile name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.cpp" line="172"/> <source>Confirm</source> <translation>確認</translation> </message> <message> - <location filename="profilesdialog.cpp" line="167"/> + <location filename="profilesdialog.cpp" line="172"/> + <source>Are you sure you want to remove this profile (including local savegames if any)?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.cpp" line="182"/> + <source>Profile broken</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profilesdialog.cpp" line="183"/> + <source>This profile you'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>確定要移除這個配置嗎?</translation> + <translation type="obsolete">確定要移除這個配置嗎?</translation> </message> <message> - <location filename="profilesdialog.cpp" line="196"/> + <location filename="profilesdialog.cpp" line="215"/> <source>Rename Profile</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profilesdialog.cpp" line="196"/> + <location filename="profilesdialog.cpp" line="215"/> <source>New Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profilesdialog.cpp" line="233"/> + <location filename="profilesdialog.cpp" line="252"/> <source>failed to change archive invalidation state: %1</source> <translation>無法改變檔案無效化狀態: %1</translation> </message> <message> - <location filename="profilesdialog.cpp" line="270"/> + <location filename="profilesdialog.cpp" line="289"/> <source>failed to determine if invalidation is active: %1</source> <translation>無法確定無效化是否被激活: %1</translation> </message> @@ -4938,20 +5138,20 @@ p, li { white-space: pre-wrap; } <context> <name>QObject</name> <message> - <location filename="categories.cpp" line="133"/> + <location filename="categories.cpp" line="140"/> <source>Failed to save custom categories</source> <translation>無法儲存自定義類別</translation> </message> <message> - <location filename="categories.cpp" line="210"/> - <location filename="categories.cpp" line="245"/> - <location filename="categories.cpp" line="255"/> - <location filename="categories.cpp" line="265"/> + <location filename="categories.cpp" line="217"/> + <location filename="categories.cpp" line="252"/> + <location filename="categories.cpp" line="262"/> + <location filename="categories.cpp" line="272"/> <source>invalid index %1</source> <translation>無效的索引 %1</translation> </message> <message> - <location filename="categories.cpp" line="276"/> + <location filename="categories.cpp" line="283"/> <source>invalid category id %1</source> <translation>無效的類別 %1</translation> </message> @@ -4967,7 +5167,7 @@ p, li { white-space: pre-wrap; } <translation>無法確認帳戶名稱</translation> </message> <message> - <location filename="installationmanager.cpp" line="63"/> + <location filename="installationmanager.cpp" line="64"/> <location filename="selfupdater.cpp" line="52"/> <source>invalid 7-zip32.dll: %1</source> <translation>無效的 7-zip32.dll: %1</translation> @@ -5037,12 +5237,12 @@ p, li { white-space: pre-wrap; } <translation>無法設定代理DLL加載</translation> </message> <message> - <location filename="profile.cpp" line="93"/> + <location filename="profile.cpp" line="95"/> <source>"%1" is missing</source> <translation>"%1" 缺失</translation> </message> <message> - <location filename="main.cpp" line="134"/> + <location filename="main.cpp" line="138"/> <source>Permissions required</source> <translation>需要權限</translation> </message> @@ -5051,8 +5251,8 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">當前的用戶帳戶沒有運行 Mod Organizer 所需的訪問權限,必要的修改將會自動進行 (MO 的目錄將會為當前用戶帳戶而變得可寫),您將被請求使用管理員權限執行 "mo_helper.exe"。</translation> </message> <message> - <location filename="main.cpp" line="234"/> - <location filename="main.cpp" line="272"/> + <location filename="main.cpp" line="230"/> + <location filename="main.cpp" line="268"/> <source>Woops</source> <translation>糟糕</translation> </message> @@ -5061,61 +5261,66 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">Mod Organizer 崩潰了!要生成診斷檔案嗎?如果您發送這個檔案到我的郵箱 (sherb@gmx.net) 裡的話,這個 Bug 會很有可能被修復。</translation> </message> <message> - <location filename="main.cpp" line="135"/> - <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> + <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"></translation> </message> <message> - <location filename="main.cpp" line="235"/> + <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> </message> <message> - <location filename="main.cpp" line="273"/> + <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="335"/> - <location filename="settings.cpp" line="462"/> + <location filename="main.cpp" line="331"/> + <location filename="settings.cpp" line="528"/> <source>Mod Organizer</source> <translation>Mod Organizer</translation> </message> <message> - <location filename="main.cpp" line="335"/> + <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="357"/> + <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="360"/> - <location filename="main.cpp" line="389"/> + <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="mainwindow.cpp" line="752"/> + <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"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="770"/> <source>Please use "Help" from the toolbar to get usage instructions to all elements</source> <translation>請使用工具列上的“幫助”來獲得所有元素的使用說明</translation> </message> <message> - <location filename="mainwindow.cpp" line="1470"/> - <location filename="mainwindow.cpp" line="3723"/> + <location filename="mainwindow.cpp" line="1538"/> + <location filename="mainwindow.cpp" line="4024"/> <source><Manage...></source> <translation><管理...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1488"/> + <location filename="mainwindow.cpp" line="1556"/> <source>failed to parse profile %1: %2</source> <translation>無法解析配置檔案 %1: %2</translation> </message> <message> - <location filename="pluginlist.cpp" line="310"/> - <location filename="profile.cpp" line="228"/> + <location filename="pluginlist.cpp" line="320"/> + <location filename="profile.cpp" line="249"/> <source>failed to find "%1"</source> <translation>未能找到 "%1"</translation> </message> @@ -5124,17 +5329,17 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">編碼錯誤,請向作者彙報此 Bug 並且附上 mo_interface.log 檔案!</translation> </message> <message> - <location filename="pluginlist.cpp" line="467"/> + <location filename="pluginlist.cpp" line="479"/> <source>failed to access %1</source> <translation>無法訪問 %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="481"/> + <location filename="pluginlist.cpp" line="493"/> <source>failed to set file time %1</source> <translation>無法設定檔案時間 %1</translation> </message> <message> - <location filename="profile.cpp" line="67"/> + <location filename="profile.cpp" line="69"/> <source>failed to create %1</source> <translation>無法建立 %1</translation> </message> @@ -5170,12 +5375,12 @@ p, li { white-space: pre-wrap; } <translation>無法開啟 %1</translation> </message> <message> - <location filename="settings.cpp" line="469"/> + <location filename="settings.cpp" line="535"/> <source>Script Extender</source> <translation>腳本拓展</translation> </message> <message> - <location filename="settings.cpp" line="476"/> + <location filename="settings.cpp" line="542"/> <source>Proxy DLL</source> <translation>代理DLL</translation> </message> @@ -5318,9 +5523,8 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <context> <name>QuestionBoxMemory</name> <message> - <location filename="questionboxmemory.ui" line="86"/> <source>Remember selection</source> - <translation>記住我的選擇</translation> + <translation type="obsolete">記住我的選擇</translation> </message> </context> <context> @@ -5428,9 +5632,9 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe </message> <message> <location filename="selfupdater.cpp" line="116"/> - <location filename="selfupdater.cpp" line="140"/> - <location filename="selfupdater.cpp" line="269"/> - <location filename="selfupdater.cpp" line="417"/> + <location filename="selfupdater.cpp" line="139"/> + <location filename="selfupdater.cpp" line="268"/> + <location filename="selfupdater.cpp" line="415"/> <source>Update</source> <translation>更新</translation> </message> @@ -5440,57 +5644,57 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <translation>有可用的更新 (最新版本: %1),您想要安裝它嗎?</translation> </message> <message> - <location filename="selfupdater.cpp" line="141"/> + <location filename="selfupdater.cpp" line="140"/> <source>Download in progress</source> <translation>正在下載</translation> </message> <message> - <location filename="selfupdater.cpp" line="196"/> + <location filename="selfupdater.cpp" line="195"/> <source>Download failed: %1</source> <translation>下載失敗: %1</translation> </message> <message> - <location filename="selfupdater.cpp" line="207"/> + <location filename="selfupdater.cpp" line="206"/> <source>Failed to install update: %1</source> <translation>無法安裝更新: %1</translation> </message> <message> - <location filename="selfupdater.cpp" line="228"/> + <location filename="selfupdater.cpp" line="227"/> <source>failed to open archive "%1": %2</source> <translation>無法開啟壓縮包 "%1": %2</translation> </message> <message> - <location filename="selfupdater.cpp" line="251"/> + <location filename="selfupdater.cpp" line="250"/> <source>failed to move outdated files: %1. Please update manually.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="selfupdater.cpp" line="269"/> + <location filename="selfupdater.cpp" line="268"/> <source>Update installed, Mod Organizer will now be restarted.</source> <translation>更新完成,Mod Organizer 現在將重新啟動。</translation> </message> <message> - <location filename="selfupdater.cpp" line="297"/> + <location filename="selfupdater.cpp" line="296"/> <source>Error</source> <translation>錯誤</translation> </message> <message> - <location filename="selfupdater.cpp" line="353"/> + <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>解析回應時發生錯誤。請回報此 Bug 並附上 mo_interface.log!</translation> </message> <message> - <location filename="selfupdater.cpp" line="418"/> + <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>沒有可用于此版本的更新檔案,需要下載完整的安裝包 (%1 KB)</translation> </message> <message> - <location filename="selfupdater.cpp" line="427"/> + <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="461"/> + <location filename="selfupdater.cpp" line="459"/> <source>No download server available. Please try again later.</source> <translation type="unfinished">沒有可用的下載伺服器,請稍後再嘗試下載。</translation> </message> @@ -5499,7 +5703,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <translation type="obsolete">未找到更新檔案</translation> </message> <message> - <location filename="selfupdater.cpp" line="441"/> + <location filename="selfupdater.cpp" line="439"/> <source>Failed to retrieve update information: %1</source> <translation>無法檢索更新信息: %1</translation> </message> @@ -5507,26 +5711,22 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <context> <name>Settings</name> <message> - <location filename="settings.cpp" line="278"/> - <source>setting for invalid plugin "%1" requested</source> - <translation type="unfinished"></translation> + <source>Administrative rights required to change this.</source> + <translation type="obsolete">需要管理員的權限來更改這個。</translation> </message> <message> - <location filename="settings.cpp" line="282"/> - <source>invalid setting "%1" requested for plugin "%2"</source> + <location filename="settings.cpp" line="306"/> + <location filename="settings.cpp" line="325"/> + <source>attempt to store setting for unknown plugin "%1"</source> <translation type="unfinished"></translation> </message> <message> - <source>Administrative rights required to change this.</source> - <translation type="obsolete">需要管理員的權限來更改這個。</translation> - </message> - <message> - <location filename="settings.cpp" line="573"/> + <location filename="settings.cpp" line="646"/> <source>Confirm</source> <translation>確認</translation> </message> <message> - <location filename="settings.cpp" line="573"/> + <location filename="settings.cpp" line="646"/> <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> @@ -5715,7 +5915,12 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="594"/> + <location filename="settingsdialog.ui" line="512"/> + <source>Blacklisted Plugins (use <del> to remove):</source> + <translation type="unfinished"></translation> + </message> + <message> + <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. @@ -5811,47 +6016,47 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="427"/> + <location filename="settingsdialog.ui" line="429"/> <source>Author:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="441"/> + <location filename="settingsdialog.ui" line="443"/> <source>Version:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="455"/> + <location filename="settingsdialog.ui" line="457"/> <source>Description:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="493"/> + <location filename="settingsdialog.ui" line="495"/> <source>Key</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="498"/> + <location filename="settingsdialog.ui" line="500"/> <source>Value</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="509"/> + <location filename="settingsdialog.ui" line="523"/> <source>Workarounds</source> <translation>解決方案</translation> </message> <message> - <location filename="settingsdialog.ui" line="517"/> + <location filename="settingsdialog.ui" line="531"/> <source>Steam App ID</source> <translation>Steam App ID</translation> </message> <message> - <location filename="settingsdialog.ui" line="537"/> + <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="540"/> + <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; } @@ -5878,12 +6083,12 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">其中 22380 就是您要找的 ID。</span></p></body></html></translation> </message> <message> - <location filename="settingsdialog.ui" line="571"/> + <location filename="settingsdialog.ui" line="585"/> <source>Load Mechanism</source> <translation>加載機制</translation> </message> <message> - <location filename="settingsdialog.ui" line="591"/> + <location filename="settingsdialog.ui" line="605"/> <source>Select loading mechanism. See help for details.</source> <translation>選擇加載機制,使用幫助查看更多細節。</translation> </message> @@ -5908,17 +6113,17 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt; font-weight:600;">代理DLL</span><span style=" font-size:9pt;"> 在這種模式下,MO 將替換一個遊戲的 dll 來加載 MO (當然原來的 dll),這僅適用于 Steam 版本的遊戲,並且只在 Skyrim 上做過測試。請只在其它加載機制不能工作的情況下才使用它。</span></p></body></html></translation> </message> <message> - <location filename="settingsdialog.ui" line="611"/> + <location filename="settingsdialog.ui" line="625"/> <source>NMM Version</source> <translation>NMM 版本</translation> </message> <message> - <location filename="settingsdialog.ui" line="631"/> + <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="634"/> + <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. @@ -5931,7 +6136,7 @@ tl;dr-version: If Nexus-features don't work, insert the current version num 變更版本號: 如果N網功能不正常了,那麼請在這裡輸入 NMM 的當前版本號並重試一下。</translation> </message> <message> - <location filename="settingsdialog.ui" line="719"/> + <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> @@ -5944,48 +6149,48 @@ tl;dr-version: If Nexus-features don't work, insert the current version num <translation type="obsolete">例如: 0.33.1</translation> </message> <message> - <location filename="settingsdialog.ui" line="656"/> + <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="659"/> + <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="663"/> + <location filename="settingsdialog.ui" line="677"/> <source>Hide inactive ESPs/ESMs</source> <translation>隱藏未激活的 ESP 或 ESM</translation> </message> <message> - <location filename="settingsdialog.ui" line="670"/> + <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> </message> <message> - <location filename="settingsdialog.ui" line="673"/> + <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> </message> <message> - <location filename="settingsdialog.ui" line="677"/> + <location filename="settingsdialog.ui" line="691"/> <source>Force-enable game files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="687"/> - <location filename="settingsdialog.ui" line="691"/> + <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="695"/> + <location filename="settingsdialog.ui" line="709"/> <source>Back-date BSAs</source> <translation>重置 BSA 檔案修改日期</translation> </message> @@ -5994,27 +6199,27 @@ For the other games this is not a sufficient replacement for AI!</source> <translation type="obsolete">這些是 Mod Organizer 的問題解決方案。它們通常是不必修改的,請確保在您變更了這裡的任何東西之前已經讀過了幫助文檔。</translation> </message> <message> - <location filename="settingsdialog.cpp" line="89"/> + <location filename="settingsdialog.cpp" line="94"/> <source>Select download directory</source> <translation>選擇下載目錄</translation> </message> <message> - <location filename="settingsdialog.cpp" line="97"/> + <location filename="settingsdialog.cpp" line="102"/> <source>Select mod directory</source> <translation>選擇 Mod 目錄</translation> </message> <message> - <location filename="settingsdialog.cpp" line="105"/> + <location filename="settingsdialog.cpp" line="110"/> <source>Select cache directory</source> <translation>選擇緩存目錄</translation> </message> <message> - <location filename="settingsdialog.cpp" line="113"/> + <location filename="settingsdialog.cpp" line="118"/> <source>Confirm?</source> <translation>確認?</translation> </message> <message> - <location filename="settingsdialog.cpp" line="114"/> + <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> |
