diff options
| author | Tannin <devnull@localhost> | 2013-12-07 16:55:19 +0100 |
|---|---|---|
| committer | Tannin <devnull@localhost> | 2013-12-07 16:55:19 +0100 |
| commit | c4f0bc39c75f7e80ad9de5f62541aa59cc0c7854 (patch) | |
| tree | b7fe62e175f2a6094eb73fc47715e2628741c09f /src | |
| parent | 6e1e8c37ebe1de745eccd6a238d5947e2d01b104 (diff) | |
| parent | e71c37df37dea1e4eb8b5e87027fc7f5f81bef56 (diff) | |
Merge with default
Diffstat (limited to 'src')
| -rw-r--r-- | src/mainwindow.cpp | 69 | ||||
| -rw-r--r-- | src/mainwindow.h | 9 | ||||
| -rw-r--r-- | src/mainwindow.ui | 55 | ||||
| -rw-r--r-- | src/organizer.pro | 7 | ||||
| -rw-r--r-- | src/organizer_cs.ts | 407 | ||||
| -rw-r--r-- | src/organizer_de.ts | 407 | ||||
| -rw-r--r-- | src/organizer_es.ts | 407 | ||||
| -rw-r--r-- | src/organizer_fr.ts | 407 | ||||
| -rw-r--r-- | src/organizer_ru.ts | 407 | ||||
| -rw-r--r-- | src/organizer_tr.ts | 407 | ||||
| -rw-r--r-- | src/organizer_zh_CN.ts | 407 | ||||
| -rw-r--r-- | src/organizer_zh_TW.ts | 407 | ||||
| -rw-r--r-- | src/settings.h | 5 | ||||
| -rw-r--r-- | src/version.rc | 4 |
14 files changed, 1666 insertions, 1739 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 9fd41d7f..3eefffa9 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -144,8 +144,7 @@ MainWindow::MainWindow(const QString &exeName, QSettings &initSettings, QWidget m_DirectoryStructure(new DirectoryEntry(L"data", NULL, 0)), m_ModList(this), m_ModListGroupingProxy(NULL), m_ModListSortProxy(NULL), m_PluginList(this), m_OldExecutableIndex(-1), m_GamePath(ToQString(GameInfo::instance().getGameDirectory())), - m_DownloadManager(NexusInterface::instance(), this), - m_InstallationManager(this), m_Translator(NULL), m_TranslatorQt(NULL), + m_DownloadManager(NexusInterface::instance(), this), m_InstallationManager(this), m_Updater(NexusInterface::instance(), this), m_CategoryFactory(CategoryFactory::instance()), m_CurrentProfile(NULL), m_AskForNexusPW(false), m_LoginAttempted(false), m_ArchivesInit(false), m_ContextItem(NULL), m_ContextAction(NULL), m_CurrentSaveView(NULL), @@ -208,6 +207,8 @@ MainWindow::MainWindow(const QString &exeName, QSettings &initSettings, QWidget } ui->espList->installEventFilter(&m_PluginList); + ui->bsaList->setLocalMoveOnly(true); + resizeLists(initSettings.contains("mod_list_state"), initSettings.contains("plugin_list_state")); QMenu *linkMenu = new QMenu(this); @@ -975,7 +976,7 @@ void MainWindow::registerPluginTool(IPluginTool *tool) } -bool MainWindow::registerPlugin(QObject *plugin) +bool MainWindow::registerPlugin(QObject *plugin, const QString &fileName) { { // generic treatment for all plugins IPlugin *pluginObj = qobject_cast<IPlugin*>(plugin); @@ -983,6 +984,7 @@ bool MainWindow::registerPlugin(QObject *plugin) qDebug("not an IPlugin"); return false; } + plugin->setProperty("filename", fileName); m_Settings.registerPlugin(pluginObj); } @@ -1017,7 +1019,7 @@ bool MainWindow::registerPlugin(QObject *plugin) try { QObject *proxiedPlugin = proxy->instantiate(pluginName); if (proxiedPlugin != NULL) { - if (registerPlugin(proxiedPlugin)) { + if (registerPlugin(proxiedPlugin, pluginName)) { qDebug("loaded plugin \"%s\"", QDir::toNativeSeparators(pluginName).toUtf8().constData()); } else { qWarning("plugin \"%s\" failed to load", pluginName.toUtf8().constData()); @@ -1052,7 +1054,7 @@ void MainWindow::loadPlugins() m_Settings.clearPlugins(); foreach (QObject *plugin, QPluginLoader::staticInstances()) { - registerPlugin(plugin); + registerPlugin(plugin, ""); } QFile loadCheck(QCoreApplication::applicationDirPath() + "/plugin_loadcheck.tmp"); @@ -1095,7 +1097,7 @@ void MainWindow::loadPlugins() qCritical("failed to load plugin %s: %s", pluginName.toUtf8().constData(), pluginLoader.errorString().toUtf8().constData()); } else { - if (registerPlugin(pluginLoader.instance())) { + if (registerPlugin(pluginLoader.instance(), pluginName)) { qDebug("loaded plugin \"%s\"", QDir::toNativeSeparators(pluginName).toUtf8().constData()); } else { m_UnloadedPlugins.push_back(pluginName); @@ -1790,8 +1792,8 @@ void MainWindow::refreshBSAList() QTreeWidgetItem *newItem = new QTreeWidgetItem(strings); newItem->setData(0, Qt::UserRole, index); newItem->setData(1, Qt::UserRole, origin); -// newItem->setFlags(newItem->flags() & ~Qt::ItemIsDropEnabled | Qt::ItemIsUserCheckable); - newItem->setFlags(newItem->flags() | Qt::ItemIsUserCheckable); + newItem->setFlags(newItem->flags() & ~Qt::ItemIsDropEnabled | Qt::ItemIsUserCheckable); +// newItem->setFlags(newItem->flags() | Qt::ItemIsUserCheckable); newItem->setCheckState(0, (index != -1) ? Qt::Checked : Qt::Unchecked); if (m_Settings.forceEnableCoreFiles() && m_DefaultArchives.contains(filename)) { newItem->setCheckState(0, Qt::Checked); @@ -4077,35 +4079,40 @@ void MainWindow::downloadRequested(QNetworkReply *reply, int modID, const QStrin } -void MainWindow::languageChange(const QString &newLanguage) +void MainWindow::installTranslator(const QString &name) { - if (m_Translator != NULL) { - QCoreApplication::removeTranslator(m_Translator); - delete m_Translator; - m_Translator = NULL; + QTranslator *translator = new QTranslator(this); + QString fileName = name + "_" + m_CurrentLanguage; + if (!translator->load(fileName, qApp->applicationDirPath() + "/translations")) { + qWarning("localization file %s not found", qPrintable(fileName)); } - if (m_TranslatorQt != NULL) { - QCoreApplication::removeTranslator(m_TranslatorQt); - delete m_TranslatorQt; - m_TranslatorQt = NULL; + qApp->installTranslator(translator); + m_Translators.push_back(translator); +} + + +void MainWindow::languageChange(const QString &newLanguage) +{ + foreach (QTranslator *trans, m_Translators) { + qApp->removeTranslator(trans); } + m_Translators.clear(); - if (newLanguage != "en_US") { - // add our own translations - m_Translator = new QTranslator(this); - QString locFile = ToQString(AppConfig::translationPrefix()) + "_" + newLanguage; - if (!m_Translator->load(locFile, QCoreApplication::applicationDirPath() + "/translations")) { - qDebug("localization %s not found", locFile.toUtf8().constData()); - } - QCoreApplication::installTranslator(m_Translator); + m_CurrentLanguage = newLanguage; - // also add the translations for qt default strings - m_TranslatorQt = new QTranslator(this); - locFile = QString("qt_") + newLanguage; - if (!m_TranslatorQt->load(locFile, QCoreApplication::applicationDirPath() + "/translations")) { - qDebug("localization %s not found", locFile.toUtf8().constData()); + if (newLanguage != "en_US") { + installTranslator("qt"); + installTranslator(ToQString(AppConfig::translationPrefix())); + foreach(IPlugin *plugin, m_Settings.plugins()) { + QObject *pluginObj = dynamic_cast<QObject*>(plugin); + if (pluginObj != NULL) { + QVariant fileNameVariant = pluginObj->property("filename"); + if (fileNameVariant.isValid()) { + QString fileName = QFileInfo(fileNameVariant.toString()).baseName(); + installTranslator(fileName); + } + } } - QCoreApplication::installTranslator(m_TranslatorQt); } ui->retranslateUi(this); ui->profileBox->setItemText(0, QObject::tr("<Manage...>")); diff --git a/src/mainwindow.h b/src/mainwindow.h index 27a56812..31fbeef3 100644 --- a/src/mainwindow.h +++ b/src/mainwindow.h @@ -197,7 +197,7 @@ private: void actionToToolButton(QAction *&sourceAction); bool verifyPlugin(MOBase::IPlugin *plugin); void registerPluginTool(MOBase::IPluginTool *tool); - bool registerPlugin(QObject *pluginObj); + bool registerPlugin(QObject *pluginObj, const QString &fileName); void updateToolBar(); void activateSelectedProfile(); @@ -286,6 +286,7 @@ private: static void setupNetworkProxy(bool activate); void activateProxy(bool activate); + void installTranslator(const QString &name); private: @@ -332,9 +333,6 @@ private: DownloadManager m_DownloadManager; InstallationManager m_InstallationManager; - QTranslator *m_Translator; - QTranslator *m_TranslatorQt; - SelfUpdater m_Updater; CategoryFactory &m_CategoryFactory; @@ -366,6 +364,9 @@ private: SignalAboutToRunApplication m_AboutToRun; + QString m_CurrentLanguage; + std::vector<QTranslator*> m_Translators; + private slots: void showMessage(const QString &message); diff --git a/src/mainwindow.ui b/src/mainwindow.ui index bc7dc212..5c89a7e0 100644 --- a/src/mainwindow.ui +++ b/src/mainwindow.ui @@ -31,16 +31,7 @@ <property name="spacing">
<number>4</number>
</property>
- <property name="leftMargin">
- <number>6</number>
- </property>
- <property name="topMargin">
- <number>6</number>
- </property>
- <property name="rightMargin">
- <number>6</number>
- </property>
- <property name="bottomMargin">
+ <property name="margin">
<number>6</number>
</property>
<item>
@@ -730,16 +721,7 @@ p, li { white-space: pre-wrap; } <string notr="true">Archives</string>
</attribute>
<layout class="QVBoxLayout" name="verticalLayout_9">
- <property name="leftMargin">
- <number>6</number>
- </property>
- <property name="topMargin">
- <number>6</number>
- </property>
- <property name="rightMargin">
- <number>6</number>
- </property>
- <property name="bottomMargin">
+ <property name="margin">
<number>6</number>
</property>
<item>
@@ -819,16 +801,7 @@ BSAs checked here are loaded in such a way that your installation order is obeye <string>Data</string>
</attribute>
<layout class="QVBoxLayout" name="verticalLayout_5">
- <property name="leftMargin">
- <number>6</number>
- </property>
- <property name="topMargin">
- <number>6</number>
- </property>
- <property name="rightMargin">
- <number>6</number>
- </property>
- <property name="bottomMargin">
+ <property name="margin">
<number>6</number>
</property>
<item>
@@ -898,16 +871,7 @@ BSAs checked here are loaded in such a way that your installation order is obeye <string>Saves</string>
</attribute>
<layout class="QVBoxLayout" name="verticalLayout_3">
- <property name="leftMargin">
- <number>6</number>
- </property>
- <property name="topMargin">
- <number>6</number>
- </property>
- <property name="rightMargin">
- <number>6</number>
- </property>
- <property name="bottomMargin">
+ <property name="margin">
<number>6</number>
</property>
<item>
@@ -936,16 +900,7 @@ p, li { white-space: pre-wrap; } <string>Downloads</string>
</attribute>
<layout class="QVBoxLayout" name="verticalLayout_7">
- <property name="leftMargin">
- <number>2</number>
- </property>
- <property name="topMargin">
- <number>2</number>
- </property>
- <property name="rightMargin">
- <number>2</number>
- </property>
- <property name="bottomMargin">
+ <property name="margin">
<number>2</number>
</property>
<item>
diff --git a/src/organizer.pro b/src/organizer.pro index f4be6f80..30454ea8 100644 --- a/src/organizer.pro +++ b/src/organizer.pro @@ -207,13 +207,12 @@ CONFIG += embed_manifest_exe # QMAKE_LFLAGS += /MANIFESTUAC:\"level=\'highestAvailable\' uiAccess=\'false\'\"
TRANSLATIONS = organizer_de.ts \
- organizer_es.ts \
- organizer_fr.ts \
- organizer_zh_TW.ts \
+ organizer_es.ts \
+ organizer_fr.ts \
+ organizer_zh_TW.ts \
organizer_zh_CN.ts \
organizer_cs.ts \
organizer_tr.ts \
- organizer_en.ts \
organizer_ru.ts
!isEmpty(TRANSLATIONS) {
diff --git a/src/organizer_cs.ts b/src/organizer_cs.ts index 10c5f555..59f8b52b 100644 --- a/src/organizer_cs.ts +++ b/src/organizer_cs.ts @@ -268,11 +268,6 @@ p, li { white-space: pre-wrap; } <translation>#Placeholder</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"/> @@ -1563,8 +1558,8 @@ BSAs checked here are loaded in such a way that your installation order is obeye </message> <message> <location filename="mainwindow.ui" line="843"/> - <location filename="mainwindow.cpp" line="3612"/> - <location filename="mainwindow.cpp" line="4360"/> + <location filename="mainwindow.cpp" line="3619"/> + <location filename="mainwindow.cpp" line="4368"/> <source>Refresh</source> <translation type="unfinished">Znovunačíst</translation> </message> @@ -1744,7 +1739,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="mainwindow.ui" line="1209"/> - <location filename="mainwindow.cpp" line="4308"/> + <location filename="mainwindow.cpp" line="4316"/> <source>Update</source> <translation type="unfinished"></translation> </message> @@ -1755,7 +1750,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="mainwindow.ui" line="1224"/> - <location filename="mainwindow.cpp" line="496"/> + <location filename="mainwindow.cpp" line="497"/> <source>No Problems</source> <translation type="unfinished">Žádné problémy</translation> </message> @@ -1788,7 +1783,7 @@ V současnosti má omezenou funkcionalitu</translation> </message> <message> <location filename="mainwindow.ui" line="1257"/> - <location filename="mainwindow.cpp" line="4389"/> + <location filename="mainwindow.cpp" line="4397"/> <source>Endorse Mod Organizer</source> <translation type="unfinished"></translation> </message> @@ -1808,17 +1803,17 @@ V současnosti má omezenou funkcionalitu</translation> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="492"/> + <location filename="mainwindow.cpp" line="493"/> <source>Problems</source> <translation type="unfinished">Problémy</translation> </message> <message> - <location filename="mainwindow.cpp" line="493"/> + <location filename="mainwindow.cpp" line="494"/> <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="497"/> + <location filename="mainwindow.cpp" line="498"/> <source>Everything seems to be in order</source> <translation type="unfinished">Všechno se jeví v pořádku</translation> </message> @@ -1835,22 +1830,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="549"/> + <location filename="mainwindow.cpp" line="550"/> <source>Help on UI</source> <translation type="unfinished">Pomoc s programem</translation> </message> <message> - <location filename="mainwindow.cpp" line="553"/> + <location filename="mainwindow.cpp" line="554"/> <source>Documentation Wiki</source> <translation type="unfinished">Dokumentace wiki</translation> </message> <message> - <location filename="mainwindow.cpp" line="557"/> + <location filename="mainwindow.cpp" line="558"/> <source>Report Issue</source> <translation type="unfinished">Nahlásit chybu</translation> </message> <message> - <location filename="mainwindow.cpp" line="561"/> + <location filename="mainwindow.cpp" line="562"/> <source>Tutorials</source> <translation type="unfinished"></translation> </message> @@ -1859,431 +1854,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="688"/> + <location filename="mainwindow.cpp" line="689"/> <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="618"/> + <location filename="mainwindow.cpp" line="619"/> <source>failed to save archives order, do you have write access to "%1"?</source> <translation type="unfinished">zlyhal zápis pořadí archivů, máte administrátorsky povoleno zapisovat na "%1"?</translation> </message> <message> - <location filename="mainwindow.cpp" line="705"/> + <location filename="mainwindow.cpp" line="706"/> <source>Name</source> <translation type="unfinished">Jméno</translation> </message> <message> - <location filename="mainwindow.cpp" line="706"/> + <location filename="mainwindow.cpp" line="707"/> <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="714"/> + <location filename="mainwindow.cpp" line="715"/> <source>failed to create profile: %1</source> <translation type="unfinished">Zlyhalo vytvoření profilu: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="757"/> + <location filename="mainwindow.cpp" line="758"/> <source>Show tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="758"/> + <location filename="mainwindow.cpp" line="759"/> <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="787"/> + <location filename="mainwindow.cpp" line="788"/> <source>Downloads in progress</source> <translation type="unfinished">Probíhá stahování</translation> </message> <message> - <location filename="mainwindow.cpp" line="788"/> + <location filename="mainwindow.cpp" line="789"/> <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="834"/> + <location filename="mainwindow.cpp" line="835"/> <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="958"/> + <location filename="mainwindow.cpp" line="959"/> <source>Plugin "%1" failed: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1064"/> + <location filename="mainwindow.cpp" line="1065"/> <source>Plugin error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1065"/> + <location filename="mainwindow.cpp" line="1066"/> <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"/> + <location filename="mainwindow.cpp" line="1250"/> <source>Failed to start "%1"</source> <translation type="unfinished">Zlyhal start "%1"</translation> </message> <message> - <location filename="mainwindow.cpp" line="1251"/> + <location filename="mainwindow.cpp" line="1252"/> <source>Waiting</source> <translation type="unfinished">Čekání</translation> </message> <message> - <location filename="mainwindow.cpp" line="1251"/> + <location filename="mainwindow.cpp" line="1252"/> <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="1263"/> + <location filename="mainwindow.cpp" line="1264"/> <source>"%1" not found</source> <translation type="unfinished">"%1" nenalezeno</translation> </message> <message> - <location filename="mainwindow.cpp" line="1277"/> + <location filename="mainwindow.cpp" line="1278"/> <source>Start Steam?</source> <translation type="unfinished">Spustit Steam?</translation> </message> <message> - <location filename="mainwindow.cpp" line="1278"/> + <location filename="mainwindow.cpp" line="1279"/> <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="1492"/> + <location filename="mainwindow.cpp" line="1499"/> <source>Also in: <br></source> <translation type="unfinished">Také v: <br></translation> </message> <message> - <location filename="mainwindow.cpp" line="1503"/> + <location filename="mainwindow.cpp" line="1510"/> <source>No conflict</source> <translation type="unfinished">Žádné konflikty</translation> </message> <message> - <location filename="mainwindow.cpp" line="1620"/> + <location filename="mainwindow.cpp" line="1627"/> <source><Edit...></source> <translation type="unfinished"><Edit...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1704"/> + <location filename="mainwindow.cpp" line="1711"/> <source>Failed to refresh list of esps: %s</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1844"/> + <location filename="mainwindow.cpp" line="1851"/> <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="1851"/> + <location filename="mainwindow.cpp" line="1858"/> <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="1906"/> + <location filename="mainwindow.cpp" line="1913"/> <source>Activating Network Proxy</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2037"/> - <location filename="mainwindow.cpp" line="4056"/> + <location filename="mainwindow.cpp" line="2044"/> + <location filename="mainwindow.cpp" line="4064"/> <source>Installation successful</source> <translation type="unfinished">Instalace úspěšná</translation> </message> <message> - <location filename="mainwindow.cpp" line="2048"/> - <location filename="mainwindow.cpp" line="4069"/> + <location filename="mainwindow.cpp" line="2055"/> + <location filename="mainwindow.cpp" line="4077"/> <source>Configure Mod</source> <translation type="unfinished">Konfigurace Modu</translation> </message> <message> - <location filename="mainwindow.cpp" line="2049"/> - <location filename="mainwindow.cpp" line="4070"/> + <location filename="mainwindow.cpp" line="2056"/> + <location filename="mainwindow.cpp" line="4078"/> <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="2055"/> - <location filename="mainwindow.cpp" line="4076"/> + <location filename="mainwindow.cpp" line="2062"/> + <location filename="mainwindow.cpp" line="4084"/> <source>mod "%1" not found</source> <translation type="unfinished">mod "%1" nenalezen</translation> </message> <message> - <location filename="mainwindow.cpp" line="2058"/> - <location filename="mainwindow.cpp" line="4082"/> + <location filename="mainwindow.cpp" line="2065"/> + <location filename="mainwindow.cpp" line="4090"/> <source>Installation cancelled</source> <translation type="unfinished">Instalace zrušena</translation> </message> <message> - <location filename="mainwindow.cpp" line="2058"/> - <location filename="mainwindow.cpp" line="4082"/> + <location filename="mainwindow.cpp" line="2065"/> + <location filename="mainwindow.cpp" line="4090"/> <source>The mod was not installed completely.</source> <translation type="unfinished">Tento mod se nenainstaloval úplne.</translation> </message> <message> - <location filename="mainwindow.cpp" line="2207"/> + <location filename="mainwindow.cpp" line="2214"/> <source>Some plugins could not be loaded</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2210"/> + <location filename="mainwindow.cpp" line="2217"/> <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"/> + <location filename="mainwindow.cpp" line="2220"/> + <location filename="mainwindow.cpp" line="2241"/> <source>Description missing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2256"/> + <location filename="mainwindow.cpp" line="2263"/> <source>Choose Mod</source> <translation type="unfinished">Vyber Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2257"/> + <location filename="mainwindow.cpp" line="2264"/> <source>Mod Archive</source> <translation type="unfinished">Archív Modu</translation> </message> <message> - <location filename="mainwindow.cpp" line="2410"/> + <location filename="mainwindow.cpp" line="2417"/> <source>Start Tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2411"/> + <location filename="mainwindow.cpp" line="2418"/> <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="2566"/> - <location filename="mainwindow.cpp" line="3984"/> + <location filename="mainwindow.cpp" line="2573"/> + <location filename="mainwindow.cpp" line="3992"/> <source>Download started</source> <translation type="unfinished">Stahování začalo</translation> </message> <message> - <location filename="mainwindow.cpp" line="2597"/> + <location filename="mainwindow.cpp" line="2604"/> <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="2624"/> + <location filename="mainwindow.cpp" line="2631"/> <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="2665"/> + <location filename="mainwindow.cpp" line="2672"/> <source>failed to open %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2743"/> + <location filename="mainwindow.cpp" line="2750"/> <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="2906"/> + <location filename="mainwindow.cpp" line="2913"/> <source>Multiple esps activated, please check that they don't conflict.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3251"/> - <location filename="mainwindow.cpp" line="3623"/> + <location filename="mainwindow.cpp" line="3258"/> + <location filename="mainwindow.cpp" line="3630"/> <source>Create Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3252"/> + <location filename="mainwindow.cpp" line="3259"/> <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="3261"/> + <location filename="mainwindow.cpp" line="3268"/> <source>A mod with this name already exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3444"/> + <location filename="mainwindow.cpp" line="3451"/> <source>Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3445"/> + <location filename="mainwindow.cpp" line="3452"/> <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"/> + <location filename="mainwindow.cpp" line="3472"/> <source>Sorry</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3466"/> + <location filename="mainwindow.cpp" line="3473"/> <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"/> + <location filename="mainwindow.cpp" line="3717"/> <source><All></source> <translation type="unfinished"><Všechny></translation> </message> <message> - <location filename="mainwindow.cpp" line="2818"/> + <location filename="mainwindow.cpp" line="2825"/> <source><Checked></source> <translation type="unfinished"><Aktivované></translation> </message> <message> - <location filename="mainwindow.cpp" line="960"/> + <location filename="mainwindow.cpp" line="961"/> <source>Plugin "%1" failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1026"/> + <location filename="mainwindow.cpp" line="1027"/> <source>failed to init plugin %1: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2222"/> + <location filename="mainwindow.cpp" line="2229"/> <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"/> + <location filename="mainwindow.cpp" line="2237"/> <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"/> + <location filename="mainwindow.cpp" line="2776"/> <source>Failed to move "%1" from mod "%2" to "%3": %4</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2819"/> + <location filename="mainwindow.cpp" line="2826"/> <source><Unchecked></source> <translation type="unfinished"><Neaktivované></translation> </message> <message> - <location filename="mainwindow.cpp" line="2820"/> + <location filename="mainwindow.cpp" line="2827"/> <source><Update></source> <translation type="unfinished"><Aktualizace></translation> </message> <message> - <location filename="mainwindow.cpp" line="2821"/> + <location filename="mainwindow.cpp" line="2828"/> <source><No category></source> <translation type="unfinished"><Bez kategorie></translation> </message> <message> - <location filename="mainwindow.cpp" line="2822"/> + <location filename="mainwindow.cpp" line="2829"/> <source><Conflicted></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2823"/> + <location filename="mainwindow.cpp" line="2830"/> <source><Not Endorsed></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2856"/> + <location filename="mainwindow.cpp" line="2863"/> <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="2869"/> + <location filename="mainwindow.cpp" line="2876"/> <source>Overwrite?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2870"/> + <location filename="mainwindow.cpp" line="2877"/> <source>This will replace the existing mod "%1". Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2873"/> + <location filename="mainwindow.cpp" line="2880"/> <source>failed to remove mod "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2877"/> - <location filename="mainwindow.cpp" line="4254"/> - <location filename="mainwindow.cpp" line="4278"/> + <location filename="mainwindow.cpp" line="2884"/> + <location filename="mainwindow.cpp" line="4262"/> + <location filename="mainwindow.cpp" line="4286"/> <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="2932"/> - <location filename="mainwindow.cpp" line="3518"/> - <location filename="mainwindow.cpp" line="3526"/> + <location filename="mainwindow.cpp" line="2939"/> + <location filename="mainwindow.cpp" line="3525"/> + <location filename="mainwindow.cpp" line="3533"/> <source>Confirm</source> <translation type="unfinished">Potvrdit</translation> </message> <message> - <location filename="mainwindow.cpp" line="2933"/> + <location filename="mainwindow.cpp" line="2940"/> <source>Remove the following mods?<br><ul>%1</ul></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2944"/> + <location filename="mainwindow.cpp" line="2951"/> <source>failed to remove mod: %1</source> <translation type="unfinished">Nezdařilo se odstranit mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2979"/> - <location filename="mainwindow.cpp" line="2982"/> + <location filename="mainwindow.cpp" line="2986"/> + <location filename="mainwindow.cpp" line="2989"/> <source>Failed</source> <translation type="unfinished">Zlyhání</translation> </message> <message> - <location filename="mainwindow.cpp" line="2979"/> + <location filename="mainwindow.cpp" line="2986"/> <source>Installation file no longer exists</source> <translation type="unfinished">Instalační soubor již neexistuje</translation> </message> <message> - <location filename="mainwindow.cpp" line="2983"/> + <location filename="mainwindow.cpp" line="2990"/> <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="2998"/> - <location filename="mainwindow.cpp" line="3025"/> + <location filename="mainwindow.cpp" line="3005"/> + <location filename="mainwindow.cpp" line="3032"/> <source>You need to be logged in with Nexus to endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3154"/> - <location filename="mainwindow.cpp" line="4638"/> + <location filename="mainwindow.cpp" line="3161"/> + <location filename="mainwindow.cpp" line="4646"/> <source>Extract BSA</source> <translation type="unfinished">Extrakce BSA</translation> </message> <message> - <location filename="mainwindow.cpp" line="3155"/> + <location filename="mainwindow.cpp" line="3162"/> <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="3165"/> - <location filename="mainwindow.cpp" line="4595"/> - <location filename="mainwindow.cpp" line="4646"/> + <location filename="mainwindow.cpp" line="3172"/> + <location filename="mainwindow.cpp" line="4603"/> + <location filename="mainwindow.cpp" line="4654"/> <source>failed to read %1: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3178"/> - <location filename="mainwindow.cpp" line="4657"/> + <location filename="mainwindow.cpp" line="3185"/> + <location filename="mainwindow.cpp" line="4665"/> <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="3212"/> + <location filename="mainwindow.cpp" line="3219"/> <source>Nexus ID for this Mod is unknown</source> <translation type="unfinished">Nexus ID pro tento Mod není známo</translation> </message> @@ -2296,391 +2291,391 @@ This function will guess the versioning scheme under the assumption that the ins <translation type="obsolete">Zvol Prioritu</translation> </message> <message> - <location filename="mainwindow.cpp" line="3518"/> + <location filename="mainwindow.cpp" line="3525"/> <source>Really enable all visible mods?</source> <translation type="unfinished">Opravdu aktivovat všechny zobrazené mody?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3526"/> + <location filename="mainwindow.cpp" line="3533"/> <source>Really disable all visible mods?</source> <translation type="unfinished">Opravdu deaktivovat všechny zobrazené mody?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3534"/> + <location filename="mainwindow.cpp" line="3541"/> <source>Choose what to export</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3536"/> + <location filename="mainwindow.cpp" line="3543"/> <source>Everything</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3536"/> + <location filename="mainwindow.cpp" line="3543"/> <source>All installed mods are included in the list</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3537"/> + <location filename="mainwindow.cpp" line="3544"/> <source>Active Mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3537"/> + <location filename="mainwindow.cpp" line="3544"/> <source>Only active (checked) mods from your current profile are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3538"/> + <location filename="mainwindow.cpp" line="3545"/> <source>Visible</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3538"/> + <location filename="mainwindow.cpp" line="3545"/> <source>All mods visible in the mod list are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3581"/> + <location filename="mainwindow.cpp" line="3588"/> <source>export failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3605"/> + <location filename="mainwindow.cpp" line="3612"/> <source>Install Mod...</source> <translation type="unfinished">Instaluj Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3607"/> + <location filename="mainwindow.cpp" line="3614"/> <source>Enable all visible</source> <translation type="unfinished">Aktivuj všechny v seznamu</translation> </message> <message> - <location filename="mainwindow.cpp" line="3608"/> + <location filename="mainwindow.cpp" line="3615"/> <source>Disable all visible</source> <translation type="unfinished">Deaktivuj všechny v seznamu</translation> </message> <message> - <location filename="mainwindow.cpp" line="3610"/> + <location filename="mainwindow.cpp" line="3617"/> <source>Check all for update</source> <translation type="unfinished">Skontroluj všechny pro aktualizaci</translation> </message> <message> - <location filename="mainwindow.cpp" line="3614"/> + <location filename="mainwindow.cpp" line="3621"/> <source>Export to csv...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3622"/> + <location filename="mainwindow.cpp" line="3629"/> <source>Sync to Mods...</source> <translation type="unfinished">Synchronizuj s Mody...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3626"/> + <location filename="mainwindow.cpp" line="3633"/> <source>Restore Backup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3627"/> + <location filename="mainwindow.cpp" line="3634"/> <source>Remove Backup...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3630"/> + <location filename="mainwindow.cpp" line="3637"/> <source>Set Category</source> <translation type="unfinished">Označ Kategorii</translation> </message> <message> - <location filename="mainwindow.cpp" line="3635"/> + <location filename="mainwindow.cpp" line="3642"/> <source>Primary Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3642"/> + <location filename="mainwindow.cpp" line="3649"/> <source>Change versioning scheme</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3646"/> + <location filename="mainwindow.cpp" line="3653"/> <source>Un-ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3648"/> + <location filename="mainwindow.cpp" line="3655"/> <source>Ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3653"/> + <location filename="mainwindow.cpp" line="3660"/> <source>Rename Mod...</source> <translation type="unfinished">Přejmenuj Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3654"/> + <location filename="mainwindow.cpp" line="3661"/> <source>Remove Mod...</source> <translation type="unfinished">Odstranit Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3655"/> + <location filename="mainwindow.cpp" line="3662"/> <source>Reinstall Mod</source> <translation type="unfinished">Přeinstaluj Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="3658"/> + <location filename="mainwindow.cpp" line="3665"/> <source>Un-Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3661"/> - <location filename="mainwindow.cpp" line="3665"/> + <location filename="mainwindow.cpp" line="3668"/> + <location filename="mainwindow.cpp" line="3672"/> <source>Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3662"/> + <location filename="mainwindow.cpp" line="3669"/> <source>Won't endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3668"/> + <location filename="mainwindow.cpp" line="3675"/> <source>Endorsement state unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3675"/> + <location filename="mainwindow.cpp" line="3682"/> <source>Ignore missing data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3678"/> + <location filename="mainwindow.cpp" line="3685"/> <source>Visit on Nexus</source> <translation type="unfinished">Navštiv na Nexusu</translation> </message> <message> - <location filename="mainwindow.cpp" line="3679"/> + <location filename="mainwindow.cpp" line="3686"/> <source>Open in explorer</source> <translation type="unfinished">Otevři v prohlížeči</translation> </message> <message> - <location filename="mainwindow.cpp" line="3682"/> + <location filename="mainwindow.cpp" line="3689"/> <source>Information...</source> <translation type="unfinished">Informace...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3688"/> - <location filename="mainwindow.cpp" line="4842"/> + <location filename="mainwindow.cpp" line="3695"/> + <location filename="mainwindow.cpp" line="4850"/> <source>Exception: </source> <translation type="unfinished">Výnimky:</translation> </message> <message> - <location filename="mainwindow.cpp" line="3690"/> - <location filename="mainwindow.cpp" line="4844"/> + <location filename="mainwindow.cpp" line="3697"/> + <location filename="mainwindow.cpp" line="4852"/> <source>Unknown exception</source> <translation type="unfinished">Neznámá výnimka</translation> </message> <message> - <location filename="mainwindow.cpp" line="3712"/> + <location filename="mainwindow.cpp" line="3719"/> <source><Multiple></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3824"/> + <location filename="mainwindow.cpp" line="3831"/> <source>Fix Mods...</source> <translation type="unfinished">Oprav Mody...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3848"/> - <location filename="mainwindow.cpp" line="3879"/> + <location filename="mainwindow.cpp" line="3855"/> + <location filename="mainwindow.cpp" line="3886"/> <source>failed to remove %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3863"/> - <location filename="mainwindow.cpp" line="3894"/> + <location filename="mainwindow.cpp" line="3870"/> + <location filename="mainwindow.cpp" line="3901"/> <source>failed to create %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3916"/> + <location filename="mainwindow.cpp" line="3924"/> <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="3987"/> + <location filename="mainwindow.cpp" line="3995"/> <source>Download failed</source> <translation type="unfinished">Stahování zlyhalo</translation> </message> <message> - <location filename="mainwindow.cpp" line="4131"/> + <location filename="mainwindow.cpp" line="4139"/> <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="4137"/> + <location filename="mainwindow.cpp" line="4145"/> <source>%1 written</source> <translation type="unfinished">%1 zapsáno</translation> </message> <message> - <location filename="mainwindow.cpp" line="4176"/> + <location filename="mainwindow.cpp" line="4184"/> <source>Select binary</source> <translation type="unfinished">Vyber binární soubor</translation> </message> <message> - <location filename="mainwindow.cpp" line="4176"/> + <location filename="mainwindow.cpp" line="4184"/> <source>Binary</source> <translation type="unfinished">Soubor</translation> </message> <message> - <location filename="mainwindow.cpp" line="4202"/> + <location filename="mainwindow.cpp" line="4210"/> <source>Enter Name</source> <translation type="unfinished">Zadej jméno</translation> </message> <message> - <location filename="mainwindow.cpp" line="4203"/> + <location filename="mainwindow.cpp" line="4211"/> <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="4214"/> + <location filename="mainwindow.cpp" line="4222"/> <source>Not an executable</source> <translation type="unfinished">Není spustitelný</translation> </message> <message> - <location filename="mainwindow.cpp" line="4214"/> + <location filename="mainwindow.cpp" line="4222"/> <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="4239"/> - <location filename="mainwindow.cpp" line="4264"/> + <location filename="mainwindow.cpp" line="4247"/> + <location filename="mainwindow.cpp" line="4272"/> <source>Replace file?</source> <translation type="unfinished">Nahradit soubor?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4239"/> + <location filename="mainwindow.cpp" line="4247"/> <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="4242"/> - <location filename="mainwindow.cpp" line="4267"/> + <location filename="mainwindow.cpp" line="4250"/> + <location filename="mainwindow.cpp" line="4275"/> <source>File operation failed</source> <translation type="unfinished">Operace se souborem zlyhala</translation> </message> <message> - <location filename="mainwindow.cpp" line="4242"/> - <location filename="mainwindow.cpp" line="4267"/> + <location filename="mainwindow.cpp" line="4250"/> + <location filename="mainwindow.cpp" line="4275"/> <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="4264"/> + <location filename="mainwindow.cpp" line="4272"/> <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="4310"/> + <location filename="mainwindow.cpp" line="4318"/> <source>Update available</source> <translation type="unfinished">Aktualizace k dispozici</translation> </message> <message> - <location filename="mainwindow.cpp" line="4347"/> + <location filename="mainwindow.cpp" line="4355"/> <source>Open/Execute</source> <translation type="unfinished">Otevřít/Spustit</translation> </message> <message> - <location filename="mainwindow.cpp" line="4348"/> + <location filename="mainwindow.cpp" line="4356"/> <source>Add as Executable</source> <translation type="unfinished">Přidat Spouštení</translation> </message> <message> - <location filename="mainwindow.cpp" line="4352"/> + <location filename="mainwindow.cpp" line="4360"/> <source>Un-Hide</source> <translation type="unfinished">Odekrýt</translation> </message> <message> - <location filename="mainwindow.cpp" line="4354"/> + <location filename="mainwindow.cpp" line="4362"/> <source>Hide</source> <translation type="unfinished">Skrýt</translation> </message> <message> - <location filename="mainwindow.cpp" line="4359"/> + <location filename="mainwindow.cpp" line="4367"/> <source>Write To File...</source> <translation type="unfinished">Zápis do souboru...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4390"/> + <location filename="mainwindow.cpp" line="4398"/> <source>Do you want to endorse Mod Organizer on %1 now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4803"/> + <location filename="mainwindow.cpp" line="4811"/> <source>Remove</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4833"/> + <location filename="mainwindow.cpp" line="4841"/> <source>Unlock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4836"/> + <location filename="mainwindow.cpp" line="4844"/> <source>Lock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4526"/> + <location filename="mainwindow.cpp" line="4534"/> <source>Request to Nexus failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4533"/> - <location filename="mainwindow.cpp" line="4550"/> + <location filename="mainwindow.cpp" line="4541"/> + <location filename="mainwindow.cpp" line="4558"/> <source>login successful</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4559"/> + <location filename="mainwindow.cpp" line="4567"/> <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="4565"/> + <location filename="mainwindow.cpp" line="4573"/> <source>login failed: %1</source> <translation type="unfinished">přihlášení zlyhalo: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4574"/> + <location filename="mainwindow.cpp" line="4582"/> <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="4607"/> + <location filename="mainwindow.cpp" line="4615"/> <source>Error</source> <translation type="unfinished">Chyba</translation> </message> <message> - <location filename="mainwindow.cpp" line="4607"/> + <location filename="mainwindow.cpp" line="4615"/> <source>failed to extract %1 (errorcode %2)</source> <translation type="unfinished">zlyhala extrakce %1 (errorcode %2)</translation> </message> <message> - <location filename="mainwindow.cpp" line="4702"/> + <location filename="mainwindow.cpp" line="4710"/> <source>Extract...</source> <translation type="unfinished">Extrakce...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4758"/> + <location filename="mainwindow.cpp" line="4766"/> <source>Edit Categories...</source> <translation type="unfinished">Editovat Kategorie...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4813"/> + <location filename="mainwindow.cpp" line="4821"/> <source>Enable all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4814"/> + <location filename="mainwindow.cpp" line="4822"/> <source>Disable all</source> <translation type="unfinished"></translation> </message> @@ -5349,18 +5344,18 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="770"/> + <location filename="mainwindow.cpp" line="771"/> <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="1538"/> - <location filename="mainwindow.cpp" line="4024"/> + <location filename="mainwindow.cpp" line="1545"/> + <location filename="mainwindow.cpp" line="4032"/> <source><Manage...></source> <translation><Manage...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1556"/> + <location filename="mainwindow.cpp" line="1563"/> <source>failed to parse profile %1: %2</source> <translation>Nezdařilo se rozebrat profil %1: %2</translation> </message> diff --git a/src/organizer_de.ts b/src/organizer_de.ts index 68af9c3a..a80d3156 100644 --- a/src/organizer_de.ts +++ b/src/organizer_de.ts @@ -268,11 +268,6 @@ p, li { white-space: pre-wrap; } <translation>Platzhalter</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"/> @@ -1567,8 +1562,8 @@ BSAs checked here are loaded in such a way that your installation order is obeye </message> <message> <location filename="mainwindow.ui" line="843"/> - <location filename="mainwindow.cpp" line="3612"/> - <location filename="mainwindow.cpp" line="4360"/> + <location filename="mainwindow.cpp" line="3619"/> + <location filename="mainwindow.cpp" line="4368"/> <source>Refresh</source> <translation type="unfinished">Neu laden</translation> </message> @@ -1748,7 +1743,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="mainwindow.ui" line="1209"/> - <location filename="mainwindow.cpp" line="4308"/> + <location filename="mainwindow.cpp" line="4316"/> <source>Update</source> <translation type="unfinished">Aktualisierung</translation> </message> @@ -1759,7 +1754,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="mainwindow.ui" line="1224"/> - <location filename="mainwindow.cpp" line="496"/> + <location filename="mainwindow.cpp" line="497"/> <source>No Problems</source> <translation type="unfinished">Keine Probleme</translation> </message> @@ -1790,7 +1785,7 @@ Diese Funktion ist noch in arbeit und ist sehr eingeschränkt.</translation> </message> <message> <location filename="mainwindow.ui" line="1257"/> - <location filename="mainwindow.cpp" line="4389"/> + <location filename="mainwindow.cpp" line="4397"/> <source>Endorse Mod Organizer</source> <translation type="unfinished"></translation> </message> @@ -1810,17 +1805,17 @@ Diese Funktion ist noch in arbeit und ist sehr eingeschränkt.</translation> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="492"/> + <location filename="mainwindow.cpp" line="493"/> <source>Problems</source> <translation type="unfinished">Probleme</translation> </message> <message> - <location filename="mainwindow.cpp" line="493"/> + <location filename="mainwindow.cpp" line="494"/> <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="497"/> + <location filename="mainwindow.cpp" line="498"/> <source>Everything seems to be in order</source> <translation type="unfinished">Alles in bester Ordnung</translation> </message> @@ -1837,22 +1832,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="549"/> + <location filename="mainwindow.cpp" line="550"/> <source>Help on UI</source> <translation type="unfinished">Hilfe zur Oberfläche</translation> </message> <message> - <location filename="mainwindow.cpp" line="553"/> + <location filename="mainwindow.cpp" line="554"/> <source>Documentation Wiki</source> <translation type="unfinished">Wiki Dokumentation</translation> </message> <message> - <location filename="mainwindow.cpp" line="557"/> + <location filename="mainwindow.cpp" line="558"/> <source>Report Issue</source> <translation type="unfinished">Fehler melden</translation> </message> <message> - <location filename="mainwindow.cpp" line="561"/> + <location filename="mainwindow.cpp" line="562"/> <source>Tutorials</source> <translation type="unfinished"></translation> </message> @@ -1861,431 +1856,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="688"/> + <location filename="mainwindow.cpp" line="689"/> <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="618"/> + <location filename="mainwindow.cpp" line="619"/> <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="705"/> + <location filename="mainwindow.cpp" line="706"/> <source>Name</source> <translation type="unfinished">Name</translation> </message> <message> - <location filename="mainwindow.cpp" line="706"/> + <location filename="mainwindow.cpp" line="707"/> <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="714"/> + <location filename="mainwindow.cpp" line="715"/> <source>failed to create profile: %1</source> <translation type="unfinished">Erstellen des Profils fehlgeschlagen: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="757"/> + <location filename="mainwindow.cpp" line="758"/> <source>Show tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="758"/> + <location filename="mainwindow.cpp" line="759"/> <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="787"/> + <location filename="mainwindow.cpp" line="788"/> <source>Downloads in progress</source> <translation type="unfinished">Download in Bearbeitung</translation> </message> <message> - <location filename="mainwindow.cpp" line="788"/> + <location filename="mainwindow.cpp" line="789"/> <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="834"/> + <location filename="mainwindow.cpp" line="835"/> <source>failed to read savegame: %1</source> <translation type="unfinished">Spielstand konnte nicht gelesen werden: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="958"/> + <location filename="mainwindow.cpp" line="959"/> <source>Plugin "%1" failed: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1064"/> + <location filename="mainwindow.cpp" line="1065"/> <source>Plugin error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1065"/> + <location filename="mainwindow.cpp" line="1066"/> <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"/> + <location filename="mainwindow.cpp" line="1250"/> <source>Failed to start "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1251"/> + <location filename="mainwindow.cpp" line="1252"/> <source>Waiting</source> <translation type="unfinished">Warte</translation> </message> <message> - <location filename="mainwindow.cpp" line="1251"/> + <location filename="mainwindow.cpp" line="1252"/> <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="1263"/> + <location filename="mainwindow.cpp" line="1264"/> <source>"%1" not found</source> <translation type="unfinished">"%1" nicht gefunden</translation> </message> <message> - <location filename="mainwindow.cpp" line="1277"/> + <location filename="mainwindow.cpp" line="1278"/> <source>Start Steam?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1278"/> + <location filename="mainwindow.cpp" line="1279"/> <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="1492"/> + <location filename="mainwindow.cpp" line="1499"/> <source>Also in: <br></source> <translation type="unfinished">Auch in: <br></translation> </message> <message> - <location filename="mainwindow.cpp" line="1503"/> + <location filename="mainwindow.cpp" line="1510"/> <source>No conflict</source> <translation type="unfinished">Keine Konflikte</translation> </message> <message> - <location filename="mainwindow.cpp" line="1620"/> + <location filename="mainwindow.cpp" line="1627"/> <source><Edit...></source> <translation type="unfinished"><Bearbeiten...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1704"/> + <location filename="mainwindow.cpp" line="1711"/> <source>Failed to refresh list of esps: %s</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1844"/> + <location filename="mainwindow.cpp" line="1851"/> <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="1851"/> + <location filename="mainwindow.cpp" line="1858"/> <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="1906"/> + <location filename="mainwindow.cpp" line="1913"/> <source>Activating Network Proxy</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2037"/> - <location filename="mainwindow.cpp" line="4056"/> + <location filename="mainwindow.cpp" line="2044"/> + <location filename="mainwindow.cpp" line="4064"/> <source>Installation successful</source> <translation type="unfinished">Installation erfolgreich</translation> </message> <message> - <location filename="mainwindow.cpp" line="2048"/> - <location filename="mainwindow.cpp" line="4069"/> + <location filename="mainwindow.cpp" line="2055"/> + <location filename="mainwindow.cpp" line="4077"/> <source>Configure Mod</source> <translation type="unfinished">Mod konfigurieren</translation> </message> <message> - <location filename="mainwindow.cpp" line="2049"/> - <location filename="mainwindow.cpp" line="4070"/> + <location filename="mainwindow.cpp" line="2056"/> + <location filename="mainwindow.cpp" line="4078"/> <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="2055"/> - <location filename="mainwindow.cpp" line="4076"/> + <location filename="mainwindow.cpp" line="2062"/> + <location filename="mainwindow.cpp" line="4084"/> <source>mod "%1" not found</source> <translation type="unfinished">mod "%1" nicht gefunden</translation> </message> <message> - <location filename="mainwindow.cpp" line="2058"/> - <location filename="mainwindow.cpp" line="4082"/> + <location filename="mainwindow.cpp" line="2065"/> + <location filename="mainwindow.cpp" line="4090"/> <source>Installation cancelled</source> <translation type="unfinished">Installation abgebrochen</translation> </message> <message> - <location filename="mainwindow.cpp" line="2058"/> - <location filename="mainwindow.cpp" line="4082"/> + <location filename="mainwindow.cpp" line="2065"/> + <location filename="mainwindow.cpp" line="4090"/> <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="2207"/> + <location filename="mainwindow.cpp" line="2214"/> <source>Some plugins could not be loaded</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2210"/> + <location filename="mainwindow.cpp" line="2217"/> <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"/> + <location filename="mainwindow.cpp" line="2220"/> + <location filename="mainwindow.cpp" line="2241"/> <source>Description missing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2256"/> + <location filename="mainwindow.cpp" line="2263"/> <source>Choose Mod</source> <translation type="unfinished">Mod wählen</translation> </message> <message> - <location filename="mainwindow.cpp" line="2257"/> + <location filename="mainwindow.cpp" line="2264"/> <source>Mod Archive</source> <translation type="unfinished">Mod Archiv</translation> </message> <message> - <location filename="mainwindow.cpp" line="2410"/> + <location filename="mainwindow.cpp" line="2417"/> <source>Start Tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2411"/> + <location filename="mainwindow.cpp" line="2418"/> <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="2566"/> - <location filename="mainwindow.cpp" line="3984"/> + <location filename="mainwindow.cpp" line="2573"/> + <location filename="mainwindow.cpp" line="3992"/> <source>Download started</source> <translation type="unfinished">Download gestartet</translation> </message> <message> - <location filename="mainwindow.cpp" line="2597"/> + <location filename="mainwindow.cpp" line="2604"/> <source>failed to update mod list: %1</source> <translation type="unfinished">Aktualisieren der Modliste fehlgeschlagen: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2624"/> + <location filename="mainwindow.cpp" line="2631"/> <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="2665"/> + <location filename="mainwindow.cpp" line="2672"/> <source>failed to open %1</source> <translation type="unfinished">%1 konnte nicht geöffnet werden</translation> </message> <message> - <location filename="mainwindow.cpp" line="2743"/> + <location filename="mainwindow.cpp" line="2750"/> <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="2906"/> + <location filename="mainwindow.cpp" line="2913"/> <source>Multiple esps activated, please check that they don't conflict.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3251"/> - <location filename="mainwindow.cpp" line="3623"/> + <location filename="mainwindow.cpp" line="3258"/> + <location filename="mainwindow.cpp" line="3630"/> <source>Create Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3252"/> + <location filename="mainwindow.cpp" line="3259"/> <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="3261"/> + <location filename="mainwindow.cpp" line="3268"/> <source>A mod with this name already exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3444"/> + <location filename="mainwindow.cpp" line="3451"/> <source>Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3445"/> + <location filename="mainwindow.cpp" line="3452"/> <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"/> + <location filename="mainwindow.cpp" line="3472"/> <source>Sorry</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3466"/> + <location filename="mainwindow.cpp" line="3473"/> <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"/> + <location filename="mainwindow.cpp" line="3717"/> <source><All></source> <translation type="unfinished"><Alle></translation> </message> <message> - <location filename="mainwindow.cpp" line="2818"/> + <location filename="mainwindow.cpp" line="2825"/> <source><Checked></source> <translation type="unfinished"><Markierte></translation> </message> <message> - <location filename="mainwindow.cpp" line="960"/> + <location filename="mainwindow.cpp" line="961"/> <source>Plugin "%1" failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1026"/> + <location filename="mainwindow.cpp" line="1027"/> <source>failed to init plugin %1: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2222"/> + <location filename="mainwindow.cpp" line="2229"/> <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"/> + <location filename="mainwindow.cpp" line="2237"/> <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"/> + <location filename="mainwindow.cpp" line="2776"/> <source>Failed to move "%1" from mod "%2" to "%3": %4</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2819"/> + <location filename="mainwindow.cpp" line="2826"/> <source><Unchecked></source> <translation type="unfinished"><Nicht markierte></translation> </message> <message> - <location filename="mainwindow.cpp" line="2820"/> + <location filename="mainwindow.cpp" line="2827"/> <source><Update></source> <translation type="unfinished"><Update></translation> </message> <message> - <location filename="mainwindow.cpp" line="2821"/> + <location filename="mainwindow.cpp" line="2828"/> <source><No category></source> <translation type="unfinished"><Ohne Kategorie></translation> </message> <message> - <location filename="mainwindow.cpp" line="2822"/> + <location filename="mainwindow.cpp" line="2829"/> <source><Conflicted></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2823"/> + <location filename="mainwindow.cpp" line="2830"/> <source><Not Endorsed></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2856"/> + <location filename="mainwindow.cpp" line="2863"/> <source>failed to rename mod: %1</source> <translation type="unfinished">konnte die Mod nicht umbenennen: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2869"/> + <location filename="mainwindow.cpp" line="2876"/> <source>Overwrite?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2870"/> + <location filename="mainwindow.cpp" line="2877"/> <source>This will replace the existing mod "%1". Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2873"/> + <location filename="mainwindow.cpp" line="2880"/> <source>failed to remove mod "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2877"/> - <location filename="mainwindow.cpp" line="4254"/> - <location filename="mainwindow.cpp" line="4278"/> + <location filename="mainwindow.cpp" line="2884"/> + <location filename="mainwindow.cpp" line="4262"/> + <location filename="mainwindow.cpp" line="4286"/> <source>failed to rename "%1" to "%2"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2932"/> - <location filename="mainwindow.cpp" line="3518"/> - <location filename="mainwindow.cpp" line="3526"/> + <location filename="mainwindow.cpp" line="2939"/> + <location filename="mainwindow.cpp" line="3525"/> + <location filename="mainwindow.cpp" line="3533"/> <source>Confirm</source> <translation type="unfinished">Bestätigen</translation> </message> <message> - <location filename="mainwindow.cpp" line="2933"/> + <location filename="mainwindow.cpp" line="2940"/> <source>Remove the following mods?<br><ul>%1</ul></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2944"/> + <location filename="mainwindow.cpp" line="2951"/> <source>failed to remove mod: %1</source> <translation type="unfinished">konnte die mod nicht entfernen: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2979"/> - <location filename="mainwindow.cpp" line="2982"/> + <location filename="mainwindow.cpp" line="2986"/> + <location filename="mainwindow.cpp" line="2989"/> <source>Failed</source> <translation type="unfinished">Fehlgeschlagen</translation> </message> <message> - <location filename="mainwindow.cpp" line="2979"/> + <location filename="mainwindow.cpp" line="2986"/> <source>Installation file no longer exists</source> <translation type="unfinished">Installationsdatei existiert nicht mehr</translation> </message> <message> - <location filename="mainwindow.cpp" line="2983"/> + <location filename="mainwindow.cpp" line="2990"/> <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="2998"/> - <location filename="mainwindow.cpp" line="3025"/> + <location filename="mainwindow.cpp" line="3005"/> + <location filename="mainwindow.cpp" line="3032"/> <source>You need to be logged in with Nexus to endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3154"/> - <location filename="mainwindow.cpp" line="4638"/> + <location filename="mainwindow.cpp" line="3161"/> + <location filename="mainwindow.cpp" line="4646"/> <source>Extract BSA</source> <translation type="unfinished">BSA extrahieren</translation> </message> <message> - <location filename="mainwindow.cpp" line="3155"/> + <location filename="mainwindow.cpp" line="3162"/> <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="3165"/> - <location filename="mainwindow.cpp" line="4595"/> - <location filename="mainwindow.cpp" line="4646"/> + <location filename="mainwindow.cpp" line="3172"/> + <location filename="mainwindow.cpp" line="4603"/> + <location filename="mainwindow.cpp" line="4654"/> <source>failed to read %1: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3178"/> - <location filename="mainwindow.cpp" line="4657"/> + <location filename="mainwindow.cpp" line="3185"/> + <location filename="mainwindow.cpp" line="4665"/> <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="3212"/> + <location filename="mainwindow.cpp" line="3219"/> <source>Nexus ID for this Mod is unknown</source> <translation type="unfinished">Nexus ID für diese Mod unbekannt</translation> </message> @@ -2298,391 +2293,391 @@ This function will guess the versioning scheme under the assumption that the ins <translation type="obsolete">Priorität wählen</translation> </message> <message> - <location filename="mainwindow.cpp" line="3518"/> + <location filename="mainwindow.cpp" line="3525"/> <source>Really enable all visible mods?</source> <translation type="unfinished">Alle angezeigten Mods aktivieren?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3526"/> + <location filename="mainwindow.cpp" line="3533"/> <source>Really disable all visible mods?</source> <translation type="unfinished">Alle angezeigten Mods deaktivieren?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3534"/> + <location filename="mainwindow.cpp" line="3541"/> <source>Choose what to export</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3536"/> + <location filename="mainwindow.cpp" line="3543"/> <source>Everything</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3536"/> + <location filename="mainwindow.cpp" line="3543"/> <source>All installed mods are included in the list</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3537"/> + <location filename="mainwindow.cpp" line="3544"/> <source>Active Mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3537"/> + <location filename="mainwindow.cpp" line="3544"/> <source>Only active (checked) mods from your current profile are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3538"/> + <location filename="mainwindow.cpp" line="3545"/> <source>Visible</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3538"/> + <location filename="mainwindow.cpp" line="3545"/> <source>All mods visible in the mod list are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3581"/> + <location filename="mainwindow.cpp" line="3588"/> <source>export failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3605"/> + <location filename="mainwindow.cpp" line="3612"/> <source>Install Mod...</source> <translation type="unfinished">Mod installieren...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3607"/> + <location filename="mainwindow.cpp" line="3614"/> <source>Enable all visible</source> <translation type="unfinished">Alle sichtbaren aktvieren</translation> </message> <message> - <location filename="mainwindow.cpp" line="3608"/> + <location filename="mainwindow.cpp" line="3615"/> <source>Disable all visible</source> <translation type="unfinished">Alle sichtbaren deaktvieren</translation> </message> <message> - <location filename="mainwindow.cpp" line="3610"/> + <location filename="mainwindow.cpp" line="3617"/> <source>Check all for update</source> <translation type="unfinished">Alle auf Aktualisierungen überprüfen</translation> </message> <message> - <location filename="mainwindow.cpp" line="3614"/> + <location filename="mainwindow.cpp" line="3621"/> <source>Export to csv...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3622"/> + <location filename="mainwindow.cpp" line="3629"/> <source>Sync to Mods...</source> <translation type="unfinished">Mods synchronisieren...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3626"/> + <location filename="mainwindow.cpp" line="3633"/> <source>Restore Backup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3627"/> + <location filename="mainwindow.cpp" line="3634"/> <source>Remove Backup...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3630"/> + <location filename="mainwindow.cpp" line="3637"/> <source>Set Category</source> <translation type="unfinished">Kategorie festlegen</translation> </message> <message> - <location filename="mainwindow.cpp" line="3635"/> + <location filename="mainwindow.cpp" line="3642"/> <source>Primary Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3642"/> + <location filename="mainwindow.cpp" line="3649"/> <source>Change versioning scheme</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3646"/> + <location filename="mainwindow.cpp" line="3653"/> <source>Un-ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3648"/> + <location filename="mainwindow.cpp" line="3655"/> <source>Ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3653"/> + <location filename="mainwindow.cpp" line="3660"/> <source>Rename Mod...</source> <translation type="unfinished">Mod umbenennen...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3654"/> + <location filename="mainwindow.cpp" line="3661"/> <source>Remove Mod...</source> <translation type="unfinished">Mod entfernen...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3655"/> + <location filename="mainwindow.cpp" line="3662"/> <source>Reinstall Mod</source> <translation type="unfinished">Mod neu installieren</translation> </message> <message> - <location filename="mainwindow.cpp" line="3658"/> + <location filename="mainwindow.cpp" line="3665"/> <source>Un-Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3661"/> - <location filename="mainwindow.cpp" line="3665"/> + <location filename="mainwindow.cpp" line="3668"/> + <location filename="mainwindow.cpp" line="3672"/> <source>Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3662"/> + <location filename="mainwindow.cpp" line="3669"/> <source>Won't endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3668"/> + <location filename="mainwindow.cpp" line="3675"/> <source>Endorsement state unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3675"/> + <location filename="mainwindow.cpp" line="3682"/> <source>Ignore missing data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3678"/> + <location filename="mainwindow.cpp" line="3685"/> <source>Visit on Nexus</source> <translation type="unfinished">Auf Nexus besuchen</translation> </message> <message> - <location filename="mainwindow.cpp" line="3679"/> + <location filename="mainwindow.cpp" line="3686"/> <source>Open in explorer</source> <translation type="unfinished">In Explorer öffnen</translation> </message> <message> - <location filename="mainwindow.cpp" line="3682"/> + <location filename="mainwindow.cpp" line="3689"/> <source>Information...</source> <translation type="unfinished">Informationen...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3688"/> - <location filename="mainwindow.cpp" line="4842"/> + <location filename="mainwindow.cpp" line="3695"/> + <location filename="mainwindow.cpp" line="4850"/> <source>Exception: </source> <translation type="unfinished">Ausnahme:</translation> </message> <message> - <location filename="mainwindow.cpp" line="3690"/> - <location filename="mainwindow.cpp" line="4844"/> + <location filename="mainwindow.cpp" line="3697"/> + <location filename="mainwindow.cpp" line="4852"/> <source>Unknown exception</source> <translation type="unfinished">Unbekannte Ausnahme</translation> </message> <message> - <location filename="mainwindow.cpp" line="3712"/> + <location filename="mainwindow.cpp" line="3719"/> <source><Multiple></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3824"/> + <location filename="mainwindow.cpp" line="3831"/> <source>Fix Mods...</source> <translation type="unfinished">Mods reparieren...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3848"/> - <location filename="mainwindow.cpp" line="3879"/> + <location filename="mainwindow.cpp" line="3855"/> + <location filename="mainwindow.cpp" line="3886"/> <source>failed to remove %1</source> <translation type="unfinished">%1 konnte nicht entfernt werden</translation> </message> <message> - <location filename="mainwindow.cpp" line="3863"/> - <location filename="mainwindow.cpp" line="3894"/> + <location filename="mainwindow.cpp" line="3870"/> + <location filename="mainwindow.cpp" line="3901"/> <source>failed to create %1</source> <translation type="unfinished">%1 konnte nicht erstellt werden</translation> </message> <message> - <location filename="mainwindow.cpp" line="3916"/> + <location filename="mainwindow.cpp" line="3924"/> <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="3987"/> + <location filename="mainwindow.cpp" line="3995"/> <source>Download failed</source> <translation type="unfinished">Download fehlgeschlagen</translation> </message> <message> - <location filename="mainwindow.cpp" line="4131"/> + <location filename="mainwindow.cpp" line="4139"/> <source>failed to write to file %1</source> <translation type="unfinished">Speichern in Datei "%1" fehlgeschlagen</translation> </message> <message> - <location filename="mainwindow.cpp" line="4137"/> + <location filename="mainwindow.cpp" line="4145"/> <source>%1 written</source> <translation type="unfinished">"%1" gespeichert</translation> </message> <message> - <location filename="mainwindow.cpp" line="4176"/> + <location filename="mainwindow.cpp" line="4184"/> <source>Select binary</source> <translation type="unfinished">Binary wählen</translation> </message> <message> - <location filename="mainwindow.cpp" line="4176"/> + <location filename="mainwindow.cpp" line="4184"/> <source>Binary</source> <translation type="unfinished">Ausführbare Datei</translation> </message> <message> - <location filename="mainwindow.cpp" line="4202"/> + <location filename="mainwindow.cpp" line="4210"/> <source>Enter Name</source> <translation type="unfinished">Namen eingeben</translation> </message> <message> - <location filename="mainwindow.cpp" line="4203"/> + <location filename="mainwindow.cpp" line="4211"/> <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="4214"/> + <location filename="mainwindow.cpp" line="4222"/> <source>Not an executable</source> <translation type="unfinished">Datei ist nicht ausführbar</translation> </message> <message> - <location filename="mainwindow.cpp" line="4214"/> + <location filename="mainwindow.cpp" line="4222"/> <source>This is not a recognized executable.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4239"/> - <location filename="mainwindow.cpp" line="4264"/> + <location filename="mainwindow.cpp" line="4247"/> + <location filename="mainwindow.cpp" line="4272"/> <source>Replace file?</source> <translation type="unfinished">Datei ersetzen?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4239"/> + <location filename="mainwindow.cpp" line="4247"/> <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="4242"/> - <location filename="mainwindow.cpp" line="4267"/> + <location filename="mainwindow.cpp" line="4250"/> + <location filename="mainwindow.cpp" line="4275"/> <source>File operation failed</source> <translation type="unfinished">Dateioperation fehlgeschlagen</translation> </message> <message> - <location filename="mainwindow.cpp" line="4242"/> - <location filename="mainwindow.cpp" line="4267"/> + <location filename="mainwindow.cpp" line="4250"/> + <location filename="mainwindow.cpp" line="4275"/> <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="4264"/> + <location filename="mainwindow.cpp" line="4272"/> <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="4310"/> + <location filename="mainwindow.cpp" line="4318"/> <source>Update available</source> <translation type="unfinished">Aktualisierung verfügbar</translation> </message> <message> - <location filename="mainwindow.cpp" line="4347"/> + <location filename="mainwindow.cpp" line="4355"/> <source>Open/Execute</source> <translation type="unfinished">Öffnen/Ausführen</translation> </message> <message> - <location filename="mainwindow.cpp" line="4348"/> + <location filename="mainwindow.cpp" line="4356"/> <source>Add as Executable</source> <translation type="unfinished">Als Anwendung hinzufügen</translation> </message> <message> - <location filename="mainwindow.cpp" line="4352"/> + <location filename="mainwindow.cpp" line="4360"/> <source>Un-Hide</source> <translation type="unfinished">Sichtbar machen</translation> </message> <message> - <location filename="mainwindow.cpp" line="4354"/> + <location filename="mainwindow.cpp" line="4362"/> <source>Hide</source> <translation type="unfinished">Verstecken</translation> </message> <message> - <location filename="mainwindow.cpp" line="4359"/> + <location filename="mainwindow.cpp" line="4367"/> <source>Write To File...</source> <translation type="unfinished">In Datei speichern...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4390"/> + <location filename="mainwindow.cpp" line="4398"/> <source>Do you want to endorse Mod Organizer on %1 now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4803"/> + <location filename="mainwindow.cpp" line="4811"/> <source>Remove</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4833"/> + <location filename="mainwindow.cpp" line="4841"/> <source>Unlock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4836"/> + <location filename="mainwindow.cpp" line="4844"/> <source>Lock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4526"/> + <location filename="mainwindow.cpp" line="4534"/> <source>Request to Nexus failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4533"/> - <location filename="mainwindow.cpp" line="4550"/> + <location filename="mainwindow.cpp" line="4541"/> + <location filename="mainwindow.cpp" line="4558"/> <source>login successful</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4559"/> + <location filename="mainwindow.cpp" line="4567"/> <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="4565"/> + <location filename="mainwindow.cpp" line="4573"/> <source>login failed: %1</source> <translation type="unfinished">login fehlgeschlagen: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4574"/> + <location filename="mainwindow.cpp" line="4582"/> <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="4607"/> + <location filename="mainwindow.cpp" line="4615"/> <source>Error</source> <translation type="unfinished">Fehler</translation> </message> <message> - <location filename="mainwindow.cpp" line="4607"/> + <location filename="mainwindow.cpp" line="4615"/> <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="4702"/> + <location filename="mainwindow.cpp" line="4710"/> <source>Extract...</source> <translation type="unfinished">Extrahieren...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4758"/> + <location filename="mainwindow.cpp" line="4766"/> <source>Edit Categories...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4813"/> + <location filename="mainwindow.cpp" line="4821"/> <source>Enable all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4814"/> + <location filename="mainwindow.cpp" line="4822"/> <source>Disable all</source> <translation type="unfinished"></translation> </message> @@ -5454,7 +5449,7 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">"%1" nicht gefunden</translation> </message> <message> - <location filename="mainwindow.cpp" line="770"/> + <location filename="mainwindow.cpp" line="771"/> <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> @@ -5473,13 +5468,13 @@ p, li { white-space: pre-wrap; } <translation>Konnte "%1" nicht finden</translation> </message> <message> - <location filename="mainwindow.cpp" line="1538"/> - <location filename="mainwindow.cpp" line="4024"/> + <location filename="mainwindow.cpp" line="1545"/> + <location filename="mainwindow.cpp" line="4032"/> <source><Manage...></source> <translation><Verwalten...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1556"/> + <location filename="mainwindow.cpp" line="1563"/> <source>failed to parse profile %1: %2</source> <translation>Konnte Profil %1 nicht verarbeiten: %2</translation> </message> diff --git a/src/organizer_es.ts b/src/organizer_es.ts index ed278075..ba096644 100644 --- a/src/organizer_es.ts +++ b/src/organizer_es.ts @@ -261,11 +261,6 @@ p, li { white-space: pre-wrap; } <translation>Marcador de posicion</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"/> @@ -1426,8 +1421,8 @@ BSAs checked here are loaded in such a way that your installation order is obeye </message> <message> <location filename="mainwindow.ui" line="843"/> - <location filename="mainwindow.cpp" line="3612"/> - <location filename="mainwindow.cpp" line="4360"/> + <location filename="mainwindow.cpp" line="3619"/> + <location filename="mainwindow.cpp" line="4368"/> <source>Refresh</source> <translation type="unfinished">Recargar</translation> </message> @@ -1601,7 +1596,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="mainwindow.ui" line="1209"/> - <location filename="mainwindow.cpp" line="4308"/> + <location filename="mainwindow.cpp" line="4316"/> <source>Update</source> <translation type="unfinished"></translation> </message> @@ -1612,7 +1607,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="mainwindow.ui" line="1224"/> - <location filename="mainwindow.cpp" line="496"/> + <location filename="mainwindow.cpp" line="497"/> <source>No Problems</source> <translation type="unfinished"></translation> </message> @@ -1642,7 +1637,7 @@ Right now this has very limited functionality</source> </message> <message> <location filename="mainwindow.ui" line="1257"/> - <location filename="mainwindow.cpp" line="4389"/> + <location filename="mainwindow.cpp" line="4397"/> <source>Endorse Mod Organizer</source> <translation type="unfinished"></translation> </message> @@ -1662,465 +1657,465 @@ Right now this has very limited functionality</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="492"/> + <location filename="mainwindow.cpp" line="493"/> <source>Problems</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="493"/> + <location filename="mainwindow.cpp" line="494"/> <source>There are potential problems with your setup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="497"/> + <location filename="mainwindow.cpp" line="498"/> <source>Everything seems to be in order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="549"/> + <location filename="mainwindow.cpp" line="550"/> <source>Help on UI</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="553"/> + <location filename="mainwindow.cpp" line="554"/> <source>Documentation Wiki</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="557"/> + <location filename="mainwindow.cpp" line="558"/> <source>Report Issue</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="561"/> + <location filename="mainwindow.cpp" line="562"/> <source>Tutorials</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="688"/> + <location filename="mainwindow.cpp" line="689"/> <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="618"/> + <location filename="mainwindow.cpp" line="619"/> <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="705"/> + <location filename="mainwindow.cpp" line="706"/> <source>Name</source> <translation type="unfinished">Nombre</translation> </message> <message> - <location filename="mainwindow.cpp" line="706"/> + <location filename="mainwindow.cpp" line="707"/> <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="714"/> + <location filename="mainwindow.cpp" line="715"/> <source>failed to create profile: %1</source> <translation type="unfinished">Fallo al crear el perfil: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="757"/> + <location filename="mainwindow.cpp" line="758"/> <source>Show tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="758"/> + <location filename="mainwindow.cpp" line="759"/> <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="787"/> + <location filename="mainwindow.cpp" line="788"/> <source>Downloads in progress</source> <translation type="unfinished">Descarga en progreso</translation> </message> <message> - <location filename="mainwindow.cpp" line="788"/> + <location filename="mainwindow.cpp" line="789"/> <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="834"/> + <location filename="mainwindow.cpp" line="835"/> <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="958"/> + <location filename="mainwindow.cpp" line="959"/> <source>Plugin "%1" failed: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1064"/> + <location filename="mainwindow.cpp" line="1065"/> <source>Plugin error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1065"/> + <location filename="mainwindow.cpp" line="1066"/> <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"/> + <location filename="mainwindow.cpp" line="1250"/> <source>Failed to start "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1251"/> + <location filename="mainwindow.cpp" line="1252"/> <source>Waiting</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1251"/> + <location filename="mainwindow.cpp" line="1252"/> <source>Please press OK once you're logged into steam.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1263"/> + <location filename="mainwindow.cpp" line="1264"/> <source>"%1" not found</source> <translation type="unfinished">"%1" no encontrado</translation> </message> <message> - <location filename="mainwindow.cpp" line="1277"/> + <location filename="mainwindow.cpp" line="1278"/> <source>Start Steam?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1278"/> + <location filename="mainwindow.cpp" line="1279"/> <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="1492"/> + <location filename="mainwindow.cpp" line="1499"/> <source>Also in: <br></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1503"/> + <location filename="mainwindow.cpp" line="1510"/> <source>No conflict</source> <translation type="unfinished">Sin conflictos</translation> </message> <message> - <location filename="mainwindow.cpp" line="1620"/> + <location filename="mainwindow.cpp" line="1627"/> <source><Edit...></source> <translation type="unfinished"><Editar...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1704"/> + <location filename="mainwindow.cpp" line="1711"/> <source>Failed to refresh list of esps: %s</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1844"/> + <location filename="mainwindow.cpp" line="1851"/> <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="1851"/> + <location filename="mainwindow.cpp" line="1858"/> <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="1906"/> + <location filename="mainwindow.cpp" line="1913"/> <source>Activating Network Proxy</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2037"/> - <location filename="mainwindow.cpp" line="4056"/> + <location filename="mainwindow.cpp" line="2044"/> + <location filename="mainwindow.cpp" line="4064"/> <source>Installation successful</source> <translation type="unfinished">Instalacion completada</translation> </message> <message> - <location filename="mainwindow.cpp" line="2048"/> - <location filename="mainwindow.cpp" line="4069"/> + <location filename="mainwindow.cpp" line="2055"/> + <location filename="mainwindow.cpp" line="4077"/> <source>Configure Mod</source> <translation type="unfinished">Configurar Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2049"/> - <location filename="mainwindow.cpp" line="4070"/> + <location filename="mainwindow.cpp" line="2056"/> + <location filename="mainwindow.cpp" line="4078"/> <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="2055"/> - <location filename="mainwindow.cpp" line="4076"/> + <location filename="mainwindow.cpp" line="2062"/> + <location filename="mainwindow.cpp" line="4084"/> <source>mod "%1" not found</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2058"/> - <location filename="mainwindow.cpp" line="4082"/> + <location filename="mainwindow.cpp" line="2065"/> + <location filename="mainwindow.cpp" line="4090"/> <source>Installation cancelled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2058"/> - <location filename="mainwindow.cpp" line="4082"/> + <location filename="mainwindow.cpp" line="2065"/> + <location filename="mainwindow.cpp" line="4090"/> <source>The mod was not installed completely.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2207"/> + <location filename="mainwindow.cpp" line="2214"/> <source>Some plugins could not be loaded</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2210"/> + <location filename="mainwindow.cpp" line="2217"/> <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"/> + <location filename="mainwindow.cpp" line="2220"/> + <location filename="mainwindow.cpp" line="2241"/> <source>Description missing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2256"/> + <location filename="mainwindow.cpp" line="2263"/> <source>Choose Mod</source> <translation type="unfinished">Seleccione Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2257"/> + <location filename="mainwindow.cpp" line="2264"/> <source>Mod Archive</source> <translation type="unfinished">Fichero Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2410"/> + <location filename="mainwindow.cpp" line="2417"/> <source>Start Tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2411"/> + <location filename="mainwindow.cpp" line="2418"/> <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="2566"/> - <location filename="mainwindow.cpp" line="3984"/> + <location filename="mainwindow.cpp" line="2573"/> + <location filename="mainwindow.cpp" line="3992"/> <source>Download started</source> <translation type="unfinished">Descarga comenzada</translation> </message> <message> - <location filename="mainwindow.cpp" line="2597"/> + <location filename="mainwindow.cpp" line="2604"/> <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="2624"/> + <location filename="mainwindow.cpp" line="2631"/> <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="2665"/> + <location filename="mainwindow.cpp" line="2672"/> <source>failed to open %1</source> <translation type="unfinished">Fallo al abrir %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2743"/> + <location filename="mainwindow.cpp" line="2750"/> <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="2906"/> + <location filename="mainwindow.cpp" line="2913"/> <source>Multiple esps activated, please check that they don't conflict.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3251"/> - <location filename="mainwindow.cpp" line="3623"/> + <location filename="mainwindow.cpp" line="3258"/> + <location filename="mainwindow.cpp" line="3630"/> <source>Create Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3252"/> + <location filename="mainwindow.cpp" line="3259"/> <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="3261"/> + <location filename="mainwindow.cpp" line="3268"/> <source>A mod with this name already exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3444"/> + <location filename="mainwindow.cpp" line="3451"/> <source>Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3445"/> + <location filename="mainwindow.cpp" line="3452"/> <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"/> + <location filename="mainwindow.cpp" line="3472"/> <source>Sorry</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3466"/> + <location filename="mainwindow.cpp" line="3473"/> <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"/> + <location filename="mainwindow.cpp" line="3717"/> <source><All></source> <translation type="unfinished"><Todos></translation> </message> <message> - <location filename="mainwindow.cpp" line="2818"/> + <location filename="mainwindow.cpp" line="2825"/> <source><Checked></source> <translation type="unfinished"><Marcado></translation> </message> <message> - <location filename="mainwindow.cpp" line="960"/> + <location filename="mainwindow.cpp" line="961"/> <source>Plugin "%1" failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1026"/> + <location filename="mainwindow.cpp" line="1027"/> <source>failed to init plugin %1: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2222"/> + <location filename="mainwindow.cpp" line="2229"/> <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"/> + <location filename="mainwindow.cpp" line="2237"/> <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"/> + <location filename="mainwindow.cpp" line="2776"/> <source>Failed to move "%1" from mod "%2" to "%3": %4</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2819"/> + <location filename="mainwindow.cpp" line="2826"/> <source><Unchecked></source> <translation type="unfinished"><Desmarcado></translation> </message> <message> - <location filename="mainwindow.cpp" line="2820"/> + <location filename="mainwindow.cpp" line="2827"/> <source><Update></source> <translation type="unfinished"><Actualizacion></translation> </message> <message> - <location filename="mainwindow.cpp" line="2821"/> + <location filename="mainwindow.cpp" line="2828"/> <source><No category></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2822"/> + <location filename="mainwindow.cpp" line="2829"/> <source><Conflicted></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2823"/> + <location filename="mainwindow.cpp" line="2830"/> <source><Not Endorsed></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2856"/> + <location filename="mainwindow.cpp" line="2863"/> <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="2869"/> + <location filename="mainwindow.cpp" line="2876"/> <source>Overwrite?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2870"/> + <location filename="mainwindow.cpp" line="2877"/> <source>This will replace the existing mod "%1". Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2873"/> + <location filename="mainwindow.cpp" line="2880"/> <source>failed to remove mod "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2877"/> - <location filename="mainwindow.cpp" line="4254"/> - <location filename="mainwindow.cpp" line="4278"/> + <location filename="mainwindow.cpp" line="2884"/> + <location filename="mainwindow.cpp" line="4262"/> + <location filename="mainwindow.cpp" line="4286"/> <source>failed to rename "%1" to "%2"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2932"/> - <location filename="mainwindow.cpp" line="3518"/> - <location filename="mainwindow.cpp" line="3526"/> + <location filename="mainwindow.cpp" line="2939"/> + <location filename="mainwindow.cpp" line="3525"/> + <location filename="mainwindow.cpp" line="3533"/> <source>Confirm</source> <translation type="unfinished">Confirma</translation> </message> <message> - <location filename="mainwindow.cpp" line="2933"/> + <location filename="mainwindow.cpp" line="2940"/> <source>Remove the following mods?<br><ul>%1</ul></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2944"/> + <location filename="mainwindow.cpp" line="2951"/> <source>failed to remove mod: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2979"/> - <location filename="mainwindow.cpp" line="2982"/> + <location filename="mainwindow.cpp" line="2986"/> + <location filename="mainwindow.cpp" line="2989"/> <source>Failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2979"/> + <location filename="mainwindow.cpp" line="2986"/> <source>Installation file no longer exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2983"/> + <location filename="mainwindow.cpp" line="2990"/> <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="2998"/> - <location filename="mainwindow.cpp" line="3025"/> + <location filename="mainwindow.cpp" line="3005"/> + <location filename="mainwindow.cpp" line="3032"/> <source>You need to be logged in with Nexus to endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3154"/> - <location filename="mainwindow.cpp" line="4638"/> + <location filename="mainwindow.cpp" line="3161"/> + <location filename="mainwindow.cpp" line="4646"/> <source>Extract BSA</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3155"/> + <location filename="mainwindow.cpp" line="3162"/> <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="3165"/> - <location filename="mainwindow.cpp" line="4595"/> - <location filename="mainwindow.cpp" line="4646"/> + <location filename="mainwindow.cpp" line="3172"/> + <location filename="mainwindow.cpp" line="4603"/> + <location filename="mainwindow.cpp" line="4654"/> <source>failed to read %1: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3178"/> - <location filename="mainwindow.cpp" line="4657"/> + <location filename="mainwindow.cpp" line="3185"/> + <location filename="mainwindow.cpp" line="4665"/> <source>This archive contains invalid hashes. Some files may be broken.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3212"/> + <location filename="mainwindow.cpp" line="3219"/> <source>Nexus ID for this Mod is unknown</source> <translation type="unfinished"></translation> </message> @@ -2133,391 +2128,391 @@ This function will guess the versioning scheme under the assumption that the ins <translation type="obsolete">Selecciona Prioridad</translation> </message> <message> - <location filename="mainwindow.cpp" line="3518"/> + <location filename="mainwindow.cpp" line="3525"/> <source>Really enable all visible mods?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3526"/> + <location filename="mainwindow.cpp" line="3533"/> <source>Really disable all visible mods?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3534"/> + <location filename="mainwindow.cpp" line="3541"/> <source>Choose what to export</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3536"/> + <location filename="mainwindow.cpp" line="3543"/> <source>Everything</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3536"/> + <location filename="mainwindow.cpp" line="3543"/> <source>All installed mods are included in the list</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3537"/> + <location filename="mainwindow.cpp" line="3544"/> <source>Active Mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3537"/> + <location filename="mainwindow.cpp" line="3544"/> <source>Only active (checked) mods from your current profile are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3538"/> + <location filename="mainwindow.cpp" line="3545"/> <source>Visible</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3538"/> + <location filename="mainwindow.cpp" line="3545"/> <source>All mods visible in the mod list are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3581"/> + <location filename="mainwindow.cpp" line="3588"/> <source>export failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3605"/> + <location filename="mainwindow.cpp" line="3612"/> <source>Install Mod...</source> <translation type="unfinished">Instalar Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3607"/> + <location filename="mainwindow.cpp" line="3614"/> <source>Enable all visible</source> <translation type="unfinished">Activar todos los visibles</translation> </message> <message> - <location filename="mainwindow.cpp" line="3608"/> + <location filename="mainwindow.cpp" line="3615"/> <source>Disable all visible</source> <translation type="unfinished">Desactivar todos los visibles</translation> </message> <message> - <location filename="mainwindow.cpp" line="3610"/> + <location filename="mainwindow.cpp" line="3617"/> <source>Check all for update</source> <translation type="unfinished">Buscar Actualizaciones</translation> </message> <message> - <location filename="mainwindow.cpp" line="3614"/> + <location filename="mainwindow.cpp" line="3621"/> <source>Export to csv...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3622"/> + <location filename="mainwindow.cpp" line="3629"/> <source>Sync to Mods...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3626"/> + <location filename="mainwindow.cpp" line="3633"/> <source>Restore Backup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3627"/> + <location filename="mainwindow.cpp" line="3634"/> <source>Remove Backup...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3630"/> + <location filename="mainwindow.cpp" line="3637"/> <source>Set Category</source> <translation type="unfinished">Definir Categoria</translation> </message> <message> - <location filename="mainwindow.cpp" line="3635"/> + <location filename="mainwindow.cpp" line="3642"/> <source>Primary Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3642"/> + <location filename="mainwindow.cpp" line="3649"/> <source>Change versioning scheme</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3646"/> + <location filename="mainwindow.cpp" line="3653"/> <source>Un-ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3648"/> + <location filename="mainwindow.cpp" line="3655"/> <source>Ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3653"/> + <location filename="mainwindow.cpp" line="3660"/> <source>Rename Mod...</source> <translation type="unfinished">Cambiar nombre...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3654"/> + <location filename="mainwindow.cpp" line="3661"/> <source>Remove Mod...</source> <translation type="unfinished">Quitar Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3655"/> + <location filename="mainwindow.cpp" line="3662"/> <source>Reinstall Mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3658"/> + <location filename="mainwindow.cpp" line="3665"/> <source>Un-Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3661"/> - <location filename="mainwindow.cpp" line="3665"/> + <location filename="mainwindow.cpp" line="3668"/> + <location filename="mainwindow.cpp" line="3672"/> <source>Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3662"/> + <location filename="mainwindow.cpp" line="3669"/> <source>Won't endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3668"/> + <location filename="mainwindow.cpp" line="3675"/> <source>Endorsement state unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3675"/> + <location filename="mainwindow.cpp" line="3682"/> <source>Ignore missing data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3678"/> + <location filename="mainwindow.cpp" line="3685"/> <source>Visit on Nexus</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3679"/> + <location filename="mainwindow.cpp" line="3686"/> <source>Open in explorer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3682"/> + <location filename="mainwindow.cpp" line="3689"/> <source>Information...</source> <translation type="unfinished">Informacion...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3688"/> - <location filename="mainwindow.cpp" line="4842"/> + <location filename="mainwindow.cpp" line="3695"/> + <location filename="mainwindow.cpp" line="4850"/> <source>Exception: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3690"/> - <location filename="mainwindow.cpp" line="4844"/> + <location filename="mainwindow.cpp" line="3697"/> + <location filename="mainwindow.cpp" line="4852"/> <source>Unknown exception</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3712"/> + <location filename="mainwindow.cpp" line="3719"/> <source><Multiple></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3824"/> + <location filename="mainwindow.cpp" line="3831"/> <source>Fix Mods...</source> <translation type="unfinished">Activar Mods faltantes...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3848"/> - <location filename="mainwindow.cpp" line="3879"/> + <location filename="mainwindow.cpp" line="3855"/> + <location filename="mainwindow.cpp" line="3886"/> <source>failed to remove %1</source> <translation type="unfinished">Fallo eliminando %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3863"/> - <location filename="mainwindow.cpp" line="3894"/> + <location filename="mainwindow.cpp" line="3870"/> + <location filename="mainwindow.cpp" line="3901"/> <source>failed to create %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3916"/> + <location filename="mainwindow.cpp" line="3924"/> <source>Can't change download directory while downloads are in progress!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3987"/> + <location filename="mainwindow.cpp" line="3995"/> <source>Download failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4131"/> + <location filename="mainwindow.cpp" line="4139"/> <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="4137"/> + <location filename="mainwindow.cpp" line="4145"/> <source>%1 written</source> <translation type="unfinished">%1 escrito</translation> </message> <message> - <location filename="mainwindow.cpp" line="4176"/> + <location filename="mainwindow.cpp" line="4184"/> <source>Select binary</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4176"/> + <location filename="mainwindow.cpp" line="4184"/> <source>Binary</source> <translation type="unfinished">Fichero</translation> </message> <message> - <location filename="mainwindow.cpp" line="4202"/> + <location filename="mainwindow.cpp" line="4210"/> <source>Enter Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4203"/> + <location filename="mainwindow.cpp" line="4211"/> <source>Please enter a name for the executable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4214"/> + <location filename="mainwindow.cpp" line="4222"/> <source>Not an executable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4214"/> + <location filename="mainwindow.cpp" line="4222"/> <source>This is not a recognized executable.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4239"/> - <location filename="mainwindow.cpp" line="4264"/> + <location filename="mainwindow.cpp" line="4247"/> + <location filename="mainwindow.cpp" line="4272"/> <source>Replace file?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4239"/> + <location filename="mainwindow.cpp" line="4247"/> <source>There already is a hidden version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4242"/> - <location filename="mainwindow.cpp" line="4267"/> + <location filename="mainwindow.cpp" line="4250"/> + <location filename="mainwindow.cpp" line="4275"/> <source>File operation failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4242"/> - <location filename="mainwindow.cpp" line="4267"/> + <location filename="mainwindow.cpp" line="4250"/> + <location filename="mainwindow.cpp" line="4275"/> <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4264"/> + <location filename="mainwindow.cpp" line="4272"/> <source>There already is a visible version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4310"/> + <location filename="mainwindow.cpp" line="4318"/> <source>Update available</source> <translation type="unfinished">Disponible actualización</translation> </message> <message> - <location filename="mainwindow.cpp" line="4347"/> + <location filename="mainwindow.cpp" line="4355"/> <source>Open/Execute</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4348"/> + <location filename="mainwindow.cpp" line="4356"/> <source>Add as Executable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4352"/> + <location filename="mainwindow.cpp" line="4360"/> <source>Un-Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4354"/> + <location filename="mainwindow.cpp" line="4362"/> <source>Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4359"/> + <location filename="mainwindow.cpp" line="4367"/> <source>Write To File...</source> <translation type="unfinished">Escribir al fichero...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4390"/> + <location filename="mainwindow.cpp" line="4398"/> <source>Do you want to endorse Mod Organizer on %1 now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4803"/> + <location filename="mainwindow.cpp" line="4811"/> <source>Remove</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4833"/> + <location filename="mainwindow.cpp" line="4841"/> <source>Unlock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4836"/> + <location filename="mainwindow.cpp" line="4844"/> <source>Lock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4526"/> + <location filename="mainwindow.cpp" line="4534"/> <source>Request to Nexus failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4533"/> - <location filename="mainwindow.cpp" line="4550"/> + <location filename="mainwindow.cpp" line="4541"/> + <location filename="mainwindow.cpp" line="4558"/> <source>login successful</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4559"/> + <location filename="mainwindow.cpp" line="4567"/> <source>login failed: %1. Trying to download anyway</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4565"/> + <location filename="mainwindow.cpp" line="4573"/> <source>login failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4574"/> + <location filename="mainwindow.cpp" line="4582"/> <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="4607"/> + <location filename="mainwindow.cpp" line="4615"/> <source>Error</source> <translation type="unfinished">Error</translation> </message> <message> - <location filename="mainwindow.cpp" line="4607"/> + <location filename="mainwindow.cpp" line="4615"/> <source>failed to extract %1 (errorcode %2)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4702"/> + <location filename="mainwindow.cpp" line="4710"/> <source>Extract...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4758"/> + <location filename="mainwindow.cpp" line="4766"/> <source>Edit Categories...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4813"/> + <location filename="mainwindow.cpp" line="4821"/> <source>Enable all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4814"/> + <location filename="mainwindow.cpp" line="4822"/> <source>Disable all</source> <translation type="unfinished"></translation> </message> @@ -4820,7 +4815,7 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">"%1" no encontrado</translation> </message> <message> - <location filename="mainwindow.cpp" line="770"/> + <location filename="mainwindow.cpp" line="771"/> <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> @@ -4839,13 +4834,13 @@ p, li { white-space: pre-wrap; } <translation>fallo al encontrar %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="1538"/> - <location filename="mainwindow.cpp" line="4024"/> + <location filename="mainwindow.cpp" line="1545"/> + <location filename="mainwindow.cpp" line="4032"/> <source><Manage...></source> <translation><Definir...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1556"/> + <location filename="mainwindow.cpp" line="1563"/> <source>failed to parse profile %1: %2</source> <translation>no se pudo analizar el perfil % 1: %2</translation> </message> diff --git a/src/organizer_fr.ts b/src/organizer_fr.ts index 1bf335ce..58c871d7 100644 --- a/src/organizer_fr.ts +++ b/src/organizer_fr.ts @@ -269,11 +269,6 @@ p, li { white-space: pre-wrap; } <translation>Signet</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"/> @@ -1466,8 +1461,8 @@ BSAs checked here are loaded in such a way that your installation order is obeye </message> <message> <location filename="mainwindow.ui" line="843"/> - <location filename="mainwindow.cpp" line="3612"/> - <location filename="mainwindow.cpp" line="4360"/> + <location filename="mainwindow.cpp" line="3619"/> + <location filename="mainwindow.cpp" line="4368"/> <source>Refresh</source> <translation type="unfinished">Actualiser</translation> </message> @@ -1647,7 +1642,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="mainwindow.ui" line="1209"/> - <location filename="mainwindow.cpp" line="4308"/> + <location filename="mainwindow.cpp" line="4316"/> <source>Update</source> <translation type="unfinished"></translation> </message> @@ -1658,7 +1653,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="mainwindow.ui" line="1224"/> - <location filename="mainwindow.cpp" line="496"/> + <location filename="mainwindow.cpp" line="497"/> <source>No Problems</source> <translation type="unfinished"></translation> </message> @@ -1688,7 +1683,7 @@ Right now this has very limited functionality</source> </message> <message> <location filename="mainwindow.ui" line="1257"/> - <location filename="mainwindow.cpp" line="4389"/> + <location filename="mainwindow.cpp" line="4397"/> <source>Endorse Mod Organizer</source> <translation type="unfinished"></translation> </message> @@ -1708,465 +1703,465 @@ Right now this has very limited functionality</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="492"/> + <location filename="mainwindow.cpp" line="493"/> <source>Problems</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="493"/> + <location filename="mainwindow.cpp" line="494"/> <source>There are potential problems with your setup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="497"/> + <location filename="mainwindow.cpp" line="498"/> <source>Everything seems to be in order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="549"/> + <location filename="mainwindow.cpp" line="550"/> <source>Help on UI</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="553"/> + <location filename="mainwindow.cpp" line="554"/> <source>Documentation Wiki</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="557"/> + <location filename="mainwindow.cpp" line="558"/> <source>Report Issue</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="561"/> + <location filename="mainwindow.cpp" line="562"/> <source>Tutorials</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="688"/> + <location filename="mainwindow.cpp" line="689"/> <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="618"/> + <location filename="mainwindow.cpp" line="619"/> <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="705"/> + <location filename="mainwindow.cpp" line="706"/> <source>Name</source> <translation type="unfinished">Nom</translation> </message> <message> - <location filename="mainwindow.cpp" line="706"/> + <location filename="mainwindow.cpp" line="707"/> <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="714"/> + <location filename="mainwindow.cpp" line="715"/> <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="757"/> + <location filename="mainwindow.cpp" line="758"/> <source>Show tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="758"/> + <location filename="mainwindow.cpp" line="759"/> <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="787"/> + <location filename="mainwindow.cpp" line="788"/> <source>Downloads in progress</source> <translation type="unfinished">Téléchargements en cours</translation> </message> <message> - <location filename="mainwindow.cpp" line="788"/> + <location filename="mainwindow.cpp" line="789"/> <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="834"/> + <location filename="mainwindow.cpp" line="835"/> <source>failed to read savegame: %1</source> <translation type="unfinished">impossible de lire la sauvegarde: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="958"/> + <location filename="mainwindow.cpp" line="959"/> <source>Plugin "%1" failed: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1064"/> + <location filename="mainwindow.cpp" line="1065"/> <source>Plugin error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1065"/> + <location filename="mainwindow.cpp" line="1066"/> <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"/> + <location filename="mainwindow.cpp" line="1250"/> <source>Failed to start "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1251"/> + <location filename="mainwindow.cpp" line="1252"/> <source>Waiting</source> <translation type="unfinished">Attente</translation> </message> <message> - <location filename="mainwindow.cpp" line="1251"/> + <location filename="mainwindow.cpp" line="1252"/> <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="1263"/> + <location filename="mainwindow.cpp" line="1264"/> <source>"%1" not found</source> <translation type="unfinished">"%1" introuvable</translation> </message> <message> - <location filename="mainwindow.cpp" line="1277"/> + <location filename="mainwindow.cpp" line="1278"/> <source>Start Steam?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1278"/> + <location filename="mainwindow.cpp" line="1279"/> <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="1492"/> + <location filename="mainwindow.cpp" line="1499"/> <source>Also in: <br></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1503"/> + <location filename="mainwindow.cpp" line="1510"/> <source>No conflict</source> <translation type="unfinished">Aucun conflit</translation> </message> <message> - <location filename="mainwindow.cpp" line="1620"/> + <location filename="mainwindow.cpp" line="1627"/> <source><Edit...></source> <translation type="unfinished"><Modifier...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1704"/> + <location filename="mainwindow.cpp" line="1711"/> <source>Failed to refresh list of esps: %s</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1844"/> + <location filename="mainwindow.cpp" line="1851"/> <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="1851"/> + <location filename="mainwindow.cpp" line="1858"/> <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="1906"/> + <location filename="mainwindow.cpp" line="1913"/> <source>Activating Network Proxy</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2037"/> - <location filename="mainwindow.cpp" line="4056"/> + <location filename="mainwindow.cpp" line="2044"/> + <location filename="mainwindow.cpp" line="4064"/> <source>Installation successful</source> <translation type="unfinished">Installation réussie</translation> </message> <message> - <location filename="mainwindow.cpp" line="2048"/> - <location filename="mainwindow.cpp" line="4069"/> + <location filename="mainwindow.cpp" line="2055"/> + <location filename="mainwindow.cpp" line="4077"/> <source>Configure Mod</source> <translation type="unfinished">Configurer mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2049"/> - <location filename="mainwindow.cpp" line="4070"/> + <location filename="mainwindow.cpp" line="2056"/> + <location filename="mainwindow.cpp" line="4078"/> <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="2055"/> - <location filename="mainwindow.cpp" line="4076"/> + <location filename="mainwindow.cpp" line="2062"/> + <location filename="mainwindow.cpp" line="4084"/> <source>mod "%1" not found</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2058"/> - <location filename="mainwindow.cpp" line="4082"/> + <location filename="mainwindow.cpp" line="2065"/> + <location filename="mainwindow.cpp" line="4090"/> <source>Installation cancelled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2058"/> - <location filename="mainwindow.cpp" line="4082"/> + <location filename="mainwindow.cpp" line="2065"/> + <location filename="mainwindow.cpp" line="4090"/> <source>The mod was not installed completely.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2207"/> + <location filename="mainwindow.cpp" line="2214"/> <source>Some plugins could not be loaded</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2210"/> + <location filename="mainwindow.cpp" line="2217"/> <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"/> + <location filename="mainwindow.cpp" line="2220"/> + <location filename="mainwindow.cpp" line="2241"/> <source>Description missing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2256"/> + <location filename="mainwindow.cpp" line="2263"/> <source>Choose Mod</source> <translation type="unfinished">Choisir mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2257"/> + <location filename="mainwindow.cpp" line="2264"/> <source>Mod Archive</source> <translation type="unfinished">Archive de mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2410"/> + <location filename="mainwindow.cpp" line="2417"/> <source>Start Tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2411"/> + <location filename="mainwindow.cpp" line="2418"/> <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="2566"/> - <location filename="mainwindow.cpp" line="3984"/> + <location filename="mainwindow.cpp" line="2573"/> + <location filename="mainwindow.cpp" line="3992"/> <source>Download started</source> <translation type="unfinished">Téléchargement commencé</translation> </message> <message> - <location filename="mainwindow.cpp" line="2597"/> + <location filename="mainwindow.cpp" line="2604"/> <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="2624"/> + <location filename="mainwindow.cpp" line="2631"/> <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="2665"/> + <location filename="mainwindow.cpp" line="2672"/> <source>failed to open %1</source> <translation type="unfinished">impossible d'ouvrir %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2743"/> + <location filename="mainwindow.cpp" line="2750"/> <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="2906"/> + <location filename="mainwindow.cpp" line="2913"/> <source>Multiple esps activated, please check that they don't conflict.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3251"/> - <location filename="mainwindow.cpp" line="3623"/> + <location filename="mainwindow.cpp" line="3258"/> + <location filename="mainwindow.cpp" line="3630"/> <source>Create Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3252"/> + <location filename="mainwindow.cpp" line="3259"/> <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="3261"/> + <location filename="mainwindow.cpp" line="3268"/> <source>A mod with this name already exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3444"/> + <location filename="mainwindow.cpp" line="3451"/> <source>Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3445"/> + <location filename="mainwindow.cpp" line="3452"/> <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"/> + <location filename="mainwindow.cpp" line="3472"/> <source>Sorry</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3466"/> + <location filename="mainwindow.cpp" line="3473"/> <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"/> + <location filename="mainwindow.cpp" line="3717"/> <source><All></source> <translation type="unfinished"><Tous></translation> </message> <message> - <location filename="mainwindow.cpp" line="2818"/> + <location filename="mainwindow.cpp" line="2825"/> <source><Checked></source> <translation type="unfinished"><Cochés></translation> </message> <message> - <location filename="mainwindow.cpp" line="960"/> + <location filename="mainwindow.cpp" line="961"/> <source>Plugin "%1" failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1026"/> + <location filename="mainwindow.cpp" line="1027"/> <source>failed to init plugin %1: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2222"/> + <location filename="mainwindow.cpp" line="2229"/> <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"/> + <location filename="mainwindow.cpp" line="2237"/> <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"/> + <location filename="mainwindow.cpp" line="2776"/> <source>Failed to move "%1" from mod "%2" to "%3": %4</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2819"/> + <location filename="mainwindow.cpp" line="2826"/> <source><Unchecked></source> <translation type="unfinished"><Décochés></translation> </message> <message> - <location filename="mainwindow.cpp" line="2820"/> + <location filename="mainwindow.cpp" line="2827"/> <source><Update></source> <translation type="unfinished"><Rafraichir></translation> </message> <message> - <location filename="mainwindow.cpp" line="2821"/> + <location filename="mainwindow.cpp" line="2828"/> <source><No category></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2822"/> + <location filename="mainwindow.cpp" line="2829"/> <source><Conflicted></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2823"/> + <location filename="mainwindow.cpp" line="2830"/> <source><Not Endorsed></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2856"/> + <location filename="mainwindow.cpp" line="2863"/> <source>failed to rename mod: %1</source> <translation type="unfinished">impossible de renommer le mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2869"/> + <location filename="mainwindow.cpp" line="2876"/> <source>Overwrite?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2870"/> + <location filename="mainwindow.cpp" line="2877"/> <source>This will replace the existing mod "%1". Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2873"/> + <location filename="mainwindow.cpp" line="2880"/> <source>failed to remove mod "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2877"/> - <location filename="mainwindow.cpp" line="4254"/> - <location filename="mainwindow.cpp" line="4278"/> + <location filename="mainwindow.cpp" line="2884"/> + <location filename="mainwindow.cpp" line="4262"/> + <location filename="mainwindow.cpp" line="4286"/> <source>failed to rename "%1" to "%2"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2932"/> - <location filename="mainwindow.cpp" line="3518"/> - <location filename="mainwindow.cpp" line="3526"/> + <location filename="mainwindow.cpp" line="2939"/> + <location filename="mainwindow.cpp" line="3525"/> + <location filename="mainwindow.cpp" line="3533"/> <source>Confirm</source> <translation type="unfinished">Confirmer</translation> </message> <message> - <location filename="mainwindow.cpp" line="2933"/> + <location filename="mainwindow.cpp" line="2940"/> <source>Remove the following mods?<br><ul>%1</ul></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2944"/> + <location filename="mainwindow.cpp" line="2951"/> <source>failed to remove mod: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2979"/> - <location filename="mainwindow.cpp" line="2982"/> + <location filename="mainwindow.cpp" line="2986"/> + <location filename="mainwindow.cpp" line="2989"/> <source>Failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2979"/> + <location filename="mainwindow.cpp" line="2986"/> <source>Installation file no longer exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2983"/> + <location filename="mainwindow.cpp" line="2990"/> <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="2998"/> - <location filename="mainwindow.cpp" line="3025"/> + <location filename="mainwindow.cpp" line="3005"/> + <location filename="mainwindow.cpp" line="3032"/> <source>You need to be logged in with Nexus to endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3154"/> - <location filename="mainwindow.cpp" line="4638"/> + <location filename="mainwindow.cpp" line="3161"/> + <location filename="mainwindow.cpp" line="4646"/> <source>Extract BSA</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3155"/> + <location filename="mainwindow.cpp" line="3162"/> <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="3165"/> - <location filename="mainwindow.cpp" line="4595"/> - <location filename="mainwindow.cpp" line="4646"/> + <location filename="mainwindow.cpp" line="3172"/> + <location filename="mainwindow.cpp" line="4603"/> + <location filename="mainwindow.cpp" line="4654"/> <source>failed to read %1: %2</source> <translation type="unfinished">Échec de lecture %1: %2</translation> </message> <message> - <location filename="mainwindow.cpp" line="3178"/> - <location filename="mainwindow.cpp" line="4657"/> + <location filename="mainwindow.cpp" line="3185"/> + <location filename="mainwindow.cpp" line="4665"/> <source>This archive contains invalid hashes. Some files may be broken.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3212"/> + <location filename="mainwindow.cpp" line="3219"/> <source>Nexus ID for this Mod is unknown</source> <translation type="unfinished"></translation> </message> @@ -2179,391 +2174,391 @@ This function will guess the versioning scheme under the assumption that the ins <translation type="obsolete">Choisir priorité</translation> </message> <message> - <location filename="mainwindow.cpp" line="3518"/> + <location filename="mainwindow.cpp" line="3525"/> <source>Really enable all visible mods?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3526"/> + <location filename="mainwindow.cpp" line="3533"/> <source>Really disable all visible mods?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3534"/> + <location filename="mainwindow.cpp" line="3541"/> <source>Choose what to export</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3536"/> + <location filename="mainwindow.cpp" line="3543"/> <source>Everything</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3536"/> + <location filename="mainwindow.cpp" line="3543"/> <source>All installed mods are included in the list</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3537"/> + <location filename="mainwindow.cpp" line="3544"/> <source>Active Mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3537"/> + <location filename="mainwindow.cpp" line="3544"/> <source>Only active (checked) mods from your current profile are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3538"/> + <location filename="mainwindow.cpp" line="3545"/> <source>Visible</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3538"/> + <location filename="mainwindow.cpp" line="3545"/> <source>All mods visible in the mod list are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3581"/> + <location filename="mainwindow.cpp" line="3588"/> <source>export failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3605"/> + <location filename="mainwindow.cpp" line="3612"/> <source>Install Mod...</source> <translation type="unfinished">Installer mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3607"/> + <location filename="mainwindow.cpp" line="3614"/> <source>Enable all visible</source> <translation type="unfinished">Activer tous les mods visibles</translation> </message> <message> - <location filename="mainwindow.cpp" line="3608"/> + <location filename="mainwindow.cpp" line="3615"/> <source>Disable all visible</source> <translation type="unfinished">Désactiver tous les mods visibles</translation> </message> <message> - <location filename="mainwindow.cpp" line="3610"/> + <location filename="mainwindow.cpp" line="3617"/> <source>Check all for update</source> <translation type="unfinished">Vérifier toutes les mises à jour</translation> </message> <message> - <location filename="mainwindow.cpp" line="3614"/> + <location filename="mainwindow.cpp" line="3621"/> <source>Export to csv...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3622"/> + <location filename="mainwindow.cpp" line="3629"/> <source>Sync to Mods...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3626"/> + <location filename="mainwindow.cpp" line="3633"/> <source>Restore Backup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3627"/> + <location filename="mainwindow.cpp" line="3634"/> <source>Remove Backup...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3630"/> + <location filename="mainwindow.cpp" line="3637"/> <source>Set Category</source> <translation type="unfinished">Assigner catégorie</translation> </message> <message> - <location filename="mainwindow.cpp" line="3635"/> + <location filename="mainwindow.cpp" line="3642"/> <source>Primary Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3642"/> + <location filename="mainwindow.cpp" line="3649"/> <source>Change versioning scheme</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3646"/> + <location filename="mainwindow.cpp" line="3653"/> <source>Un-ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3648"/> + <location filename="mainwindow.cpp" line="3655"/> <source>Ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3653"/> + <location filename="mainwindow.cpp" line="3660"/> <source>Rename Mod...</source> <translation type="unfinished">Renommer mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3654"/> + <location filename="mainwindow.cpp" line="3661"/> <source>Remove Mod...</source> <translation type="unfinished">Supprimer mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3655"/> + <location filename="mainwindow.cpp" line="3662"/> <source>Reinstall Mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3658"/> + <location filename="mainwindow.cpp" line="3665"/> <source>Un-Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3661"/> - <location filename="mainwindow.cpp" line="3665"/> + <location filename="mainwindow.cpp" line="3668"/> + <location filename="mainwindow.cpp" line="3672"/> <source>Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3662"/> + <location filename="mainwindow.cpp" line="3669"/> <source>Won't endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3668"/> + <location filename="mainwindow.cpp" line="3675"/> <source>Endorsement state unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3675"/> + <location filename="mainwindow.cpp" line="3682"/> <source>Ignore missing data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3678"/> + <location filename="mainwindow.cpp" line="3685"/> <source>Visit on Nexus</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3679"/> + <location filename="mainwindow.cpp" line="3686"/> <source>Open in explorer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3682"/> + <location filename="mainwindow.cpp" line="3689"/> <source>Information...</source> <translation type="unfinished">Information...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3688"/> - <location filename="mainwindow.cpp" line="4842"/> + <location filename="mainwindow.cpp" line="3695"/> + <location filename="mainwindow.cpp" line="4850"/> <source>Exception: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3690"/> - <location filename="mainwindow.cpp" line="4844"/> + <location filename="mainwindow.cpp" line="3697"/> + <location filename="mainwindow.cpp" line="4852"/> <source>Unknown exception</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3712"/> + <location filename="mainwindow.cpp" line="3719"/> <source><Multiple></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3824"/> + <location filename="mainwindow.cpp" line="3831"/> <source>Fix Mods...</source> <translation type="unfinished">Réparer mods...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3848"/> - <location filename="mainwindow.cpp" line="3879"/> + <location filename="mainwindow.cpp" line="3855"/> + <location filename="mainwindow.cpp" line="3886"/> <source>failed to remove %1</source> <translation type="unfinished">Impossible de supprimer %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3863"/> - <location filename="mainwindow.cpp" line="3894"/> + <location filename="mainwindow.cpp" line="3870"/> + <location filename="mainwindow.cpp" line="3901"/> <source>failed to create %1</source> <translation type="unfinished">impossible de créer %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3916"/> + <location filename="mainwindow.cpp" line="3924"/> <source>Can't change download directory while downloads are in progress!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3987"/> + <location filename="mainwindow.cpp" line="3995"/> <source>Download failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4131"/> + <location filename="mainwindow.cpp" line="4139"/> <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="4137"/> + <location filename="mainwindow.cpp" line="4145"/> <source>%1 written</source> <translation type="unfinished">%1 écrit</translation> </message> <message> - <location filename="mainwindow.cpp" line="4176"/> + <location filename="mainwindow.cpp" line="4184"/> <source>Select binary</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4176"/> + <location filename="mainwindow.cpp" line="4184"/> <source>Binary</source> <translation type="unfinished">Programme</translation> </message> <message> - <location filename="mainwindow.cpp" line="4202"/> + <location filename="mainwindow.cpp" line="4210"/> <source>Enter Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4203"/> + <location filename="mainwindow.cpp" line="4211"/> <source>Please enter a name for the executable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4214"/> + <location filename="mainwindow.cpp" line="4222"/> <source>Not an executable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4214"/> + <location filename="mainwindow.cpp" line="4222"/> <source>This is not a recognized executable.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4239"/> - <location filename="mainwindow.cpp" line="4264"/> + <location filename="mainwindow.cpp" line="4247"/> + <location filename="mainwindow.cpp" line="4272"/> <source>Replace file?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4239"/> + <location filename="mainwindow.cpp" line="4247"/> <source>There already is a hidden version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4242"/> - <location filename="mainwindow.cpp" line="4267"/> + <location filename="mainwindow.cpp" line="4250"/> + <location filename="mainwindow.cpp" line="4275"/> <source>File operation failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4242"/> - <location filename="mainwindow.cpp" line="4267"/> + <location filename="mainwindow.cpp" line="4250"/> + <location filename="mainwindow.cpp" line="4275"/> <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4264"/> + <location filename="mainwindow.cpp" line="4272"/> <source>There already is a visible version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4310"/> + <location filename="mainwindow.cpp" line="4318"/> <source>Update available</source> <translation type="unfinished">Mise à jour disponible</translation> </message> <message> - <location filename="mainwindow.cpp" line="4347"/> + <location filename="mainwindow.cpp" line="4355"/> <source>Open/Execute</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4348"/> + <location filename="mainwindow.cpp" line="4356"/> <source>Add as Executable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4352"/> + <location filename="mainwindow.cpp" line="4360"/> <source>Un-Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4354"/> + <location filename="mainwindow.cpp" line="4362"/> <source>Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4359"/> + <location filename="mainwindow.cpp" line="4367"/> <source>Write To File...</source> <translation type="unfinished">Écriture du fichier...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4390"/> + <location filename="mainwindow.cpp" line="4398"/> <source>Do you want to endorse Mod Organizer on %1 now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4803"/> + <location filename="mainwindow.cpp" line="4811"/> <source>Remove</source> <translation type="unfinished">Supprimer</translation> </message> <message> - <location filename="mainwindow.cpp" line="4833"/> + <location filename="mainwindow.cpp" line="4841"/> <source>Unlock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4836"/> + <location filename="mainwindow.cpp" line="4844"/> <source>Lock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4526"/> + <location filename="mainwindow.cpp" line="4534"/> <source>Request to Nexus failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4533"/> - <location filename="mainwindow.cpp" line="4550"/> + <location filename="mainwindow.cpp" line="4541"/> + <location filename="mainwindow.cpp" line="4558"/> <source>login successful</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4559"/> + <location filename="mainwindow.cpp" line="4567"/> <source>login failed: %1. Trying to download anyway</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4565"/> + <location filename="mainwindow.cpp" line="4573"/> <source>login failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4574"/> + <location filename="mainwindow.cpp" line="4582"/> <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="4607"/> + <location filename="mainwindow.cpp" line="4615"/> <source>Error</source> <translation type="unfinished">Erreur</translation> </message> <message> - <location filename="mainwindow.cpp" line="4607"/> + <location filename="mainwindow.cpp" line="4615"/> <source>failed to extract %1 (errorcode %2)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4702"/> + <location filename="mainwindow.cpp" line="4710"/> <source>Extract...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4758"/> + <location filename="mainwindow.cpp" line="4766"/> <source>Edit Categories...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4813"/> + <location filename="mainwindow.cpp" line="4821"/> <source>Enable all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4814"/> + <location filename="mainwindow.cpp" line="4822"/> <source>Disable all</source> <translation type="unfinished"></translation> </message> @@ -4929,18 +4924,18 @@ p, li { white-space: pre-wrap; } <translation type="obsolete">"%1" introuvable</translation> </message> <message> - <location filename="mainwindow.cpp" line="770"/> + <location filename="mainwindow.cpp" line="771"/> <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="1538"/> - <location filename="mainwindow.cpp" line="4024"/> + <location filename="mainwindow.cpp" line="1545"/> + <location filename="mainwindow.cpp" line="4032"/> <source><Manage...></source> <translation><Gérer...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1556"/> + <location filename="mainwindow.cpp" line="1563"/> <source>failed to parse profile %1: %2</source> <translation>impossible d'analyser le profil %1: %2</translation> </message> diff --git a/src/organizer_ru.ts b/src/organizer_ru.ts index d377c1e0..f7518508 100644 --- a/src/organizer_ru.ts +++ b/src/organizer_ru.ts @@ -264,11 +264,6 @@ p, li { white-space: pre-wrap; } <translation>Заполнитель</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"/> @@ -1359,8 +1354,8 @@ BSA, отмеченные здесь, загружаются так, чтобы </message> <message> <location filename="mainwindow.ui" line="843"/> - <location filename="mainwindow.cpp" line="3612"/> - <location filename="mainwindow.cpp" line="4360"/> + <location filename="mainwindow.cpp" line="3619"/> + <location filename="mainwindow.cpp" line="4368"/> <source>Refresh</source> <translation>Обновить</translation> </message> @@ -1540,7 +1535,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="mainwindow.ui" line="1209"/> - <location filename="mainwindow.cpp" line="4308"/> + <location filename="mainwindow.cpp" line="4316"/> <source>Update</source> <translation>Обновление</translation> </message> @@ -1551,7 +1546,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="mainwindow.ui" line="1224"/> - <location filename="mainwindow.cpp" line="496"/> + <location filename="mainwindow.cpp" line="497"/> <source>No Problems</source> <translation>Проблем не обнаружено</translation> </message> @@ -1584,7 +1579,7 @@ Right now this has very limited functionality</source> </message> <message> <location filename="mainwindow.ui" line="1257"/> - <location filename="mainwindow.cpp" line="4389"/> + <location filename="mainwindow.cpp" line="4397"/> <source>Endorse Mod Organizer</source> <translation>Одобрить Mod Organizer</translation> </message> @@ -1604,219 +1599,219 @@ Right now this has very limited functionality</source> <translation>Меню Пуск</translation> </message> <message> - <location filename="mainwindow.cpp" line="492"/> + <location filename="mainwindow.cpp" line="493"/> <source>Problems</source> <translation>Проблемы</translation> </message> <message> - <location filename="mainwindow.cpp" line="493"/> + <location filename="mainwindow.cpp" line="494"/> <source>There are potential problems with your setup</source> <translation>Есть возможные проблемы с вашей установкой</translation> </message> <message> - <location filename="mainwindow.cpp" line="497"/> + <location filename="mainwindow.cpp" line="498"/> <source>Everything seems to be in order</source> <translation>Кажется всё в порядке</translation> </message> <message> - <location filename="mainwindow.cpp" line="549"/> + <location filename="mainwindow.cpp" line="550"/> <source>Help on UI</source> <translation>Справка по интерфейсу</translation> </message> <message> - <location filename="mainwindow.cpp" line="553"/> + <location filename="mainwindow.cpp" line="554"/> <source>Documentation Wiki</source> <translation>Wiki-документация</translation> </message> <message> - <location filename="mainwindow.cpp" line="557"/> + <location filename="mainwindow.cpp" line="558"/> <source>Report Issue</source> <translation>Сообщить о проблеме</translation> </message> <message> - <location filename="mainwindow.cpp" line="561"/> + <location filename="mainwindow.cpp" line="562"/> <source>Tutorials</source> <translation>Уроки</translation> </message> <message> - <location filename="mainwindow.cpp" line="618"/> + <location filename="mainwindow.cpp" line="619"/> <source>failed to save archives order, do you have write access to "%1"?</source> <translation>не удалось сохранить порядок архивов, у вас имеется доступ на запись к "%1"?</translation> </message> <message> - <location filename="mainwindow.cpp" line="688"/> + <location filename="mainwindow.cpp" line="689"/> <source>failed to save load order: %1</source> <translation>не удалось сохранить порядок загрузки: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="705"/> + <location filename="mainwindow.cpp" line="706"/> <source>Name</source> <translation type="unfinished">Имя</translation> </message> <message> - <location filename="mainwindow.cpp" line="706"/> + <location filename="mainwindow.cpp" line="707"/> <source>Please enter a name for the new profile</source> <translation>Введите имя нового профиля</translation> </message> <message> - <location filename="mainwindow.cpp" line="714"/> + <location filename="mainwindow.cpp" line="715"/> <source>failed to create profile: %1</source> <translation>не удалось создать профиль: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="757"/> + <location filename="mainwindow.cpp" line="758"/> <source>Show tutorial?</source> <translation>Показать урок?</translation> </message> <message> - <location filename="mainwindow.cpp" line="758"/> + <location filename="mainwindow.cpp" line="759"/> <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="787"/> + <location filename="mainwindow.cpp" line="788"/> <source>Downloads in progress</source> <translation>Загрузки в процессе</translation> </message> <message> - <location filename="mainwindow.cpp" line="788"/> + <location filename="mainwindow.cpp" line="789"/> <source>There are still downloads in progress, do you really want to quit?</source> <translation>Загрузки всё ещё в процессе, вы правда хотите выйти?</translation> </message> <message> - <location filename="mainwindow.cpp" line="834"/> + <location filename="mainwindow.cpp" line="835"/> <source>failed to read savegame: %1</source> <translation>не удалось прочесть сохранение: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="958"/> + <location filename="mainwindow.cpp" line="959"/> <source>Plugin "%1" failed: %2</source> <translation>Плагин "%1" не удалось: %2</translation> </message> <message> - <location filename="mainwindow.cpp" line="960"/> + <location filename="mainwindow.cpp" line="961"/> <source>Plugin "%1" failed</source> <translation>Плагин "%1" не удалось</translation> </message> <message> - <location filename="mainwindow.cpp" line="1026"/> + <location filename="mainwindow.cpp" line="1027"/> <source>failed to init plugin %1: %2</source> <translation>не удалось инициализировать плагин %1: %2</translation> </message> <message> - <location filename="mainwindow.cpp" line="1064"/> + <location filename="mainwindow.cpp" line="1065"/> <source>Plugin error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1065"/> + <location filename="mainwindow.cpp" line="1066"/> <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"/> + <location filename="mainwindow.cpp" line="1250"/> <source>Failed to start "%1"</source> <translation>Не удалось запустить "%1"</translation> </message> <message> - <location filename="mainwindow.cpp" line="1251"/> + <location filename="mainwindow.cpp" line="1252"/> <source>Waiting</source> <translation>Ожидание</translation> </message> <message> - <location filename="mainwindow.cpp" line="1251"/> + <location filename="mainwindow.cpp" line="1252"/> <source>Please press OK once you're logged into steam.</source> <translation>Нажмите OK как только вы войдете в Steam.</translation> </message> <message> - <location filename="mainwindow.cpp" line="1263"/> + <location filename="mainwindow.cpp" line="1264"/> <source>"%1" not found</source> <translation>"%1" не найден</translation> </message> <message> - <location filename="mainwindow.cpp" line="1277"/> + <location filename="mainwindow.cpp" line="1278"/> <source>Start Steam?</source> <translation>Запустить Steam?</translation> </message> <message> - <location filename="mainwindow.cpp" line="1278"/> + <location filename="mainwindow.cpp" line="1279"/> <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="1492"/> + <location filename="mainwindow.cpp" line="1499"/> <source>Also in: <br></source> <translation>Также в: <br></translation> </message> <message> - <location filename="mainwindow.cpp" line="1503"/> + <location filename="mainwindow.cpp" line="1510"/> <source>No conflict</source> <translation>Конфликтов нет</translation> </message> <message> - <location filename="mainwindow.cpp" line="1620"/> + <location filename="mainwindow.cpp" line="1627"/> <source><Edit...></source> <translation><Правка...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1704"/> + <location filename="mainwindow.cpp" line="1711"/> <source>Failed to refresh list of esps: %s</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1844"/> + <location filename="mainwindow.cpp" line="1851"/> <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="1851"/> + <location filename="mainwindow.cpp" line="1858"/> <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="1906"/> + <location filename="mainwindow.cpp" line="1913"/> <source>Activating Network Proxy</source> <translation>Подключение сетевого прокси</translation> </message> <message> - <location filename="mainwindow.cpp" line="2037"/> - <location filename="mainwindow.cpp" line="4056"/> + <location filename="mainwindow.cpp" line="2044"/> + <location filename="mainwindow.cpp" line="4064"/> <source>Installation successful</source> <translation>Установка завершена</translation> </message> <message> - <location filename="mainwindow.cpp" line="2048"/> - <location filename="mainwindow.cpp" line="4069"/> + <location filename="mainwindow.cpp" line="2055"/> + <location filename="mainwindow.cpp" line="4077"/> <source>Configure Mod</source> <translation>Настройка мода</translation> </message> <message> - <location filename="mainwindow.cpp" line="2049"/> - <location filename="mainwindow.cpp" line="4070"/> + <location filename="mainwindow.cpp" line="2056"/> + <location filename="mainwindow.cpp" line="4078"/> <source>This mod contains ini tweaks. Do you want to configure them now?</source> <translation>Этот мод включает настройки ini. Вы хотите настроить их сейчас?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2055"/> - <location filename="mainwindow.cpp" line="4076"/> + <location filename="mainwindow.cpp" line="2062"/> + <location filename="mainwindow.cpp" line="4084"/> <source>mod "%1" not found</source> <translation>мод "%1" не найден</translation> </message> <message> - <location filename="mainwindow.cpp" line="2058"/> - <location filename="mainwindow.cpp" line="4082"/> + <location filename="mainwindow.cpp" line="2065"/> + <location filename="mainwindow.cpp" line="4090"/> <source>Installation cancelled</source> <translation>Установка отменена</translation> </message> <message> - <location filename="mainwindow.cpp" line="2058"/> - <location filename="mainwindow.cpp" line="4082"/> + <location filename="mainwindow.cpp" line="2065"/> + <location filename="mainwindow.cpp" line="4090"/> <source>The mod was not installed completely.</source> <translation>Мод не был установлен полностью.</translation> </message> <message> - <location filename="mainwindow.cpp" line="2207"/> + <location filename="mainwindow.cpp" line="2214"/> <source>Some plugins could not be loaded</source> <translation>Некоторые плагины не могут быть загружены</translation> </message> @@ -1825,639 +1820,639 @@ Right now this has very limited functionality</source> <translation type="obsolete">Следующие плагины не могут быть загружены. Причина может быть в отсутствующих зависимостях (таких как python) или в устаревшей версии:<ul></translation> </message> <message> - <location filename="mainwindow.cpp" line="2210"/> + <location filename="mainwindow.cpp" line="2217"/> <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"/> + <location filename="mainwindow.cpp" line="2220"/> + <location filename="mainwindow.cpp" line="2241"/> <source>Description missing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2222"/> + <location filename="mainwindow.cpp" line="2229"/> <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"/> + <location filename="mainwindow.cpp" line="2237"/> <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"/> + <location filename="mainwindow.cpp" line="2263"/> <source>Choose Mod</source> <translation>Выберете мод</translation> </message> <message> - <location filename="mainwindow.cpp" line="2257"/> + <location filename="mainwindow.cpp" line="2264"/> <source>Mod Archive</source> <translation>Архив мода</translation> </message> <message> - <location filename="mainwindow.cpp" line="2410"/> + <location filename="mainwindow.cpp" line="2417"/> <source>Start Tutorial?</source> <translation>Начать обучение?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2411"/> + <location filename="mainwindow.cpp" line="2418"/> <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="2566"/> - <location filename="mainwindow.cpp" line="3984"/> + <location filename="mainwindow.cpp" line="2573"/> + <location filename="mainwindow.cpp" line="3992"/> <source>Download started</source> <translation>Загрузка начата</translation> </message> <message> - <location filename="mainwindow.cpp" line="2597"/> + <location filename="mainwindow.cpp" line="2604"/> <source>failed to update mod list: %1</source> <translation>не удалось обновить список модов: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2624"/> + <location filename="mainwindow.cpp" line="2631"/> <source>failed to spawn notepad.exe: %1</source> <translation>не удалось вызвать notepad.exe: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2665"/> + <location filename="mainwindow.cpp" line="2672"/> <source>failed to open %1</source> <translation>не удалось открыть %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2743"/> + <location filename="mainwindow.cpp" line="2750"/> <source>failed to change origin name: %1</source> <translation>не удалось изменить оригинальное имя: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2769"/> + <location filename="mainwindow.cpp" line="2776"/> <source>Failed to move "%1" from mod "%2" to "%3": %4</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2818"/> + <location filename="mainwindow.cpp" line="2825"/> <source><Checked></source> <translation><Подключен></translation> </message> <message> - <location filename="mainwindow.cpp" line="2819"/> + <location filename="mainwindow.cpp" line="2826"/> <source><Unchecked></source> <translation><Отключен></translation> </message> <message> - <location filename="mainwindow.cpp" line="2820"/> + <location filename="mainwindow.cpp" line="2827"/> <source><Update></source> <translation><Обновлен></translation> </message> <message> - <location filename="mainwindow.cpp" line="2821"/> + <location filename="mainwindow.cpp" line="2828"/> <source><No category></source> <translation><Без категории></translation> </message> <message> - <location filename="mainwindow.cpp" line="2822"/> + <location filename="mainwindow.cpp" line="2829"/> <source><Conflicted></source> <translation><Конфликтует></translation> </message> <message> - <location filename="mainwindow.cpp" line="2823"/> + <location filename="mainwindow.cpp" line="2830"/> <source><Not Endorsed></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2856"/> + <location filename="mainwindow.cpp" line="2863"/> <source>failed to rename mod: %1</source> <translation>не удалось переименовать мод: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2869"/> + <location filename="mainwindow.cpp" line="2876"/> <source>Overwrite?</source> <translation>Перезаписать?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2870"/> + <location filename="mainwindow.cpp" line="2877"/> <source>This will replace the existing mod "%1". Continue?</source> <translation>Это заменит существующий мод "%1". Продолжить?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2873"/> + <location filename="mainwindow.cpp" line="2880"/> <source>failed to remove mod "%1"</source> <translation>не удалось удалить мод "%1"</translation> </message> <message> - <location filename="mainwindow.cpp" line="2877"/> - <location filename="mainwindow.cpp" line="4254"/> - <location filename="mainwindow.cpp" line="4278"/> + <location filename="mainwindow.cpp" line="2884"/> + <location filename="mainwindow.cpp" line="4262"/> + <location filename="mainwindow.cpp" line="4286"/> <source>failed to rename "%1" to "%2"</source> <translation>не удалось переименовать "%1" в "%2"</translation> </message> <message> - <location filename="mainwindow.cpp" line="2906"/> + <location filename="mainwindow.cpp" line="2913"/> <source>Multiple esps activated, please check that they don't conflict.</source> <translation>Подключено несколько esp, выберете из них не конфликтующие.</translation> </message> <message> - <location filename="mainwindow.cpp" line="2932"/> - <location filename="mainwindow.cpp" line="3518"/> - <location filename="mainwindow.cpp" line="3526"/> + <location filename="mainwindow.cpp" line="2939"/> + <location filename="mainwindow.cpp" line="3525"/> + <location filename="mainwindow.cpp" line="3533"/> <source>Confirm</source> <translation>Подтверждение</translation> </message> <message> - <location filename="mainwindow.cpp" line="2933"/> + <location filename="mainwindow.cpp" line="2940"/> <source>Remove the following mods?<br><ul>%1</ul></source> <translation>Удалить следующие моды?<br><ul>%1</ul></translation> </message> <message> - <location filename="mainwindow.cpp" line="2944"/> + <location filename="mainwindow.cpp" line="2951"/> <source>failed to remove mod: %1</source> <translation>не удалось удалить мод: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2979"/> - <location filename="mainwindow.cpp" line="2982"/> + <location filename="mainwindow.cpp" line="2986"/> + <location filename="mainwindow.cpp" line="2989"/> <source>Failed</source> <translation>Неудача</translation> </message> <message> - <location filename="mainwindow.cpp" line="2979"/> + <location filename="mainwindow.cpp" line="2986"/> <source>Installation file no longer exists</source> <translation>Установочный файл больше не существует</translation> </message> <message> - <location filename="mainwindow.cpp" line="2983"/> + <location filename="mainwindow.cpp" line="2990"/> <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="2998"/> - <location filename="mainwindow.cpp" line="3025"/> + <location filename="mainwindow.cpp" line="3005"/> + <location filename="mainwindow.cpp" line="3032"/> <source>You need to be logged in with Nexus to endorse</source> <translation>Вы должны быть авторизированы на Nexus, чтобы одобрять.</translation> </message> <message> - <location filename="mainwindow.cpp" line="3154"/> - <location filename="mainwindow.cpp" line="4638"/> + <location filename="mainwindow.cpp" line="3161"/> + <location filename="mainwindow.cpp" line="4646"/> <source>Extract BSA</source> <translation>Извлечь BSA</translation> </message> <message> - <location filename="mainwindow.cpp" line="3155"/> + <location filename="mainwindow.cpp" line="3162"/> <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>Этот мод включает как минимум один BSA. Вы хотите распаковать их? (Это удалит BSA после завершения. Если вы не знаете ничего о BSAs, просто откажитесь)</translation> </message> <message> - <location filename="mainwindow.cpp" line="3165"/> - <location filename="mainwindow.cpp" line="4595"/> - <location filename="mainwindow.cpp" line="4646"/> + <location filename="mainwindow.cpp" line="3172"/> + <location filename="mainwindow.cpp" line="4603"/> + <location filename="mainwindow.cpp" line="4654"/> <source>failed to read %1: %2</source> <translation>не удалось прочесть %1: %2</translation> </message> <message> - <location filename="mainwindow.cpp" line="3178"/> - <location filename="mainwindow.cpp" line="4657"/> + <location filename="mainwindow.cpp" line="3185"/> + <location filename="mainwindow.cpp" line="4665"/> <source>This archive contains invalid hashes. Some files may be broken.</source> <translation>Архив содержит неверные хеши. Некоторые файлы могут быть испорчены.</translation> </message> <message> - <location filename="mainwindow.cpp" line="3212"/> + <location filename="mainwindow.cpp" line="3219"/> <source>Nexus ID for this Mod is unknown</source> <translation>Nexus ID для этого мода неизвестен</translation> </message> <message> - <location filename="mainwindow.cpp" line="3251"/> - <location filename="mainwindow.cpp" line="3623"/> + <location filename="mainwindow.cpp" line="3258"/> + <location filename="mainwindow.cpp" line="3630"/> <source>Create Mod...</source> <translation>Создать мод...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3252"/> + <location filename="mainwindow.cpp" line="3259"/> <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="3261"/> + <location filename="mainwindow.cpp" line="3268"/> <source>A mod with this name already exists</source> <translation>Мод с таким именем уже существует</translation> </message> <message> - <location filename="mainwindow.cpp" line="3444"/> + <location filename="mainwindow.cpp" line="3451"/> <source>Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3445"/> + <location filename="mainwindow.cpp" line="3452"/> <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"/> + <location filename="mainwindow.cpp" line="3472"/> <source>Sorry</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3466"/> + <location filename="mainwindow.cpp" line="3473"/> <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"/> + <location filename="mainwindow.cpp" line="3525"/> <source>Really enable all visible mods?</source> <translation>Действительно подключить все видимые моды?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3526"/> + <location filename="mainwindow.cpp" line="3533"/> <source>Really disable all visible mods?</source> <translation>Действительно отключить все видимые моды?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3534"/> + <location filename="mainwindow.cpp" line="3541"/> <source>Choose what to export</source> <translation>Выберете, что экспортировать</translation> </message> <message> - <location filename="mainwindow.cpp" line="3536"/> + <location filename="mainwindow.cpp" line="3543"/> <source>Everything</source> <translation>Всё</translation> </message> <message> - <location filename="mainwindow.cpp" line="3536"/> + <location filename="mainwindow.cpp" line="3543"/> <source>All installed mods are included in the list</source> <translation>Все установленные моды, включенные в список</translation> </message> <message> - <location filename="mainwindow.cpp" line="3537"/> + <location filename="mainwindow.cpp" line="3544"/> <source>Active Mods</source> <translation>Активные моды</translation> </message> <message> - <location filename="mainwindow.cpp" line="3537"/> + <location filename="mainwindow.cpp" line="3544"/> <source>Only active (checked) mods from your current profile are included</source> <translation>Включены все активные (подключенные) моды вашего текущего профиля</translation> </message> <message> - <location filename="mainwindow.cpp" line="3538"/> + <location filename="mainwindow.cpp" line="3545"/> <source>Visible</source> <translation>Видимые</translation> </message> <message> - <location filename="mainwindow.cpp" line="3538"/> + <location filename="mainwindow.cpp" line="3545"/> <source>All mods visible in the mod list are included</source> <translation>Включены все моды, видимые в списке модов</translation> </message> <message> - <location filename="mainwindow.cpp" line="3581"/> + <location filename="mainwindow.cpp" line="3588"/> <source>export failed: %1</source> <translation>экспорт не удался: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3605"/> + <location filename="mainwindow.cpp" line="3612"/> <source>Install Mod...</source> <translation>Установить мод...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3607"/> + <location filename="mainwindow.cpp" line="3614"/> <source>Enable all visible</source> <translation>Включить все видимые</translation> </message> <message> - <location filename="mainwindow.cpp" line="3608"/> + <location filename="mainwindow.cpp" line="3615"/> <source>Disable all visible</source> <translation>Отключить все видимые</translation> </message> <message> - <location filename="mainwindow.cpp" line="3610"/> + <location filename="mainwindow.cpp" line="3617"/> <source>Check all for update</source> <translation>Проверить все на обновления</translation> </message> <message> - <location filename="mainwindow.cpp" line="3614"/> + <location filename="mainwindow.cpp" line="3621"/> <source>Export to csv...</source> <translation>Экспорт в csv...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3622"/> + <location filename="mainwindow.cpp" line="3629"/> <source>Sync to Mods...</source> <translation>Синхронизировать с модами...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3626"/> + <location filename="mainwindow.cpp" line="3633"/> <source>Restore Backup</source> <translation>Восстановить из резервной копии</translation> </message> <message> - <location filename="mainwindow.cpp" line="3627"/> + <location filename="mainwindow.cpp" line="3634"/> <source>Remove Backup...</source> <translation>Удалить резервную копию...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3630"/> + <location filename="mainwindow.cpp" line="3637"/> <source>Set Category</source> <translation>Задать категорию</translation> </message> <message> - <location filename="mainwindow.cpp" line="3635"/> + <location filename="mainwindow.cpp" line="3642"/> <source>Primary Category</source> <translation>Основная категория</translation> </message> <message> - <location filename="mainwindow.cpp" line="3642"/> + <location filename="mainwindow.cpp" line="3649"/> <source>Change versioning scheme</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3646"/> + <location filename="mainwindow.cpp" line="3653"/> <source>Un-ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3648"/> + <location filename="mainwindow.cpp" line="3655"/> <source>Ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3653"/> + <location filename="mainwindow.cpp" line="3660"/> <source>Rename Mod...</source> <translation>Переименовать мод...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3654"/> + <location filename="mainwindow.cpp" line="3661"/> <source>Remove Mod...</source> <translation>Удалить мод...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3655"/> + <location filename="mainwindow.cpp" line="3662"/> <source>Reinstall Mod</source> <translation>Переустановить мод</translation> </message> <message> - <location filename="mainwindow.cpp" line="3658"/> + <location filename="mainwindow.cpp" line="3665"/> <source>Un-Endorse</source> <translation>Отменить одобрение</translation> </message> <message> - <location filename="mainwindow.cpp" line="3661"/> - <location filename="mainwindow.cpp" line="3665"/> + <location filename="mainwindow.cpp" line="3668"/> + <location filename="mainwindow.cpp" line="3672"/> <source>Endorse</source> <translation>Одобрить</translation> </message> <message> - <location filename="mainwindow.cpp" line="3662"/> + <location filename="mainwindow.cpp" line="3669"/> <source>Won't endorse</source> <translation>Не одобрять</translation> </message> <message> - <location filename="mainwindow.cpp" line="3668"/> + <location filename="mainwindow.cpp" line="3675"/> <source>Endorsement state unknown</source> <translation>Статус одобрения неизвестен</translation> </message> <message> - <location filename="mainwindow.cpp" line="3675"/> + <location filename="mainwindow.cpp" line="3682"/> <source>Ignore missing data</source> <translation>Игнорировать отсутствующие данные</translation> </message> <message> - <location filename="mainwindow.cpp" line="3678"/> + <location filename="mainwindow.cpp" line="3685"/> <source>Visit on Nexus</source> <translation>Перейти на Nexus</translation> </message> <message> - <location filename="mainwindow.cpp" line="3679"/> + <location filename="mainwindow.cpp" line="3686"/> <source>Open in explorer</source> <translation>Открыть в проводнике</translation> </message> <message> - <location filename="mainwindow.cpp" line="3682"/> + <location filename="mainwindow.cpp" line="3689"/> <source>Information...</source> <translation>Информация...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3688"/> - <location filename="mainwindow.cpp" line="4842"/> + <location filename="mainwindow.cpp" line="3695"/> + <location filename="mainwindow.cpp" line="4850"/> <source>Exception: </source> <translation>Исключение: </translation> </message> <message> - <location filename="mainwindow.cpp" line="3690"/> - <location filename="mainwindow.cpp" line="4844"/> + <location filename="mainwindow.cpp" line="3697"/> + <location filename="mainwindow.cpp" line="4852"/> <source>Unknown exception</source> <translation>Неизвестное исключение</translation> </message> <message> - <location filename="mainwindow.cpp" line="3710"/> + <location filename="mainwindow.cpp" line="3717"/> <source><All></source> <translation><Все></translation> </message> <message> - <location filename="mainwindow.cpp" line="3712"/> + <location filename="mainwindow.cpp" line="3719"/> <source><Multiple></source> <translation><Несколько></translation> </message> <message> - <location filename="mainwindow.cpp" line="3824"/> + <location filename="mainwindow.cpp" line="3831"/> <source>Fix Mods...</source> <translation>Исправить моды...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3848"/> - <location filename="mainwindow.cpp" line="3879"/> + <location filename="mainwindow.cpp" line="3855"/> + <location filename="mainwindow.cpp" line="3886"/> <source>failed to remove %1</source> <translation>не удалось удалить %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3863"/> - <location filename="mainwindow.cpp" line="3894"/> + <location filename="mainwindow.cpp" line="3870"/> + <location filename="mainwindow.cpp" line="3901"/> <source>failed to create %1</source> <translation>не удалось создать %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3916"/> + <location filename="mainwindow.cpp" line="3924"/> <source>Can't change download directory while downloads are in progress!</source> <translation>Нельзя изменить каталог для загрузок, когда загрузки ещё не завершены!</translation> </message> <message> - <location filename="mainwindow.cpp" line="3987"/> + <location filename="mainwindow.cpp" line="3995"/> <source>Download failed</source> <translation>Загрузка не удалась</translation> </message> <message> - <location filename="mainwindow.cpp" line="4131"/> + <location filename="mainwindow.cpp" line="4139"/> <source>failed to write to file %1</source> <translation>ошибка записи в файл %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4137"/> + <location filename="mainwindow.cpp" line="4145"/> <source>%1 written</source> <translation>%1 записан</translation> </message> <message> - <location filename="mainwindow.cpp" line="4176"/> + <location filename="mainwindow.cpp" line="4184"/> <source>Select binary</source> <translation>Выбрать исполняемый файл</translation> </message> <message> - <location filename="mainwindow.cpp" line="4176"/> + <location filename="mainwindow.cpp" line="4184"/> <source>Binary</source> <translation>Исполняемый файл</translation> </message> <message> - <location filename="mainwindow.cpp" line="4202"/> + <location filename="mainwindow.cpp" line="4210"/> <source>Enter Name</source> <translation>Введите имя</translation> </message> <message> - <location filename="mainwindow.cpp" line="4203"/> + <location filename="mainwindow.cpp" line="4211"/> <source>Please enter a name for the executable</source> <translation>Введите название для программы</translation> </message> <message> - <location filename="mainwindow.cpp" line="4214"/> + <location filename="mainwindow.cpp" line="4222"/> <source>Not an executable</source> <translation>Не является исполняемым</translation> </message> <message> - <location filename="mainwindow.cpp" line="4214"/> + <location filename="mainwindow.cpp" line="4222"/> <source>This is not a recognized executable.</source> <translation>Это неверный исполняемый файл.</translation> </message> <message> - <location filename="mainwindow.cpp" line="4239"/> - <location filename="mainwindow.cpp" line="4264"/> + <location filename="mainwindow.cpp" line="4247"/> + <location filename="mainwindow.cpp" line="4272"/> <source>Replace file?</source> <translation>Заменить файл?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4239"/> + <location filename="mainwindow.cpp" line="4247"/> <source>There already is a hidden version of this file. Replace it?</source> <translation>Уже существует скрытая версия этого файла. Заменить?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4242"/> - <location filename="mainwindow.cpp" line="4267"/> + <location filename="mainwindow.cpp" line="4250"/> + <location filename="mainwindow.cpp" line="4275"/> <source>File operation failed</source> <translation>Операция с файлом не удалась</translation> </message> <message> - <location filename="mainwindow.cpp" line="4242"/> - <location filename="mainwindow.cpp" line="4267"/> + <location filename="mainwindow.cpp" line="4250"/> + <location filename="mainwindow.cpp" line="4275"/> <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> <translation>Не удалось удалить "%1". Может быть, вам не хватает необходимых прав доступа к файлу?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4264"/> + <location filename="mainwindow.cpp" line="4272"/> <source>There already is a visible version of this file. Replace it?</source> <translation>Видимая версия этого файла уже существует. Заменить?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4310"/> + <location filename="mainwindow.cpp" line="4318"/> <source>Update available</source> <translation>Доступно обновление</translation> </message> <message> - <location filename="mainwindow.cpp" line="4347"/> + <location filename="mainwindow.cpp" line="4355"/> <source>Open/Execute</source> <translation>Открыть/Выполнить</translation> </message> <message> - <location filename="mainwindow.cpp" line="4348"/> + <location filename="mainwindow.cpp" line="4356"/> <source>Add as Executable</source> <translation>Добавить как исполняемый</translation> </message> <message> - <location filename="mainwindow.cpp" line="4352"/> + <location filename="mainwindow.cpp" line="4360"/> <source>Un-Hide</source> <translation>Показать</translation> </message> <message> - <location filename="mainwindow.cpp" line="4354"/> + <location filename="mainwindow.cpp" line="4362"/> <source>Hide</source> <translation>Скрыть</translation> </message> <message> - <location filename="mainwindow.cpp" line="4359"/> + <location filename="mainwindow.cpp" line="4367"/> <source>Write To File...</source> <translation>Записать в файл...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4390"/> + <location filename="mainwindow.cpp" line="4398"/> <source>Do you want to endorse Mod Organizer on %1 now?</source> <translation>Вы хотите одобрить Mod Organizer на %1 сейчас?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4526"/> + <location filename="mainwindow.cpp" line="4534"/> <source>Request to Nexus failed: %1</source> <translation>Запрос на Nexus не удался: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4533"/> - <location filename="mainwindow.cpp" line="4550"/> + <location filename="mainwindow.cpp" line="4541"/> + <location filename="mainwindow.cpp" line="4558"/> <source>login successful</source> <translation>успешный вход</translation> </message> <message> - <location filename="mainwindow.cpp" line="4559"/> + <location filename="mainwindow.cpp" line="4567"/> <source>login failed: %1. Trying to download anyway</source> <translation>вход не удался: %1. Пытаюсь загрузить всё равно</translation> </message> <message> - <location filename="mainwindow.cpp" line="4565"/> + <location filename="mainwindow.cpp" line="4573"/> <source>login failed: %1</source> <translation>войти не удалось: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4574"/> + <location filename="mainwindow.cpp" line="4582"/> <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="4607"/> + <location filename="mainwindow.cpp" line="4615"/> <source>Error</source> <translation>Ошибка</translation> </message> <message> - <location filename="mainwindow.cpp" line="4607"/> + <location filename="mainwindow.cpp" line="4615"/> <source>failed to extract %1 (errorcode %2)</source> <translation>не удалось извлечь %1 (код ошибки %2)</translation> </message> <message> - <location filename="mainwindow.cpp" line="4702"/> + <location filename="mainwindow.cpp" line="4710"/> <source>Extract...</source> <translation>Распаковка...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4758"/> + <location filename="mainwindow.cpp" line="4766"/> <source>Edit Categories...</source> <translation>Изменить категории...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4803"/> + <location filename="mainwindow.cpp" line="4811"/> <source>Remove</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4813"/> + <location filename="mainwindow.cpp" line="4821"/> <source>Enable all</source> <translation>Включить все</translation> </message> <message> - <location filename="mainwindow.cpp" line="4814"/> + <location filename="mainwindow.cpp" line="4822"/> <source>Disable all</source> <translation>Отключить все</translation> </message> <message> - <location filename="mainwindow.cpp" line="4833"/> + <location filename="mainwindow.cpp" line="4841"/> <source>Unlock load order</source> <translation>Разблокировать порядок загрузки</translation> </message> <message> - <location filename="mainwindow.cpp" line="4836"/> + <location filename="mainwindow.cpp" line="4844"/> <source>Lock load order</source> <translation>Заблокировать порядок загрузки</translation> </message> @@ -4033,18 +4028,18 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="770"/> + <location filename="mainwindow.cpp" line="771"/> <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"/> + <location filename="mainwindow.cpp" line="1545"/> + <location filename="mainwindow.cpp" line="4032"/> <source><Manage...></source> <translation><Управлять...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1556"/> + <location filename="mainwindow.cpp" line="1563"/> <source>failed to parse profile %1: %2</source> <translation>не удалось обработать профиль %1: %2</translation> </message> diff --git a/src/organizer_tr.ts b/src/organizer_tr.ts index c23ee738..92e0b7b9 100644 --- a/src/organizer_tr.ts +++ b/src/organizer_tr.ts @@ -270,11 +270,6 @@ p, li { white-space: pre-wrap; } <translation>Yer tutucu</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"/> @@ -1508,8 +1503,8 @@ BSAs checked here are loaded in such a way that your installation order is obeye </message> <message> <location filename="mainwindow.ui" line="843"/> - <location filename="mainwindow.cpp" line="3612"/> - <location filename="mainwindow.cpp" line="4360"/> + <location filename="mainwindow.cpp" line="3619"/> + <location filename="mainwindow.cpp" line="4368"/> <source>Refresh</source> <translation type="unfinished"></translation> </message> @@ -1683,7 +1678,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="mainwindow.ui" line="1209"/> - <location filename="mainwindow.cpp" line="4308"/> + <location filename="mainwindow.cpp" line="4316"/> <source>Update</source> <translation type="unfinished"></translation> </message> @@ -1694,7 +1689,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="mainwindow.ui" line="1224"/> - <location filename="mainwindow.cpp" line="496"/> + <location filename="mainwindow.cpp" line="497"/> <source>No Problems</source> <translation type="unfinished"></translation> </message> @@ -1724,7 +1719,7 @@ Right now this has very limited functionality</source> </message> <message> <location filename="mainwindow.ui" line="1257"/> - <location filename="mainwindow.cpp" line="4389"/> + <location filename="mainwindow.cpp" line="4397"/> <source>Endorse Mod Organizer</source> <translation type="unfinished"></translation> </message> @@ -1744,854 +1739,854 @@ Right now this has very limited functionality</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="492"/> + <location filename="mainwindow.cpp" line="493"/> <source>Problems</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="493"/> + <location filename="mainwindow.cpp" line="494"/> <source>There are potential problems with your setup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="497"/> + <location filename="mainwindow.cpp" line="498"/> <source>Everything seems to be in order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="549"/> + <location filename="mainwindow.cpp" line="550"/> <source>Help on UI</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="553"/> + <location filename="mainwindow.cpp" line="554"/> <source>Documentation Wiki</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="557"/> + <location filename="mainwindow.cpp" line="558"/> <source>Report Issue</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="561"/> + <location filename="mainwindow.cpp" line="562"/> <source>Tutorials</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="688"/> + <location filename="mainwindow.cpp" line="689"/> <source>failed to save load order: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="618"/> + <location filename="mainwindow.cpp" line="619"/> <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="705"/> + <location filename="mainwindow.cpp" line="706"/> <source>Name</source> <translation type="unfinished">İsim</translation> </message> <message> - <location filename="mainwindow.cpp" line="706"/> + <location filename="mainwindow.cpp" line="707"/> <source>Please enter a name for the new profile</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="714"/> + <location filename="mainwindow.cpp" line="715"/> <source>failed to create profile: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="757"/> + <location filename="mainwindow.cpp" line="758"/> <source>Show tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="758"/> + <location filename="mainwindow.cpp" line="759"/> <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="787"/> + <location filename="mainwindow.cpp" line="788"/> <source>Downloads in progress</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="788"/> + <location filename="mainwindow.cpp" line="789"/> <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="834"/> + <location filename="mainwindow.cpp" line="835"/> <source>failed to read savegame: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="958"/> + <location filename="mainwindow.cpp" line="959"/> <source>Plugin "%1" failed: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1249"/> + <location filename="mainwindow.cpp" line="1250"/> <source>Failed to start "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1251"/> + <location filename="mainwindow.cpp" line="1252"/> <source>Waiting</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1251"/> + <location filename="mainwindow.cpp" line="1252"/> <source>Please press OK once you're logged into steam.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1263"/> + <location filename="mainwindow.cpp" line="1264"/> <source>"%1" not found</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1277"/> + <location filename="mainwindow.cpp" line="1278"/> <source>Start Steam?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1278"/> + <location filename="mainwindow.cpp" line="1279"/> <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="1492"/> + <location filename="mainwindow.cpp" line="1499"/> <source>Also in: <br></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1503"/> + <location filename="mainwindow.cpp" line="1510"/> <source>No conflict</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1620"/> + <location filename="mainwindow.cpp" line="1627"/> <source><Edit...></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1844"/> + <location filename="mainwindow.cpp" line="1851"/> <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="1851"/> + <location filename="mainwindow.cpp" line="1858"/> <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="1906"/> + <location filename="mainwindow.cpp" line="1913"/> <source>Activating Network Proxy</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2037"/> - <location filename="mainwindow.cpp" line="4056"/> + <location filename="mainwindow.cpp" line="2044"/> + <location filename="mainwindow.cpp" line="4064"/> <source>Installation successful</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2048"/> - <location filename="mainwindow.cpp" line="4069"/> + <location filename="mainwindow.cpp" line="2055"/> + <location filename="mainwindow.cpp" line="4077"/> <source>Configure Mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2049"/> - <location filename="mainwindow.cpp" line="4070"/> + <location filename="mainwindow.cpp" line="2056"/> + <location filename="mainwindow.cpp" line="4078"/> <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="2055"/> - <location filename="mainwindow.cpp" line="4076"/> + <location filename="mainwindow.cpp" line="2062"/> + <location filename="mainwindow.cpp" line="4084"/> <source>mod "%1" not found</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2058"/> - <location filename="mainwindow.cpp" line="4082"/> + <location filename="mainwindow.cpp" line="2065"/> + <location filename="mainwindow.cpp" line="4090"/> <source>Installation cancelled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2058"/> - <location filename="mainwindow.cpp" line="4082"/> + <location filename="mainwindow.cpp" line="2065"/> + <location filename="mainwindow.cpp" line="4090"/> <source>The mod was not installed completely.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2207"/> + <location filename="mainwindow.cpp" line="2214"/> <source>Some plugins could not be loaded</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2256"/> + <location filename="mainwindow.cpp" line="2263"/> <source>Choose Mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2257"/> + <location filename="mainwindow.cpp" line="2264"/> <source>Mod Archive</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2410"/> + <location filename="mainwindow.cpp" line="2417"/> <source>Start Tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2411"/> + <location filename="mainwindow.cpp" line="2418"/> <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="2566"/> - <location filename="mainwindow.cpp" line="3984"/> + <location filename="mainwindow.cpp" line="2573"/> + <location filename="mainwindow.cpp" line="3992"/> <source>Download started</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2597"/> + <location filename="mainwindow.cpp" line="2604"/> <source>failed to update mod list: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2624"/> + <location filename="mainwindow.cpp" line="2631"/> <source>failed to spawn notepad.exe: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2665"/> + <location filename="mainwindow.cpp" line="2672"/> <source>failed to open %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2743"/> + <location filename="mainwindow.cpp" line="2750"/> <source>failed to change origin name: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2906"/> + <location filename="mainwindow.cpp" line="2913"/> <source>Multiple esps activated, please check that they don't conflict.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3251"/> - <location filename="mainwindow.cpp" line="3623"/> + <location filename="mainwindow.cpp" line="3258"/> + <location filename="mainwindow.cpp" line="3630"/> <source>Create Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3252"/> + <location filename="mainwindow.cpp" line="3259"/> <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="3261"/> + <location filename="mainwindow.cpp" line="3268"/> <source>A mod with this name already exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3710"/> + <location filename="mainwindow.cpp" line="3717"/> <source><All></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2818"/> + <location filename="mainwindow.cpp" line="2825"/> <source><Checked></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="960"/> + <location filename="mainwindow.cpp" line="961"/> <source>Plugin "%1" failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1026"/> + <location filename="mainwindow.cpp" line="1027"/> <source>failed to init plugin %1: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1064"/> + <location filename="mainwindow.cpp" line="1065"/> <source>Plugin error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1065"/> + <location filename="mainwindow.cpp" line="1066"/> <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"/> + <location filename="mainwindow.cpp" line="1711"/> <source>Failed to refresh list of esps: %s</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2210"/> + <location filename="mainwindow.cpp" line="2217"/> <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"/> + <location filename="mainwindow.cpp" line="2220"/> + <location filename="mainwindow.cpp" line="2241"/> <source>Description missing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2222"/> + <location filename="mainwindow.cpp" line="2229"/> <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"/> + <location filename="mainwindow.cpp" line="2237"/> <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"/> + <location filename="mainwindow.cpp" line="2776"/> <source>Failed to move "%1" from mod "%2" to "%3": %4</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2819"/> + <location filename="mainwindow.cpp" line="2826"/> <source><Unchecked></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2820"/> + <location filename="mainwindow.cpp" line="2827"/> <source><Update></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2821"/> + <location filename="mainwindow.cpp" line="2828"/> <source><No category></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2822"/> + <location filename="mainwindow.cpp" line="2829"/> <source><Conflicted></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2823"/> + <location filename="mainwindow.cpp" line="2830"/> <source><Not Endorsed></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2856"/> + <location filename="mainwindow.cpp" line="2863"/> <source>failed to rename mod: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2869"/> + <location filename="mainwindow.cpp" line="2876"/> <source>Overwrite?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2870"/> + <location filename="mainwindow.cpp" line="2877"/> <source>This will replace the existing mod "%1". Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2873"/> + <location filename="mainwindow.cpp" line="2880"/> <source>failed to remove mod "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2877"/> - <location filename="mainwindow.cpp" line="4254"/> - <location filename="mainwindow.cpp" line="4278"/> + <location filename="mainwindow.cpp" line="2884"/> + <location filename="mainwindow.cpp" line="4262"/> + <location filename="mainwindow.cpp" line="4286"/> <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="2932"/> - <location filename="mainwindow.cpp" line="3518"/> - <location filename="mainwindow.cpp" line="3526"/> + <location filename="mainwindow.cpp" line="2939"/> + <location filename="mainwindow.cpp" line="3525"/> + <location filename="mainwindow.cpp" line="3533"/> <source>Confirm</source> <translation type="unfinished">Onayla</translation> </message> <message> - <location filename="mainwindow.cpp" line="2933"/> + <location filename="mainwindow.cpp" line="2940"/> <source>Remove the following mods?<br><ul>%1</ul></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2944"/> + <location filename="mainwindow.cpp" line="2951"/> <source>failed to remove mod: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2979"/> - <location filename="mainwindow.cpp" line="2982"/> + <location filename="mainwindow.cpp" line="2986"/> + <location filename="mainwindow.cpp" line="2989"/> <source>Failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2979"/> + <location filename="mainwindow.cpp" line="2986"/> <source>Installation file no longer exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2983"/> + <location filename="mainwindow.cpp" line="2990"/> <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="2998"/> - <location filename="mainwindow.cpp" line="3025"/> + <location filename="mainwindow.cpp" line="3005"/> + <location filename="mainwindow.cpp" line="3032"/> <source>You need to be logged in with Nexus to endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3154"/> - <location filename="mainwindow.cpp" line="4638"/> + <location filename="mainwindow.cpp" line="3161"/> + <location filename="mainwindow.cpp" line="4646"/> <source>Extract BSA</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3155"/> + <location filename="mainwindow.cpp" line="3162"/> <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="3165"/> - <location filename="mainwindow.cpp" line="4595"/> - <location filename="mainwindow.cpp" line="4646"/> + <location filename="mainwindow.cpp" line="3172"/> + <location filename="mainwindow.cpp" line="4603"/> + <location filename="mainwindow.cpp" line="4654"/> <source>failed to read %1: %2</source> <translation type="unfinished">%1: %2 okunamadı</translation> </message> <message> - <location filename="mainwindow.cpp" line="3178"/> - <location filename="mainwindow.cpp" line="4657"/> + <location filename="mainwindow.cpp" line="3185"/> + <location filename="mainwindow.cpp" line="4665"/> <source>This archive contains invalid hashes. Some files may be broken.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3212"/> + <location filename="mainwindow.cpp" line="3219"/> <source>Nexus ID for this Mod is unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3444"/> + <location filename="mainwindow.cpp" line="3451"/> <source>Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3445"/> + <location filename="mainwindow.cpp" line="3452"/> <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"/> + <location filename="mainwindow.cpp" line="3472"/> <source>Sorry</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3466"/> + <location filename="mainwindow.cpp" line="3473"/> <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"/> + <location filename="mainwindow.cpp" line="3525"/> <source>Really enable all visible mods?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3526"/> + <location filename="mainwindow.cpp" line="3533"/> <source>Really disable all visible mods?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3534"/> + <location filename="mainwindow.cpp" line="3541"/> <source>Choose what to export</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3536"/> + <location filename="mainwindow.cpp" line="3543"/> <source>Everything</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3536"/> + <location filename="mainwindow.cpp" line="3543"/> <source>All installed mods are included in the list</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3537"/> + <location filename="mainwindow.cpp" line="3544"/> <source>Active Mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3537"/> + <location filename="mainwindow.cpp" line="3544"/> <source>Only active (checked) mods from your current profile are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3538"/> + <location filename="mainwindow.cpp" line="3545"/> <source>Visible</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3538"/> + <location filename="mainwindow.cpp" line="3545"/> <source>All mods visible in the mod list are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3581"/> + <location filename="mainwindow.cpp" line="3588"/> <source>export failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3605"/> + <location filename="mainwindow.cpp" line="3612"/> <source>Install Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3607"/> + <location filename="mainwindow.cpp" line="3614"/> <source>Enable all visible</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3608"/> + <location filename="mainwindow.cpp" line="3615"/> <source>Disable all visible</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3610"/> + <location filename="mainwindow.cpp" line="3617"/> <source>Check all for update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3614"/> + <location filename="mainwindow.cpp" line="3621"/> <source>Export to csv...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3622"/> + <location filename="mainwindow.cpp" line="3629"/> <source>Sync to Mods...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3626"/> + <location filename="mainwindow.cpp" line="3633"/> <source>Restore Backup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3627"/> + <location filename="mainwindow.cpp" line="3634"/> <source>Remove Backup...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3630"/> + <location filename="mainwindow.cpp" line="3637"/> <source>Set Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3635"/> + <location filename="mainwindow.cpp" line="3642"/> <source>Primary Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3642"/> + <location filename="mainwindow.cpp" line="3649"/> <source>Change versioning scheme</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3646"/> + <location filename="mainwindow.cpp" line="3653"/> <source>Un-ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3648"/> + <location filename="mainwindow.cpp" line="3655"/> <source>Ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3653"/> + <location filename="mainwindow.cpp" line="3660"/> <source>Rename Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3654"/> + <location filename="mainwindow.cpp" line="3661"/> <source>Remove Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3655"/> + <location filename="mainwindow.cpp" line="3662"/> <source>Reinstall Mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3658"/> + <location filename="mainwindow.cpp" line="3665"/> <source>Un-Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3661"/> - <location filename="mainwindow.cpp" line="3665"/> + <location filename="mainwindow.cpp" line="3668"/> + <location filename="mainwindow.cpp" line="3672"/> <source>Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3662"/> + <location filename="mainwindow.cpp" line="3669"/> <source>Won't endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3668"/> + <location filename="mainwindow.cpp" line="3675"/> <source>Endorsement state unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3675"/> + <location filename="mainwindow.cpp" line="3682"/> <source>Ignore missing data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3678"/> + <location filename="mainwindow.cpp" line="3685"/> <source>Visit on Nexus</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3679"/> + <location filename="mainwindow.cpp" line="3686"/> <source>Open in explorer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3682"/> + <location filename="mainwindow.cpp" line="3689"/> <source>Information...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3688"/> - <location filename="mainwindow.cpp" line="4842"/> + <location filename="mainwindow.cpp" line="3695"/> + <location filename="mainwindow.cpp" line="4850"/> <source>Exception: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3690"/> - <location filename="mainwindow.cpp" line="4844"/> + <location filename="mainwindow.cpp" line="3697"/> + <location filename="mainwindow.cpp" line="4852"/> <source>Unknown exception</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3712"/> + <location filename="mainwindow.cpp" line="3719"/> <source><Multiple></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3824"/> + <location filename="mainwindow.cpp" line="3831"/> <source>Fix Mods...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3848"/> - <location filename="mainwindow.cpp" line="3879"/> + <location filename="mainwindow.cpp" line="3855"/> + <location filename="mainwindow.cpp" line="3886"/> <source>failed to remove %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3863"/> - <location filename="mainwindow.cpp" line="3894"/> + <location filename="mainwindow.cpp" line="3870"/> + <location filename="mainwindow.cpp" line="3901"/> <source>failed to create %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3916"/> + <location filename="mainwindow.cpp" line="3924"/> <source>Can't change download directory while downloads are in progress!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3987"/> + <location filename="mainwindow.cpp" line="3995"/> <source>Download failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4131"/> + <location filename="mainwindow.cpp" line="4139"/> <source>failed to write to file %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4137"/> + <location filename="mainwindow.cpp" line="4145"/> <source>%1 written</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4176"/> + <location filename="mainwindow.cpp" line="4184"/> <source>Select binary</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4176"/> + <location filename="mainwindow.cpp" line="4184"/> <source>Binary</source> <translation type="unfinished">İkili değer</translation> </message> <message> - <location filename="mainwindow.cpp" line="4202"/> + <location filename="mainwindow.cpp" line="4210"/> <source>Enter Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4203"/> + <location filename="mainwindow.cpp" line="4211"/> <source>Please enter a name for the executable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4214"/> + <location filename="mainwindow.cpp" line="4222"/> <source>Not an executable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4214"/> + <location filename="mainwindow.cpp" line="4222"/> <source>This is not a recognized executable.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4239"/> - <location filename="mainwindow.cpp" line="4264"/> + <location filename="mainwindow.cpp" line="4247"/> + <location filename="mainwindow.cpp" line="4272"/> <source>Replace file?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4239"/> + <location filename="mainwindow.cpp" line="4247"/> <source>There already is a hidden version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4242"/> - <location filename="mainwindow.cpp" line="4267"/> + <location filename="mainwindow.cpp" line="4250"/> + <location filename="mainwindow.cpp" line="4275"/> <source>File operation failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4242"/> - <location filename="mainwindow.cpp" line="4267"/> + <location filename="mainwindow.cpp" line="4250"/> + <location filename="mainwindow.cpp" line="4275"/> <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4264"/> + <location filename="mainwindow.cpp" line="4272"/> <source>There already is a visible version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4310"/> + <location filename="mainwindow.cpp" line="4318"/> <source>Update available</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4347"/> + <location filename="mainwindow.cpp" line="4355"/> <source>Open/Execute</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4348"/> + <location filename="mainwindow.cpp" line="4356"/> <source>Add as Executable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4352"/> + <location filename="mainwindow.cpp" line="4360"/> <source>Un-Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4354"/> + <location filename="mainwindow.cpp" line="4362"/> <source>Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4359"/> + <location filename="mainwindow.cpp" line="4367"/> <source>Write To File...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4390"/> + <location filename="mainwindow.cpp" line="4398"/> <source>Do you want to endorse Mod Organizer on %1 now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4803"/> + <location filename="mainwindow.cpp" line="4811"/> <source>Remove</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4833"/> + <location filename="mainwindow.cpp" line="4841"/> <source>Unlock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4836"/> + <location filename="mainwindow.cpp" line="4844"/> <source>Lock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4526"/> + <location filename="mainwindow.cpp" line="4534"/> <source>Request to Nexus failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4533"/> - <location filename="mainwindow.cpp" line="4550"/> + <location filename="mainwindow.cpp" line="4541"/> + <location filename="mainwindow.cpp" line="4558"/> <source>login successful</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4559"/> + <location filename="mainwindow.cpp" line="4567"/> <source>login failed: %1. Trying to download anyway</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4565"/> + <location filename="mainwindow.cpp" line="4573"/> <source>login failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4574"/> + <location filename="mainwindow.cpp" line="4582"/> <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="4607"/> + <location filename="mainwindow.cpp" line="4615"/> <source>Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4607"/> + <location filename="mainwindow.cpp" line="4615"/> <source>failed to extract %1 (errorcode %2)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4702"/> + <location filename="mainwindow.cpp" line="4710"/> <source>Extract...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4758"/> + <location filename="mainwindow.cpp" line="4766"/> <source>Edit Categories...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4813"/> + <location filename="mainwindow.cpp" line="4821"/> <source>Enable all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4814"/> + <location filename="mainwindow.cpp" line="4822"/> <source>Disable all</source> <translation type="unfinished"></translation> </message> @@ -4084,18 +4079,18 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="770"/> + <location filename="mainwindow.cpp" line="771"/> <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="1538"/> - <location filename="mainwindow.cpp" line="4024"/> + <location filename="mainwindow.cpp" line="1545"/> + <location filename="mainwindow.cpp" line="4032"/> <source><Manage...></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1556"/> + <location filename="mainwindow.cpp" line="1563"/> <source>failed to parse profile %1: %2</source> <translation type="unfinished"></translation> </message> diff --git a/src/organizer_zh_CN.ts b/src/organizer_zh_CN.ts index 5ef313be..74918970 100644 --- a/src/organizer_zh_CN.ts +++ b/src/organizer_zh_CN.ts @@ -269,11 +269,6 @@ p, li { white-space: pre-wrap; } <translation>占位符</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"/> @@ -1554,8 +1549,8 @@ BSAs checked here are loaded in such a way that your installation order is obeye </message> <message> <location filename="mainwindow.ui" line="843"/> - <location filename="mainwindow.cpp" line="3612"/> - <location filename="mainwindow.cpp" line="4360"/> + <location filename="mainwindow.cpp" line="3619"/> + <location filename="mainwindow.cpp" line="4368"/> <source>Refresh</source> <translation type="unfinished">刷新</translation> </message> @@ -1735,7 +1730,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="mainwindow.ui" line="1209"/> - <location filename="mainwindow.cpp" line="4308"/> + <location filename="mainwindow.cpp" line="4316"/> <source>Update</source> <translation type="unfinished">更新</translation> </message> @@ -1746,7 +1741,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="mainwindow.ui" line="1224"/> - <location filename="mainwindow.cpp" line="496"/> + <location filename="mainwindow.cpp" line="497"/> <source>No Problems</source> <translation type="unfinished">没有问题</translation> </message> @@ -1779,7 +1774,7 @@ Right now this has very limited functionality</source> </message> <message> <location filename="mainwindow.ui" line="1257"/> - <location filename="mainwindow.cpp" line="4389"/> + <location filename="mainwindow.cpp" line="4397"/> <source>Endorse Mod Organizer</source> <translation type="unfinished"></translation> </message> @@ -1799,17 +1794,17 @@ Right now this has very limited functionality</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="492"/> + <location filename="mainwindow.cpp" line="493"/> <source>Problems</source> <translation type="unfinished">问题</translation> </message> <message> - <location filename="mainwindow.cpp" line="493"/> + <location filename="mainwindow.cpp" line="494"/> <source>There are potential problems with your setup</source> <translation type="unfinished">您的安装中存在潜在的问题</translation> </message> <message> - <location filename="mainwindow.cpp" line="497"/> + <location filename="mainwindow.cpp" line="498"/> <source>Everything seems to be in order</source> <translation type="unfinished">一切井然有序</translation> </message> @@ -1826,22 +1821,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="549"/> + <location filename="mainwindow.cpp" line="550"/> <source>Help on UI</source> <translation type="unfinished">界面帮助</translation> </message> <message> - <location filename="mainwindow.cpp" line="553"/> + <location filename="mainwindow.cpp" line="554"/> <source>Documentation Wiki</source> <translation type="unfinished">说明文档 (维基)</translation> </message> <message> - <location filename="mainwindow.cpp" line="557"/> + <location filename="mainwindow.cpp" line="558"/> <source>Report Issue</source> <translation type="unfinished">报告问题</translation> </message> <message> - <location filename="mainwindow.cpp" line="561"/> + <location filename="mainwindow.cpp" line="562"/> <source>Tutorials</source> <translation type="unfinished"></translation> </message> @@ -1850,431 +1845,431 @@ Right now this has very limited functionality</source> <translation type="obsolete">无法保存加载顺序</translation> </message> <message> - <location filename="mainwindow.cpp" line="688"/> + <location filename="mainwindow.cpp" line="689"/> <source>failed to save load order: %1</source> <translation type="unfinished">无法保存加载顺序: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="618"/> + <location filename="mainwindow.cpp" line="619"/> <source>failed to save archives order, do you have write access to "%1"?</source> <translation type="unfinished">无法保存档案顺序,您确定您有权限更改 "%1"?</translation> </message> <message> - <location filename="mainwindow.cpp" line="705"/> + <location filename="mainwindow.cpp" line="706"/> <source>Name</source> <translation type="unfinished">名称</translation> </message> <message> - <location filename="mainwindow.cpp" line="706"/> + <location filename="mainwindow.cpp" line="707"/> <source>Please enter a name for the new profile</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="714"/> + <location filename="mainwindow.cpp" line="715"/> <source>failed to create profile: %1</source> <translation type="unfinished">无法创建配置文件: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="757"/> + <location filename="mainwindow.cpp" line="758"/> <source>Show tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="758"/> + <location filename="mainwindow.cpp" line="759"/> <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="787"/> + <location filename="mainwindow.cpp" line="788"/> <source>Downloads in progress</source> <translation type="unfinished">正在下载</translation> </message> <message> - <location filename="mainwindow.cpp" line="788"/> + <location filename="mainwindow.cpp" line="789"/> <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="834"/> + <location filename="mainwindow.cpp" line="835"/> <source>failed to read savegame: %1</source> <translation type="unfinished">无法读取存档: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="958"/> + <location filename="mainwindow.cpp" line="959"/> <source>Plugin "%1" failed: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1064"/> + <location filename="mainwindow.cpp" line="1065"/> <source>Plugin error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1065"/> + <location filename="mainwindow.cpp" line="1066"/> <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"/> + <location filename="mainwindow.cpp" line="1250"/> <source>Failed to start "%1"</source> <translation type="unfinished">无法启动 "%1"</translation> </message> <message> - <location filename="mainwindow.cpp" line="1251"/> + <location filename="mainwindow.cpp" line="1252"/> <source>Waiting</source> <translation type="unfinished">稍等</translation> </message> <message> - <location filename="mainwindow.cpp" line="1251"/> + <location filename="mainwindow.cpp" line="1252"/> <source>Please press OK once you're logged into steam.</source> <translation type="unfinished">当您登录 Steam 时请点击确定。</translation> </message> <message> - <location filename="mainwindow.cpp" line="1263"/> + <location filename="mainwindow.cpp" line="1264"/> <source>"%1" not found</source> <translation type="unfinished">"%1" 未找到</translation> </message> <message> - <location filename="mainwindow.cpp" line="1277"/> + <location filename="mainwindow.cpp" line="1278"/> <source>Start Steam?</source> <translation type="unfinished">启动 Steam?</translation> </message> <message> - <location filename="mainwindow.cpp" line="1278"/> + <location filename="mainwindow.cpp" line="1279"/> <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="1492"/> + <location filename="mainwindow.cpp" line="1499"/> <source>Also in: <br></source> <translation type="unfinished">也在: <br></translation> </message> <message> - <location filename="mainwindow.cpp" line="1503"/> + <location filename="mainwindow.cpp" line="1510"/> <source>No conflict</source> <translation type="unfinished">没有冲突</translation> </message> <message> - <location filename="mainwindow.cpp" line="1620"/> + <location filename="mainwindow.cpp" line="1627"/> <source><Edit...></source> <translation type="unfinished"><编辑...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1704"/> + <location filename="mainwindow.cpp" line="1711"/> <source>Failed to refresh list of esps: %s</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1844"/> + <location filename="mainwindow.cpp" line="1851"/> <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="1851"/> + <location filename="mainwindow.cpp" line="1858"/> <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="1906"/> + <location filename="mainwindow.cpp" line="1913"/> <source>Activating Network Proxy</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2037"/> - <location filename="mainwindow.cpp" line="4056"/> + <location filename="mainwindow.cpp" line="2044"/> + <location filename="mainwindow.cpp" line="4064"/> <source>Installation successful</source> <translation type="unfinished">安装成功</translation> </message> <message> - <location filename="mainwindow.cpp" line="2048"/> - <location filename="mainwindow.cpp" line="4069"/> + <location filename="mainwindow.cpp" line="2055"/> + <location filename="mainwindow.cpp" line="4077"/> <source>Configure Mod</source> <translation type="unfinished">配置 Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2049"/> - <location filename="mainwindow.cpp" line="4070"/> + <location filename="mainwindow.cpp" line="2056"/> + <location filename="mainwindow.cpp" line="4078"/> <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="2055"/> - <location filename="mainwindow.cpp" line="4076"/> + <location filename="mainwindow.cpp" line="2062"/> + <location filename="mainwindow.cpp" line="4084"/> <source>mod "%1" not found</source> <translation type="unfinished">Mod "%1" 未找到</translation> </message> <message> - <location filename="mainwindow.cpp" line="2058"/> - <location filename="mainwindow.cpp" line="4082"/> + <location filename="mainwindow.cpp" line="2065"/> + <location filename="mainwindow.cpp" line="4090"/> <source>Installation cancelled</source> <translation type="unfinished">安装已取消</translation> </message> <message> - <location filename="mainwindow.cpp" line="2058"/> - <location filename="mainwindow.cpp" line="4082"/> + <location filename="mainwindow.cpp" line="2065"/> + <location filename="mainwindow.cpp" line="4090"/> <source>The mod was not installed completely.</source> <translation type="unfinished">Mod 没有完全安装。</translation> </message> <message> - <location filename="mainwindow.cpp" line="2207"/> + <location filename="mainwindow.cpp" line="2214"/> <source>Some plugins could not be loaded</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2210"/> + <location filename="mainwindow.cpp" line="2217"/> <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"/> + <location filename="mainwindow.cpp" line="2220"/> + <location filename="mainwindow.cpp" line="2241"/> <source>Description missing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2256"/> + <location filename="mainwindow.cpp" line="2263"/> <source>Choose Mod</source> <translation type="unfinished">选择 Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2257"/> + <location filename="mainwindow.cpp" line="2264"/> <source>Mod Archive</source> <translation type="unfinished">Mod 压缩包</translation> </message> <message> - <location filename="mainwindow.cpp" line="2410"/> + <location filename="mainwindow.cpp" line="2417"/> <source>Start Tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2411"/> + <location filename="mainwindow.cpp" line="2418"/> <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="2566"/> - <location filename="mainwindow.cpp" line="3984"/> + <location filename="mainwindow.cpp" line="2573"/> + <location filename="mainwindow.cpp" line="3992"/> <source>Download started</source> <translation type="unfinished">开始下载</translation> </message> <message> - <location filename="mainwindow.cpp" line="2597"/> + <location filename="mainwindow.cpp" line="2604"/> <source>failed to update mod list: %1</source> <translation type="unfinished">无法更新 Mod 列表: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2624"/> + <location filename="mainwindow.cpp" line="2631"/> <source>failed to spawn notepad.exe: %1</source> <translation type="unfinished">无法生成 notepad.exe: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2665"/> + <location filename="mainwindow.cpp" line="2672"/> <source>failed to open %1</source> <translation type="unfinished">无法打开 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2743"/> + <location filename="mainwindow.cpp" line="2750"/> <source>failed to change origin name: %1</source> <translation type="unfinished">无法更改原始文件名: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2906"/> + <location filename="mainwindow.cpp" line="2913"/> <source>Multiple esps activated, please check that they don't conflict.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3251"/> - <location filename="mainwindow.cpp" line="3623"/> + <location filename="mainwindow.cpp" line="3258"/> + <location filename="mainwindow.cpp" line="3630"/> <source>Create Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3252"/> + <location filename="mainwindow.cpp" line="3259"/> <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="3261"/> + <location filename="mainwindow.cpp" line="3268"/> <source>A mod with this name already exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3444"/> + <location filename="mainwindow.cpp" line="3451"/> <source>Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3445"/> + <location filename="mainwindow.cpp" line="3452"/> <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"/> + <location filename="mainwindow.cpp" line="3472"/> <source>Sorry</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3466"/> + <location filename="mainwindow.cpp" line="3473"/> <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"/> + <location filename="mainwindow.cpp" line="3717"/> <source><All></source> <translation type="unfinished"><全部></translation> </message> <message> - <location filename="mainwindow.cpp" line="2818"/> + <location filename="mainwindow.cpp" line="2825"/> <source><Checked></source> <translation type="unfinished"><已勾选></translation> </message> <message> - <location filename="mainwindow.cpp" line="960"/> + <location filename="mainwindow.cpp" line="961"/> <source>Plugin "%1" failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1026"/> + <location filename="mainwindow.cpp" line="1027"/> <source>failed to init plugin %1: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2222"/> + <location filename="mainwindow.cpp" line="2229"/> <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"/> + <location filename="mainwindow.cpp" line="2237"/> <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"/> + <location filename="mainwindow.cpp" line="2776"/> <source>Failed to move "%1" from mod "%2" to "%3": %4</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2819"/> + <location filename="mainwindow.cpp" line="2826"/> <source><Unchecked></source> <translation type="unfinished"><未勾选></translation> </message> <message> - <location filename="mainwindow.cpp" line="2820"/> + <location filename="mainwindow.cpp" line="2827"/> <source><Update></source> <translation type="unfinished"><有更新></translation> </message> <message> - <location filename="mainwindow.cpp" line="2821"/> + <location filename="mainwindow.cpp" line="2828"/> <source><No category></source> <translation type="unfinished"><无类别></translation> </message> <message> - <location filename="mainwindow.cpp" line="2822"/> + <location filename="mainwindow.cpp" line="2829"/> <source><Conflicted></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2823"/> + <location filename="mainwindow.cpp" line="2830"/> <source><Not Endorsed></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2856"/> + <location filename="mainwindow.cpp" line="2863"/> <source>failed to rename mod: %1</source> <translation type="unfinished">无法重命名 Mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2869"/> + <location filename="mainwindow.cpp" line="2876"/> <source>Overwrite?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2870"/> + <location filename="mainwindow.cpp" line="2877"/> <source>This will replace the existing mod "%1". Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2873"/> + <location filename="mainwindow.cpp" line="2880"/> <source>failed to remove mod "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2877"/> - <location filename="mainwindow.cpp" line="4254"/> - <location filename="mainwindow.cpp" line="4278"/> + <location filename="mainwindow.cpp" line="2884"/> + <location filename="mainwindow.cpp" line="4262"/> + <location filename="mainwindow.cpp" line="4286"/> <source>failed to rename "%1" to "%2"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2932"/> - <location filename="mainwindow.cpp" line="3518"/> - <location filename="mainwindow.cpp" line="3526"/> + <location filename="mainwindow.cpp" line="2939"/> + <location filename="mainwindow.cpp" line="3525"/> + <location filename="mainwindow.cpp" line="3533"/> <source>Confirm</source> <translation type="unfinished">确认</translation> </message> <message> - <location filename="mainwindow.cpp" line="2933"/> + <location filename="mainwindow.cpp" line="2940"/> <source>Remove the following mods?<br><ul>%1</ul></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2944"/> + <location filename="mainwindow.cpp" line="2951"/> <source>failed to remove mod: %1</source> <translation type="unfinished">无法移动 Mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2979"/> - <location filename="mainwindow.cpp" line="2982"/> + <location filename="mainwindow.cpp" line="2986"/> + <location filename="mainwindow.cpp" line="2989"/> <source>Failed</source> <translation type="unfinished">失败</translation> </message> <message> - <location filename="mainwindow.cpp" line="2979"/> + <location filename="mainwindow.cpp" line="2986"/> <source>Installation file no longer exists</source> <translation type="unfinished">安装文件不复存在</translation> </message> <message> - <location filename="mainwindow.cpp" line="2983"/> + <location filename="mainwindow.cpp" line="2990"/> <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="2998"/> - <location filename="mainwindow.cpp" line="3025"/> + <location filename="mainwindow.cpp" line="3005"/> + <location filename="mainwindow.cpp" line="3032"/> <source>You need to be logged in with Nexus to endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3154"/> - <location filename="mainwindow.cpp" line="4638"/> + <location filename="mainwindow.cpp" line="3161"/> + <location filename="mainwindow.cpp" line="4646"/> <source>Extract BSA</source> <translation type="unfinished">解压 BSA</translation> </message> <message> - <location filename="mainwindow.cpp" line="3155"/> + <location filename="mainwindow.cpp" line="3162"/> <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="3165"/> - <location filename="mainwindow.cpp" line="4595"/> - <location filename="mainwindow.cpp" line="4646"/> + <location filename="mainwindow.cpp" line="3172"/> + <location filename="mainwindow.cpp" line="4603"/> + <location filename="mainwindow.cpp" line="4654"/> <source>failed to read %1: %2</source> <translation type="unfinished">无法读取 %1: %2</translation> </message> <message> - <location filename="mainwindow.cpp" line="3178"/> - <location filename="mainwindow.cpp" line="4657"/> + <location filename="mainwindow.cpp" line="3185"/> + <location filename="mainwindow.cpp" line="4665"/> <source>This archive contains invalid hashes. Some files may be broken.</source> <translation type="unfinished">压缩包 Hash 值错误。部分文件可能已经损坏。</translation> </message> <message> - <location filename="mainwindow.cpp" line="3212"/> + <location filename="mainwindow.cpp" line="3219"/> <source>Nexus ID for this Mod is unknown</source> <translation type="unfinished">此 Mod 的N网 ID 未知</translation> </message> @@ -2287,391 +2282,391 @@ This function will guess the versioning scheme under the assumption that the ins <translation type="obsolete">选择优先级</translation> </message> <message> - <location filename="mainwindow.cpp" line="3518"/> + <location filename="mainwindow.cpp" line="3525"/> <source>Really enable all visible mods?</source> <translation type="unfinished">确定要启用全部可见的 Mod 吗?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3526"/> + <location filename="mainwindow.cpp" line="3533"/> <source>Really disable all visible mods?</source> <translation type="unfinished">确定要禁用全部可见的 Mod 吗?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3534"/> + <location filename="mainwindow.cpp" line="3541"/> <source>Choose what to export</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3536"/> + <location filename="mainwindow.cpp" line="3543"/> <source>Everything</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3536"/> + <location filename="mainwindow.cpp" line="3543"/> <source>All installed mods are included in the list</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3537"/> + <location filename="mainwindow.cpp" line="3544"/> <source>Active Mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3537"/> + <location filename="mainwindow.cpp" line="3544"/> <source>Only active (checked) mods from your current profile are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3538"/> + <location filename="mainwindow.cpp" line="3545"/> <source>Visible</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3538"/> + <location filename="mainwindow.cpp" line="3545"/> <source>All mods visible in the mod list are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3581"/> + <location filename="mainwindow.cpp" line="3588"/> <source>export failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3605"/> + <location filename="mainwindow.cpp" line="3612"/> <source>Install Mod...</source> <translation type="unfinished">安装 Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3607"/> + <location filename="mainwindow.cpp" line="3614"/> <source>Enable all visible</source> <translation type="unfinished">启用所有可见项目</translation> </message> <message> - <location filename="mainwindow.cpp" line="3608"/> + <location filename="mainwindow.cpp" line="3615"/> <source>Disable all visible</source> <translation type="unfinished">禁用所有可见项目</translation> </message> <message> - <location filename="mainwindow.cpp" line="3610"/> + <location filename="mainwindow.cpp" line="3617"/> <source>Check all for update</source> <translation type="unfinished">检查更新</translation> </message> <message> - <location filename="mainwindow.cpp" line="3614"/> + <location filename="mainwindow.cpp" line="3621"/> <source>Export to csv...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3622"/> + <location filename="mainwindow.cpp" line="3629"/> <source>Sync to Mods...</source> <translation type="unfinished">同步到 Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3626"/> + <location filename="mainwindow.cpp" line="3633"/> <source>Restore Backup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3627"/> + <location filename="mainwindow.cpp" line="3634"/> <source>Remove Backup...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3630"/> + <location filename="mainwindow.cpp" line="3637"/> <source>Set Category</source> <translation type="unfinished">设置类别</translation> </message> <message> - <location filename="mainwindow.cpp" line="3635"/> + <location filename="mainwindow.cpp" line="3642"/> <source>Primary Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3642"/> + <location filename="mainwindow.cpp" line="3649"/> <source>Change versioning scheme</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3646"/> + <location filename="mainwindow.cpp" line="3653"/> <source>Un-ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3648"/> + <location filename="mainwindow.cpp" line="3655"/> <source>Ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3653"/> + <location filename="mainwindow.cpp" line="3660"/> <source>Rename Mod...</source> <translation type="unfinished">重命名...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3654"/> + <location filename="mainwindow.cpp" line="3661"/> <source>Remove Mod...</source> <translation type="unfinished">移除 Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3655"/> + <location filename="mainwindow.cpp" line="3662"/> <source>Reinstall Mod</source> <translation type="unfinished">重新安装 Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="3658"/> + <location filename="mainwindow.cpp" line="3665"/> <source>Un-Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3661"/> - <location filename="mainwindow.cpp" line="3665"/> + <location filename="mainwindow.cpp" line="3668"/> + <location filename="mainwindow.cpp" line="3672"/> <source>Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3662"/> + <location filename="mainwindow.cpp" line="3669"/> <source>Won't endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3668"/> + <location filename="mainwindow.cpp" line="3675"/> <source>Endorsement state unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3675"/> + <location filename="mainwindow.cpp" line="3682"/> <source>Ignore missing data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3678"/> + <location filename="mainwindow.cpp" line="3685"/> <source>Visit on Nexus</source> <translation type="unfinished">在N网上浏览</translation> </message> <message> - <location filename="mainwindow.cpp" line="3679"/> + <location filename="mainwindow.cpp" line="3686"/> <source>Open in explorer</source> <translation type="unfinished">在资源管理器中打开</translation> </message> <message> - <location filename="mainwindow.cpp" line="3682"/> + <location filename="mainwindow.cpp" line="3689"/> <source>Information...</source> <translation type="unfinished">信息...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3688"/> - <location filename="mainwindow.cpp" line="4842"/> + <location filename="mainwindow.cpp" line="3695"/> + <location filename="mainwindow.cpp" line="4850"/> <source>Exception: </source> <translation type="unfinished">例外: </translation> </message> <message> - <location filename="mainwindow.cpp" line="3690"/> - <location filename="mainwindow.cpp" line="4844"/> + <location filename="mainwindow.cpp" line="3697"/> + <location filename="mainwindow.cpp" line="4852"/> <source>Unknown exception</source> <translation type="unfinished">未知的例外</translation> </message> <message> - <location filename="mainwindow.cpp" line="3712"/> + <location filename="mainwindow.cpp" line="3719"/> <source><Multiple></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3824"/> + <location filename="mainwindow.cpp" line="3831"/> <source>Fix Mods...</source> <translation type="unfinished">修复 Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3848"/> - <location filename="mainwindow.cpp" line="3879"/> + <location filename="mainwindow.cpp" line="3855"/> + <location filename="mainwindow.cpp" line="3886"/> <source>failed to remove %1</source> <translation type="unfinished">无法删除 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3863"/> - <location filename="mainwindow.cpp" line="3894"/> + <location filename="mainwindow.cpp" line="3870"/> + <location filename="mainwindow.cpp" line="3901"/> <source>failed to create %1</source> <translation type="unfinished">无法创建 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3916"/> + <location filename="mainwindow.cpp" line="3924"/> <source>Can't change download directory while downloads are in progress!</source> <translation type="unfinished">下载文件时不能修改下载目录!</translation> </message> <message> - <location filename="mainwindow.cpp" line="3987"/> + <location filename="mainwindow.cpp" line="3995"/> <source>Download failed</source> <translation type="unfinished">下载失败</translation> </message> <message> - <location filename="mainwindow.cpp" line="4131"/> + <location filename="mainwindow.cpp" line="4139"/> <source>failed to write to file %1</source> <translation type="unfinished">无法写入文件 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4137"/> + <location filename="mainwindow.cpp" line="4145"/> <source>%1 written</source> <translation type="unfinished">已写入 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4176"/> + <location filename="mainwindow.cpp" line="4184"/> <source>Select binary</source> <translation type="unfinished">选择可执行文件</translation> </message> <message> - <location filename="mainwindow.cpp" line="4176"/> + <location filename="mainwindow.cpp" line="4184"/> <source>Binary</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4202"/> + <location filename="mainwindow.cpp" line="4210"/> <source>Enter Name</source> <translation type="unfinished">输入名称</translation> </message> <message> - <location filename="mainwindow.cpp" line="4203"/> + <location filename="mainwindow.cpp" line="4211"/> <source>Please enter a name for the executable</source> <translation type="unfinished">请为程序输入一个名称</translation> </message> <message> - <location filename="mainwindow.cpp" line="4214"/> + <location filename="mainwindow.cpp" line="4222"/> <source>Not an executable</source> <translation type="unfinished">不是可执行程序</translation> </message> <message> - <location filename="mainwindow.cpp" line="4214"/> + <location filename="mainwindow.cpp" line="4222"/> <source>This is not a recognized executable.</source> <translation type="unfinished">无法识别的可执行文件</translation> </message> <message> - <location filename="mainwindow.cpp" line="4239"/> - <location filename="mainwindow.cpp" line="4264"/> + <location filename="mainwindow.cpp" line="4247"/> + <location filename="mainwindow.cpp" line="4272"/> <source>Replace file?</source> <translation type="unfinished">替换文件?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4239"/> + <location filename="mainwindow.cpp" line="4247"/> <source>There already is a hidden version of this file. Replace it?</source> <translation type="unfinished">已存在同名文件,但该文件被隐藏了。确定要覆盖吗?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4242"/> - <location filename="mainwindow.cpp" line="4267"/> + <location filename="mainwindow.cpp" line="4250"/> + <location filename="mainwindow.cpp" line="4275"/> <source>File operation failed</source> <translation type="unfinished">文件操作错误</translation> </message> <message> - <location filename="mainwindow.cpp" line="4242"/> - <location filename="mainwindow.cpp" line="4267"/> + <location filename="mainwindow.cpp" line="4250"/> + <location filename="mainwindow.cpp" line="4275"/> <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4264"/> + <location filename="mainwindow.cpp" line="4272"/> <source>There already is a visible version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4310"/> + <location filename="mainwindow.cpp" line="4318"/> <source>Update available</source> <translation type="unfinished">更新可用</translation> </message> <message> - <location filename="mainwindow.cpp" line="4347"/> + <location filename="mainwindow.cpp" line="4355"/> <source>Open/Execute</source> <translation type="unfinished">打开/执行</translation> </message> <message> - <location filename="mainwindow.cpp" line="4348"/> + <location filename="mainwindow.cpp" line="4356"/> <source>Add as Executable</source> <translation type="unfinished">添加为可执行文件</translation> </message> <message> - <location filename="mainwindow.cpp" line="4352"/> + <location filename="mainwindow.cpp" line="4360"/> <source>Un-Hide</source> <translation type="unfinished">取消隐藏</translation> </message> <message> - <location filename="mainwindow.cpp" line="4354"/> + <location filename="mainwindow.cpp" line="4362"/> <source>Hide</source> <translation type="unfinished">隐藏</translation> </message> <message> - <location filename="mainwindow.cpp" line="4359"/> + <location filename="mainwindow.cpp" line="4367"/> <source>Write To File...</source> <translation type="unfinished">写入文件...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4390"/> + <location filename="mainwindow.cpp" line="4398"/> <source>Do you want to endorse Mod Organizer on %1 now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4803"/> + <location filename="mainwindow.cpp" line="4811"/> <source>Remove</source> <translation type="unfinished">移除</translation> </message> <message> - <location filename="mainwindow.cpp" line="4833"/> + <location filename="mainwindow.cpp" line="4841"/> <source>Unlock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4836"/> + <location filename="mainwindow.cpp" line="4844"/> <source>Lock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4526"/> + <location filename="mainwindow.cpp" line="4534"/> <source>Request to Nexus failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4533"/> - <location filename="mainwindow.cpp" line="4550"/> + <location filename="mainwindow.cpp" line="4541"/> + <location filename="mainwindow.cpp" line="4558"/> <source>login successful</source> <translation type="unfinished">登录成功</translation> </message> <message> - <location filename="mainwindow.cpp" line="4559"/> + <location filename="mainwindow.cpp" line="4567"/> <source>login failed: %1. Trying to download anyway</source> <translation type="unfinished">登录失败: %1,请尝试使用别的方法下载</translation> </message> <message> - <location filename="mainwindow.cpp" line="4565"/> + <location filename="mainwindow.cpp" line="4573"/> <source>login failed: %1</source> <translation type="unfinished">无法登录: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4574"/> + <location filename="mainwindow.cpp" line="4582"/> <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="4607"/> + <location filename="mainwindow.cpp" line="4615"/> <source>Error</source> <translation type="unfinished">错误</translation> </message> <message> - <location filename="mainwindow.cpp" line="4607"/> + <location filename="mainwindow.cpp" line="4615"/> <source>failed to extract %1 (errorcode %2)</source> <translation type="unfinished">无法解压 %1 (错误代码 %2)</translation> </message> <message> - <location filename="mainwindow.cpp" line="4702"/> + <location filename="mainwindow.cpp" line="4710"/> <source>Extract...</source> <translation type="unfinished">解压...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4758"/> + <location filename="mainwindow.cpp" line="4766"/> <source>Edit Categories...</source> <translation type="unfinished">编辑类别...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4813"/> + <location filename="mainwindow.cpp" line="4821"/> <source>Enable all</source> <translation type="unfinished">全部启用</translation> </message> <message> - <location filename="mainwindow.cpp" line="4814"/> + <location filename="mainwindow.cpp" line="4822"/> <source>Disable all</source> <translation type="unfinished">全部禁用</translation> </message> @@ -5303,18 +5298,18 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="770"/> + <location filename="mainwindow.cpp" line="771"/> <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"/> + <location filename="mainwindow.cpp" line="1545"/> + <location filename="mainwindow.cpp" line="4032"/> <source><Manage...></source> <translation><管理...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1556"/> + <location filename="mainwindow.cpp" line="1563"/> <source>failed to parse profile %1: %2</source> <translation>无法解析配置文件 %1: %2</translation> </message> diff --git a/src/organizer_zh_TW.ts b/src/organizer_zh_TW.ts index 70b41e50..76e0d658 100644 --- a/src/organizer_zh_TW.ts +++ b/src/organizer_zh_TW.ts @@ -269,11 +269,6 @@ p, li { white-space: pre-wrap; } <translation>占位符</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"/> @@ -1554,8 +1549,8 @@ BSAs checked here are loaded in such a way that your installation order is obeye </message> <message> <location filename="mainwindow.ui" line="843"/> - <location filename="mainwindow.cpp" line="3612"/> - <location filename="mainwindow.cpp" line="4360"/> + <location filename="mainwindow.cpp" line="3619"/> + <location filename="mainwindow.cpp" line="4368"/> <source>Refresh</source> <translation type="unfinished">重新整理</translation> </message> @@ -1735,7 +1730,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="mainwindow.ui" line="1209"/> - <location filename="mainwindow.cpp" line="4308"/> + <location filename="mainwindow.cpp" line="4316"/> <source>Update</source> <translation type="unfinished">更新</translation> </message> @@ -1746,7 +1741,7 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="mainwindow.ui" line="1224"/> - <location filename="mainwindow.cpp" line="496"/> + <location filename="mainwindow.cpp" line="497"/> <source>No Problems</source> <translation type="unfinished">沒有問題</translation> </message> @@ -1779,7 +1774,7 @@ Right now this has very limited functionality</source> </message> <message> <location filename="mainwindow.ui" line="1257"/> - <location filename="mainwindow.cpp" line="4389"/> + <location filename="mainwindow.cpp" line="4397"/> <source>Endorse Mod Organizer</source> <translation type="unfinished"></translation> </message> @@ -1799,17 +1794,17 @@ Right now this has very limited functionality</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="492"/> + <location filename="mainwindow.cpp" line="493"/> <source>Problems</source> <translation type="unfinished">問題</translation> </message> <message> - <location filename="mainwindow.cpp" line="493"/> + <location filename="mainwindow.cpp" line="494"/> <source>There are potential problems with your setup</source> <translation type="unfinished">您的安裝中存在潛在的問題</translation> </message> <message> - <location filename="mainwindow.cpp" line="497"/> + <location filename="mainwindow.cpp" line="498"/> <source>Everything seems to be in order</source> <translation type="unfinished">一切井然有序</translation> </message> @@ -1826,22 +1821,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="549"/> + <location filename="mainwindow.cpp" line="550"/> <source>Help on UI</source> <translation type="unfinished">介面幫助</translation> </message> <message> - <location filename="mainwindow.cpp" line="553"/> + <location filename="mainwindow.cpp" line="554"/> <source>Documentation Wiki</source> <translation type="unfinished">說明文檔 (維基)</translation> </message> <message> - <location filename="mainwindow.cpp" line="557"/> + <location filename="mainwindow.cpp" line="558"/> <source>Report Issue</source> <translation type="unfinished">報告問題</translation> </message> <message> - <location filename="mainwindow.cpp" line="561"/> + <location filename="mainwindow.cpp" line="562"/> <source>Tutorials</source> <translation type="unfinished"></translation> </message> @@ -1850,431 +1845,431 @@ Right now this has very limited functionality</source> <translation type="obsolete">無法儲存加載順序</translation> </message> <message> - <location filename="mainwindow.cpp" line="688"/> + <location filename="mainwindow.cpp" line="689"/> <source>failed to save load order: %1</source> <translation type="unfinished">無法儲存加載順序: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="618"/> + <location filename="mainwindow.cpp" line="619"/> <source>failed to save archives order, do you have write access to "%1"?</source> <translation type="unfinished">無法儲存檔案順序,您確定您有權限更改 "%1"?</translation> </message> <message> - <location filename="mainwindow.cpp" line="705"/> + <location filename="mainwindow.cpp" line="706"/> <source>Name</source> <translation type="unfinished">名稱</translation> </message> <message> - <location filename="mainwindow.cpp" line="706"/> + <location filename="mainwindow.cpp" line="707"/> <source>Please enter a name for the new profile</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="714"/> + <location filename="mainwindow.cpp" line="715"/> <source>failed to create profile: %1</source> <translation type="unfinished">無法建立配置檔案: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="757"/> + <location filename="mainwindow.cpp" line="758"/> <source>Show tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="758"/> + <location filename="mainwindow.cpp" line="759"/> <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="787"/> + <location filename="mainwindow.cpp" line="788"/> <source>Downloads in progress</source> <translation type="unfinished">正在下載</translation> </message> <message> - <location filename="mainwindow.cpp" line="788"/> + <location filename="mainwindow.cpp" line="789"/> <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="834"/> + <location filename="mainwindow.cpp" line="835"/> <source>failed to read savegame: %1</source> <translation type="unfinished">無法讀取存檔: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="958"/> + <location filename="mainwindow.cpp" line="959"/> <source>Plugin "%1" failed: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1064"/> + <location filename="mainwindow.cpp" line="1065"/> <source>Plugin error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1065"/> + <location filename="mainwindow.cpp" line="1066"/> <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"/> + <location filename="mainwindow.cpp" line="1250"/> <source>Failed to start "%1"</source> <translation type="unfinished">無法啟動 "%1"</translation> </message> <message> - <location filename="mainwindow.cpp" line="1251"/> + <location filename="mainwindow.cpp" line="1252"/> <source>Waiting</source> <translation type="unfinished">稍等</translation> </message> <message> - <location filename="mainwindow.cpp" line="1251"/> + <location filename="mainwindow.cpp" line="1252"/> <source>Please press OK once you're logged into steam.</source> <translation type="unfinished">當您登入 Steam 時請點擊確定。</translation> </message> <message> - <location filename="mainwindow.cpp" line="1263"/> + <location filename="mainwindow.cpp" line="1264"/> <source>"%1" not found</source> <translation type="unfinished">"%1" 未找到</translation> </message> <message> - <location filename="mainwindow.cpp" line="1277"/> + <location filename="mainwindow.cpp" line="1278"/> <source>Start Steam?</source> <translation type="unfinished">啟動 Steam?</translation> </message> <message> - <location filename="mainwindow.cpp" line="1278"/> + <location filename="mainwindow.cpp" line="1279"/> <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="1492"/> + <location filename="mainwindow.cpp" line="1499"/> <source>Also in: <br></source> <translation type="unfinished">也在: <br></translation> </message> <message> - <location filename="mainwindow.cpp" line="1503"/> + <location filename="mainwindow.cpp" line="1510"/> <source>No conflict</source> <translation type="unfinished">沒有衝突</translation> </message> <message> - <location filename="mainwindow.cpp" line="1620"/> + <location filename="mainwindow.cpp" line="1627"/> <source><Edit...></source> <translation type="unfinished"><編輯...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1704"/> + <location filename="mainwindow.cpp" line="1711"/> <source>Failed to refresh list of esps: %s</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1844"/> + <location filename="mainwindow.cpp" line="1851"/> <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="1851"/> + <location filename="mainwindow.cpp" line="1858"/> <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="1906"/> + <location filename="mainwindow.cpp" line="1913"/> <source>Activating Network Proxy</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2037"/> - <location filename="mainwindow.cpp" line="4056"/> + <location filename="mainwindow.cpp" line="2044"/> + <location filename="mainwindow.cpp" line="4064"/> <source>Installation successful</source> <translation type="unfinished">安裝成功</translation> </message> <message> - <location filename="mainwindow.cpp" line="2048"/> - <location filename="mainwindow.cpp" line="4069"/> + <location filename="mainwindow.cpp" line="2055"/> + <location filename="mainwindow.cpp" line="4077"/> <source>Configure Mod</source> <translation type="unfinished">配置 Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2049"/> - <location filename="mainwindow.cpp" line="4070"/> + <location filename="mainwindow.cpp" line="2056"/> + <location filename="mainwindow.cpp" line="4078"/> <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="2055"/> - <location filename="mainwindow.cpp" line="4076"/> + <location filename="mainwindow.cpp" line="2062"/> + <location filename="mainwindow.cpp" line="4084"/> <source>mod "%1" not found</source> <translation type="unfinished">Mod "%1" 未找到</translation> </message> <message> - <location filename="mainwindow.cpp" line="2058"/> - <location filename="mainwindow.cpp" line="4082"/> + <location filename="mainwindow.cpp" line="2065"/> + <location filename="mainwindow.cpp" line="4090"/> <source>Installation cancelled</source> <translation type="unfinished">安裝已取消</translation> </message> <message> - <location filename="mainwindow.cpp" line="2058"/> - <location filename="mainwindow.cpp" line="4082"/> + <location filename="mainwindow.cpp" line="2065"/> + <location filename="mainwindow.cpp" line="4090"/> <source>The mod was not installed completely.</source> <translation type="unfinished">Mod 沒有完全安裝。</translation> </message> <message> - <location filename="mainwindow.cpp" line="2207"/> + <location filename="mainwindow.cpp" line="2214"/> <source>Some plugins could not be loaded</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2210"/> + <location filename="mainwindow.cpp" line="2217"/> <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"/> + <location filename="mainwindow.cpp" line="2220"/> + <location filename="mainwindow.cpp" line="2241"/> <source>Description missing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2256"/> + <location filename="mainwindow.cpp" line="2263"/> <source>Choose Mod</source> <translation type="unfinished">選擇 Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2257"/> + <location filename="mainwindow.cpp" line="2264"/> <source>Mod Archive</source> <translation type="unfinished">Mod 壓縮包</translation> </message> <message> - <location filename="mainwindow.cpp" line="2410"/> + <location filename="mainwindow.cpp" line="2417"/> <source>Start Tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2411"/> + <location filename="mainwindow.cpp" line="2418"/> <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="2566"/> - <location filename="mainwindow.cpp" line="3984"/> + <location filename="mainwindow.cpp" line="2573"/> + <location filename="mainwindow.cpp" line="3992"/> <source>Download started</source> <translation type="unfinished">開始下載</translation> </message> <message> - <location filename="mainwindow.cpp" line="2597"/> + <location filename="mainwindow.cpp" line="2604"/> <source>failed to update mod list: %1</source> <translation type="unfinished">無法更新 Mod 列表: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2624"/> + <location filename="mainwindow.cpp" line="2631"/> <source>failed to spawn notepad.exe: %1</source> <translation type="unfinished">無法生成 notepad.exe: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2665"/> + <location filename="mainwindow.cpp" line="2672"/> <source>failed to open %1</source> <translation type="unfinished">無法開啟 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2743"/> + <location filename="mainwindow.cpp" line="2750"/> <source>failed to change origin name: %1</source> <translation type="unfinished">無法更改原始檔案名: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2906"/> + <location filename="mainwindow.cpp" line="2913"/> <source>Multiple esps activated, please check that they don't conflict.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3251"/> - <location filename="mainwindow.cpp" line="3623"/> + <location filename="mainwindow.cpp" line="3258"/> + <location filename="mainwindow.cpp" line="3630"/> <source>Create Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3252"/> + <location filename="mainwindow.cpp" line="3259"/> <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="3261"/> + <location filename="mainwindow.cpp" line="3268"/> <source>A mod with this name already exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3444"/> + <location filename="mainwindow.cpp" line="3451"/> <source>Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3445"/> + <location filename="mainwindow.cpp" line="3452"/> <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"/> + <location filename="mainwindow.cpp" line="3472"/> <source>Sorry</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3466"/> + <location filename="mainwindow.cpp" line="3473"/> <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"/> + <location filename="mainwindow.cpp" line="3717"/> <source><All></source> <translation type="unfinished"><全部></translation> </message> <message> - <location filename="mainwindow.cpp" line="2818"/> + <location filename="mainwindow.cpp" line="2825"/> <source><Checked></source> <translation type="unfinished"><已勾選></translation> </message> <message> - <location filename="mainwindow.cpp" line="960"/> + <location filename="mainwindow.cpp" line="961"/> <source>Plugin "%1" failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1026"/> + <location filename="mainwindow.cpp" line="1027"/> <source>failed to init plugin %1: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2222"/> + <location filename="mainwindow.cpp" line="2229"/> <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"/> + <location filename="mainwindow.cpp" line="2237"/> <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"/> + <location filename="mainwindow.cpp" line="2776"/> <source>Failed to move "%1" from mod "%2" to "%3": %4</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2819"/> + <location filename="mainwindow.cpp" line="2826"/> <source><Unchecked></source> <translation type="unfinished"><未勾選></translation> </message> <message> - <location filename="mainwindow.cpp" line="2820"/> + <location filename="mainwindow.cpp" line="2827"/> <source><Update></source> <translation type="unfinished"><有更新></translation> </message> <message> - <location filename="mainwindow.cpp" line="2821"/> + <location filename="mainwindow.cpp" line="2828"/> <source><No category></source> <translation type="unfinished"><無類別></translation> </message> <message> - <location filename="mainwindow.cpp" line="2822"/> + <location filename="mainwindow.cpp" line="2829"/> <source><Conflicted></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2823"/> + <location filename="mainwindow.cpp" line="2830"/> <source><Not Endorsed></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2856"/> + <location filename="mainwindow.cpp" line="2863"/> <source>failed to rename mod: %1</source> <translation type="unfinished">無法重新命名 Mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2869"/> + <location filename="mainwindow.cpp" line="2876"/> <source>Overwrite?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2870"/> + <location filename="mainwindow.cpp" line="2877"/> <source>This will replace the existing mod "%1". Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2873"/> + <location filename="mainwindow.cpp" line="2880"/> <source>failed to remove mod "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2877"/> - <location filename="mainwindow.cpp" line="4254"/> - <location filename="mainwindow.cpp" line="4278"/> + <location filename="mainwindow.cpp" line="2884"/> + <location filename="mainwindow.cpp" line="4262"/> + <location filename="mainwindow.cpp" line="4286"/> <source>failed to rename "%1" to "%2"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2932"/> - <location filename="mainwindow.cpp" line="3518"/> - <location filename="mainwindow.cpp" line="3526"/> + <location filename="mainwindow.cpp" line="2939"/> + <location filename="mainwindow.cpp" line="3525"/> + <location filename="mainwindow.cpp" line="3533"/> <source>Confirm</source> <translation type="unfinished">確認</translation> </message> <message> - <location filename="mainwindow.cpp" line="2933"/> + <location filename="mainwindow.cpp" line="2940"/> <source>Remove the following mods?<br><ul>%1</ul></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2944"/> + <location filename="mainwindow.cpp" line="2951"/> <source>failed to remove mod: %1</source> <translation type="unfinished">無法移動 Mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2979"/> - <location filename="mainwindow.cpp" line="2982"/> + <location filename="mainwindow.cpp" line="2986"/> + <location filename="mainwindow.cpp" line="2989"/> <source>Failed</source> <translation type="unfinished">失敗</translation> </message> <message> - <location filename="mainwindow.cpp" line="2979"/> + <location filename="mainwindow.cpp" line="2986"/> <source>Installation file no longer exists</source> <translation type="unfinished">安裝檔案不複存在</translation> </message> <message> - <location filename="mainwindow.cpp" line="2983"/> + <location filename="mainwindow.cpp" line="2990"/> <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="2998"/> - <location filename="mainwindow.cpp" line="3025"/> + <location filename="mainwindow.cpp" line="3005"/> + <location filename="mainwindow.cpp" line="3032"/> <source>You need to be logged in with Nexus to endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3154"/> - <location filename="mainwindow.cpp" line="4638"/> + <location filename="mainwindow.cpp" line="3161"/> + <location filename="mainwindow.cpp" line="4646"/> <source>Extract BSA</source> <translation type="unfinished">解壓 BSA</translation> </message> <message> - <location filename="mainwindow.cpp" line="3155"/> + <location filename="mainwindow.cpp" line="3162"/> <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="3165"/> - <location filename="mainwindow.cpp" line="4595"/> - <location filename="mainwindow.cpp" line="4646"/> + <location filename="mainwindow.cpp" line="3172"/> + <location filename="mainwindow.cpp" line="4603"/> + <location filename="mainwindow.cpp" line="4654"/> <source>failed to read %1: %2</source> <translation type="unfinished">無法讀取 %1: %2</translation> </message> <message> - <location filename="mainwindow.cpp" line="3178"/> - <location filename="mainwindow.cpp" line="4657"/> + <location filename="mainwindow.cpp" line="3185"/> + <location filename="mainwindow.cpp" line="4665"/> <source>This archive contains invalid hashes. Some files may be broken.</source> <translation type="unfinished">壓縮包 Hash 值錯誤。部分檔案可能已經損壞。</translation> </message> <message> - <location filename="mainwindow.cpp" line="3212"/> + <location filename="mainwindow.cpp" line="3219"/> <source>Nexus ID for this Mod is unknown</source> <translation type="unfinished">此 Mod 的N網 ID 未知</translation> </message> @@ -2287,391 +2282,391 @@ This function will guess the versioning scheme under the assumption that the ins <translation type="obsolete">選擇優先級</translation> </message> <message> - <location filename="mainwindow.cpp" line="3518"/> + <location filename="mainwindow.cpp" line="3525"/> <source>Really enable all visible mods?</source> <translation type="unfinished">確定要啟用全部可見的 Mod 嗎?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3526"/> + <location filename="mainwindow.cpp" line="3533"/> <source>Really disable all visible mods?</source> <translation type="unfinished">確定要禁用全部可見的 Mod 嗎?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3534"/> + <location filename="mainwindow.cpp" line="3541"/> <source>Choose what to export</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3536"/> + <location filename="mainwindow.cpp" line="3543"/> <source>Everything</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3536"/> + <location filename="mainwindow.cpp" line="3543"/> <source>All installed mods are included in the list</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3537"/> + <location filename="mainwindow.cpp" line="3544"/> <source>Active Mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3537"/> + <location filename="mainwindow.cpp" line="3544"/> <source>Only active (checked) mods from your current profile are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3538"/> + <location filename="mainwindow.cpp" line="3545"/> <source>Visible</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3538"/> + <location filename="mainwindow.cpp" line="3545"/> <source>All mods visible in the mod list are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3581"/> + <location filename="mainwindow.cpp" line="3588"/> <source>export failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3605"/> + <location filename="mainwindow.cpp" line="3612"/> <source>Install Mod...</source> <translation type="unfinished">安裝 Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3607"/> + <location filename="mainwindow.cpp" line="3614"/> <source>Enable all visible</source> <translation type="unfinished">啟用所有可見項目</translation> </message> <message> - <location filename="mainwindow.cpp" line="3608"/> + <location filename="mainwindow.cpp" line="3615"/> <source>Disable all visible</source> <translation type="unfinished">禁用所有可見項目</translation> </message> <message> - <location filename="mainwindow.cpp" line="3610"/> + <location filename="mainwindow.cpp" line="3617"/> <source>Check all for update</source> <translation type="unfinished">檢查更新</translation> </message> <message> - <location filename="mainwindow.cpp" line="3614"/> + <location filename="mainwindow.cpp" line="3621"/> <source>Export to csv...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3622"/> + <location filename="mainwindow.cpp" line="3629"/> <source>Sync to Mods...</source> <translation type="unfinished">同步到 Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3626"/> + <location filename="mainwindow.cpp" line="3633"/> <source>Restore Backup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3627"/> + <location filename="mainwindow.cpp" line="3634"/> <source>Remove Backup...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3630"/> + <location filename="mainwindow.cpp" line="3637"/> <source>Set Category</source> <translation type="unfinished">設定類別</translation> </message> <message> - <location filename="mainwindow.cpp" line="3635"/> + <location filename="mainwindow.cpp" line="3642"/> <source>Primary Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3642"/> + <location filename="mainwindow.cpp" line="3649"/> <source>Change versioning scheme</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3646"/> + <location filename="mainwindow.cpp" line="3653"/> <source>Un-ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3648"/> + <location filename="mainwindow.cpp" line="3655"/> <source>Ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3653"/> + <location filename="mainwindow.cpp" line="3660"/> <source>Rename Mod...</source> <translation type="unfinished">重新命名...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3654"/> + <location filename="mainwindow.cpp" line="3661"/> <source>Remove Mod...</source> <translation type="unfinished">移除 Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3655"/> + <location filename="mainwindow.cpp" line="3662"/> <source>Reinstall Mod</source> <translation type="unfinished">重新安裝 Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="3658"/> + <location filename="mainwindow.cpp" line="3665"/> <source>Un-Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3661"/> - <location filename="mainwindow.cpp" line="3665"/> + <location filename="mainwindow.cpp" line="3668"/> + <location filename="mainwindow.cpp" line="3672"/> <source>Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3662"/> + <location filename="mainwindow.cpp" line="3669"/> <source>Won't endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3668"/> + <location filename="mainwindow.cpp" line="3675"/> <source>Endorsement state unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3675"/> + <location filename="mainwindow.cpp" line="3682"/> <source>Ignore missing data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3678"/> + <location filename="mainwindow.cpp" line="3685"/> <source>Visit on Nexus</source> <translation type="unfinished">在N網上流覽</translation> </message> <message> - <location filename="mainwindow.cpp" line="3679"/> + <location filename="mainwindow.cpp" line="3686"/> <source>Open in explorer</source> <translation type="unfinished">在檔案總管中開啟</translation> </message> <message> - <location filename="mainwindow.cpp" line="3682"/> + <location filename="mainwindow.cpp" line="3689"/> <source>Information...</source> <translation type="unfinished">訊息...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3688"/> - <location filename="mainwindow.cpp" line="4842"/> + <location filename="mainwindow.cpp" line="3695"/> + <location filename="mainwindow.cpp" line="4850"/> <source>Exception: </source> <translation type="unfinished">例外: </translation> </message> <message> - <location filename="mainwindow.cpp" line="3690"/> - <location filename="mainwindow.cpp" line="4844"/> + <location filename="mainwindow.cpp" line="3697"/> + <location filename="mainwindow.cpp" line="4852"/> <source>Unknown exception</source> <translation type="unfinished">未知的例外</translation> </message> <message> - <location filename="mainwindow.cpp" line="3712"/> + <location filename="mainwindow.cpp" line="3719"/> <source><Multiple></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3824"/> + <location filename="mainwindow.cpp" line="3831"/> <source>Fix Mods...</source> <translation type="unfinished">修復 Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3848"/> - <location filename="mainwindow.cpp" line="3879"/> + <location filename="mainwindow.cpp" line="3855"/> + <location filename="mainwindow.cpp" line="3886"/> <source>failed to remove %1</source> <translation type="unfinished">無法刪除 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3863"/> - <location filename="mainwindow.cpp" line="3894"/> + <location filename="mainwindow.cpp" line="3870"/> + <location filename="mainwindow.cpp" line="3901"/> <source>failed to create %1</source> <translation type="unfinished">無法建立 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3916"/> + <location filename="mainwindow.cpp" line="3924"/> <source>Can't change download directory while downloads are in progress!</source> <translation type="unfinished">下載檔案時不能修改下載目錄!</translation> </message> <message> - <location filename="mainwindow.cpp" line="3987"/> + <location filename="mainwindow.cpp" line="3995"/> <source>Download failed</source> <translation type="unfinished">下載失敗</translation> </message> <message> - <location filename="mainwindow.cpp" line="4131"/> + <location filename="mainwindow.cpp" line="4139"/> <source>failed to write to file %1</source> <translation type="unfinished">無法寫入檔案 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4137"/> + <location filename="mainwindow.cpp" line="4145"/> <source>%1 written</source> <translation type="unfinished">已寫入 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4176"/> + <location filename="mainwindow.cpp" line="4184"/> <source>Select binary</source> <translation type="unfinished">選擇可執行檔案</translation> </message> <message> - <location filename="mainwindow.cpp" line="4176"/> + <location filename="mainwindow.cpp" line="4184"/> <source>Binary</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4202"/> + <location filename="mainwindow.cpp" line="4210"/> <source>Enter Name</source> <translation type="unfinished">輸入名稱</translation> </message> <message> - <location filename="mainwindow.cpp" line="4203"/> + <location filename="mainwindow.cpp" line="4211"/> <source>Please enter a name for the executable</source> <translation type="unfinished">請為程式輸入一個名稱</translation> </message> <message> - <location filename="mainwindow.cpp" line="4214"/> + <location filename="mainwindow.cpp" line="4222"/> <source>Not an executable</source> <translation type="unfinished">不是可執行程式</translation> </message> <message> - <location filename="mainwindow.cpp" line="4214"/> + <location filename="mainwindow.cpp" line="4222"/> <source>This is not a recognized executable.</source> <translation type="unfinished">無法識別的可執行檔案</translation> </message> <message> - <location filename="mainwindow.cpp" line="4239"/> - <location filename="mainwindow.cpp" line="4264"/> + <location filename="mainwindow.cpp" line="4247"/> + <location filename="mainwindow.cpp" line="4272"/> <source>Replace file?</source> <translation type="unfinished">取代檔案?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4239"/> + <location filename="mainwindow.cpp" line="4247"/> <source>There already is a hidden version of this file. Replace it?</source> <translation type="unfinished">已存在同名檔案,但該檔案被隱藏了。確定要覆蓋嗎?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4242"/> - <location filename="mainwindow.cpp" line="4267"/> + <location filename="mainwindow.cpp" line="4250"/> + <location filename="mainwindow.cpp" line="4275"/> <source>File operation failed</source> <translation type="unfinished">檔案操作錯誤</translation> </message> <message> - <location filename="mainwindow.cpp" line="4242"/> - <location filename="mainwindow.cpp" line="4267"/> + <location filename="mainwindow.cpp" line="4250"/> + <location filename="mainwindow.cpp" line="4275"/> <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4264"/> + <location filename="mainwindow.cpp" line="4272"/> <source>There already is a visible version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4310"/> + <location filename="mainwindow.cpp" line="4318"/> <source>Update available</source> <translation type="unfinished">更新可用</translation> </message> <message> - <location filename="mainwindow.cpp" line="4347"/> + <location filename="mainwindow.cpp" line="4355"/> <source>Open/Execute</source> <translation type="unfinished">開啟/執行</translation> </message> <message> - <location filename="mainwindow.cpp" line="4348"/> + <location filename="mainwindow.cpp" line="4356"/> <source>Add as Executable</source> <translation type="unfinished">添加為可執行檔案</translation> </message> <message> - <location filename="mainwindow.cpp" line="4352"/> + <location filename="mainwindow.cpp" line="4360"/> <source>Un-Hide</source> <translation type="unfinished">取消隱藏</translation> </message> <message> - <location filename="mainwindow.cpp" line="4354"/> + <location filename="mainwindow.cpp" line="4362"/> <source>Hide</source> <translation type="unfinished">隱藏</translation> </message> <message> - <location filename="mainwindow.cpp" line="4359"/> + <location filename="mainwindow.cpp" line="4367"/> <source>Write To File...</source> <translation type="unfinished">寫入檔案...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4390"/> + <location filename="mainwindow.cpp" line="4398"/> <source>Do you want to endorse Mod Organizer on %1 now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4803"/> + <location filename="mainwindow.cpp" line="4811"/> <source>Remove</source> <translation type="unfinished">移除</translation> </message> <message> - <location filename="mainwindow.cpp" line="4833"/> + <location filename="mainwindow.cpp" line="4841"/> <source>Unlock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4836"/> + <location filename="mainwindow.cpp" line="4844"/> <source>Lock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4526"/> + <location filename="mainwindow.cpp" line="4534"/> <source>Request to Nexus failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4533"/> - <location filename="mainwindow.cpp" line="4550"/> + <location filename="mainwindow.cpp" line="4541"/> + <location filename="mainwindow.cpp" line="4558"/> <source>login successful</source> <translation type="unfinished">登入成功</translation> </message> <message> - <location filename="mainwindow.cpp" line="4559"/> + <location filename="mainwindow.cpp" line="4567"/> <source>login failed: %1. Trying to download anyway</source> <translation type="unfinished">登入失敗: %1,請嘗試使用別的方法下載</translation> </message> <message> - <location filename="mainwindow.cpp" line="4565"/> + <location filename="mainwindow.cpp" line="4573"/> <source>login failed: %1</source> <translation type="unfinished">無法登入: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4574"/> + <location filename="mainwindow.cpp" line="4582"/> <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="4607"/> + <location filename="mainwindow.cpp" line="4615"/> <source>Error</source> <translation type="unfinished">錯誤</translation> </message> <message> - <location filename="mainwindow.cpp" line="4607"/> + <location filename="mainwindow.cpp" line="4615"/> <source>failed to extract %1 (errorcode %2)</source> <translation type="unfinished">無法解壓 %1 (錯誤代碼 %2)</translation> </message> <message> - <location filename="mainwindow.cpp" line="4702"/> + <location filename="mainwindow.cpp" line="4710"/> <source>Extract...</source> <translation type="unfinished">解壓...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4758"/> + <location filename="mainwindow.cpp" line="4766"/> <source>Edit Categories...</source> <translation type="unfinished">編輯類別...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4813"/> + <location filename="mainwindow.cpp" line="4821"/> <source>Enable all</source> <translation type="unfinished">全部啟用</translation> </message> <message> - <location filename="mainwindow.cpp" line="4814"/> + <location filename="mainwindow.cpp" line="4822"/> <source>Disable all</source> <translation type="unfinished">全部禁用</translation> </message> @@ -5303,18 +5298,18 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="770"/> + <location filename="mainwindow.cpp" line="771"/> <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"/> + <location filename="mainwindow.cpp" line="1545"/> + <location filename="mainwindow.cpp" line="4032"/> <source><Manage...></source> <translation><管理...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1556"/> + <location filename="mainwindow.cpp" line="1563"/> <source>failed to parse profile %1: %2</source> <translation>無法解析配置檔案 %1: %2</translation> </message> diff --git a/src/settings.h b/src/settings.h index 51ee6b92..abffc94b 100644 --- a/src/settings.h +++ b/src/settings.h @@ -251,6 +251,11 @@ public: */ bool pluginBlacklisted(const QString &fileName) const; + /** + * @return all loaded MO plugins + */ + std::vector<MOBase::IPlugin*> plugins() const { return m_Plugins; } + private: QString obfuscate(const QString &password) const; diff --git a/src/version.rc b/src/version.rc index ab144909..b91dce85 100644 --- a/src/version.rc +++ b/src/version.rc @@ -1,7 +1,7 @@ #include "Winver.h"
-#define VER_FILEVERSION 1,0,8,0
-#define VER_FILEVERSION_STR "1,0,8,0\0"
+#define VER_FILEVERSION 1,0,10,0
+#define VER_FILEVERSION_STR "1,0,10,0\0"
VS_VERSION_INFO VERSIONINFO
FILEVERSION VER_FILEVERSION
|
