diff options
| author | Tannin <devnull@localhost> | 2014-06-25 23:51:29 +0200 |
|---|---|---|
| committer | Tannin <devnull@localhost> | 2014-06-25 23:51:29 +0200 |
| commit | 5e7c875b29b2dcff44201d2b6cd6815b20fb3945 (patch) | |
| tree | 18b5212b480b060a633d93322fe93f3b6fb5bd0c | |
| parent | b2a7c7c223a10db31f34e7d870d9969fcf158246 (diff) | |
- test-plugins accidentally distributed in the 1.2.5 release are now automatically deleted
- some fixes to the tutorial (mostly wording but also some actual problems)
- bugfix: could disable mods that aren't supposed to be disable-able
- bugfix: mod list wasn't saved on some changes
- bugfix: when trying to start directly to application, MO didn't start up correctly
- bugfix: hook.dll didn't load mod bsas into its directory structure and thus didn't allow bsas to overwrite loose files
- bugfix: in some constellations the tutorial files couldn't be found despite being in the right location
| -rw-r--r-- | src/main.cpp | 4 | ||||
| -rw-r--r-- | src/mainwindow.cpp | 4 | ||||
| -rw-r--r-- | src/mainwindow.h | 2 | ||||
| -rw-r--r-- | src/mainwindow.ui | 2 | ||||
| -rw-r--r-- | src/nxmaccessmanager.cpp | 2 | ||||
| -rw-r--r-- | src/organizer.pro | 4 | ||||
| -rw-r--r-- | src/organizer_cs.ts | 3914 | ||||
| -rw-r--r-- | src/organizer_de.ts | 5363 | ||||
| -rw-r--r-- | src/organizer_es.ts | 4966 | ||||
| -rw-r--r-- | src/organizer_fr.ts | 3884 | ||||
| -rw-r--r-- | src/organizer_ru.ts | 2257 | ||||
| -rw-r--r-- | src/organizer_tr.ts | 2485 | ||||
| -rw-r--r-- | src/organizer_zh_CN.ts | 4345 | ||||
| -rw-r--r-- | src/organizer_zh_TW.ts | 3899 | ||||
| -rw-r--r-- | src/pluginlist.h | 2 | ||||
| -rw-r--r-- | src/profile.cpp | 13 | ||||
| -rw-r--r-- | src/profile.h | 2 | ||||
| -rw-r--r-- | src/safewritefile.cpp | 10 | ||||
| -rw-r--r-- | src/safewritefile.h | 6 | ||||
| -rw-r--r-- | src/tutorials/tutorial_firststeps_main.js | 22 | ||||
| -rw-r--r-- | src/tutorials/tutorial_firststeps_modinfo.js | 3 | ||||
| -rw-r--r-- | src/tutorials/tutorial_firststeps_settings.js | 8 | ||||
| -rw-r--r-- | src/version.rc | 4 |
23 files changed, 12518 insertions, 18683 deletions
diff --git a/src/main.cpp b/src/main.cpp index 05dc54d7..ecd12345 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -174,7 +174,9 @@ void cleanupDir() "QtXml4.dll", "QtWebKit4.dll", "qjpeg4.dll", - "NCC/GamebryoBase.dll" + "NCC/GamebryoBase.dll", + "plugins/helloWorld.dll", + "plugins/testnexus.py" }; static const int NUM_FILES = sizeof(fileNames) / sizeof(QString); diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 08fdcee7..48b2a7a9 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -163,7 +163,7 @@ MainWindow::MainWindow(const QString &exeName, QSettings &initSettings, QWidget m_DownloadManager(NexusInterface::instance(), this), m_InstallationManager(this), m_Updater(NexusInterface::instance(), this), m_CategoryFactory(CategoryFactory::instance()), m_CurrentProfile(NULL), m_AskForNexusPW(false), - m_ArchivesInit(false), m_ContextItem(NULL), m_ContextAction(NULL), m_CurrentSaveView(NULL), + m_ArchivesInit(false), m_DirectoryUpdate(false), m_ContextItem(NULL), m_ContextAction(NULL), m_CurrentSaveView(NULL), m_GameInfo(new GameInfoImpl()), m_AboutToRun(), m_ModInstalled(), m_DidUpdateMasterList(false) { ui->setupUi(this); @@ -2729,6 +2729,7 @@ void MainWindow::modorder_changed() } } refreshBSAList(); + m_CurrentProfile->writeModlist(); saveArchiveList(); m_DirectoryStructure->getFileRegister()->sortOrigins(); } @@ -3022,6 +3023,7 @@ void MainWindow::updateModActiveState(int index, bool active) void MainWindow::modlistChanged(const QModelIndex&, int) { + m_CurrentProfile->writeModlist(); } void MainWindow::removeMod_clicked() diff --git a/src/mainwindow.h b/src/mainwindow.h index ddbb7d6a..8b61f4de 100644 --- a/src/mainwindow.h +++ b/src/mainwindow.h @@ -387,7 +387,7 @@ private: std::vector<QTreeWidgetItem*> m_RemoveWidget; - uint m_ArchiveListHash; + QByteArray m_ArchiveListHash; bool m_DidUpdateMasterList; diff --git a/src/mainwindow.ui b/src/mainwindow.ui index aaf7e63a..1a45e21b 100644 --- a/src/mainwindow.ui +++ b/src/mainwindow.ui @@ -212,7 +212,7 @@ p, li { white-space: pre-wrap; } </size>
</property>
<property name="toolTip">
- <string>Refresh list</string>
+ <string>Open list options...</string>
</property>
<property name="whatsThis">
<string>Refresh list. This is usually not necessary unless you modified data outside the program.</string>
diff --git a/src/nxmaccessmanager.cpp b/src/nxmaccessmanager.cpp index d8411602..08c16b62 100644 --- a/src/nxmaccessmanager.cpp +++ b/src/nxmaccessmanager.cpp @@ -122,7 +122,7 @@ void NXMAccessManager::login(const QString &username, const QString &password) void NXMAccessManager::pageLogin() { - QString requestString = (ToQString(GameInfo::instance().getNexusPage(false)) + "/sessions/?Login&uri=%1") + QString requestString = (ToQString(GameInfo::instance().getNexusPage()) + "/sessions/?Login&uri=%1") .arg(QString(QUrl::toPercentEncoding(ToQString(GameInfo::instance().getNexusPage())))); QNetworkRequest request(requestString); diff --git a/src/organizer.pro b/src/organizer.pro index bf5d948d..de0f70af 100644 --- a/src/organizer.pro +++ b/src/organizer.pro @@ -221,9 +221,9 @@ CONFIG(debug, debug|release) { LIBS += -L$$OUT_PWD/../bsatk/release
LIBS += -L$$OUT_PWD/../uibase/release
LIBS += -L$$OUT_PWD/../boss_modified/release
- QMAKE_CXXFLAGS += /Zi# /GL
+ QMAKE_CXXFLAGS += /Zi /GL
# QMAKE_CXXFLAGS -= -O2
- QMAKE_LFLAGS += /DEBUG# /LTCG /OPT:REF /OPT:ICF
+ QMAKE_LFLAGS += /DEBUG /LTCG /OPT:REF /OPT:ICF
}
#QMAKE_CXXFLAGS_WARN_ON -= -W3
diff --git a/src/organizer_cs.ts b/src/organizer_cs.ts index 654ca00c..ed015867 100644 --- a/src/organizer_cs.ts +++ b/src/organizer_cs.ts @@ -155,6 +155,29 @@ Pokud je k dispozici komponent s jménem "00 Core" obvykle je povinný </message> </context> <context> + <name>BrowserDialog</name> + <message> + <location filename="browserdialog.ui" line="14"/> + <source>Some Page</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="browserdialog.ui" line="256"/> + <source>Search</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="browserdialog.cpp" line="91"/> + <source>new</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="browserdialog.cpp" line="204"/> + <source>failed to start download</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> <name>CategoriesDialog</name> <message> <location filename="categoriesdialog.ui" line="14"/> @@ -271,11 +294,7 @@ p, li { white-space: pre-wrap; } <context> <name>DirectoryRefresher</name> <message> - <source>failed to read %1: %2</source> - <translation type="obsolete">nemožno načíst %1: %2</translation> - </message> - <message> - <location filename="directoryrefresher.cpp" line="99"/> + <location filename="directoryrefresher.cpp" line="146"/> <source>failed to read bsa: %1</source> <translation type="unfinished"></translation> </message> @@ -318,26 +337,26 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="downloadlistwidget.ui" line="99"/> - <location filename="downloadlistwidget.cpp" line="145"/> - <location filename="downloadlistwidget.cpp" line="147"/> + <location filename="downloadlistwidget.cpp" line="150"/> + <location filename="downloadlistwidget.cpp" line="152"/> <source>Done - Double Click to install</source> <translation>Stáhnuté - dvouklik instaluj</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="111"/> - <location filename="downloadlistwidget.cpp" line="113"/> + <location filename="downloadlistwidget.cpp" line="116"/> + <location filename="downloadlistwidget.cpp" line="118"/> <source>Paused - Double Click to resume</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="131"/> - <location filename="downloadlistwidget.cpp" line="133"/> + <location filename="downloadlistwidget.cpp" line="136"/> + <location filename="downloadlistwidget.cpp" line="138"/> <source>Installed - Double Click to re-install</source> <translation>Instalované - dvouklik přeinstaluj</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="138"/> - <location filename="downloadlistwidget.cpp" line="140"/> + <location filename="downloadlistwidget.cpp" line="143"/> + <location filename="downloadlistwidget.cpp" line="145"/> <source>Uninstalled - Double Click to re-install</source> <translation type="unfinished"></translation> </message> @@ -359,135 +378,135 @@ p, li { white-space: pre-wrap; } <context> <name>DownloadListWidgetCompactDelegate</name> <message> - <location filename="downloadlistwidgetcompact.cpp" line="126"/> + <location filename="downloadlistwidgetcompact.cpp" line="92"/> + <source>< mod %1 file %2 ></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="97"/> + <source>Pending</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="120"/> + <source>Paused</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="123"/> + <source>Fetching Info 1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="125"/> + <source>Fetching Info 2</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="130"/> <source>Installed</source> <translation>Nainstalované</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="129"/> + <location filename="downloadlistwidgetcompact.cpp" line="133"/> <source>Uninstalled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="132"/> + <location filename="downloadlistwidgetcompact.cpp" line="136"/> <source>Done</source> <translation>Hotovo</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="241"/> - <location filename="downloadlistwidgetcompact.cpp" line="250"/> - <location filename="downloadlistwidgetcompact.cpp" line="259"/> - <location filename="downloadlistwidgetcompact.cpp" line="268"/> + <location filename="downloadlistwidgetcompact.cpp" line="245"/> + <location filename="downloadlistwidgetcompact.cpp" line="254"/> + <location filename="downloadlistwidgetcompact.cpp" line="263"/> + <location filename="downloadlistwidgetcompact.cpp" line="272"/> <source>Are you sure?</source> <translation>Jsi si jistý?</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="242"/> + <location filename="downloadlistwidgetcompact.cpp" line="246"/> <source>This will remove all finished downloads from this list and from disk.</source> <translation>Tímto vymažeš všechny dokončené stáhnutí se seznamu i z disku.</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="251"/> + <location filename="downloadlistwidgetcompact.cpp" line="255"/> <source>This will remove all installed downloads from this list and from disk.</source> <translation>Tímto vymažeš jenom nainstalované stáhnutí se seznamu i z disku.</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="260"/> + <location filename="downloadlistwidgetcompact.cpp" line="264"/> <source>This will permanently remove all finished downloads from this list (but NOT from disk).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="269"/> + <location filename="downloadlistwidgetcompact.cpp" line="273"/> <source>This will permanently remove all installed downloads from this list (but NOT from disk).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="298"/> + <location filename="downloadlistwidgetcompact.cpp" line="302"/> <source>Install</source> <translation>Instaluj</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="300"/> + <location filename="downloadlistwidgetcompact.cpp" line="304"/> <source>Query Info</source> <translation>Získej Info</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="302"/> + <location filename="downloadlistwidgetcompact.cpp" line="306"/> <source>Delete</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="304"/> + <location filename="downloadlistwidgetcompact.cpp" line="308"/> <source>Un-Hide</source> <translation type="unfinished">Odekrýt</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="306"/> + <location filename="downloadlistwidgetcompact.cpp" line="310"/> <source>Remove from View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="312"/> - <source>Remove</source> - <translation>Odstranit</translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="309"/> + <location filename="downloadlistwidgetcompact.cpp" line="313"/> <source>Cancel</source> <translation>Zrušit</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="88"/> - <source>< mod %1 file %2 ></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="93"/> - <source>Pending</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="116"/> - <source>Paused</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="119"/> - <source>Fetching Info 1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="121"/> - <source>Fetching Info 2</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="310"/> + <location filename="downloadlistwidgetcompact.cpp" line="314"/> <source>Pause</source> <translation>Pauza</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="313"/> + <location filename="downloadlistwidgetcompact.cpp" line="316"/> + <source>Remove</source> + <translation>Odstranit</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="317"/> <source>Resume</source> <translation>Pokračuj</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="318"/> + <location filename="downloadlistwidgetcompact.cpp" line="322"/> <source>Delete Installed...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="319"/> + <location filename="downloadlistwidgetcompact.cpp" line="323"/> <source>Delete All...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="322"/> + <location filename="downloadlistwidgetcompact.cpp" line="326"/> <source>Remove Installed...</source> <translation>Odstraň už nainstalované...</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="323"/> + <location filename="downloadlistwidgetcompact.cpp" line="327"/> <source>Remove All...</source> <translation>Odstraň všechny...</translation> </message> @@ -495,115 +514,115 @@ p, li { white-space: pre-wrap; } <context> <name>DownloadListWidgetDelegate</name> <message> - <location filename="downloadlistwidget.cpp" line="253"/> - <location filename="downloadlistwidget.cpp" line="262"/> - <location filename="downloadlistwidget.cpp" line="271"/> - <location filename="downloadlistwidget.cpp" line="280"/> + <location filename="downloadlistwidget.cpp" line="93"/> + <source>< mod %1 file %2 ></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="96"/> + <source>Pending</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="123"/> + <source>Fetching Info 1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="126"/> + <source>Fetching Info 2</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="258"/> + <location filename="downloadlistwidget.cpp" line="267"/> + <location filename="downloadlistwidget.cpp" line="276"/> + <location filename="downloadlistwidget.cpp" line="285"/> <source>Are you sure?</source> <translation>Jsi si jistý?</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="254"/> + <location filename="downloadlistwidget.cpp" line="259"/> <source>This will remove all finished downloads from this list and from disk.</source> <translation>Tímto vymažeš všechny dokončené stáhnutí se seznamu i z disku.</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="263"/> + <location filename="downloadlistwidget.cpp" line="268"/> <source>This will remove all installed downloads from this list and from disk.</source> <translation>Tímto vymažeš jenom nainstalované stáhnutí se seznamu i z disku.</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="272"/> + <location filename="downloadlistwidget.cpp" line="277"/> <source>This will remove all finished downloads from this list (but NOT from disk).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="281"/> + <location filename="downloadlistwidget.cpp" line="286"/> <source>This will remove all installed downloads from this list (but NOT from disk).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="309"/> + <location filename="downloadlistwidget.cpp" line="314"/> <source>Install</source> <translation>Instaluj</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="311"/> + <location filename="downloadlistwidget.cpp" line="316"/> <source>Query Info</source> <translation>Získej Info</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="313"/> + <location filename="downloadlistwidget.cpp" line="318"/> <source>Delete</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="315"/> + <location filename="downloadlistwidget.cpp" line="320"/> <source>Un-Hide</source> <translation type="unfinished">Odekrýt</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="317"/> + <location filename="downloadlistwidget.cpp" line="322"/> <source>Remove from View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="323"/> - <source>Remove</source> - <translation>Odstraniť</translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="320"/> + <location filename="downloadlistwidget.cpp" line="325"/> <source>Cancel</source> <translation>Zrušit</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="88"/> - <source>< mod %1 file %2 ></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="91"/> - <source>Pending</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="118"/> - <source>Fetching Info 1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="121"/> - <source>Fetching Info 2</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="321"/> + <location filename="downloadlistwidget.cpp" line="326"/> <source>Pause</source> <translation>Pauza</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="324"/> + <location filename="downloadlistwidget.cpp" line="328"/> + <source>Remove</source> + <translation>Odstraniť</translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="329"/> <source>Resume</source> <translation>Pokračuj</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="329"/> + <location filename="downloadlistwidget.cpp" line="334"/> <source>Delete Installed...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="330"/> + <location filename="downloadlistwidget.cpp" line="335"/> <source>Delete All...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="333"/> + <location filename="downloadlistwidget.cpp" line="338"/> <source>Remove Installed...</source> <translation>Odstranit už nainstalované...</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="334"/> + <location filename="downloadlistwidget.cpp" line="339"/> <source>Remove All...</source> <translation>Odstranit všechny...</translation> </message> @@ -611,126 +630,173 @@ p, li { white-space: pre-wrap; } <context> <name>DownloadManager</name> <message> - <location filename="downloadmanager.cpp" line="132"/> + <location filename="downloadmanager.cpp" line="142"/> <source>failed to rename "%1" to "%2"</source> <translation>Nezdařilo se přejmenovat "%1" na "%2"</translation> </message> <message> - <location filename="downloadmanager.cpp" line="342"/> + <location filename="downloadmanager.cpp" line="321"/> + <source>Memory allocation error (in refreshing directory).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="369"/> <source>Download again?</source> <translation>Stáhnout znovu?</translation> </message> <message> - <location filename="downloadmanager.cpp" line="342"/> + <location filename="downloadmanager.cpp" line="369"/> <source>A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name.</source> <translation>Soubor se stejným jménem už byl stáhnutý. Chcete ho stáhnout znovu? Nový soubor bude pojmenován jinak.</translation> </message> <message> - <location filename="downloadmanager.cpp" line="388"/> + <location filename="downloadmanager.cpp" line="417"/> <source>failed to download %1: could not open output file: %2</source> <translation>Stahování zlyhalo %1: nemožno otevřít výslední soubor: %2</translation> </message> <message> - <location filename="downloadmanager.cpp" line="421"/> + <location filename="downloadmanager.cpp" line="454"/> <source>Wrong Game</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadmanager.cpp" line="421"/> + <location filename="downloadmanager.cpp" line="454"/> <source>The download link is for a mod for "%1" but this instance of MO has been set up for "%2".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadmanager.cpp" line="439"/> - <location filename="downloadmanager.cpp" line="506"/> - <location filename="downloadmanager.cpp" line="682"/> - <location filename="downloadmanager.cpp" line="691"/> - <location filename="downloadmanager.cpp" line="701"/> - <location filename="downloadmanager.cpp" line="710"/> - <location filename="downloadmanager.cpp" line="724"/> - <location filename="downloadmanager.cpp" line="734"/> - <location filename="downloadmanager.cpp" line="744"/> - <location filename="downloadmanager.cpp" line="754"/> - <location filename="downloadmanager.cpp" line="765"/> + <location filename="downloadmanager.cpp" line="471"/> + <location filename="downloadmanager.cpp" line="538"/> + <location filename="downloadmanager.cpp" line="726"/> + <location filename="downloadmanager.cpp" line="735"/> + <location filename="downloadmanager.cpp" line="756"/> <location filename="downloadmanager.cpp" line="773"/> <location filename="downloadmanager.cpp" line="782"/> - <location filename="downloadmanager.cpp" line="792"/> - <location filename="downloadmanager.cpp" line="807"/> + <location filename="downloadmanager.cpp" line="796"/> + <location filename="downloadmanager.cpp" line="806"/> + <location filename="downloadmanager.cpp" line="816"/> + <location filename="downloadmanager.cpp" line="826"/> + <location filename="downloadmanager.cpp" line="841"/> + <location filename="downloadmanager.cpp" line="849"/> + <location filename="downloadmanager.cpp" line="858"/> + <location filename="downloadmanager.cpp" line="868"/> + <location filename="downloadmanager.cpp" line="883"/> <source>invalid index</source> <translation>neplatný index</translation> </message> <message> - <location filename="downloadmanager.cpp" line="457"/> + <location filename="downloadmanager.cpp" line="489"/> <source>failed to delete %1</source> <translation>odstránění zlyhalo %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="463"/> + <location filename="downloadmanager.cpp" line="495"/> <source>failed to delete meta file for %1</source> <translation>odstránění meta souboru zlyhalo pro %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="539"/> - <location filename="downloadmanager.cpp" line="557"/> - <location filename="downloadmanager.cpp" line="570"/> - <location filename="downloadmanager.cpp" line="587"/> - <location filename="downloadmanager.cpp" line="598"/> + <location filename="downloadmanager.cpp" line="571"/> + <location filename="downloadmanager.cpp" line="589"/> + <location filename="downloadmanager.cpp" line="602"/> + <location filename="downloadmanager.cpp" line="622"/> <location filename="downloadmanager.cpp" line="633"/> + <location filename="downloadmanager.cpp" line="673"/> <source>invalid index %1</source> <translation>neplatný index %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="650"/> + <location filename="downloadmanager.cpp" line="640"/> + <source>No known download urls. Sorry, this download can't be resumed.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="695"/> <source>Please enter the nexus mod id</source> <translation>Prosím zadej Nexus mod ID</translation> </message> <message> - <location filename="downloadmanager.cpp" line="650"/> + <location filename="downloadmanager.cpp" line="695"/> <source>Mod ID:</source> <translation>Mod ID:</translation> </message> <message> - <source>invalid alphabetical index %1</source> - <translation type="obsolete">neplatný alfabetický index %1</translation> + <location filename="downloadmanager.cpp" line="744"/> + <source>Main</source> + <translation type="unfinished">Hlavní</translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="745"/> + <source>Update</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="746"/> + <source>Optional</source> + <translation type="unfinished">Volitelné</translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="747"/> + <source>Old</source> + <translation type="unfinished">Staré</translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="748"/> + <source>Misc</source> + <translation type="unfinished">Jiné</translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="749"/> + <source>Unknown</source> + <translation type="unfinished">Neznámé</translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="999"/> + <source>Memory allocation error (in processing progress event).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="1012"/> + <source>Memory allocation error (in processing downloaded data).</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="downloadmanager.cpp" line="1042"/> + <location filename="downloadmanager.cpp" line="1141"/> <source>Information updated</source> <translation>Info aktualizované</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1044"/> - <location filename="downloadmanager.cpp" line="1058"/> + <location filename="downloadmanager.cpp" line="1143"/> + <location filename="downloadmanager.cpp" line="1157"/> <source>No matching file found on Nexus! Maybe this file is no longer available or it was renamed?</source> <translation>Žádný přislouchající soubor nenalezen na Nexusu! Možná už není k dispozici nebo byl přejmenovaný?</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1046"/> + <location filename="downloadmanager.cpp" line="1145"/> <source>No file on Nexus matches the selected file by name. Please manually choose the correct one.</source> <translation>Žádný soubor na Nexusu nezodpovedá přesnému jménu. Zvolte ručne ten správný.</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1180"/> + <location filename="downloadmanager.cpp" line="1286"/> <source>No download server available. Please try again later.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadmanager.cpp" line="1224"/> + <location filename="downloadmanager.cpp" line="1329"/> <source>Failed to request file info from nexus: %1</source> <translation>Zlyhalo získání info z Nexusu %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1249"/> + <location filename="downloadmanager.cpp" line="1357"/> <source>Download failed. Server reported: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadmanager.cpp" line="1251"/> + <location filename="downloadmanager.cpp" line="1359"/> <source>Download failed: %1 (%2)</source> <translation>Stahování zlyhalo: %1 (%2)</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1331"/> + <location filename="downloadmanager.cpp" line="1458"/> <source>failed to re-open %1</source> <translation>zlyhalo znovu-otevření %1</translation> </message> @@ -1024,62 +1090,6 @@ Každá hra/aplikace distribuovaná skrz Steammá unikátní ID. MO potřebuje v <source>Cancel</source> <translation>Zrušit</translation> </message> - <message> - <source>ModuleConfig.xml missing</source> - <translation type="obsolete">ModuleConfig.xml chybí</translation> - </message> - <message> - <source><a href="%1">Link</a></source> - <translation type="obsolete"><a href="%1">Odkaz</a></translation> - </message> - <message> - <source>failed to parse info.xml: %1 (%2) (line %3, column %4)</source> - <translation type="obsolete">zlyhalo rozebrání info.xml: %1 (%2) (line %3, column %4)</translation> - </message> - <message> - <source>unsupported order type %1</source> - <translation type="obsolete">nepodporovaný druh pořadí %1</translation> - </message> - <message> - <source>unsupported group type %1</source> - <translation type="obsolete">nepodporovaný druh skupiny %1</translation> - </message> - <message> - <source>This component is required</source> - <translation type="obsolete">Tenhle komponent je povinný</translation> - </message> - <message> - <source>It is recommended you enable this component</source> - <translation type="obsolete">Odporoučí se aktivovat tenhle komponent</translation> - </message> - <message> - <source>Optional component</source> - <translation type="obsolete">Dobrovolný komponent</translation> - </message> - <message> - <source>This component is not usable in combination with other installed plugins</source> - <translation type="obsolete">Tenhle komponent není použitelný v kombinaci s jinými nainstalovanými pluginy</translation> - </message> - <message> - <source>You may be experiencing instability in combination with other installed plugins</source> - <translation type="obsolete">Můžete se dočkat nestability v kombinaci s jinými nainstalovanými pluginy</translation> - </message> - <message> - <source>None</source> - <translation type="obsolete">Žádné</translation> - </message> - <message> - <source>Select one or more of these options:</source> - <translation type="obsolete">Vyberte jednu nebo víc z možností:</translation> - </message> - <message> - <source>failed to parse ModuleConfig.xml: %1</source> - <translation type="obsolete">zlyhalo rozebrání ModuleConfig.xml: %1</translation> - </message> - <message> - <source>Install</source> - <translation type="obsolete">Instaluj</translation> - </message> </context> <context> <name>InstallDialog</name> @@ -1146,52 +1156,13 @@ p, li { white-space: pre-wrap; } <source>Cancel</source> <translation type="unfinished">Zrušit</translation> </message> - <message> - <source>Looks good</source> - <translation type="obsolete">Vypadá správně</translation> - </message> - <message> - <source>No problem detected</source> - <translation type="obsolete">Žádne problémy</translation> - </message> - <message> - <source>No game data on top level</source> - <translation type="obsolete">Data nejsou ve vrchní úrovni, označte ručně v kontext menu (pravým kliknutím na zložku Data)</translation> - </message> - <message> - <source>There is no esp/esm file or asset directory (textures, meshes, interface, ...) on the top level.</source> - <translation type="obsolete">Nenalezeno esp/esm ani přidružené zložky (textures, meshes, interface, ...) ve vrchní úrovni.</translation> - </message> - <message> - <source>Enter a directory name</source> - <translation type="obsolete">Zadejte název adresáře</translation> - </message> - <message> - <source>A directory with that name exists</source> - <translation type="obsolete">Adresář rovnakého jména již existuje</translation> - </message> - <message> - <source>Set data directory</source> - <translation type="obsolete">Označ ako Data</translation> - </message> - <message> - <source>Unset data directory</source> - <translation type="obsolete">Odznač ako Data</translation> - </message> - <message> - <source>Create directory...</source> - <translation type="obsolete">Vytvoř adresář...</translation> - </message> - <message> - <source>&Open</source> - <translation type="obsolete">&Otevři</translation> - </message> </context> <context> <name>InstallationManager</name> <message> - <source>mo_archive.dll not loaded: "%1"</source> - <translation type="obsolete">mo_archive.dll nenačteno: "%1"</translation> + <location filename="installationmanager.cpp" line="76"/> + <source>archive.dll not loaded: "%1"</source> + <translation type="unfinished"></translation> </message> <message> <location filename="installationmanager.cpp" line="98"/> @@ -1204,83 +1175,13 @@ p, li { white-space: pre-wrap; } <translation>Heslo</translation> </message> <message> - <source>Directory exists</source> - <translation type="obsolete">Adresář existuje</translation> - </message> - <message> - <source>This mod seems to be installed already. Do you want to add files from this archive (overwriting existing ones) or do you want to completely replace the existing files (old files are deleted)</source> - <translation type="obsolete">Tenhle mod je zdá se už nainstalován. Chcete do nej jenom přidat (a možná přepsat rovnaké) soubory nebo chcete kompletne nahradit celý mod (předchozí se úplne vymaže)</translation> - </message> - <message> - <source>Add Files</source> - <translation type="obsolete">Přidat soubory</translation> - </message> - <message> - <source>Replace</source> - <translation type="obsolete">Nahradit</translation> - </message> - <message> <location filename="installationmanager.cpp" line="164"/> <location filename="installationmanager.cpp" line="248"/> - <location filename="installationmanager.cpp" line="529"/> + <location filename="installationmanager.cpp" line="530"/> <source>Extracting files</source> <translation>Rozbalují se soubory</translation> </message> <message> - <source>Preparing installer</source> - <translation type="obsolete">Připravuji instalátor</translation> - </message> - <message> - <source>Installation as fomod failed: %1</source> - <translation type="obsolete">Instalace fomodu zlyhala: %1</translation> - </message> - <message> - <source>failed to start %1</source> - <translation type="obsolete">Zlyhal start %1</translation> - </message> - <message> - <source>Running external installer</source> - <translation type="obsolete">Spouštím externí instalátor</translation> - </message> - <message> - <source>Force Close</source> - <translation type="obsolete">Ukončiř nasilu</translation> - </message> - <message> - <source>Confirm</source> - <translation type="obsolete">Potvrdit</translation> - </message> - <message> - <source>installation failed (errorcode %1)</source> - <translation type="obsolete">instalace zlyhala (errorcode %1)</translation> - </message> - <message> - <location filename="installationmanager.cpp" line="609"/> - <source>File format "%1" not supported</source> - <translation>Formát souboru "%1" nepodporován</translation> - </message> - <message> - <source>failed to open archive "%1": %2</source> - <translation type="obsolete">nemožno otevřít archív "%1": %2</translation> - </message> - <message> - <source>Installer missing</source> - <translation type="obsolete">Instalátor chybí</translation> - </message> - <message> - <source>This package contains a scripted installer. To use this installer you need the optional "nmm installer for MO" package and the .net runtime. Do you want to continue, treating this as a manual installer?</source> - <translation type="obsolete">Tenhle balík obsahuje naskriptovaný instalátor. Pro nainstalovaní potřebujete volitelný balík "nmm installer for MO" a nainstalováno .NET runtime. Chcete pokračovat v instalaci ručným spůsobem?</translation> - </message> - <message> - <source>This mod seems to be installed already. Do you want to add files from this archive (overwriting existing ones) or do you want to completely replace the existing files (old files are deleted)?</source> - <translation type="obsolete">Tenhle mod je zdá se už nainstalován. Chcete do nej jenom přidat (a možná přepsat rovnaké) soubory nebo chcete kompletne nahradit celý mod (předchozí se úplne vymaže)?</translation> - </message> - <message> - <location filename="installationmanager.cpp" line="76"/> - <source>archive.dll not loaded: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="installationmanager.cpp" line="439"/> <source>failed to create backup</source> <translation type="unfinished"></translation> @@ -1306,66 +1207,57 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <source>Running external installer. -Note: This installer will not be aware of other installed mods!</source> - <translation type="obsolete">Běží externí instalátor. -Poznámka: Instalátor nerozpoznává už nainstalované mody!</translation> - </message> - <message> - <source>This package contains a scripted installer. To use this installer you need the optional "NCC"-package and the .net runtime. Do you want to continue, treating this as a manual installer?</source> - <translation type="obsolete">Tenhle balík obsahuje naskriptovaný instalátor. Pro nainstalovaní potřebujete volitelný balík "NCC" a nainstalováno .NET runtime. Chcete pokračovat v instalaci ručným spůsobem?</translation> - </message> - <message> - <source>Please install NCC</source> - <translation type="obsolete">Prosím nainstalujte doplněk NCC</translation> + <location filename="installationmanager.cpp" line="610"/> + <source>File format "%1" not supported</source> + <translation>Formát souboru "%1" nepodporován</translation> </message> <message> - <location filename="installationmanager.cpp" line="735"/> + <location filename="installationmanager.cpp" line="743"/> <source>None of the available installer plugins were able to handle that archive</source> <translation type="unfinished"></translation> </message> <message> - <location filename="installationmanager.cpp" line="745"/> + <location filename="installationmanager.cpp" line="753"/> <source>no error</source> <translation>žádná chyba</translation> </message> <message> - <location filename="installationmanager.cpp" line="748"/> + <location filename="installationmanager.cpp" line="756"/> <source>7z.dll not found</source> <translation>7z.dll nenalezeno</translation> </message> <message> - <location filename="installationmanager.cpp" line="751"/> + <location filename="installationmanager.cpp" line="759"/> <source>7z.dll isn't valid</source> <translation>7z.dll je neplatný</translation> </message> <message> - <location filename="installationmanager.cpp" line="754"/> + <location filename="installationmanager.cpp" line="762"/> <source>archive not found</source> <translation>archív nenalezen</translation> </message> <message> - <location filename="installationmanager.cpp" line="757"/> + <location filename="installationmanager.cpp" line="765"/> <source>failed to open archive</source> <translation>nemožno otevřít archív</translation> </message> <message> - <location filename="installationmanager.cpp" line="760"/> + <location filename="installationmanager.cpp" line="768"/> <source>unsupported archive type</source> <translation>nepodporovaný typ archívu</translation> </message> <message> - <location filename="installationmanager.cpp" line="763"/> + <location filename="installationmanager.cpp" line="771"/> <source>internal library error</source> <translation>chyba internal library </translation> </message> <message> - <location filename="installationmanager.cpp" line="766"/> + <location filename="installationmanager.cpp" line="774"/> <source>archive invalid</source> <translation>archív je neplatný</translation> </message> <message> - <location filename="installationmanager.cpp" line="770"/> + <location filename="installationmanager.cpp" line="778"/> <source>unknown archive error</source> <translation>neznáma chyba archívu</translation> </message> @@ -1396,7 +1288,7 @@ Poznámka: Instalátor nerozpoznává už nainstalované mody!</translation> <context> <name>LogBuffer</name> <message> - <location filename="logbuffer.cpp" line="73"/> + <location filename="logbuffer.cpp" line="83"/> <source>failed to write log to %1: %2</source> <translation>nezdařil se zápis do logu %1: %2</translation> </message> @@ -1404,12 +1296,12 @@ Poznámka: Instalátor nerozpoznává už nainstalované mody!</translation> <context> <name>MOApplication</name> <message> - <location filename="moapplication.cpp" line="68"/> + <location filename="moapplication.cpp" line="115"/> <source>an error occured: %1</source> <translation type="unfinished">vyskytla se chyba: %1</translation> </message> <message> - <location filename="moapplication.cpp" line="73"/> + <location filename="moapplication.cpp" line="120"/> <source>an error occured</source> <translation type="unfinished">vyskytla se chyba</translation> </message> @@ -1417,23 +1309,48 @@ Poznámka: Instalátor nerozpoznává už nainstalované mody!</translation> <context> <name>MainWindow</name> <message> - <location filename="mainwindow.ui" line="51"/> - <location filename="mainwindow.ui" line="392"/> + <location filename="mainwindow.ui" line="43"/> + <location filename="mainwindow.ui" line="482"/> <source>Categories</source> <translation type="unfinished">Kategorie</translation> </message> <message> - <location filename="mainwindow.ui" line="128"/> + <location filename="mainwindow.ui" line="97"/> + <source>Click blank area to deselect</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="116"/> + <source>If checked, only mods that match all selected categories are displayed.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="119"/> + <source>And</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="129"/> + <source>If checked, all mods that match at least one of the selected categories are displayed.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="132"/> + <source>Or</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="171"/> <source>Profile</source> <translation type="unfinished">Profil</translation> </message> <message> - <location filename="mainwindow.ui" line="138"/> + <location filename="mainwindow.ui" line="181"/> <source>Pick a module collection</source> <translation type="unfinished">Vyber kolekci modulů</translation> </message> <message> - <location filename="mainwindow.ui" line="141"/> + <location filename="mainwindow.ui" line="184"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1448,58 +1365,66 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Prosím mějte na paměti, že v současnosti poradí esp se neukladá pro různé profily.</span></p></body></html></translation> </message> <message> - <location filename="mainwindow.ui" line="159"/> + <location filename="mainwindow.ui" line="215"/> <source>Refresh list</source> <translation type="unfinished">Znovunačíst seznam</translation> </message> <message> - <location filename="mainwindow.ui" line="162"/> + <location filename="mainwindow.ui" line="218"/> <source>Refresh list. This is usually not necessary unless you modified data outside the program.</source> <translation type="unfinished">Obnoví seznam. Tohle obvykle není zapotřebí, jedine že by jste měnili obsah dat mimo program MO.</translation> </message> <message> - <location filename="mainwindow.ui" line="278"/> + <location filename="mainwindow.ui" line="238"/> + <location filename="mainwindow.ui" line="739"/> + <source>Restore Backup...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="252"/> + <location filename="mainwindow.ui" line="759"/> + <source>Create Backup</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="368"/> <source>List of available mods.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="281"/> + <location filename="mainwindow.ui" line="371"/> <source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag & drop mods to change their "installation" orders.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="366"/> + <location filename="mainwindow.ui" line="456"/> <source>Filter</source> <translation type="unfinished">Filter</translation> </message> <message> - <location filename="mainwindow.ui" line="387"/> + <location filename="mainwindow.ui" line="477"/> <source>No groups</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="397"/> + <location filename="mainwindow.ui" line="487"/> <source>Nexus IDs</source> <translation type="unfinished">Nexus ID</translation> </message> <message> - <location filename="mainwindow.ui" line="405"/> - <location filename="mainwindow.ui" line="724"/> - <location filename="mainwindow.ui" line="1046"/> + <location filename="mainwindow.ui" line="495"/> + <location filename="mainwindow.ui" line="876"/> + <location filename="mainwindow.ui" line="1214"/> <source>Namefilter</source> <translation type="unfinished"></translation> </message> <message> - <source>Start</source> - <translation type="obsolete">Start</translation> - </message> - <message> - <location filename="mainwindow.ui" line="440"/> + <location filename="mainwindow.ui" line="530"/> <source>Pick a program to run.</source> <translation type="unfinished">Vyber program na spuštění.</translation> </message> <message> - <location filename="mainwindow.ui" line="443"/> + <location filename="mainwindow.ui" line="533"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1514,12 +1439,12 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Můžeš přidávat různé nástroje, ale neručím, že ty které jsem netestoval poběží správně.</span></p></body></html></translation> </message> <message> - <location filename="mainwindow.ui" line="491"/> + <location filename="mainwindow.ui" line="581"/> <source>Run program</source> <translation type="unfinished">Spustit program</translation> </message> <message> - <location filename="mainwindow.ui" line="494"/> + <location filename="mainwindow.ui" line="584"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1532,17 +1457,17 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Spusti vybraný program s nastavením ModOrganizeru.</span></p></body></html></translation> </message> <message> - <location filename="mainwindow.ui" line="504"/> + <location filename="mainwindow.ui" line="594"/> <source>Run</source> <translation type="unfinished">Spustit</translation> </message> <message> - <location filename="mainwindow.ui" line="545"/> + <location filename="mainwindow.ui" line="635"/> <source>Create a shortcut in your start menu or on the desktop to the specified program</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="548"/> + <location filename="mainwindow.ui" line="638"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1555,37 +1480,27 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Tohle vytvoří odkaz v menu Start, který přímo bude spouštět zvolený program přes MO.</span></p></body></html></translation> </message> <message> - <location filename="mainwindow.ui" line="555"/> + <location filename="mainwindow.ui" line="645"/> <source>Shortcut</source> <translation type="unfinished"></translation> </message> <message> - <source>save esp list and load order.</source> - <translation type="obsolete">Uložit seznam esp a pořadí načtení.</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Save the list of active mods and load order. This automatically happens if you close MO or start a program.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Ulož nastavění aktivace a pořadí esp souborů. Tohle se také děje automaticky při spuštění programu nebo ukončení MO.</span></p></body></html></translation> + <location filename="mainwindow.ui" line="695"/> + <source>Plugins</source> + <translation type="unfinished"></translation> </message> <message> - <source>Save</source> - <translation type="obsolete">Uložit</translation> + <location filename="mainwindow.ui" line="715"/> + <source>Sort</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="669"/> + <location filename="mainwindow.ui" line="821"/> <source>List of available esp/esm files</source> <translation type="unfinished">Seznam dostupných esp/esm souborů</translation> </message> <message> - <location filename="mainwindow.ui" line="672"/> + <location filename="mainwindow.ui" line="824"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1598,16 +1513,27 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Tenhle seznam obsahuje esp a esm soubory z aktivovaných modů. Tyhle mají svoje vlastní pořadí priority. Tahaním myší je možné měnit pořadí. Prosím mějte na paměti, že MO zobrazí seznam jenom z modů, které jsou aktivovány (zaškrtnuté).<br />Existuje skvělý nástroj &quot;BOSS&quot; který automaticky správně seřadí tyhle soubory.</span></p></body></html></translation> </message> <message> - <source>IMPORTANT: You can change the order of BSAs here but installation order of mods has priority over the order specified here!</source> - <translation type="obsolete">DŮLEŽITÉ: Můžete měnit pořadí BSA souborů tady, ale soubory modů ako takých má vyšší prioritu a přepíše konflikty, které by vznikly zde!</translation> + <location filename="mainwindow.ui" line="886"/> + <source>Archives</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="916"/> + <source><html><head/><body><p>BSAs are bundles of game assets (textures, scripts, ...). By default, the engine loads these bundles in a separate step from loose files. MO can manage those archives to align their load order with that of loose files:</p><p>If archives are <span style=" font-weight:600;">managed</span>, their load order is specified by the priority of the corresponding mod (left pane), the same as the loose files. You can manually enable any BSA that has no corresponding plugin active.<br/></p><p>If archives are <span style=" font-weight:600;">not managed</span> their load order is specified by the priority of the corresponding plugin (right pane, plugins tab). You can then not manually enable BSAs where the plugin isn't active.</p><p>In either case you can not disable archives if there is a matching plugin, the game will load them no matter what.</p></body></html></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="919"/> + <source><html><head/><body><p>Have MO manage archives (<a href="#"><span style=" text-decoration: underline; color:#0000ff;">read more</span></a>)</p></body></html></source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="762"/> + <location filename="mainwindow.ui" line="934"/> <source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source> <translation type="unfinished">Seznam BS archivů, které jsou k dispozici. Archivy, které jsou zde neni označeny nebudou načteny do hry.</translation> </message> <message> - <location filename="mainwindow.ui" line="765"/> + <location filename="mainwindow.ui" line="937"/> <source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" with loose files in your data directory over which is loaded. By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored! @@ -1618,81 +1544,71 @@ By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp BSAs checked here are loaded in such a way that your installation order is obeyed properly.</translation> </message> <message> - <location filename="mainwindow.ui" line="811"/> - <location filename="mainwindow.ui" line="880"/> + <location filename="mainwindow.ui" line="983"/> + <location filename="mainwindow.ui" line="1042"/> <source>File</source> <translation type="unfinished">Soubor</translation> </message> <message> - <location filename="mainwindow.ui" line="819"/> - <source><html><head/><body><p>Marked Archives (<img src=":/MO/gui/warning_16"/>) are still loaded on Skyrim but the <a href="http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/"><span style=" text-decoration: underline; color:#0000ff;">regular file override</span></a> mechanism will apply: Loose files override BSAs, no matter the mod/plugin priority.</p></body></html></source> + <location filename="mainwindow.ui" line="1459"/> + <source>Copy Log to Clipboard</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="885"/> - <source>Mod</source> - <translation type="unfinished">Mod</translation> + <location filename="mainwindow.ui" line="1462"/> + <source>Ctrl+C</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="830"/> + <location filename="mainwindow.ui" line="992"/> <source>Data</source> <translation type="unfinished">Data</translation> </message> <message> - <location filename="mainwindow.ui" line="605"/> - <source>Plugins</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="731"/> - <source>Sort</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="741"/> - <source>Archives</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="848"/> + <location filename="mainwindow.ui" line="1010"/> <source>refresh data-directory overview</source> <translation type="unfinished">znovunačti data</translation> </message> <message> - <location filename="mainwindow.ui" line="851"/> + <location filename="mainwindow.ui" line="1013"/> <source>Refresh the overview. This may take a moment.</source> <translation type="unfinished">Obnov náhled. Tohle může chvíli trvat.</translation> </message> <message> - <location filename="mainwindow.ui" line="854"/> - <location filename="mainwindow.cpp" line="3781"/> - <location filename="mainwindow.cpp" line="4604"/> + <location filename="mainwindow.ui" line="1016"/> + <location filename="mainwindow.cpp" line="3749"/> + <location filename="mainwindow.cpp" line="4614"/> <source>Refresh</source> <translation type="unfinished">Znovunačíst</translation> </message> <message> - <location filename="mainwindow.ui" line="870"/> + <location filename="mainwindow.ui" line="1032"/> <source>This is an overview of your data directory as visible to the game (and tools). </source> <translation type="unfinished">Tohle je náhled tvé data struktury, kterou načte hra (i nástroje).</translation> </message> <message> - <location filename="mainwindow.ui" line="895"/> - <location filename="mainwindow.ui" line="898"/> + <location filename="mainwindow.ui" line="1047"/> + <source>Mod</source> + <translation type="unfinished">Mod</translation> + </message> + <message> + <location filename="mainwindow.ui" line="1057"/> + <location filename="mainwindow.ui" line="1060"/> <source>Filter the above list so that only conflicts are displayed.</source> <translation type="unfinished">Přefiltruje seznam nahoře tak, že budou zobrazeny pouze konflikty.</translation> </message> <message> - <location filename="mainwindow.ui" line="901"/> + <location filename="mainwindow.ui" line="1063"/> <source>Show only conflicts</source> <translation type="unfinished">Ukaž jenom konflikty</translation> </message> <message> - <location filename="mainwindow.ui" line="909"/> + <location filename="mainwindow.ui" line="1071"/> <source>Saves</source> <translation type="unfinished">Uložené pozice</translation> </message> <message> - <location filename="mainwindow.ui" line="933"/> + <location filename="mainwindow.ui" line="1095"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1709,160 +1625,159 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Pokud kliknete &quot;Fixni Mody...&quot; v kontext menu, MO se pokusí aktivovat všechny mody a esp soubory, které byli v pozici používány. Nic se však nevypne!</span></p></body></html></translation> </message> <message> - <location filename="mainwindow.ui" line="947"/> + <location filename="mainwindow.ui" line="1109"/> <source>Downloads</source> <translation type="unfinished">Stáhnuté</translation> </message> <message> - <location filename="mainwindow.ui" line="979"/> + <location filename="mainwindow.ui" line="1141"/> <source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source> <translation type="unfinished">Tohle je seznam modů, které jsi stánul z Nexusu. Dvojklik nainstaluje mod.</translation> </message> <message> - <location filename="mainwindow.ui" line="1032"/> <source>Compact</source> - <translation type="unfinished">Kompaktní</translation> + <translation type="obsolete">Kompaktní</translation> </message> <message> - <location filename="mainwindow.ui" line="1039"/> + <location filename="mainwindow.ui" line="1194"/> <source>Show Hidden</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1070"/> + <location filename="mainwindow.ui" line="1256"/> <source>Tool Bar</source> <translation type="unfinished">Panel nástrojú</translation> </message> <message> - <location filename="mainwindow.ui" line="1112"/> + <location filename="mainwindow.ui" line="1298"/> <source>Install Mod</source> <translation type="unfinished">Instaluj mod</translation> </message> <message> - <location filename="mainwindow.ui" line="1115"/> + <location filename="mainwindow.ui" line="1301"/> <source>Install &Mod</source> <translation type="unfinished">Instaluj &Mod</translation> </message> <message> - <location filename="mainwindow.ui" line="1118"/> + <location filename="mainwindow.ui" line="1304"/> <source>Install a new mod from an archive</source> <translation type="unfinished">Instaluj nový mod z archívu</translation> </message> <message> - <location filename="mainwindow.ui" line="1121"/> + <location filename="mainwindow.ui" line="1307"/> <source>Ctrl+M</source> <translation type="unfinished">Ctrl+M</translation> </message> <message> - <location filename="mainwindow.ui" line="1130"/> + <location filename="mainwindow.ui" line="1316"/> <source>Profiles</source> <translation type="unfinished">Profily</translation> </message> <message> - <location filename="mainwindow.ui" line="1133"/> + <location filename="mainwindow.ui" line="1319"/> <source>&Profiles</source> <translation type="unfinished">&Profily</translation> </message> <message> - <location filename="mainwindow.ui" line="1136"/> + <location filename="mainwindow.ui" line="1322"/> <source>Configure Profiles</source> <translation type="unfinished">Nastav profily</translation> </message> <message> - <location filename="mainwindow.ui" line="1139"/> + <location filename="mainwindow.ui" line="1325"/> <source>Ctrl+P</source> <translation type="unfinished">Ctrl+P</translation> </message> <message> - <location filename="mainwindow.ui" line="1148"/> + <location filename="mainwindow.ui" line="1334"/> <source>Executables</source> <translation type="unfinished">Spouštění</translation> </message> <message> - <location filename="mainwindow.ui" line="1151"/> + <location filename="mainwindow.ui" line="1337"/> <source>&Executables</source> <translation type="unfinished">&Spouštění</translation> </message> <message> - <location filename="mainwindow.ui" line="1154"/> + <location filename="mainwindow.ui" line="1340"/> <source>Configure the executables that can be started through Mod Organizer</source> <translation type="unfinished">Konfigurace spouštění, které lze použít pro načtení modů z MO</translation> </message> <message> - <location filename="mainwindow.ui" line="1157"/> + <location filename="mainwindow.ui" line="1343"/> <source>Ctrl+E</source> <translation type="unfinished">Ctrl+E</translation> </message> <message> - <location filename="mainwindow.ui" line="1166"/> - <location filename="mainwindow.ui" line="1172"/> + <location filename="mainwindow.ui" line="1352"/> + <location filename="mainwindow.ui" line="1358"/> <source>Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1169"/> + <location filename="mainwindow.ui" line="1355"/> <source>&Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1175"/> + <location filename="mainwindow.ui" line="1361"/> <source>Ctrl+I</source> <translation type="unfinished">Ctrl+I</translation> </message> <message> - <location filename="mainwindow.ui" line="1184"/> + <location filename="mainwindow.ui" line="1370"/> <source>Settings</source> <translation type="unfinished">Nastavení</translation> </message> <message> - <location filename="mainwindow.ui" line="1187"/> + <location filename="mainwindow.ui" line="1373"/> <source>&Settings</source> <translation type="unfinished">&Nastavení</translation> </message> <message> - <location filename="mainwindow.ui" line="1190"/> + <location filename="mainwindow.ui" line="1376"/> <source>Configure settings and workarounds</source> <translation type="unfinished">Konfigurace a nastavení programu a různých řešení</translation> </message> <message> - <location filename="mainwindow.ui" line="1193"/> + <location filename="mainwindow.ui" line="1379"/> <source>Ctrl+S</source> <translation type="unfinished">Ctrl+S</translation> </message> <message> - <location filename="mainwindow.ui" line="1202"/> + <location filename="mainwindow.ui" line="1388"/> <source>Nexus</source> <translation type="unfinished">Nexus</translation> </message> <message> - <location filename="mainwindow.ui" line="1205"/> + <location filename="mainwindow.ui" line="1391"/> <source>Search nexus network for more mods</source> <translation type="unfinished">Prohledat mody na nexusu</translation> </message> <message> - <location filename="mainwindow.ui" line="1208"/> + <location filename="mainwindow.ui" line="1394"/> <source>Ctrl+N</source> <translation type="unfinished">Ctrl+N</translation> </message> <message> - <location filename="mainwindow.ui" line="1220"/> - <location filename="mainwindow.cpp" line="4545"/> + <location filename="mainwindow.ui" line="1406"/> + <location filename="mainwindow.cpp" line="4555"/> <source>Update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1223"/> + <location filename="mainwindow.ui" line="1409"/> <source>Mod Organizer is up-to-date</source> <translation type="unfinished">Verze Mod Organizer u je aktuální</translation> </message> <message> - <location filename="mainwindow.ui" line="1235"/> - <location filename="mainwindow.cpp" line="509"/> + <location filename="mainwindow.ui" line="1421"/> + <location filename="mainwindow.cpp" line="561"/> <source>No Problems</source> <translation type="unfinished">Žádné problémy</translation> </message> <message> - <location filename="mainwindow.ui" line="1238"/> + <location filename="mainwindow.ui" line="1424"/> <source>This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them. !Work in progress! @@ -1873,180 +1788,164 @@ Right now this has very limited functionality</source> V současnosti má omezenou funkcionalitu</translation> </message> <message> - <location filename="mainwindow.ui" line="1250"/> - <location filename="mainwindow.ui" line="1253"/> + <location filename="mainwindow.ui" line="1436"/> + <location filename="mainwindow.ui" line="1439"/> <source>Help</source> <translation type="unfinished">Pomoc</translation> </message> <message> - <location filename="mainwindow.ui" line="1256"/> + <location filename="mainwindow.ui" line="1442"/> <source>Ctrl+H</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1265"/> + <location filename="mainwindow.ui" line="1451"/> <source>Endorse MO</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1268"/> - <location filename="mainwindow.cpp" line="4633"/> + <location filename="mainwindow.ui" line="1454"/> + <location filename="mainwindow.cpp" line="4637"/> <source>Endorse Mod Organizer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="223"/> + <location filename="mainwindow.cpp" line="244"/> <source>Toolbar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="224"/> + <location filename="mainwindow.cpp" line="245"/> <source>Desktop</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="225"/> + <location filename="mainwindow.cpp" line="246"/> <source>Start Menu</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="505"/> + <location filename="mainwindow.cpp" line="549"/> <source>Problems</source> <translation type="unfinished">Problémy</translation> </message> <message> - <location filename="mainwindow.cpp" line="506"/> + <location filename="mainwindow.cpp" line="550"/> <source>There are potential problems with your setup</source> <translation type="unfinished">Existují potenciální problémy s programem</translation> </message> <message> - <location filename="mainwindow.cpp" line="510"/> + <location filename="mainwindow.cpp" line="562"/> <source>Everything seems to be in order</source> <translation type="unfinished">Všechno se jeví v pořádku</translation> </message> <message> - <source><li>NCC not installed. You won't be able to install some scripted mod-installers. Get NCC from <a href="http://skyrim.nexusmods.com/downloads/file.php?id=1334">the MO page on nexus</a></li></source> - <translation type="obsolete"><li>NCC není nainstalován. Nebudete moci instalovat některé naskriptované instalátory modů. NCC najdete na <a href="http://skyrim.nexusmods.com/downloads/file.php?id=1334">stránce MO na nexusu</a></li></translation> - </message> - <message> - <source><li>NCC version may be incompatible.</li></source> - <translation type="obsolete"><li>Verze NCC je zřejmě nekompatibilní.</li></translation> - </message> - <message> - <source><li>dotNet is not installed or outdated. This is required to use NCC. Get it from here: <a href="%1">%1</a></li></source> - <translation type="obsolete"><li>dotNet není nainstalován nebo je neaktuální. Tohle vyžaduje NCC. Najděte ho zde: <a href="%1">%1</a></li></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="568"/> + <location filename="mainwindow.cpp" line="619"/> <source>Help on UI</source> <translation type="unfinished">Pomoc s programem</translation> </message> <message> - <location filename="mainwindow.cpp" line="572"/> + <location filename="mainwindow.cpp" line="623"/> <source>Documentation Wiki</source> <translation type="unfinished">Dokumentace wiki</translation> </message> <message> - <location filename="mainwindow.cpp" line="576"/> + <location filename="mainwindow.cpp" line="627"/> <source>Report Issue</source> <translation type="unfinished">Nahlásit chybu</translation> </message> <message> - <location filename="mainwindow.cpp" line="580"/> + <location filename="mainwindow.cpp" line="631"/> <source>Tutorials</source> <translation type="unfinished"></translation> </message> <message> - <source>load order could not be saved</source> - <translation type="obsolete">pořadí načtení se nezdařilo uložit</translation> - </message> - <message> - <location filename="mainwindow.cpp" line="705"/> - <source>failed to save load order: %1</source> - <translation type="unfinished">zlyhalo uložení pořadí načtení: %1</translation> - </message> - <message> <source>failed to save archives order, do you have write access to "%1"?</source> <translation type="obsolete">zlyhal zápis pořadí archivů, máte administrátorsky povoleno zapisovat na "%1"?</translation> </message> <message> - <location filename="mainwindow.cpp" line="619"/> - <source>About</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="620"/> - <source>About Qt</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="765"/> + <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="717"/> + <location filename="mainwindow.cpp" line="777"/> <source>Name</source> <translation type="unfinished">Jméno</translation> </message> <message> - <location filename="mainwindow.cpp" line="718"/> + <location filename="mainwindow.cpp" line="778"/> <source>Please enter a name for the new profile</source> <translation type="unfinished">Prosím zadej jméno pro nový profil</translation> </message> <message> - <location filename="mainwindow.cpp" line="726"/> + <location filename="mainwindow.cpp" line="786"/> <source>failed to create profile: %1</source> <translation type="unfinished">Zlyhalo vytvoření profilu: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="769"/> + <location filename="mainwindow.cpp" line="829"/> <source>Show tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="770"/> + <location filename="mainwindow.cpp" line="830"/> <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="801"/> + <location filename="mainwindow.cpp" line="861"/> <source>Downloads in progress</source> <translation type="unfinished">Probíhá stahování</translation> </message> <message> - <location filename="mainwindow.cpp" line="802"/> + <location filename="mainwindow.cpp" line="862"/> <source>There are still downloads in progress, do you really want to quit?</source> <translation type="unfinished">Pořád probíhá stahování, určitě chcete skončit (zruší stahování)?</translation> </message> <message> - <location filename="mainwindow.cpp" line="848"/> + <location filename="mainwindow.cpp" line="916"/> <source>failed to read savegame: %1</source> <translation type="unfinished">nezdařilo se načíst pozici: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="972"/> + <location filename="mainwindow.cpp" line="1040"/> <source>Plugin "%1" failed: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1085"/> + <location filename="mainwindow.cpp" line="1042"/> + <source>Plugin "%1" failed</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1211"/> + <source>failed to init plugin %1: %2</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1249"/> <source>Plugin error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1086"/> + <location filename="mainwindow.cpp" line="1250"/> <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="1270"/> + <location filename="mainwindow.cpp" line="1309"/> <source>Failed to start "%1"</source> <translation type="unfinished">Zlyhal start "%1"</translation> </message> <message> - <location filename="mainwindow.cpp" line="1272"/> + <location filename="mainwindow.cpp" line="1311"/> <source>Waiting</source> <translation type="unfinished">Čekání</translation> </message> <message> - <location filename="mainwindow.cpp" line="1272"/> + <location filename="mainwindow.cpp" line="1311"/> <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> @@ -2055,12 +1954,12 @@ V současnosti má omezenou funkcionalitu</translation> <translation type="obsolete">"%1" nenalezeno</translation> </message> <message> - <location filename="mainwindow.cpp" line="1298"/> + <location filename="mainwindow.cpp" line="1337"/> <source>Start Steam?</source> <translation type="unfinished">Spustit Steam?</translation> </message> <message> - <location filename="mainwindow.cpp" line="1299"/> + <location filename="mainwindow.cpp" line="1338"/> <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> @@ -2075,779 +1974,888 @@ V současnosti má omezenou funkcionalitu</translation> <translation type="unfinished">Žádné konflikty</translation> </message> <message> - <location filename="mainwindow.cpp" line="1692"/> + <location filename="mainwindow.cpp" line="1706"/> <source><Edit...></source> <translation type="unfinished"><Edit...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1929"/> + <location filename="mainwindow.cpp" line="1976"/> <source>This bsa is enabled in the ini file so it may be required!</source> <translation type="unfinished">Tenhle BSA soubor je aktivován v ini souboru, tak zřejmě je vyžadován!</translation> </message> <message> - <location filename="mainwindow.cpp" line="1936"/> <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> + <translation type="obsolete">Tento archív se stejně načte, protože existuje plugin se stejným jménem ale jeho soubory nebudou zodpovídat pořadí nainstalování!</translation> </message> <message> - <location filename="mainwindow.cpp" line="1991"/> + <location filename="mainwindow.cpp" line="2038"/> <source>Activating Network Proxy</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2122"/> - <location filename="mainwindow.cpp" line="4248"/> + <location filename="mainwindow.cpp" line="2269"/> + <location filename="mainwindow.cpp" line="4258"/> <source>Installation successful</source> <translation type="unfinished">Instalace úspěšná</translation> </message> <message> - <location filename="mainwindow.cpp" line="2133"/> - <location filename="mainwindow.cpp" line="4261"/> + <location filename="mainwindow.cpp" line="2280"/> + <location filename="mainwindow.cpp" line="4270"/> <source>Configure Mod</source> <translation type="unfinished">Konfigurace Modu</translation> </message> <message> - <location filename="mainwindow.cpp" line="2134"/> - <location filename="mainwindow.cpp" line="4262"/> + <location filename="mainwindow.cpp" line="2281"/> + <location filename="mainwindow.cpp" line="4271"/> <source>This mod contains ini tweaks. Do you want to configure them now?</source> <translation type="unfinished">Tenhle mod obsahuje ini úpravy. Chcete je nastavovat teď?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2140"/> - <location filename="mainwindow.cpp" line="4268"/> + <location filename="mainwindow.cpp" line="2288"/> + <location filename="mainwindow.cpp" line="4278"/> <source>mod "%1" not found</source> <translation type="unfinished">mod "%1" nenalezen</translation> </message> <message> - <location filename="mainwindow.cpp" line="2143"/> - <location filename="mainwindow.cpp" line="4274"/> + <location filename="mainwindow.cpp" line="2291"/> + <location filename="mainwindow.cpp" line="4284"/> <source>Installation cancelled</source> <translation type="unfinished">Instalace zrušena</translation> </message> <message> - <location filename="mainwindow.cpp" line="2143"/> - <location filename="mainwindow.cpp" line="4274"/> + <location filename="mainwindow.cpp" line="2291"/> + <location filename="mainwindow.cpp" line="4284"/> <source>The mod was not installed completely.</source> <translation type="unfinished">Tento mod se nenainstaloval úplne.</translation> </message> <message> - <location filename="mainwindow.cpp" line="2292"/> + <location filename="mainwindow.cpp" line="2196"/> <source>Some plugins could not be loaded</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2295"/> + <location filename="mainwindow.cpp" line="2199"/> <source>Too many esps and esms enabled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2298"/> - <location filename="mainwindow.cpp" line="2319"/> + <location filename="mainwindow.cpp" line="2202"/> + <location filename="mainwindow.cpp" line="2223"/> <source>Description missing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2315"/> + <location filename="mainwindow.cpp" line="2211"/> + <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="2219"/> <source>The game doesn't allow more than 255 active plugins (including the official ones) to be loaded. You have to disable some unused plugins or merge some plugins into one. You can find a guide here: <a href="http://wiki.step-project.com/Guide:Merging_Plugins">http://wiki.step-project.com/Guide:Merging_Plugins</a></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2341"/> + <location filename="mainwindow.cpp" line="2245"/> <source>Choose Mod</source> <translation type="unfinished">Vyber Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2342"/> + <location filename="mainwindow.cpp" line="2246"/> <source>Mod Archive</source> <translation type="unfinished">Archív Modu</translation> </message> <message> - <location filename="mainwindow.cpp" line="2495"/> + <location filename="mainwindow.cpp" line="2502"/> <source>Start Tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2496"/> + <location filename="mainwindow.cpp" line="2503"/> <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="2651"/> - <location filename="mainwindow.cpp" line="4171"/> + <location filename="mainwindow.cpp" line="2647"/> + <location filename="mainwindow.cpp" line="4179"/> <source>Download started</source> <translation type="unfinished">Stahování začalo</translation> </message> <message> - <location filename="mainwindow.cpp" line="2682"/> + <location filename="mainwindow.cpp" line="2708"/> <source>failed to update mod list: %1</source> <translation type="unfinished">nezdařilo se aktualizovat seznam modů: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2711"/> + <location filename="mainwindow.cpp" line="2738"/> <source>failed to spawn notepad.exe: %1</source> <translation type="unfinished">zlyhalo otevření notepad.exe: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2752"/> + <location filename="mainwindow.cpp" line="2775"/> <source>failed to open %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished">nepodařilo se otevřít %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2830"/> + <location filename="mainwindow.cpp" line="2850"/> <source>failed to change origin name: %1</source> <translation type="unfinished">Nezdařilo se změnit původní jméno: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2860"/> - <source>failed to move "%1" from mod "%2" to "%3": %4</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2997"/> - <source>Multiple esps activated, please check that they don't conflict.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3345"/> - <location filename="mainwindow.cpp" line="3792"/> - <source>Create Mod...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3355"/> - <source>A mod with this name already exists</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3613"/> - <source>Continue?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3614"/> - <source>The versioning scheme decides which version is considered newer than another. -This function will guess the versioning scheme under the assumption that the installed version is outdated.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3634"/> - <location filename="mainwindow.cpp" line="4516"/> - <source>Sorry</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3635"/> - <source>I don't know a versioning scheme where %1 is newer than %2.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3883"/> - <source><All></source> - <translation type="unfinished"><Všechny></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2909"/> + <location filename="mainwindow.cpp" line="2929"/> <source><Checked></source> <translation type="unfinished"><Aktivované></translation> </message> <message> - <location filename="mainwindow.cpp" line="974"/> - <source>Plugin "%1" failed</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1047"/> - <source>failed to init plugin %1: %2</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2307"/> - <source>The following plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2910"/> + <location filename="mainwindow.cpp" line="2930"/> <source><Unchecked></source> <translation type="unfinished"><Neaktivované></translation> </message> <message> - <location filename="mainwindow.cpp" line="2911"/> + <location filename="mainwindow.cpp" line="2931"/> <source><Update></source> <translation type="unfinished"><Aktualizace></translation> </message> <message> - <location filename="mainwindow.cpp" line="2912"/> + <location filename="mainwindow.cpp" line="2934"/> <source><No category></source> <translation type="unfinished"><Bez kategorie></translation> </message> <message> - <location filename="mainwindow.cpp" line="2913"/> + <location filename="mainwindow.cpp" line="2935"/> <source><Conflicted></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2914"/> + <location filename="mainwindow.cpp" line="2936"/> <source><Not Endorsed></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2947"/> + <location filename="mainwindow.cpp" line="2969"/> <source>failed to rename mod: %1</source> <translation type="unfinished">Nezdařilo se přejmenovat mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2960"/> + <location filename="mainwindow.cpp" line="2982"/> <source>Overwrite?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2961"/> + <location filename="mainwindow.cpp" line="2983"/> <source>This will replace the existing mod "%1". Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2964"/> + <location filename="mainwindow.cpp" line="2986"/> <source>failed to remove mod "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2968"/> - <location filename="mainwindow.cpp" line="4446"/> - <location filename="mainwindow.cpp" line="4470"/> + <location filename="mainwindow.cpp" line="2990"/> + <location filename="mainwindow.cpp" line="4456"/> + <location filename="mainwindow.cpp" line="4480"/> <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="3024"/> - <location filename="mainwindow.cpp" line="3687"/> - <location filename="mainwindow.cpp" line="3695"/> - <location filename="mainwindow.cpp" line="3902"/> + <location filename="mainwindow.cpp" line="3015"/> + <source>Multiple esps activated, please check that they don't conflict.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3043"/> + <location filename="mainwindow.cpp" line="3662"/> + <location filename="mainwindow.cpp" line="3670"/> + <location filename="mainwindow.cpp" line="3890"/> <source>Confirm</source> <translation type="unfinished">Potvrdit</translation> </message> <message> - <location filename="mainwindow.cpp" line="3025"/> + <location filename="mainwindow.cpp" line="3044"/> <source>Remove the following mods?<br><ul>%1</ul></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3036"/> + <location filename="mainwindow.cpp" line="3055"/> <source>failed to remove mod: %1</source> <translation type="unfinished">Nezdařilo se odstranit mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3071"/> - <location filename="mainwindow.cpp" line="3074"/> + <location filename="mainwindow.cpp" line="3090"/> + <location filename="mainwindow.cpp" line="3093"/> <source>Failed</source> <translation type="unfinished">Zlyhání</translation> </message> <message> - <location filename="mainwindow.cpp" line="3071"/> + <location filename="mainwindow.cpp" line="3090"/> <source>Installation file no longer exists</source> <translation type="unfinished">Instalační soubor již neexistuje</translation> </message> <message> - <location filename="mainwindow.cpp" line="3075"/> + <location filename="mainwindow.cpp" line="3094"/> <source>Mods installed with old versions of MO can't be reinstalled in this way.</source> <translation type="unfinished">Mody nainstalovány staršími verzemi MO nemůžou být přeinstalovány tímto spůsobem.</translation> </message> <message> - <location filename="mainwindow.cpp" line="3090"/> - <location filename="mainwindow.cpp" line="3117"/> + <location filename="mainwindow.cpp" line="3125"/> + <location filename="mainwindow.cpp" line="3152"/> <source>You need to be logged in with Nexus to endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3249"/> - <location filename="mainwindow.cpp" line="4882"/> + <location filename="mainwindow.cpp" line="4871"/> <source>Extract BSA</source> <translation type="unfinished">Extrakce BSA</translation> </message> <message> - <location filename="mainwindow.cpp" line="3250"/> <source>This mod contains at least one BSA. Do you want to unpack it? (This removes the BSA after completion. If you don't know about BSAs, just select no)</source> - <translation type="unfinished">Tento mod obsahuje alespoň jeden BSA soubor. Chcete rozpakovat i jeho obsah? + <translation type="obsolete">Tento mod obsahuje alespoň jeden BSA soubor. Chcete rozpakovat i jeho obsah? (BSA se po úspěšném rozpakování odstrání. Pokud nevíte, co je BSA, zvolte možnost Ne)</translation> </message> <message> - <location filename="mainwindow.cpp" line="3259"/> - <location filename="mainwindow.cpp" line="4839"/> - <location filename="mainwindow.cpp" line="4890"/> + <location filename="mainwindow.cpp" line="4828"/> + <location filename="mainwindow.cpp" line="4879"/> <source>failed to read %1: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3272"/> - <location filename="mainwindow.cpp" line="4901"/> + <location filename="mainwindow.cpp" line="4890"/> <source>This archive contains invalid hashes. Some files may be broken.</source> <translation type="unfinished">Tento archiv má neplatné identifikační součty. Nekteré soubory mohou být poškozeny.</translation> </message> <message> - <location filename="mainwindow.cpp" line="3306"/> + <location filename="mainwindow.cpp" line="3298"/> <source>Nexus ID for this Mod is unknown</source> <translation type="unfinished">Nexus ID pro tento Mod není známo</translation> </message> <message> - <source>Priority</source> - <translation type="obsolete">Priorita</translation> + <location filename="mainwindow.cpp" line="670"/> + <source>About</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="671"/> + <source>About Qt</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1085"/> + <source>Download?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1086"/> + <source>A download has been started but no installed page plugin recognizes it. +If you download anyway no information (i.e. version) will be associated with the download. +Continue?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1127"/> + <source>Browse Mod Page</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1323"/> + <source>Executable "%1" not found</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1803"/> + <source>Failed to refresh list of esps: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2143"/> + <location filename="mainwindow.cpp" line="2150"/> + <source>Failed to write settings</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2144"/> + <location filename="mainwindow.cpp" line="2151"/> + <source>An error occured trying to write back MO settings: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2147"/> + <source>File is write protected</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2148"/> + <source>Invalid file format (probably a bug)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2149"/> + <source>Unknown error %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2880"/> + <source>failed to move "%1" from mod "%2" to "%3": %4</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2932"/> + <source><Managed by MO></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2933"/> + <source><Managed outside MO></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3109"/> + <source>You need to be logged in with Nexus to resume a download</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3337"/> + <location filename="mainwindow.cpp" line="3777"/> + <source>Create Mod...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3338"/> + <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="3347"/> + <source>A mod with this name already exists</source> + <translation type="unfinished"></translation> </message> <message> - <source>Choose Priority</source> - <translation type="obsolete">Zvol Prioritu</translation> + <location filename="mainwindow.cpp" line="3588"/> + <source>Continue?</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3687"/> + <location filename="mainwindow.cpp" line="3589"/> + <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="3609"/> + <location filename="mainwindow.cpp" line="4526"/> + <source>Sorry</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3610"/> + <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="3662"/> <source>Really enable all visible mods?</source> <translation type="unfinished">Opravdu aktivovat všechny zobrazené mody?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3695"/> + <location filename="mainwindow.cpp" line="3670"/> <source>Really disable all visible mods?</source> <translation type="unfinished">Opravdu deaktivovat všechny zobrazené mody?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3703"/> + <location filename="mainwindow.cpp" line="3678"/> <source>Choose what to export</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3705"/> + <location filename="mainwindow.cpp" line="3680"/> <source>Everything</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3705"/> + <location filename="mainwindow.cpp" line="3680"/> <source>All installed mods are included in the list</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3706"/> + <location filename="mainwindow.cpp" line="3681"/> <source>Active Mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3706"/> + <location filename="mainwindow.cpp" line="3681"/> <source>Only active (checked) mods from your current profile are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3707"/> + <location filename="mainwindow.cpp" line="3682"/> <source>Visible</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3707"/> + <location filename="mainwindow.cpp" line="3682"/> <source>All mods visible in the mod list are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3750"/> + <location filename="mainwindow.cpp" line="3725"/> <source>export failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3774"/> + <location filename="mainwindow.cpp" line="3742"/> <source>Install Mod...</source> <translation type="unfinished">Instaluj Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3776"/> + <location filename="mainwindow.cpp" line="3744"/> <source>Enable all visible</source> <translation type="unfinished">Aktivuj všechny v seznamu</translation> </message> <message> - <location filename="mainwindow.cpp" line="3777"/> + <location filename="mainwindow.cpp" line="3745"/> <source>Disable all visible</source> <translation type="unfinished">Deaktivuj všechny v seznamu</translation> </message> <message> - <location filename="mainwindow.cpp" line="3779"/> + <location filename="mainwindow.cpp" line="3747"/> <source>Check all for update</source> <translation type="unfinished">Skontroluj všechny pro aktualizaci</translation> </message> <message> - <location filename="mainwindow.cpp" line="3783"/> + <location filename="mainwindow.cpp" line="3751"/> <source>Export to csv...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3791"/> + <location filename="mainwindow.cpp" line="3770"/> + <source>All Mods</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3776"/> <source>Sync to Mods...</source> <translation type="unfinished">Synchronizuj s Mody...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3795"/> + <location filename="mainwindow.cpp" line="3780"/> <source>Restore Backup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3796"/> + <location filename="mainwindow.cpp" line="3781"/> <source>Remove Backup...</source> <translation type="unfinished"></translation> </message> <message> - <source>Set Category</source> - <translation type="obsolete">Označ Kategorii</translation> + <location filename="mainwindow.cpp" line="3785"/> + <source>Add/Remove Categories</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3808"/> + <location filename="mainwindow.cpp" line="3790"/> + <source>Replace Categories</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3795"/> <source>Primary Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3815"/> + <location filename="mainwindow.cpp" line="3802"/> <source>Change versioning scheme</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3819"/> + <location filename="mainwindow.cpp" line="3806"/> <source>Un-ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3821"/> + <location filename="mainwindow.cpp" line="3808"/> <source>Ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3826"/> + <location filename="mainwindow.cpp" line="3813"/> <source>Rename Mod...</source> <translation type="unfinished">Přejmenuj Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3827"/> + <location filename="mainwindow.cpp" line="3814"/> <source>Remove Mod...</source> <translation type="unfinished">Odstranit Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3828"/> + <location filename="mainwindow.cpp" line="3815"/> <source>Reinstall Mod</source> <translation type="unfinished">Přeinstaluj Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="3831"/> + <location filename="mainwindow.cpp" line="3818"/> <source>Un-Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3834"/> - <location filename="mainwindow.cpp" line="3838"/> + <location filename="mainwindow.cpp" line="3821"/> + <location filename="mainwindow.cpp" line="3825"/> <source>Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3835"/> + <location filename="mainwindow.cpp" line="3822"/> <source>Won't endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3841"/> + <location filename="mainwindow.cpp" line="3828"/> <source>Endorsement state unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3848"/> + <location filename="mainwindow.cpp" line="3835"/> <source>Ignore missing data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3851"/> + <location filename="mainwindow.cpp" line="3838"/> <source>Visit on Nexus</source> <translation type="unfinished">Navštiv na Nexusu</translation> </message> <message> - <location filename="mainwindow.cpp" line="3852"/> + <location filename="mainwindow.cpp" line="3839"/> <source>Open in explorer</source> <translation type="unfinished">Otevři v prohlížeči</translation> </message> <message> - <location filename="mainwindow.cpp" line="3855"/> + <location filename="mainwindow.cpp" line="3843"/> <source>Information...</source> <translation type="unfinished">Informace...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3861"/> - <location filename="mainwindow.cpp" line="5086"/> + <location filename="mainwindow.cpp" line="3850"/> + <location filename="mainwindow.cpp" line="5089"/> <source>Exception: </source> <translation type="unfinished">Výnimky:</translation> </message> <message> - <location filename="mainwindow.cpp" line="3863"/> - <location filename="mainwindow.cpp" line="5088"/> + <location filename="mainwindow.cpp" line="3852"/> + <location filename="mainwindow.cpp" line="5091"/> <source>Unknown exception</source> <translation type="unfinished">Neznámá výnimka</translation> </message> <message> - <location filename="mainwindow.cpp" line="3885"/> + <location filename="mainwindow.cpp" line="3871"/> + <source><All></source> + <translation type="unfinished"><Všechny></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3873"/> <source><Multiple></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3902"/> + <location filename="mainwindow.cpp" line="3890"/> <source>Really delete "%1"?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4013"/> + <location filename="mainwindow.cpp" line="4001"/> <source>Fix Mods...</source> <translation type="unfinished">Oprav Mody...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4014"/> + <location filename="mainwindow.cpp" line="4002"/> <source>Delete</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4038"/> - <location filename="mainwindow.cpp" line="4069"/> + <location filename="mainwindow.cpp" line="4027"/> + <location filename="mainwindow.cpp" line="4060"/> <source>failed to remove %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Nepodařilo se odstranit %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4053"/> - <location filename="mainwindow.cpp" line="4084"/> + <location filename="mainwindow.cpp" line="4044"/> + <location filename="mainwindow.cpp" line="4076"/> <source>failed to create %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Nepodařilo se vytvořit %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4107"/> + <location filename="mainwindow.cpp" line="4100"/> <source>Can't change download directory while downloads are in progress!</source> <translation type="unfinished">Není možné změnit cíl pro stahování když probíhá stahování!</translation> </message> <message> - <location filename="mainwindow.cpp" line="4174"/> + <location filename="mainwindow.cpp" line="4182"/> <source>Download failed</source> <translation type="unfinished">Stahování zlyhalo</translation> </message> <message> - <location filename="mainwindow.cpp" line="4323"/> + <location filename="mainwindow.cpp" line="4333"/> <source>failed to write to file %1</source> <translation type="unfinished">Nezdařil se zápis do souboru %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4329"/> + <location filename="mainwindow.cpp" line="4339"/> <source>%1 written</source> <translation type="unfinished">%1 zapsáno</translation> </message> <message> - <location filename="mainwindow.cpp" line="4368"/> + <location filename="mainwindow.cpp" line="4378"/> <source>Select binary</source> <translation type="unfinished">Vyber binární soubor</translation> </message> <message> - <location filename="mainwindow.cpp" line="4368"/> + <location filename="mainwindow.cpp" line="4378"/> <source>Binary</source> <translation type="unfinished">Soubor</translation> </message> <message> - <location filename="mainwindow.cpp" line="4394"/> + <location filename="mainwindow.cpp" line="4404"/> <source>Enter Name</source> <translation type="unfinished">Zadej jméno</translation> </message> <message> - <location filename="mainwindow.cpp" line="4395"/> + <location filename="mainwindow.cpp" line="4405"/> <source>Please enter a name for the executable</source> <translation type="unfinished">Prosím zadej jméno pro spouštění</translation> </message> <message> - <location filename="mainwindow.cpp" line="4406"/> + <location filename="mainwindow.cpp" line="4416"/> <source>Not an executable</source> <translation type="unfinished">Není spustitelný</translation> </message> <message> - <location filename="mainwindow.cpp" line="4406"/> + <location filename="mainwindow.cpp" line="4416"/> <source>This is not a recognized executable.</source> <translation type="unfinished">Tenhle soubor není rozpoznán jako spustitelný.</translation> </message> <message> - <location filename="mainwindow.cpp" line="4431"/> - <location filename="mainwindow.cpp" line="4456"/> + <location filename="mainwindow.cpp" line="4441"/> + <location filename="mainwindow.cpp" line="4466"/> <source>Replace file?</source> <translation type="unfinished">Nahradit soubor?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4431"/> + <location filename="mainwindow.cpp" line="4441"/> <source>There already is a hidden version of this file. Replace it?</source> <translation type="unfinished">Už existuje skrytá verze tohto souboru. Nahradit?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4434"/> - <location filename="mainwindow.cpp" line="4459"/> + <location filename="mainwindow.cpp" line="4444"/> + <location filename="mainwindow.cpp" line="4469"/> <source>File operation failed</source> <translation type="unfinished">Operace se souborem zlyhala</translation> </message> <message> - <location filename="mainwindow.cpp" line="4434"/> - <location filename="mainwindow.cpp" line="4459"/> + <location filename="mainwindow.cpp" line="4444"/> + <location filename="mainwindow.cpp" line="4469"/> <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> <translation type="unfinished">Nepodařilo se odstranit "%1". Možná nejsou k dispozici požadována práva?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4456"/> + <location filename="mainwindow.cpp" line="4466"/> <source>There already is a visible version of this file. Replace it?</source> <translation type="unfinished">Už existuje viditelná verze tohto souboru. Nahradit?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4489"/> + <location filename="mainwindow.cpp" line="4499"/> <source>file not found: %1</source> - <translation type="unfinished">soubor nenalezen: %1</translation> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4502"/> + <location filename="mainwindow.cpp" line="4512"/> <source>failed to generate preview for %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4516"/> + <location filename="mainwindow.cpp" line="4526"/> <source>Sorry, can't preview anything. This function currently does not support extracting from bsas.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4547"/> + <location filename="mainwindow.cpp" line="4557"/> <source>Update available</source> <translation type="unfinished">Aktualizace k dispozici</translation> </message> <message> - <location filename="mainwindow.cpp" line="4584"/> + <location filename="mainwindow.cpp" line="4594"/> <source>Open/Execute</source> <translation type="unfinished">Otevřít/Spustit</translation> </message> <message> - <location filename="mainwindow.cpp" line="4585"/> + <location filename="mainwindow.cpp" line="4595"/> <source>Add as Executable</source> <translation type="unfinished">Přidat Spouštení</translation> </message> <message> - <location filename="mainwindow.cpp" line="4589"/> + <location filename="mainwindow.cpp" line="4599"/> <source>Preview</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4595"/> + <location filename="mainwindow.cpp" line="4605"/> <source>Un-Hide</source> <translation type="unfinished">Odekrýt</translation> </message> <message> - <location filename="mainwindow.cpp" line="4597"/> + <location filename="mainwindow.cpp" line="4607"/> <source>Hide</source> <translation type="unfinished">Skrýt</translation> </message> <message> - <location filename="mainwindow.cpp" line="4603"/> + <location filename="mainwindow.cpp" line="4613"/> <source>Write To File...</source> <translation type="unfinished">Zápis do souboru...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4634"/> + <location filename="mainwindow.cpp" line="4638"/> <source>Do you want to endorse Mod Organizer on %1 now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5047"/> - <source>Remove</source> + <location filename="mainwindow.cpp" line="4757"/> + <source>Request to Nexus failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5077"/> - <source>Unlock load order</source> + <location filename="mainwindow.cpp" line="4764"/> + <location filename="mainwindow.cpp" line="4782"/> + <source>login successful</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5080"/> - <source>Lock load order</source> + <location filename="mainwindow.cpp" line="4791"/> + <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="4797"/> + <source>login failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5149"/> - <source>BOSS working</source> + <location filename="mainwindow.cpp" line="4807"/> + <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="4840"/> + <source>Error</source> + <translation type="unfinished">Chyba</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4840"/> + <source>failed to extract %1 (errorcode %2)</source> + <translation type="unfinished">zlyhala extrakce %1 (errorcode %2)</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4935"/> + <source>Extract...</source> + <translation type="unfinished">Extrakce...</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4997"/> + <source>Edit Categories...</source> + <translation type="unfinished">Editovat Kategorie...</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4998"/> + <source>Deselect filter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5157"/> - <source>failed to run boss: %1</source> + <location filename="mainwindow.cpp" line="5049"/> + <source>Remove</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4770"/> - <source>Request to Nexus failed: %1</source> + <location filename="mainwindow.cpp" line="5060"/> + <source>Enable all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1284"/> - <source>Executable "%1" not found</source> + <location filename="mainwindow.cpp" line="5061"/> + <source>Disable all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1789"/> - <source>Failed to refresh list of esps: %1</source> + <location filename="mainwindow.cpp" line="5080"/> + <source>Unlock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3346"/> - <source>This will move all files from overwrite into a new, regular mod. -Please enter a name:</source> + <location filename="mainwindow.cpp" line="5083"/> + <source>Lock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3798"/> - <source>Add/Remove Categories</source> + <location filename="mainwindow.cpp" line="5212"/> + <source>depends on missing "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3803"/> - <source>Replace Categories</source> + <location filename="mainwindow.cpp" line="5232"/> + <source>No profile set</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4777"/> - <location filename="mainwindow.cpp" line="4794"/> - <source>login successful</source> + <location filename="mainwindow.cpp" line="5280"/> + <source>LOOT working</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4803"/> - <source>login failed: %1. Trying to download anyway</source> - <translation type="unfinished">přihlášení zlyhalo: %1. Pokouším se beztak stahovat</translation> + <location filename="mainwindow.cpp" line="5326"/> + <source>loot failed. Exit code was: %1</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4809"/> - <source>login failed: %1</source> - <translation type="unfinished">přihlášení zlyhalo: %1</translation> + <location filename="mainwindow.cpp" line="5333"/> + <source>failed to run loot: %1</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4818"/> - <source>login failed: %1. You need to log-in with Nexus to update MO.</source> - <translation type="unfinished">přihlášení zlyhalo: %1. Na aktualizaci MO je potřebné přihlášení k Nexusu.</translation> + <location filename="mainwindow.cpp" line="5336"/> + <source>Errors occured</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4851"/> - <source>Error</source> - <translation type="unfinished">Chyba</translation> + <location filename="mainwindow.cpp" line="5384"/> + <source>Backup of load order created</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4851"/> - <source>failed to extract %1 (errorcode %2)</source> - <translation type="unfinished">zlyhala extrakce %1 (errorcode %2)</translation> + <location filename="mainwindow.cpp" line="5394"/> + <source>Choose backup to restore</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4946"/> - <source>Extract...</source> - <translation type="unfinished">Extrakce...</translation> + <location filename="mainwindow.cpp" line="5407"/> + <source>No Backups</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5002"/> - <source>Edit Categories...</source> - <translation type="unfinished">Editovat Kategorie...</translation> + <location filename="mainwindow.cpp" line="5407"/> + <source>There are no backups to restore</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5057"/> - <source>Enable all</source> + <location filename="mainwindow.cpp" line="5428"/> + <location filename="mainwindow.cpp" line="5449"/> + <source>Restore failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5058"/> - <source>Disable all</source> + <location filename="mainwindow.cpp" line="5429"/> + <location filename="mainwindow.cpp" line="5450"/> + <source>Failed to restore the backup. Errorcode: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5440"/> + <source>Backup of modlist created</source> <translation type="unfinished"></translation> </message> </context> @@ -2859,28 +2867,20 @@ Please enter a name:</source> <source>Placeholder</source> <translation>#Placeholder</translation> </message> - <message> - <source>Please install NCC</source> - <translation type="obsolete">Prosím nainstalujte doplněk NCC</translation> - </message> </context> <context> <name>ModInfo</name> <message> - <location filename="modinfo.cpp" line="96"/> - <location filename="modinfo.cpp" line="125"/> + <location filename="modinfo.cpp" line="106"/> + <location filename="modinfo.cpp" line="135"/> <source>invalid index %1</source> <translation>neplatný index %1</translation> </message> - <message> - <source>invalid mod id %1</source> - <translation type="obsolete">neplatné mod id %1</translation> - </message> </context> <context> <name>ModInfoBackup</name> <message> - <location filename="modinfo.cpp" line="820"/> + <location filename="modinfo.cpp" line="898"/> <source>This is the backup of a mod</source> <translation type="unfinished"></translation> </message> @@ -2909,7 +2909,7 @@ Please enter a name:</source> </message> <message> <location filename="modinfodialog.ui" line="67"/> - <location filename="modinfodialog.ui" line="155"/> + <location filename="modinfodialog.ui" line="175"/> <source>Save</source> <translation>Uložit</translation> </message> @@ -2919,83 +2919,73 @@ Please enter a name:</source> <translation>INI soubory</translation> </message> <message> - <location filename="modinfodialog.ui" line="97"/> + <location filename="modinfodialog.ui" line="91"/> + <source>Ini Files</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="104"/> <source>This is a list of .ini files in the mod.</source> <translation>Tohle je seznam .ini souborů v modu.</translation> </message> <message> - <location filename="modinfodialog.ui" line="100"/> + <location filename="modinfodialog.ui" line="107"/> <source>This is a list of .ini files in the mod. These are usually used to configure the behaviour of mods if there are configurable parameters.</source> <translation>Tohle je seznam .ini souborů v modu. Dají se upravovat pro zmenu konfigurace a chování modu, pokud umožňuje takové parametry.</translation> </message> <message> - <location filename="modinfodialog.ui" line="149"/> + <location filename="modinfodialog.ui" line="114"/> + <source>Ini Tweaks</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="130"/> + <source>This is a list of ini tweaks (ini modifications that can be toggled).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="133"/> + <source>This is a list of ini tweaks. Ini Tweaks are (usually small) fragments of ini files that are applied over existing settings in skyrim.ini/skyrimprefs.ini. Each tweak can be toggled individually. You should check the description of the mod wether the tweaks are really optional.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="169"/> <source>Save changes to the file.</source> <translation>Uložit změny do souboru.</translation> </message> <message> - <location filename="modinfodialog.ui" line="152"/> + <location filename="modinfodialog.ui" line="172"/> <source>Save changes to the file. This overwrites the original. There is no automatic backup!</source> <translation>Uložit změny do souboru.Tohle přepíše původní soubor. Nevytváří se žádná automatická záloha!</translation> </message> <message> - <location filename="modinfodialog.ui" line="165"/> + <location filename="modinfodialog.ui" line="185"/> <source>Images</source> <translation>Obrázky</translation> </message> <message> - <location filename="modinfodialog.ui" line="220"/> + <location filename="modinfodialog.ui" line="240"/> <source>Images located in the mod.</source> <translation>Obrázky obsažené v modu.</translation> </message> <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Tohle je seznam všech obrázků (.jpg a.png) obsažených v modu, jako naříklad screenshoty. Kliknutím na jeden ho zvětšíš.</span></p></body></html></translation> + <location filename="modinfodialog.ui" line="243"/> + <source>This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="256"/> - <location filename="modinfodialog.ui" line="275"/> + <location filename="modinfodialog.ui" line="276"/> + <location filename="modinfodialog.ui" line="295"/> <source>Optional ESPs</source> <translation>Volitelné ESP</translation> </message> <message> - <location filename="modinfodialog.ui" line="262"/> + <location filename="modinfodialog.ui" line="282"/> <source>List of esps and esms that can not be loaded by the game.</source> <translation>Seznam souborů .esp a .esm, které nebudou načteni do hry. </translation> </message> <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">They usually contain optional functionality, see the readme.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Most mods do not have optional esps, so chances are good you are looking at an empty list.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Seznam souborů .esp a .esm, které nebudou načteni do hry. Taky se nezobrazí v seznamu esp v hlavním okně MO.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Obvykle obsahují volitelné funkce modu, přečti si popis k modu.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Většina modů nemá volitelné esp, tak s nejvyšší pravděpodobností býva tenhle seznam prázdný.</span></p></body></html></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="223"/> - <source>This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="265"/> + <location filename="modinfodialog.ui" line="285"/> <source>List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window. They usually contain optional functionality, see the readme. @@ -3003,103 +2993,103 @@ Most mods do not have optional esps, so chances are good you are looking at an e <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="290"/> + <location filename="modinfodialog.ui" line="310"/> <source>Make the selected mod in the lower list unavailable.</source> <translation>Znepřístupni označený mod v seznamu dolů.</translation> </message> <message> - <location filename="modinfodialog.ui" line="293"/> + <location filename="modinfodialog.ui" line="313"/> <source>The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become "invisible" to the game. It can then no longer be activated.</source> <translation>Označený soubor esp (v seznamu dolů) bude přemístěn do podadresáře modu a tak se stane "neviditelným" pro hru. V takovem stavu se nedá aktivovat.</translation> </message> <message> - <location filename="modinfodialog.ui" line="319"/> + <location filename="modinfodialog.ui" line="339"/> <source>Move a file to the data directory.</source> <translation>Přesuň soubor mezi Data.</translation> </message> <message> - <location filename="modinfodialog.ui" line="322"/> + <location filename="modinfodialog.ui" line="342"/> <source>This moves a esp to the esp directory so it can be enabled in the main window. Please note that the ESP merely becomes "available", it will not necessarily be loaded! That is configured in the main window of omo.</source> <translation>Přesune soubor esp do adresáře, kde má být, aby mohl být aktivován. Prosím berte na vědomí, že tato akce jenom soubor "zpřistupní", nedělá ho automaticky aktivním. To se pak aktivuje v hlavním oknu mezi esp.</translation> </message> <message> - <location filename="modinfodialog.ui" line="357"/> + <location filename="modinfodialog.ui" line="377"/> <source>ESPs in the data directory and thus visible to the game.</source> <translation>ESP soubory mezi Data a tedy přístupné pro hru.</translation> </message> <message> - <location filename="modinfodialog.ui" line="360"/> + <location filename="modinfodialog.ui" line="380"/> <source>These are the mod files that are in the (virtual) data directory of your game and will thus be selecteable in the esp list in the main window.</source> <translation>Tady jsou soubory modu, které se nacházejí ve (virtuálním) data adresáři hry a proto je bude možné aktivovat v seznamu esp v hlavním okně.</translation> </message> <message> - <location filename="modinfodialog.ui" line="367"/> + <location filename="modinfodialog.ui" line="387"/> <source>Available ESPs</source> <translation>ESP k dispozici</translation> </message> <message> - <location filename="modinfodialog.ui" line="375"/> + <location filename="modinfodialog.ui" line="395"/> <source>Conflicts</source> <translation>Konflikty</translation> </message> <message> - <location filename="modinfodialog.ui" line="383"/> + <location filename="modinfodialog.ui" line="403"/> <source>The following conflicted files are provided by this mod</source> <translation>Konfliktní soubory, které budou přebity tímhle modem</translation> </message> <message> - <location filename="modinfodialog.ui" line="433"/> - <location filename="modinfodialog.ui" line="483"/> + <location filename="modinfodialog.ui" line="453"/> + <location filename="modinfodialog.ui" line="503"/> <source>File</source> <translation>Soubor</translation> </message> <message> - <location filename="modinfodialog.ui" line="438"/> + <location filename="modinfodialog.ui" line="458"/> <source>Overwritten Mods</source> <translation>Přepsané mody</translation> </message> <message> - <location filename="modinfodialog.ui" line="448"/> + <location filename="modinfodialog.ui" line="468"/> <source>The following conflicted files are provided by other mods</source> <translation>Konfliktní soubory, které další mody přebijou</translation> </message> <message> - <location filename="modinfodialog.ui" line="488"/> + <location filename="modinfodialog.ui" line="508"/> <source>Providing Mod</source> <translation>Mod původu</translation> </message> <message> - <location filename="modinfodialog.ui" line="498"/> + <location filename="modinfodialog.ui" line="518"/> <source>Non-Conflicted files</source> <translation>Nekonfliktní soubory</translation> </message> <message> - <location filename="modinfodialog.ui" line="518"/> + <location filename="modinfodialog.ui" line="538"/> <source>Categories</source> <translation>Kategorie</translation> </message> <message> - <location filename="modinfodialog.ui" line="541"/> + <location filename="modinfodialog.ui" line="561"/> <source>Primary Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="558"/> + <location filename="modinfodialog.ui" line="578"/> <source>Nexus Info</source> <translation>Nexus Info</translation> </message> <message> - <location filename="modinfodialog.ui" line="566"/> + <location filename="modinfodialog.ui" line="586"/> <source>Mod ID</source> <translation>Mod ID</translation> </message> <message> - <location filename="modinfodialog.ui" line="573"/> + <location filename="modinfodialog.ui" line="593"/> <source>Mod ID for this mod on Nexus.</source> <translation>Mod ID tohodle modu na Nexusu.</translation> </message> <message> - <location filename="modinfodialog.ui" line="576"/> + <location filename="modinfodialog.ui" line="596"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -3112,7 +3102,7 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Mod ID pro tenhle mod na Nexusu. Vyplňuje se automaticky pokud ste soubor i stáhli i nainstalovali přímo skrz MO. Jinak ho můžete zadat ručne. Správne ID naleznete u modu na Nexusu. Adresa bude vypadat takhle: </span><a href=" http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://skyrim.nexusmods.com/downloads/file.php?id=1334</span></a><a href="http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" font-size:8pt; color:#000000;">. V takovem případe 1334 je Mod ID. Mimo jiné odkaz je přímo na Mod Organizer tak proč rovnou nejít zadat Endorse?</span></a></p></body></html></translation> </message> <message> - <location filename="modinfodialog.ui" line="600"/> + <location filename="modinfodialog.ui" line="620"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -3125,27 +3115,27 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Nainstalovaná verze modu. Bublina ukáže číslo nejaktuálnější verzi modu na Nexusu. Číslo verze se nastaví samo jenom pokud byl mod nainstalován skrz MO.</span></p></body></html></translation> </message> <message> - <location filename="modinfodialog.ui" line="607"/> + <location filename="modinfodialog.ui" line="627"/> <source>Version</source> <translation>Verze</translation> </message> <message> - <location filename="modinfodialog.ui" line="637"/> + <location filename="modinfodialog.ui" line="657"/> <source>Refresh</source> <translation type="unfinished">Znovunačíst</translation> </message> <message> - <location filename="modinfodialog.ui" line="640"/> + <location filename="modinfodialog.ui" line="660"/> <source>Refresh all information from Nexus.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="654"/> + <location filename="modinfodialog.ui" line="674"/> <source>Description</source> <translation>Popis</translation> </message> <message> - <location filename="modinfodialog.ui" line="669"/> + <location filename="modinfodialog.ui" line="689"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -3154,60 +3144,27 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <source>about:blank</source> - <translation type="obsolete">about:blank</translation> - </message> - <message> - <source>Files</source> - <translation type="obsolete">Soubory</translation> - </message> - <message> - <source>List of files currently uploaded on nexus. Double click to download.</source> - <translation type="obsolete">Seznam souborů momentálně nahraných na nexusu. Dvojklik stáhne soubor.</translation> - </message> - <message> - <source>Type</source> - <translation type="obsolete">Druh</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="1221"/> - <source>Name</source> - <translation type="unfinished">Jméno</translation> - </message> - <message> - <source>Size (kB)</source> - <translation type="obsolete">Velikost (kB)</translation> - </message> - <message> - <location filename="modinfodialog.ui" line="704"/> + <location filename="modinfodialog.ui" line="724"/> <source>Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="718"/> + <location filename="modinfodialog.ui" line="738"/> <source>Notes</source> <translation type="unfinished"></translation> </message> <message> - <source>Endorsements are an important motivation for authors. Please don't forget to endorse mods you like.</source> - <translation type="obsolete">Endorsmenty jsou důležite pro motivaci autorů modů. Prosím nezapomeňte endorsovat mody, které se vám líbí.</translation> - </message> - <message> - <source>Have you endorsed this yet?</source> - <translation type="obsolete">Už jste tenhle mod endorsovali?</translation> - </message> - <message> - <location filename="modinfodialog.ui" line="728"/> + <location filename="modinfodialog.ui" line="748"/> <source>Filetree</source> <translation>Struktura souborů</translation> </message> <message> - <location filename="modinfodialog.ui" line="737"/> + <location filename="modinfodialog.ui" line="757"/> <source>A directory view of this mod</source> <translation>Zložkový náhled na mod</translation> </message> <message> - <location filename="modinfodialog.ui" line="740"/> + <location filename="modinfodialog.ui" line="760"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -3222,274 +3179,258 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Zmeny se okamžite dejí přimo na disku, takže</span><span style=" font-size:8pt; font-weight:600;">buďte opatrní</span><span style=" font-size:8pt;">.</span></p></body></html></translation> </message> <message> - <location filename="modinfodialog.ui" line="767"/> + <location filename="modinfodialog.ui" line="787"/> <source>Previous</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="774"/> + <location filename="modinfodialog.ui" line="794"/> <source>Next</source> <translation type="unfinished">Další</translation> </message> <message> - <location filename="modinfodialog.ui" line="794"/> + <location filename="modinfodialog.ui" line="814"/> <source>Close</source> <translation>Zavřít</translation> </message> <message> - <location filename="modinfodialog.cpp" line="104"/> + <location filename="modinfodialog.cpp" line="165"/> <source>&Delete</source> <translation>&Smazat</translation> </message> <message> - <location filename="modinfodialog.cpp" line="105"/> + <location filename="modinfodialog.cpp" line="166"/> <source>&Rename</source> <translation>&Přejmenovat</translation> </message> <message> - <location filename="modinfodialog.cpp" line="106"/> + <location filename="modinfodialog.cpp" line="167"/> <source>&Hide</source> <translation>&Skrýt</translation> </message> <message> - <location filename="modinfodialog.cpp" line="107"/> + <location filename="modinfodialog.cpp" line="168"/> <source>&Unhide</source> <translation>&Odekrýt</translation> </message> <message> - <location filename="modinfodialog.cpp" line="108"/> + <location filename="modinfodialog.cpp" line="169"/> <source>&Open</source> <translation>&Otevřít</translation> </message> <message> - <location filename="modinfodialog.cpp" line="109"/> + <location filename="modinfodialog.cpp" line="170"/> <source>&New Folder</source> <translation>&Nová Složka</translation> </message> <message> - <location filename="modinfodialog.cpp" line="405"/> - <location filename="modinfodialog.cpp" line="420"/> + <location filename="modinfodialog.cpp" line="416"/> + <location filename="modinfodialog.cpp" line="431"/> <source>Save changes?</source> <translation>Uložit změny?</translation> </message> <message> - <source>Save changes to the "%1"?</source> - <translation type="obsolete">Uložit změny v "%1"?</translation> + <location filename="modinfodialog.cpp" line="416"/> + <location filename="modinfodialog.cpp" line="431"/> + <source>Save changes to "%1"?</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="612"/> + <location filename="modinfodialog.cpp" line="621"/> <source>File Exists</source> <translation>Soubor existuje</translation> </message> <message> - <location filename="modinfodialog.cpp" line="612"/> + <location filename="modinfodialog.cpp" line="621"/> <source>A file with that name exists, please enter a new one</source> <translation>Soubor s rovnakým názvem existuje, prosím zadejte jiné jméno</translation> </message> <message> - <location filename="modinfodialog.cpp" line="629"/> + <location filename="modinfodialog.cpp" line="638"/> <source>failed to move file</source> <translation>zlyhalo přesunutí souboru</translation> </message> <message> - <location filename="modinfodialog.cpp" line="654"/> + <location filename="modinfodialog.cpp" line="663"/> <source>failed to create directory "optional"</source> <translation>zlyhalo vytvoření zložky "optional"</translation> </message> <message> - <location filename="modinfodialog.cpp" line="692"/> - <location filename="modinfodialog.cpp" line="1198"/> + <location filename="modinfodialog.cpp" line="701"/> + <location filename="modinfodialog.cpp" line="1206"/> <source>Info requested, please wait</source> <translation>Info vyžádáno, prosím počkejte</translation> </message> <message> - <source> -(description incomplete, please visit nexus)</source> - <translation type="obsolete">(popis chybí, prosím navštivte nexus pro kompletní zobrazení)</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="807"/> - <source>(description incomplete, please visit nexus)</source> - <translation>(popis chybí, prosím navštivte nexus pro kompletní zobrazení)</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="762"/> - <source>Current Version: %1</source> - <translation>Současná verze: %1</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="766"/> - <source>No update available</source> - <translation>Žádný update není k dispozici</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="746"/> + <location filename="modinfodialog.cpp" line="755"/> <source>Main</source> <translation>Hlavní</translation> </message> <message> - <location filename="modinfodialog.cpp" line="405"/> - <location filename="modinfodialog.cpp" line="420"/> - <source>Save changes to "%1"?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="747"/> + <location filename="modinfodialog.cpp" line="756"/> <source>Update</source> <translation>Update</translation> </message> <message> - <location filename="modinfodialog.cpp" line="748"/> + <location filename="modinfodialog.cpp" line="757"/> <source>Optional</source> <translation>Volitelné</translation> </message> <message> - <location filename="modinfodialog.cpp" line="749"/> + <location filename="modinfodialog.cpp" line="758"/> <source>Old</source> <translation>Staré</translation> </message> <message> - <location filename="modinfodialog.cpp" line="750"/> + <location filename="modinfodialog.cpp" line="759"/> <source>Misc</source> <translation>Jiné</translation> </message> <message> - <location filename="modinfodialog.cpp" line="751"/> + <location filename="modinfodialog.cpp" line="760"/> <source>Unknown</source> <translation>Neznámé</translation> </message> <message> - <source>request failed: %1</source> - <translation type="obsolete">požadavka zlyhala: %1</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="822"/> - <source><a href="%1">Visit on Nexus</a></source> - <translation><a href="%1">Navštivte na Nexusu</a></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="912"/> - <location filename="modinfodialog.cpp" line="917"/> - <source>Confirm</source> - <translation>Potvrdit</translation> + <location filename="modinfodialog.cpp" line="771"/> + <source>Current Version: %1</source> + <translation>Současná verze: %1</translation> </message> <message> - <source>Download "%1"?</source> - <translation type="obsolete">Stáhnout "%1"?</translation> + <location filename="modinfodialog.cpp" line="775"/> + <source>No update available</source> + <translation>Žádný update není k dispozici</translation> </message> <message> - <source>Download started</source> - <translation type="obsolete">Stahování začalo</translation> + <location filename="modinfodialog.cpp" line="816"/> + <source>(description incomplete, please visit nexus)</source> + <translation>(popis chybí, prosím navštivte nexus pro kompletní zobrazení)</translation> </message> <message> - <source>Exception: %1</source> - <translation type="obsolete">Výnimka: %1</translation> + <location filename="modinfodialog.cpp" line="831"/> + <source><a href="%1">Visit on Nexus</a></source> + <translation><a href="%1">Navštivte na Nexusu</a></translation> </message> <message> - <location filename="modinfodialog.cpp" line="901"/> + <location filename="modinfodialog.cpp" line="910"/> <source>Failed to delete %1</source> <translation>Zlyhalo vymazání %1</translation> </message> <message> - <location filename="modinfodialog.cpp" line="912"/> + <location filename="modinfodialog.cpp" line="921"/> + <location filename="modinfodialog.cpp" line="926"/> + <source>Confirm</source> + <translation>Potvrdit</translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="921"/> <source>Are sure you want to delete "%1"?</source> <translation>Jsi si jistý, že chceš vymazat "%1"?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="917"/> + <location filename="modinfodialog.cpp" line="926"/> <source>Are sure you want to delete the selected files?</source> <translation>Jsi si jistý, že chceš vymazat označené soubory?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="991"/> - <location filename="modinfodialog.cpp" line="997"/> + <location filename="modinfodialog.cpp" line="1000"/> + <location filename="modinfodialog.cpp" line="1006"/> <source>New Folder</source> <translation>Nová zložka</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1003"/> + <location filename="modinfodialog.cpp" line="1012"/> <source>Failed to create "%1"</source> <translation>Zlyhalo vytvoření "%1"</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1107"/> - <location filename="modinfodialog.cpp" line="1131"/> + <location filename="modinfodialog.cpp" line="1116"/> + <location filename="modinfodialog.cpp" line="1140"/> <source>Replace file?</source> <translation>Nahradit soubor?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1107"/> + <location filename="modinfodialog.cpp" line="1116"/> <source>There already is a hidden version of this file. Replace it?</source> <translation>Už existuje skrytá verze tohto souboru. Nahradit?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1110"/> - <location filename="modinfodialog.cpp" line="1134"/> + <location filename="modinfodialog.cpp" line="1119"/> + <location filename="modinfodialog.cpp" line="1143"/> <source>File operation failed</source> <translation>Operace se souborem zlyhala</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1110"/> - <location filename="modinfodialog.cpp" line="1134"/> + <location filename="modinfodialog.cpp" line="1119"/> + <location filename="modinfodialog.cpp" line="1143"/> <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> <translation>Nepodařilo se odstranit "%1". Možná nejsou k dispozici požadována práva?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1121"/> - <location filename="modinfodialog.cpp" line="1144"/> + <location filename="modinfodialog.cpp" line="1130"/> + <location filename="modinfodialog.cpp" line="1153"/> <source>failed to rename %1 to %2</source> <translation>Nezdařilo se přejmenovat %1 na %2</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1131"/> + <location filename="modinfodialog.cpp" line="1140"/> <source>There already is a visible version of this file. Replace it?</source> <translation>Už existuje viditelná verze tohto souboru. Nahradit?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1178"/> + <location filename="modinfodialog.cpp" line="1186"/> <source>Un-Hide</source> <translation>Odekrýt</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1180"/> + <location filename="modinfodialog.cpp" line="1188"/> <source>Hide</source> <translation>Skrýt</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1221"/> + <location filename="modinfodialog.cpp" line="1229"/> + <source>Name</source> + <translation type="unfinished">Jméno</translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1229"/> <source>Please enter a name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1225"/> - <location filename="modinfodialog.cpp" line="1228"/> + <location filename="modinfodialog.cpp" line="1233"/> + <location filename="modinfodialog.cpp" line="1236"/> <source>Error</source> <translation type="unfinished">Chyba</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1225"/> + <location filename="modinfodialog.cpp" line="1233"/> <source>Invalid name. Must be a valid file name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1228"/> + <location filename="modinfodialog.cpp" line="1236"/> <source>A tweak by that name exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1240"/> + <location filename="modinfodialog.cpp" line="1250"/> <source>Create Tweak</source> <translation type="unfinished"></translation> </message> </context> <context> - <name>ModInfoOverwrite</name> + <name>ModInfoForeign</name> <message> - <source>Overwrite</source> - <translation type="obsolete">Přepsat</translation> + <location filename="modinfo.cpp" line="987"/> + <source>This pseudo mod represents content managed outside MO. It isn't modified by MO.</source> + <translation type="unfinished"></translation> </message> +</context> +<context> + <name>ModInfoOverwrite</name> <message> - <location filename="modinfo.cpp" line="866"/> + <location filename="modinfo.cpp" line="943"/> <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source> <translation type="unfinished">Tenhle kvázi mod obsahuje soubory, které byli vytvořeny nebo změněny během spuštení, tzn. ve virtuálním Data stromě (ku příkladu Construction Kit je sem vytváří')</translation> </message> @@ -3497,17 +3438,22 @@ p, li { white-space: pre-wrap; } <context> <name>ModInfoRegular</name> <message> - <location filename="modinfo.cpp" line="393"/> <source>failed to write %1/meta.ini: %2</source> - <translation>zlyhal zápis %1/meta.ini: %2</translation> + <translation type="obsolete">zlyhal zápis %1/meta.ini: %2</translation> </message> <message> - <location filename="modinfo.cpp" line="661"/> + <location filename="modinfo.cpp" line="557"/> + <location filename="modinfo.cpp" line="560"/> + <source>failed to write %1/meta.ini: error %2</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfo.cpp" line="811"/> <source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source> <translation type="unfinished">%1 neobsahuje žádné esp/esm ani jiné použitelné struktury (textures, meshes, interface,...)</translation> </message> <message> - <location filename="modinfo.cpp" line="665"/> + <location filename="modinfo.cpp" line="815"/> <source>Categories: <br></source> <translation type="unfinished">Kategorie: <br></translation> </message> @@ -3515,27 +3461,6 @@ p, li { white-space: pre-wrap; } <context> <name>ModList</name> <message> - <location filename="modlist.cpp" line="776"/> - <source>Confirm</source> - <translation>Potvrdit</translation> - </message> - <message> - <source>Really enable all visible mods?</source> - <translation type="obsolete">Opravdu aktivovat všechny zobrazené mody?</translation> - </message> - <message> - <source>Really disable all visible mods?</source> - <translation type="obsolete">Opravdu deaktivovat všechny zobrazené mody?</translation> - </message> - <message> - <source>invalid row-index %1</source> - <translation type="obsolete">neplatný index řádku %1</translation> - </message> - <message> - <source>Overwrite</source> - <translation type="obsolete">Přepsat</translation> - </message> - <message> <location filename="modlist.cpp" line="109"/> <source>This entry contains files that have been created inside the virtual data tree (i.e. by the construction kit)</source> <translation>Tenhle záznam obsahuje soubory, které byli vytvořeny během spuštení, tzn. ve virtuálním Data stromě (ku příkladu Construction Kit je sem vytváří')</translation> @@ -3576,141 +3501,130 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <source>min</source> - <translation type="obsolete">min</translation> - </message> - <message> - <source>max</source> - <translation type="obsolete">max</translation> + <location filename="modlist.cpp" line="170"/> + <source>Non-MO</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="850"/> - <source>Category of the mod.</source> + <location filename="modlist.cpp" line="201"/> + <source>invalid</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="851"/> - <source>Id of the mod as used on Nexus.</source> - <translation type="unfinished"></translation> + <source>installed version: %1, newest version: %2</source> + <translation type="obsolete">nainstalovaná verze: %1, nejnovjší verze: %2</translation> </message> <message> - <location filename="modlist.cpp" line="852"/> - <source>Emblemes to highlight things that might require attention.</source> + <location filename="modlist.cpp" line="314"/> + <source>installed version: "%1", newest version: "%2"</source> <translation type="unfinished"></translation> </message> <message> - <source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source> - <translation type="obsolete">%1 neobsahuje žádné esp/esm ani jiné použitelné struktury (textures, meshes, interface,...)</translation> + <location filename="modlist.cpp" line="316"/> + <source>The newest version on Nexus seems to be older than the one you have installed. This could either mean the version you have has been withdrawn (i.e. due to a bug) or the author uses a non-standard versioning scheme and that newest version is actually newer. Either way you may want to "upgrade".</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="318"/> + <location filename="modlist.cpp" line="324"/> <source>Categories: <br></source> <translation>Kategorie: <br></translation> </message> <message> - <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source> - <translation type="obsolete">Tenhle kvázi mod obsahuje soubory, které byli vytvořeny nebo změněny během spuštení, tzn. ve virtuálním Data stromě (ku příkladu Construction Kit je sem vytváří')</translation> + <location filename="modlist.cpp" line="353"/> + <source>Invalid name</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="308"/> - <source>installed version: "%1", newest version: "%2"</source> - <oldsource>installed version: %1, newest version: %2</oldsource> - <translation type="unfinished">nainstalovaná verze: %1, nejnovjší verze: %2</translation> + <location filename="modlist.cpp" line="747"/> + <source>drag&drop failed: %1</source> + <translation type="unfinished"></translation> </message> <message> - <source>Name</source> - <translation type="obsolete">Jméno</translation> + <location filename="modlist.cpp" line="810"/> + <source>Confirm</source> + <translation>Potvrdit</translation> </message> <message> - <source>Names of your mods</source> - <translation type="obsolete">Jména vašich modů</translation> + <location filename="modlist.cpp" line="810"/> + <source>Are you sure you want to remove "%1"?</source> + <translation>Určitě chcete odstranit "%1"?</translation> </message> <message> - <location filename="modlist.cpp" line="833"/> - <source>Version</source> - <translation>Verze</translation> + <location filename="modlist.cpp" line="865"/> + <source>Flags</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="847"/> - <source>Version of the mod (if available)</source> - <translation>Verze modu (pokud je k dispozici)</translation> + <location filename="modlist.cpp" line="866"/> + <source>Mod Name</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="834"/> - <source>Priority</source> - <translation>Priorita</translation> + <location filename="modlist.cpp" line="867"/> + <source>Version</source> + <translation>Verze</translation> </message> <message> - <location filename="modlist.cpp" line="197"/> - <source>invalid</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="868"/> + <source>Priority</source> + <translation>Priorita</translation> </message> <message> - <location filename="modlist.cpp" line="310"/> - <source>The newest version on Nexus seems to be older than the one you have installed. This could either mean the version you have has been withdrawn (i.e. due to a bug) or the author uses a non-standard versioning scheme and that newest version is actually newer. Either way you may want to "upgrade".</source> + <location filename="modlist.cpp" line="869"/> + <source>Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="347"/> - <source>Invalid name</source> + <location filename="modlist.cpp" line="870"/> + <source>Nexus ID</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="717"/> - <source>drag&drop failed: %1</source> + <location filename="modlist.cpp" line="871"/> + <source>Installation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="831"/> - <source>Flags</source> + <location filename="modlist.cpp" line="872"/> + <location filename="modlist.cpp" line="888"/> + <source>unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="832"/> - <source>Mod Name</source> + <location filename="modlist.cpp" line="880"/> + <source>Name of your mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="835"/> - <source>Category</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="881"/> + <source>Version of the mod (if available)</source> + <translation>Verze modu (pokud je k dispozici)</translation> </message> <message> - <location filename="modlist.cpp" line="836"/> - <source>Nexus ID</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="882"/> + <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source> + <translation>Priorita aplikace modu. Čím větší, tím "důležitější" je mod a proto může přebít mody s nižší prioritou. </translation> </message> <message> - <location filename="modlist.cpp" line="837"/> - <source>Installation</source> + <location filename="modlist.cpp" line="884"/> + <source>Category of the mod.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="838"/> - <location filename="modlist.cpp" line="854"/> - <source>unknown</source> + <location filename="modlist.cpp" line="885"/> + <source>Id of the mod as used on Nexus.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="846"/> - <source>Name of your mods</source> + <location filename="modlist.cpp" line="886"/> + <source>Emblemes to highlight things that might require attention.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="848"/> - <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source> - <translation>Priorita aplikace modu. Čím větší, tím "důležitější" je mod a proto může přebít mody s nižší prioritou. </translation> - </message> - <message> - <location filename="modlist.cpp" line="853"/> + <location filename="modlist.cpp" line="887"/> <source>Time this mod was installed</source> <translation type="unfinished"></translation> </message> - <message> - <location filename="modlist.cpp" line="776"/> - <source>Are you sure you want to remove "%1"?</source> - <translation>Určitě chcete odstranit "%1"?</translation> - </message> </context> <context> <name>MotDDialog</name> @@ -3720,27 +3634,12 @@ p, li { white-space: pre-wrap; } <translation>Oznam dne</translation> </message> <message> - <source>about:blank</source> - <translation type="obsolete">about:blank</translation> - </message> - <message> <location filename="motddialog.ui" line="42"/> <source>OK</source> <translation>OK</translation> </message> </context> <context> - <name>MyApplication</name> - <message> - <source>an error occured: %1</source> - <translation type="obsolete">vyskytla se chyba: %1</translation> - </message> - <message> - <source>an error occured</source> - <translation type="obsolete">vyskytla se chyba</translation> - </message> -</context> -<context> <name>MyFileSystemModel</name> <message> <location filename="overwriteinfodialog.cpp" line="47"/> @@ -3756,999 +3655,40 @@ p, li { white-space: pre-wrap; } <context> <name>NXMAccessManager</name> <message> - <location filename="nxmaccessmanager.cpp" line="130"/> + <location filename="nxmaccessmanager.cpp" line="144"/> <source>Logging into Nexus</source> <translation type="unfinished"></translation> </message> <message> - <location filename="nxmaccessmanager.cpp" line="145"/> + <location filename="nxmaccessmanager.cpp" line="159"/> <source>timeout</source> <translation>Překročen časový limit</translation> </message> <message> - <location filename="nxmaccessmanager.cpp" line="185"/> + <location filename="nxmaccessmanager.cpp" line="200"/> <source>Please check your password</source> <translation>Oveřte heslo</translation> </message> </context> <context> - <name>NXMUrl</name> - <message> - <source>invalid nxm-link: %1</source> - <translation type="obsolete">neplatný nxm-link: %1</translation> - </message> -</context> -<context> - <name>NexusDialog</name> - <message> - <source>Nexus</source> - <translation type="obsolete">Nexus</translation> - </message> - <message> - <source>Mod ID</source> - <translation type="obsolete">Mod ID</translation> - </message> - <message> - <source>Search</source> - <translation type="obsolete">Hledej</translation> - </message> - <message> - <source>new</source> - <translation type="obsolete">nový</translation> - </message> - <message> - <source>login failed: %1</source> - <translation type="obsolete">přihlášení zlyhalo: %1</translation> - </message> - <message> - <source>login successful</source> - <translation type="obsolete">přihlášen úspěšně</translation> - </message> - <message> - <source>failed to start download</source> - <translation type="obsolete">zlyhal start stahování</translation> - </message> - <message> - <source>Download started</source> - <translation type="obsolete">Stahování začalo</translation> - </message> -</context> -<context> <name>NexusInterface</name> <message> - <location filename="nexusinterface.cpp" line="218"/> + <location filename="nexusinterface.cpp" line="216"/> <source>Failed to guess mod id for "%1", please pick the correct one</source> <translation type="unfinished"></translation> </message> <message> - <location filename="nexusinterface.cpp" line="455"/> + <location filename="nexusinterface.cpp" line="481"/> <source>empty response</source> <translation>prázdná odozva</translation> </message> <message> - <location filename="nexusinterface.cpp" line="483"/> + <location filename="nexusinterface.cpp" line="510"/> <source>invalid response</source> <translation>neplatná odozva</translation> </message> </context> <context> - <name>OMOWindow</name> - <message> - <source>Categories</source> - <translation type="obsolete">Kategorie</translation> - </message> - <message> - <source>Profile</source> - <translation type="obsolete">Profil</translation> - </message> - <message> - <source>Pick a module collection</source> - <translation type="obsolete">Vyber kolekci modulů</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Create profiles here. Each profile contains its own list of active mods and esps. This way you can quickly switch between setups for different play throughs.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Please note that right now your esp load order is not kept seperate for different profiles.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Tady vytvoř profil. Každý profil obsahuje svúj vlastní seznam aktivních modů a esp. Díky tomu můžeš rychle přepínat mezi různými konfiguracemi.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Prosím mějte na paměti, že v současnosti poradí esp se neukladá pro různé profily.</span></p></body></html></translation> - </message> - <message> - <source>Refresh list</source> - <translation type="obsolete">Znovunačíst seznam</translation> - </message> - <message> - <source>Refresh list. This is usually not necessary unless you modified data outside the program.</source> - <translation type="obsolete">Obnoví seznam. Tohle obvykle není zapotřebí, jedine že by jste měnili obsah dat mimo program MO.</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Segoe UI'; font-size:9pt;">List of available mods.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Segoe UI'; font-size:9pt;">Seznam modů k dispozici.</span></p></body></html></translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag&amp;drop mods to change their &quot;installation&quot; orders.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Tohle je seznam nainstalovaných modů. Zaškrtnutím čtverečku aktivuješ mod a tahaním myší můžeš měnit jejich poradí priority.</span></p></body></html></translation> - </message> - <message> - <source>Filter</source> - <translation type="obsolete">Filter</translation> - </message> - <message> - <source>Start</source> - <translation type="obsolete">Start</translation> - </message> - <message> - <source>Pick a program to run.</source> - <translation type="obsolete">Vyber program na spuštění.</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Choose the program to run. Once you start using ModOrganizer, you should always run your game and tools from here or through shortcuts created here, otherwise mods installed through MO will not be visible.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">You can add new Tools to this list, but I can't promise tools I haven't tested will work.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Vyber program, který se spustí. Když začneš používat ModOrganizer, pokaždé by jsi měl spouštet hru i nástroje přes toto nebo přes skratky vytvořené tímto programem, jinak mody nainstalované přes MO nebudou vidět.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Můžeš přidávat různé nástroje, ale neručím, že ty které jsem netestoval poběží správně.</span></p></body></html></translation> - </message> - <message> - <source>Run program</source> - <translation type="obsolete">Spustit program</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Run the selected program with ModOrganizer enabled.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Spusti vybraný program s nastavením ModOrganizeru.</span></p></body></html></translation> - </message> - <message> - <source>Run</source> - <translation type="obsolete">Spustit</translation> - </message> - <message> - <source>Create a shortcut in your start menu to the specified program</source> - <translation type="obsolete">Vytvořit odkaz v Štart menu pro vybraný program</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This creates a start menu shortcut that directly starts the selected program with the MO active.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Tohle vytvoří odkaz v menu Start, který přímo bude spouštět zvolený program přes MO.</span></p></body></html></translation> - </message> - <message> - <source>Menu Shortcut</source> - <translation type="obsolete">Odkaz v Start menu</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">create a desktop shortcut for the selected program</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Vytvoř odkaz na ploše pro zvolený program</span></p></body></html></translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This creates a desktop shortcut that directly starts the selected program with the MO active.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Tímto vytvořiš ikonu s odkazem na ploše, přes kterou se bude přímo spouštět zvolený program s aktivním nastavěním.</span></p></body></html></translation> - </message> - <message> - <source>Desktop Shortcut</source> - <translation type="obsolete">Odkaz na Ploše</translation> - </message> - <message> - <source>ESPs</source> - <translation type="obsolete">ESP</translation> - </message> - <message> - <source>save esp list and load order.</source> - <translation type="obsolete">Uložit seznam esp a pořadí načtení.</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Save the list of active mods and load order. This automatically happens if you close MO or start a program.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Ulož nastavění aktivace a pořadí esp souborů. Tohle se také děje automaticky při spuštění programu nebo ukončení MO.</span></p></body></html></translation> - </message> - <message> - <source>Save</source> - <translation type="obsolete">Uložit</translation> - </message> - <message> - <source>List of available esp/esm files</source> - <translation type="obsolete">Seznam dostupných esp/esm souborů</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This list contains the esps and esms contained in the active mods. These require their own load order. Use drag&amp;drop to modify this load order. Please note that MO will only save the load order for mods that are active/checked.<br />There is a great tool named &quot;BOSS&quot; to automatically sort these files.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Tenhle seznam obsahuje esp a esm soubory z aktivovaných modů. Tyhle mají svoje vlastní pořadí priority. Tahaním myší je možné měnit pořadí. Prosím mějte na paměti, že MO zobrazí seznam jenom z modů, které jsou aktivovány (zaškrtnuté).<br />Existuje skvělý nástroj &quot;BOSS&quot; který automaticky správně seřadí tyhle soubory.</span></p></body></html></translation> - </message> - <message> - <source>BSAs</source> - <translation type="obsolete">BSA</translation> - </message> - <message> - <source>IMPORTANT: You can change the order of BSAs here but installation order of mods has priority over the order specified here!</source> - <translation type="obsolete">DŮLEŽITÉ: Můžete měnit pořadí BSA souborů tady, ale soubory modů ako takých má vyšší prioritu a přepíše konflikty, které by vznikly zde!</translation> - </message> - <message> - <source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source> - <translation type="obsolete">Seznam BS archivů, které jsou k dispozici. Archivy, které jsou zde neni označeny nebudou načteny do hry.</translation> - </message> - <message> - <source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" with loose files in your data directory over which is loaded. -By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored! - -BSAs checked here are loaded in such a way that your installation order is obeyed properly.</source> - <oldsource>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by Skyrim. As such they "compete" with loose files in your data directory over which is loaded. -By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored! - -BSAs checked here are loaded in such a way that your installation order is obeyed properly.</oldsource> - <translation type="obsolete">BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by Skyrim. As such they "compete" with loose files in your data directory over which is loaded. -By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored! - -BSAs checked here are loaded in such a way that your installation order is obeyed properly.</translation> - </message> - <message> - <source>File</source> - <translation type="obsolete">Soubor</translation> - </message> - <message> - <source>Mod</source> - <translation type="obsolete">Mod</translation> - </message> - <message> - <source>Data</source> - <translation type="obsolete">Data</translation> - </message> - <message> - <source>refresh data-directory overview</source> - <translation type="obsolete">znovunačti data</translation> - </message> - <message> - <source>Refresh the overview. This may take a moment.</source> - <translation type="obsolete">Obnov náhled. Tohle může chvíli trvat.</translation> - </message> - <message> - <source>Refresh</source> - <translation type="obsolete">Znovunačíst</translation> - </message> - <message> - <source>This is an overview of your data directory as visible to the game (and tools). </source> - <translation type="obsolete">Tohle je náhled tvé data struktury, kterou načte hra (i nástroje).</translation> - </message> - <message> - <source>Filter the above list so that only conflicts are displayed.</source> - <translation type="obsolete">Přefiltruje seznam nahoře tak, že budou zobrazeny pouze konflikty.</translation> - </message> - <message> - <source>Show only conflicts</source> - <translation type="obsolete">Ukaž jenom konflikty</translation> - </message> - <message> - <source>Saves</source> - <translation type="obsolete">Uložené pozice</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a list of all savegames for this game. Hover over a list entry to get detailed information about the save including a list of esps/esms that were used at the time this save was created but aren't active now.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you click &quot;Fix Mods...&quot; in the context menu, MO will try to activate all mods and esps to fix those missing esps. It will not disable anything!</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Tohle je seznam všech uložených pozic hry. Podrž kurzor ponad pozicí pro zobrazení detailných informací vrátaně seznamu esp/esm, které byli uloženy do pozice, ale v současnosti nejsou aktivní.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Pokud kliknete &quot;Fixni Mody...&quot; v kontext menu, MO se pokusí aktivovat všechny mody a esp soubory, které byli v pozici používány. Nic se však nevypne!</span></p></body></html></translation> - </message> - <message> - <source>Downloads</source> - <translation type="obsolete">Stáhnuté</translation> - </message> - <message> - <source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source> - <translation type="obsolete">Tohle je seznam modů, které jsi stánul z Nexusu. Dvojklik nainstaluje mod.</translation> - </message> - <message> - <source>Compact</source> - <translation type="obsolete">Kompaktní</translation> - </message> - <message> - <source>Refresh list of downloads.</source> - <translation type="obsolete">Znovunačíst seznam stáhnutí.</translation> - </message> - <message> - <source>Tool Bar</source> - <translation type="obsolete">Panel nástrojú</translation> - </message> - <message> - <source>Install Mod</source> - <translation type="obsolete">Instaluj mod</translation> - </message> - <message> - <source>Install &Mod</source> - <translation type="obsolete">Instaluj &Mod</translation> - </message> - <message> - <source>Install a new mod from an archive</source> - <translation type="obsolete">Instaluj nový mod z archívu</translation> - </message> - <message> - <source>Ctrl+M</source> - <translation type="obsolete">Ctrl+M</translation> - </message> - <message> - <source>Profiles</source> - <translation type="obsolete">Profily</translation> - </message> - <message> - <source>&Profiles</source> - <translation type="obsolete">&Profily</translation> - </message> - <message> - <source>Configure Profiles</source> - <translation type="obsolete">Nastav profily</translation> - </message> - <message> - <source>Ctrl+P</source> - <translation type="obsolete">Ctrl+P</translation> - </message> - <message> - <source>Executables</source> - <translation type="obsolete">Spouštění</translation> - </message> - <message> - <source>&Executables</source> - <translation type="obsolete">&Spouštění</translation> - </message> - <message> - <source>Configure the executables that can be started through Mod Organizer</source> - <translation type="obsolete">Konfigurace spouštění, které lze použít pro načtení modů z MO</translation> - </message> - <message> - <source>Ctrl+E</source> - <translation type="obsolete">Ctrl+E</translation> - </message> - <message> - <source>Edit Ini</source> - <translation type="obsolete">Editace Ini</translation> - </message> - <message> - <source>Edit &Ini</source> - <translation type="obsolete">Editace &Ini</translation> - </message> - <message> - <source>Edit the ini file of the current profile</source> - <translation type="obsolete">Editace ini souboru současného profilu</translation> - </message> - <message> - <source>Ctrl+I</source> - <translation type="obsolete">Ctrl+I</translation> - </message> - <message> - <source>Settings</source> - <translation type="obsolete">Nastavení</translation> - </message> - <message> - <source>&Settings</source> - <translation type="obsolete">&Nastavení</translation> - </message> - <message> - <source>Configure settings and workarounds</source> - <translation type="obsolete">Konfigurace a nastavení programu a různých řešení</translation> - </message> - <message> - <source>Ctrl+S</source> - <translation type="obsolete">Ctrl+S</translation> - </message> - <message> - <source>Nexus</source> - <translation type="obsolete">Nexus</translation> - </message> - <message> - <source>Search nexus network for more mods</source> - <translation type="obsolete">Prohledat mody na nexusu</translation> - </message> - <message> - <source>Ctrl+N</source> - <translation type="obsolete">Ctrl+N</translation> - </message> - <message> - <source>Update</source> - <translation type="obsolete">Aktualizuj</translation> - </message> - <message> - <source>Mod Organizer is up-to-date</source> - <translation type="obsolete">Verze Mod Organizer u je aktuální</translation> - </message> - <message> - <source>No Problems</source> - <translation type="obsolete">Žádné problémy</translation> - </message> - <message> - <source>This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them. - -!Work in progress! -Right now this has very limited functionality</source> - <translation type="obsolete">Tohle tlačitko bude svítit pokud MO objeví potenciální problémy v programu a poskytne tipy jak je vyřešit. - -!Ve vývoji! -V současnosti má omezenou funkcionalitu</translation> - </message> - <message> - <source>Problems</source> - <translation type="obsolete">Problémy</translation> - </message> - <message> - <source>There are potential problems with your setup</source> - <translation type="obsolete">Existují potenciální problémy s programem</translation> - </message> - <message> - <source>Everything seems to be in order</source> - <translation type="obsolete">Všechno se jeví v pořádku</translation> - </message> - <message> - <source><li>Your BSAs may be set up incorrectly. The game may not run! Please check the BSA tab</li></source> - <translation type="obsolete"><li>BSA soubory zřejmě nejsou správně nastaveny. Hra nemusí běžet správně! Prosím ověřte kartu BSA</li></translation> - </message> - <message> - <source><li>NCC not installed. You won't be able to install some scripted mod-installers. Get NCC from <a href="http://skyrim.nexusmods.com/downloads/file.php?id=1334">the MO page on nexus</a></li></source> - <translation type="obsolete"><li>NCC není nainstalován. Nebudete moci instalovat některé naskriptované instalátory modů. NCC najdete na <a href="http://skyrim.nexusmods.com/downloads/file.php?id=1334">stránce MO na nexusu</a></li></translation> - </message> - <message> - <source><li>NCC version may be incompatible.</li></source> - <translation type="obsolete"><li>Verze NCC je zřejmě nekompatibilní.</li></translation> - </message> - <message> - <source><li>dotNet is not installed or outdated. This is required to use NCC. Get it from here: <a href="%1">%1</a></li></source> - <translation type="obsolete"><li>dotNet není nainstalován nebo je neaktuální. Tohle vyžaduje NCC. Najděte ho zde: <a href="%1">%1</a></li></translation> - </message> - <message> - <source>Help</source> - <translation type="obsolete">Pomoc</translation> - </message> - <message> - <source>Click here if you have any problems with Mod Organizer</source> - <translation type="obsolete">Klikni zde pokud máš problémy s programem</translation> - </message> - <message> - <source>Help on UI</source> - <translation type="obsolete">Pomoc s programem</translation> - </message> - <message> - <source>Documentation Wiki</source> - <translation type="obsolete">Dokumentace wiki</translation> - </message> - <message> - <source>Report Issue</source> - <translation type="obsolete">Nahlásit chybu</translation> - </message> - <message> - <source>load order could not be saved</source> - <translation type="obsolete">pořadí načtení se nezdařilo uložit</translation> - </message> - <message> - <source>failed to save load order: %1</source> - <translation type="obsolete">zlyhalo uložení pořadí načtení: %1</translation> - </message> - <message> - <source>failed to save archives order, do you have write access to "%1"?</source> - <translation type="obsolete">zlyhal zápis pořadí archivů, máte administrátorsky povoleno zapisovat na "%1"?</translation> - </message> - <message> - <source>Name</source> - <translation type="obsolete">Jméno</translation> - </message> - <message> - <source>Please enter a name for the new profile</source> - <translation type="obsolete">Prosím zadej jméno pro nový profil</translation> - </message> - <message> - <source>failed to create profile: %1</source> - <translation type="obsolete">Zlyhalo vytvoření profilu: %1</translation> - </message> - <message> - <source>Downloads in progress</source> - <translation type="obsolete">Probíhá stahování</translation> - </message> - <message> - <source>There are still downloads in progress, do you really want to quit?</source> - <translation type="obsolete">Pořád probíhá stahování, určitě chcete skončit (zruší stahování)?</translation> - </message> - <message> - <source>init failed</source> - <translation type="obsolete">inicializace zlyhala</translation> - </message> - <message> - <source>failed to read savegame: %1</source> - <translation type="obsolete">nezdařilo se načíst pozici: %1</translation> - </message> - <message> - <source><table cellspacing="5"><tr><td>Save Number</td><td>%1</td></tr><tr><td>Character</td><td>%2</td></tr><tr><td>Level</td><td>%3</td></tr><tr><td>Location</td><td>%4</td></tr><tr><td>Date</td><td>%5</td></tr><tr><td>Screenshot</td><td>%6</td></tr><tr><td>Missing ESPs</td><td><h5>%7</h5></td></tr></table></source> - <translation type="obsolete"><table cellspacing="5"><tr><td>Číslo pozice</td><td>%1</td></tr><tr><td>Postava</td><td>%2</td></tr><tr><td>Úroveň</td><td>%3</td></tr><tr><td>Locace</td><td>%4</td></tr><tr><td>Datum</td><td>%5</td></tr><tr><td>Obrázek</td><td>%6</td></tr><tr><td>Chybějící ESP</td><td><h5>%7</h5></td></tr></table></translation> - </message> - <message> - <source>Failed to start %1</source> - <translation type="obsolete">Zlyhal start %1</translation> - </message> - <message> - <source>Waiting</source> - <translation type="obsolete">Čekání</translation> - </message> - <message> - <source>Please press OK once you're logged into steam.</source> - <translation type="obsolete">Stiskni OK až budeš přihlášen do Steamu.</translation> - </message> - <message> - <source>"%1" not found</source> - <translation type="obsolete">"%1" nenalezeno</translation> - </message> - <message> - <source>Start steam?</source> - <translation type="obsolete">Spustit Steam?</translation> - </message> - <message> - <source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source> - <translation type="obsolete">Steam by měl běžet aby se podařilo spustit hru. Má se MO pokusit spustit steam teď?</translation> - </message> - <message> - <source>Never</source> - <translation type="obsolete">Nikdy</translation> - </message> - <message> - <source>Failed to start "%1"</source> - <translation type="obsolete">Zlyhal start "%1"</translation> - </message> - <message> - <source>Start Steam?</source> - <translation type="obsolete">Spustit Steam?</translation> - </message> - <message> - <source>Also in: <br></source> - <translation type="obsolete">Také v: <br></translation> - </message> - <message> - <source>No conflict</source> - <translation type="obsolete">Žádné konflikty</translation> - </message> - <message> - <source><Edit...></source> - <translation type="obsolete"><Edit...></translation> - </message> - <message> - <source>This bsa is enabled in the ini file so it may be required!</source> - <translation type="obsolete">Tenhle BSA soubor je aktivován v ini souboru, tak zřejmě je vyžadován!</translation> - </message> - <message> - <source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source> - <translation type="obsolete">Tento archív se stejně načte, protože existuje plugin se stejným jménem ale jeho soubory nebudou zodpovídat pořadí nainstalování!</translation> - </message> - <message> - <source>Installation successful</source> - <translation type="obsolete">Instalace úspěšná</translation> - </message> - <message> - <source>Configure Mod</source> - <translation type="obsolete">Konfigurace Modu</translation> - </message> - <message> - <source>This mod contains ini tweaks. Do you want to configure them now?</source> - <translation type="obsolete">Tenhle mod obsahuje ini úpravy. Chcete je nastavovat teď?</translation> - </message> - <message> - <source>mod "%1" not found</source> - <translation type="obsolete">mod "%1" nenalezen</translation> - </message> - <message> - <source>Installation cancelled</source> - <translation type="obsolete">Instalace zrušena</translation> - </message> - <message> - <source>The mod was not installed completely.</source> - <translation type="obsolete">Tento mod se nenainstaloval úplne.</translation> - </message> - <message> - <source>Choose Mod</source> - <translation type="obsolete">Vyber Mod</translation> - </message> - <message> - <source>Mod Archive</source> - <translation type="obsolete">Archív Modu</translation> - </message> - <message> - <source>failed to refresh directory structure</source> - <translation type="obsolete">Znovunačtení adresářové struktury se nezdařilo</translation> - </message> - <message> - <source>Download started</source> - <translation type="obsolete">Stahování začalo</translation> - </message> - <message> - <source>failed to update mod list: %1</source> - <translation type="obsolete">nezdařilo se aktualizovat seznam modů: %1</translation> - </message> - <message> - <source>failed to spawn notepad.exe: %1</source> - <translation type="obsolete">zlyhalo otevření notepad.exe: %1</translation> - </message> - <message> - <source>Ini files are local to the currently selected profile.</source> - <translation type="obsolete">Ini soubory jsou specifické pouze pro vybraný profil.</translation> - </message> - <message> - <source>failed to open %1</source> - <translation type="obsolete">Nepodařilo se otevřít %1</translation> - </message> - <message> - <source>Name not valid</source> - <translation type="obsolete">Neplatné jméno</translation> - </message> - <message> - <source>failed to change origin name: %1</source> - <translation type="obsolete">Nezdařilo se změnit původní jméno: %1</translation> - </message> - <message> - <source><All></source> - <translation type="obsolete"><Všechny></translation> - </message> - <message> - <source><Checked></source> - <translation type="obsolete"><Aktivované></translation> - </message> - <message> - <source><Unchecked></source> - <translation type="obsolete"><Neaktivované></translation> - </message> - <message> - <source><Update></source> - <translation type="obsolete"><Aktualizace></translation> - </message> - <message> - <source><No category></source> - <translation type="obsolete"><Bez kategorie></translation> - </message> - <message> - <source>New name</source> - <translation type="obsolete">Nové jméno</translation> - </message> - <message> - <source>A mod with that name exists already</source> - <translation type="obsolete">Mod se stejným jménem už existuje</translation> - </message> - <message> - <source>failed to rename mod: %1</source> - <translation type="obsolete">Nezdařilo se přejmenovat mod: %1</translation> - </message> - <message> - <source>failed to remove mod: %1</source> - <translation type="obsolete">Nezdařilo se odstranit mod: %1</translation> - </message> - <message> - <source>Failed</source> - <translation type="obsolete">Zlyhání</translation> - </message> - <message> - <source>Installation file no longer exists</source> - <translation type="obsolete">Instalační soubor již neexistuje</translation> - </message> - <message> - <source>Mods installed with old versions of MO can't be reinstalled in this way.</source> - <translation type="obsolete">Mody nainstalovány staršími verzemi MO nemůžou být přeinstalovány tímto spůsobem.</translation> - </message> - <message> - <source>Extract BSA</source> - <translation type="obsolete">Extrakce BSA</translation> - </message> - <message> - <source>This mod contains at least one BSA. Do you want to unpack it? -(This removes the BSA after completion. If you don't know about BSAs, just select no)</source> - <translation type="obsolete">Tento mod obsahuje alespoň jeden BSA soubor. Chcete rozpakovat i jeho obsah? -(BSA se po úspěšném rozpakování odstrání. Pokud nevíte, co je BSA, zvolte možnost Ne)</translation> - </message> - <message> - <source>failed to read %1: %2</source> - <translation type="obsolete">Nedá se číst %1: %2</translation> - </message> - <message> - <source>This archive contains invalid hashes. Some files may be broken.</source> - <translation type="obsolete">Tento archiv má neplatné identifikační součty. Nekteré soubory mohou být poškozeny.</translation> - </message> - <message> - <source>Nexus ID for this Mod is unknown</source> - <translation type="obsolete">Nexus ID pro tento Mod není známo</translation> - </message> - <message> - <source>Priority</source> - <translation type="obsolete">Priorita</translation> - </message> - <message> - <source>Choose Priority</source> - <translation type="obsolete">Zvol Prioritu</translation> - </message> - <message> - <source>Install Mod...</source> - <translation type="obsolete">Instaluj Mod...</translation> - </message> - <message> - <source>Enable all visible</source> - <translation type="obsolete">Aktivuj všechny v seznamu</translation> - </message> - <message> - <source>Disable all visible</source> - <translation type="obsolete">Deaktivuj všechny v seznamu</translation> - </message> - <message> - <source>Check all for update</source> - <translation type="obsolete">Skontroluj všechny pro aktualizaci</translation> - </message> - <message> - <source>Set Priority</source> - <translation type="obsolete">Nastav Prioritu</translation> - </message> - <message> - <source>Highest</source> - <translation type="obsolete">Nejvyšší</translation> - </message> - <message> - <source>Manually...</source> - <translation type="obsolete">Ručně...</translation> - </message> - <message> - <source>Lowest</source> - <translation type="obsolete">Nejnižší</translation> - </message> - <message> - <source>Set Category</source> - <translation type="obsolete">Označ Kategorii</translation> - </message> - <message> - <source>Rename Mod...</source> - <translation type="obsolete">Přejmenuj Mod...</translation> - </message> - <message> - <source>Remove Mod...</source> - <translation type="obsolete">Odstranit Mod...</translation> - </message> - <message> - <source>Reinstall Mod</source> - <translation type="obsolete">Přeinstaluj Mod</translation> - </message> - <message> - <source>Visit on Nexus</source> - <translation type="obsolete">Navštiv na Nexusu</translation> - </message> - <message> - <source>Open in explorer</source> - <translation type="obsolete">Otevři v prohlížeči</translation> - </message> - <message> - <source>Sync to Mods...</source> - <translation type="obsolete">Synchronizuj s Mody...</translation> - </message> - <message> - <source>Information...</source> - <translation type="obsolete">Informace...</translation> - </message> - <message> - <source>Exception: </source> - <translation type="obsolete">Výnimky:</translation> - </message> - <message> - <source>Unknown exception</source> - <translation type="obsolete">Neznámá výnimka</translation> - </message> - <message> - <source>Fix Mods...</source> - <translation type="obsolete">Oprav Mody...</translation> - </message> - <message> - <source>failed to remove %1</source> - <translation type="obsolete">nepodařilo se odstranit %1</translation> - </message> - <message> - <source>failed to create %1</source> - <translation type="obsolete">nepodařilo se vytvořit %1</translation> - </message> - <message> - <source>Can't change download directory while downloads are in progress!</source> - <translation type="obsolete">Není možné změnit cíl pro stahování když probíhá stahování!</translation> - </message> - <message> - <source>Download failed</source> - <translation type="obsolete">Stahování zlyhalo</translation> - </message> - <message> - <source>failed to write to file %1</source> - <translation type="obsolete">Nezdařil se zápis do souboru %1</translation> - </message> - <message> - <source>%1 written</source> - <translation type="obsolete">%1 zapsáno</translation> - </message> - <message> - <source>Select binary</source> - <translation type="obsolete">Vyber binární soubor</translation> - </message> - <message> - <source>Binary</source> - <translation type="obsolete">Soubor</translation> - </message> - <message> - <source>This is not a recognized executable.</source> - <translation type="obsolete">Tenhle soubor není rozpoznán jako spustitelný.</translation> - </message> - <message> - <source>failed to rename "%1" to "%2"</source> - <translation type="obsolete">Nezdařilo se přejmenovat "%1" na "%2"</translation> - </message> - <message> - <source>Edit Categories...</source> - <translation type="obsolete">Editovat Kategorie...</translation> - </message> - <message> - <source>Binary (*.exe)</source> - <translation type="obsolete">Binární (*.exe)</translation> - </message> - <message> - <source>Enter Name</source> - <translation type="obsolete">Zadej jméno</translation> - </message> - <message> - <source>Please enter a name for the executable</source> - <translation type="obsolete">Prosím zadej jméno pro spouštění</translation> - </message> - <message> - <source>Not an executable</source> - <translation type="obsolete">Není spustitelný</translation> - </message> - <message> - <source>This is not a recognized executable</source> - <translation type="obsolete">Tenhle soubor není rozpoznán jako spustitelný</translation> - </message> - <message> - <source>Replace file?</source> - <translation type="obsolete">Nahradit soubor?</translation> - </message> - <message> - <source>There already is a hidden version of this file. Replace it?</source> - <translation type="obsolete">Už existuje skrytá verze tohto souboru. Nahradit?</translation> - </message> - <message> - <source>File operation failed</source> - <translation type="obsolete">Operace se souborem zlyhala</translation> - </message> - <message> - <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> - <translation type="obsolete">Nepodařilo se odstranit "%1". Možná nejsou k dispozici požadována práva?</translation> - </message> - <message> - <source>failed to rename %1 to %2</source> - <translation type="obsolete">Nezdařilo se přejmenovat %1 na %2</translation> - </message> - <message> - <source>There already is a visible version of this file. Replace it?</source> - <translation type="obsolete">Už existuje viditelná verze tohto souboru. Nahradit?</translation> - </message> - <message> - <source>Update available</source> - <translation type="obsolete">Aktualizace k dispozici</translation> - </message> - <message> - <source>Open/Execute</source> - <translation type="obsolete">Otevřít/Spustit</translation> - </message> - <message> - <source>Add as Executable</source> - <translation type="obsolete">Přidat Spouštení</translation> - </message> - <message> - <source>Un-Hide</source> - <translation type="obsolete">Odekrýt</translation> - </message> - <message> - <source>Hide</source> - <translation type="obsolete">Skrýt</translation> - </message> - <message> - <source>Write To File...</source> - <translation type="obsolete">Zápis do souboru...</translation> - </message> - <message> - <source>login successful</source> - <translation type="obsolete">přihlášení úspěšné</translation> - </message> - <message> - <source>login failed: %1. Trying to download anyway</source> - <translation type="obsolete">přihlášení zlyhalo: %1. Pokouším se beztak stahovat</translation> - </message> - <message> - <source>login failed: %1. You need to log-in with Nexus to update MO.</source> - <translation type="obsolete">přihlášení zlyhalo: %1. Na aktualizaci MO je potřebné přihlášení k Nexusu.</translation> - </message> - <message> - <source>Error</source> - <translation type="obsolete">Chyba</translation> - </message> - <message> - <source>failed to extract %1 (errorcode %2)</source> - <translation type="obsolete">zlyhala extrakce %1 (errorcode %2)</translation> - </message> - <message> - <source>Extract...</source> - <translation type="obsolete">Extrakce...</translation> - </message> - <message> - <source>Edit...</source> - <translation type="obsolete">Editace...</translation> - </message> -</context> -<context> <name>OverwriteInfoDialog</name> <message> <location filename="overwriteinfodialog.ui" line="14"/> @@ -4781,10 +3721,6 @@ V současnosti má omezenou funkcionalitu</translation> <translation>&Nová zložka</translation> </message> <message> - <source>Failed to delete %1</source> - <translation type="obsolete">Zlyhalo vymazání %1</translation> - </message> - <message> <location filename="overwriteinfodialog.cpp" line="136"/> <source>Failed to delete "%1"</source> <translation>odstránění zlyhalo "%1"</translation> @@ -4820,144 +3756,124 @@ V současnosti má omezenou funkcionalitu</translation> <context> <name>PluginList</name> <message> - <source>ESP not found: %1</source> - <oldsource>esp not found: %1</oldsource> - <translation type="obsolete">esp nenalezeno: %1</translation> + <location filename="pluginlist.cpp" line="103"/> + <source>Name</source> + <translation>Jméno</translation> + </message> + <message> + <location filename="pluginlist.cpp" line="104"/> + <source>Priority</source> + <translation>Priorita</translation> </message> <message> - <location filename="pluginlist.cpp" line="111"/> + <location filename="pluginlist.cpp" line="105"/> <source>Mod Index</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="112"/> + <location filename="pluginlist.cpp" line="106"/> <source>Flags</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="113"/> - <location filename="pluginlist.cpp" line="125"/> + <location filename="pluginlist.cpp" line="107"/> + <location filename="pluginlist.cpp" line="119"/> <source>unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="121"/> + <location filename="pluginlist.cpp" line="115"/> <source>Name of your mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="122"/> + <location filename="pluginlist.cpp" line="116"/> <source>Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="124"/> + <location filename="pluginlist.cpp" line="118"/> <source>The modindex determins the formids of objects originating from this mods.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="165"/> + <location filename="pluginlist.cpp" line="159"/> <source>failed to update esp info for file %1 (source id: %2), error: %3</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="233"/> + <location filename="pluginlist.cpp" line="227"/> <source>esp not found: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="240"/> - <location filename="pluginlist.cpp" line="252"/> + <location filename="pluginlist.cpp" line="234"/> + <location filename="pluginlist.cpp" line="246"/> <source>Confirm</source> <translation type="unfinished">Potvrdit</translation> </message> <message> - <location filename="pluginlist.cpp" line="240"/> + <location filename="pluginlist.cpp" line="234"/> <source>Really enable all plugins?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="252"/> + <location filename="pluginlist.cpp" line="246"/> <source>Really disable all plugins?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="380"/> + <location filename="pluginlist.cpp" line="397"/> <source>The file containing locked plugin indices is broken</source> <translation type="unfinished"></translation> </message> <message> - <source>failed to open output file: %1</source> - <translation type="obsolete">zlyhalo otevření výstupního souboru: %1</translation> - </message> - <message> - <location filename="pluginlist.cpp" line="418"/> - <source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source> - <translation>Některé vaše pluginy mají neplatné názvy! Tyhle pluginy nemůžou být načteny hrou. Prosím nahlédněte do souboru mo_interface.log pro kompletní seznam pluginů a přejmenujte je.</translation> - </message> - <message> - <location filename="pluginlist.cpp" line="644"/> - <source>BOSS dll incompatible</source> + <location filename="pluginlist.cpp" line="804"/> + <source><b>Origin</b>: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="987"/> - <source>Missing Masters</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="pluginlist.cpp" line="993"/> - <source>Enabled Masters</source> - <translation type="unfinished"></translation> + <location filename="pluginlist.cpp" line="806"/> + <source>Author</source> + <translation type="unfinished">Autor</translation> </message> <message> - <location filename="pluginlist.cpp" line="1134"/> - <source>failed to restore load order for %1</source> - <translation type="unfinished"></translation> + <location filename="pluginlist.cpp" line="809"/> + <source>Description</source> + <translation type="unfinished">Popis</translation> </message> <message> - <source>min</source> - <translation type="obsolete">min</translation> + <source>failed to open output file: %1</source> + <translation type="obsolete">zlyhalo otevření výstupního souboru: %1</translation> </message> <message> - <source>max</source> - <translation type="obsolete">max</translation> + <location filename="pluginlist.cpp" line="438"/> + <source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source> + <translation>Některé vaše pluginy mají neplatné názvy! Tyhle pluginy nemůžou být načteny hrou. Prosím nahlédněte do souboru mo_interface.log pro kompletní seznam pluginů a přejmenujte je.</translation> </message> <message> - <location filename="pluginlist.cpp" line="983"/> + <location filename="pluginlist.cpp" line="802"/> <source>This plugin can't be disabled (enforced by the game)</source> <translation>Tenhle plugin nemůže být deaktivován (vyžaduje to hra)</translation> </message> <message> - <location filename="pluginlist.cpp" line="985"/> <source>Origin: %1</source> - <translation>Původní mod: %1</translation> - </message> - <message> - <location filename="pluginlist.cpp" line="109"/> - <source>Name</source> - <translation>Jméno</translation> - </message> - <message> - <source>Names of your mods</source> - <translation type="obsolete">Jména vašich modů</translation> - </message> - <message> - <location filename="pluginlist.cpp" line="110"/> - <source>Priority</source> - <translation>Priorita</translation> + <translation type="obsolete">Původní mod: %1</translation> </message> <message> - <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source> - <translation type="obsolete">Priorita aplikace modu. Čím větší, tím "důležitější" je mod a proto může přebít mody s nižší prioritou.</translation> + <location filename="pluginlist.cpp" line="812"/> + <source>Missing Masters</source> + <translation type="unfinished"></translation> </message> <message> - <source>ModIndex</source> - <translation type="obsolete">ModIndex</translation> + <location filename="pluginlist.cpp" line="819"/> + <source>Enabled Masters</source> + <translation type="unfinished"></translation> </message> <message> - <source>This index determines the id of items, spells, ... introduced by the mod. Their id will be "xxyyyyyy" where "xx" is this index which "yyyyyy" is determined by the mod itself.</source> - <translation type="obsolete">Tento index přiraďuje ID věcem, kouzlům,... které přidáva mod. Ich id bude "xxyyyyyy" kde "xx" je index, kterým je "yyyyyy" determinováno podle samotného modu.</translation> + <location filename="pluginlist.cpp" line="960"/> + <source>failed to restore load order for %1</source> + <translation type="unfinished"></translation> </message> </context> <context> @@ -4987,11 +3903,6 @@ V současnosti má omezenou funkcionalitu</translation> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html></source> - <oldsource><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><br /></p></body></html></oldsource> <translation type="unfinished"></translation> </message> <message> @@ -5014,10 +3925,6 @@ p, li { white-space: pre-wrap; } <context> <name>Profile</name> <message> - <source>failed to apply ini tweaks</source> - <translation type="obsolete">Zlyhalo uplatnění změn v ini</translation> - </message> - <message> <location filename="profile.cpp" line="59"/> <source>invalid profile name %1</source> <translation type="unfinished"></translation> @@ -5025,65 +3932,70 @@ p, li { white-space: pre-wrap; } <message> <location filename="profile.cpp" line="63"/> <source>failed to create %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Nepodařilo se vytvořit %1</translation> </message> <message> - <location filename="profile.cpp" line="182"/> + <location filename="profile.cpp" line="184"/> <source>failed to write mod list: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="193"/> + <location filename="profile.cpp" line="195"/> <source>failed to update tweaked ini file, wrong settings may be used: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="223"/> + <location filename="profile.cpp" line="226"/> <source>failed to create tweaked ini: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="276"/> - <location filename="profile.cpp" line="305"/> - <location filename="profile.cpp" line="390"/> - <location filename="profile.cpp" line="408"/> - <location filename="profile.cpp" line="418"/> + <location filename="profile.cpp" line="236"/> + <source>"%1" is missing or inaccessible</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profile.cpp" line="281"/> + <location filename="profile.cpp" line="313"/> + <location filename="profile.cpp" line="415"/> + <location filename="profile.cpp" line="432"/> + <location filename="profile.cpp" line="442"/> <source>invalid index %1</source> <translation>Neplatný index %1</translation> </message> <message> - <location filename="profile.cpp" line="371"/> + <location filename="profile.cpp" line="396"/> <source>Overwrite directory couldn't be parsed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="380"/> + <location filename="profile.cpp" line="405"/> <source>invalid priority %1</source> <translation>neplatná priorita %1</translation> </message> <message> - <location filename="profile.cpp" line="568"/> + <location filename="profile.cpp" line="592"/> <source>failed to parse ini file (%1)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="596"/> + <location filename="profile.cpp" line="620"/> <source>failed to parse ini file (%1): %2</source> <translation>zlyhalo rozebrání ini souboru (%1): %2</translation> </message> <message> - <location filename="profile.cpp" line="620"/> - <location filename="profile.cpp" line="657"/> + <location filename="profile.cpp" line="644"/> + <location filename="profile.cpp" line="681"/> <source>failed to modify "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="685"/> + <location filename="profile.cpp" line="709"/> <source>Delete savegames?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="686"/> + <location filename="profile.cpp" line="710"/> <source>Do you want to delete local savegames? (If you select "No", the save games will show up again if you re-enable local savegames)</source> <translation type="unfinished"></translation> </message> @@ -5146,40 +4058,6 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Note</span> Z technických důvodů současně není možné mít oddělenou konfiguraci poradí esp/esm. To znamená, že nemůžete načíst modA.esp před modB.esp v jedném profilu a v druhém to mít naopak.</p></body></html></translation> </message> <message> - <source>Savegame Filter</source> - <translation type="obsolete">Filter uložených pozicí</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Experimental</span><span style=" font-size:8pt;"> Enter a charactername to hide all save games from other characters in the game.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Experimentální</span><span style=" font-size:8pt;"> Napiš jméno postavy pro skrytí uložených pozic s jinými postavami.</span></p></body></html></translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Experimental</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Here you can enter a character name to filter the save games displayed inside the game. This makes it easy to have concurrent walkthroughs with different characters.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Note</span> however that autosave and quicksave are always displayed and overwritten even if they belong to a different character.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Note</span> also this may confuse the savegame counter which is why this feature is marked experimental.</p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Experimentální</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Zde můžete vložit jméno postavy pro filtraci uložených pozic zobrazených ve vaší hře. Díky tomuto můžete hrát současně více her s různými postavami.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Note</span> Bohužel automatická pozice a rychlé uložení se zobrazuje vždycky a také je vždycky přepsána i když patří jiné postavě.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Note</span>Také tato funkce může znepřehlednit počítadlo uložených pozic. Proto je označená jako experimentální.</p></body></html></translation> - </message> - <message> <location filename="profilesdialog.ui" line="38"/> <location filename="profilesdialog.ui" line="41"/> <source>If checked, savegames are local to this profile and will not appear when starting with a different profile.</source> @@ -5334,10 +4212,6 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <source>Are you sure you want to remove this profile?</source> - <translation type="obsolete">Jsi si jistý, že chceš odstranit tento profil?</translation> - </message> - <message> <location filename="profilesdialog.cpp" line="215"/> <source>Rename Profile</source> <translation type="unfinished"></translation> @@ -5379,6 +4253,51 @@ p, li { white-space: pre-wrap; } <translation>neplatné id kategorie %1</translation> </message> <message> + <location filename="csvbuilder.cpp" line="70"/> + <source>invalid field name "%1"</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="csvbuilder.cpp" line="76"/> + <source>invalid type for "%1" (should be integer)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="csvbuilder.cpp" line="81"/> + <source>invalid type for "%1" (should be string)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="csvbuilder.cpp" line="86"/> + <source>invalid type for "%1" (should be float)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="csvbuilder.cpp" line="103"/> + <source>no fields set up yet!</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="csvbuilder.cpp" line="140"/> + <source>field not set "%1"</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="csvbuilder.cpp" line="237"/> + <source>invalid character in field "%1"</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="csvbuilder.cpp" line="240"/> + <source>empty field name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="gameinfoimpl.cpp" line="41"/> + <source>invalid game type %1</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="helper.cpp" line="53"/> <source>helper failed</source> <translation>pomocník zlyhal</translation> @@ -5460,104 +4379,91 @@ p, li { white-space: pre-wrap; } <translation>Zlyhalo nastavení proxy-dll načítání</translation> </message> <message> - <location filename="profile.cpp" line="96"/> - <source>"%1" is missing</source> - <translation>"%1" chybí</translation> - </message> - <message> - <location filename="main.cpp" line="139"/> + <location filename="main.cpp" line="121"/> <source>Permissions required</source> <translation>Chybí oprávnění</translation> </message> <message> - <source>The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "mo_helper.exe" with administrative rights).</source> - <translation type="obsolete">Uživatelský účet nemá dostatečná oprávnění pro spuštění Mod Organizeru. Nevyhnutné zmeny se můžou udělat automaticky (adresář MO se nastaví ako přepisovatelný pro současného uživatele). Budete požádáni spustit "mo_helper.exe" s administrátorskými právami).</translation> + <location filename="main.cpp" line="122"/> + <source>The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights.</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="main.cpp" line="231"/> - <location filename="main.cpp" line="269"/> + <location filename="main.cpp" line="216"/> + <location filename="main.cpp" line="254"/> <source>Woops</source> <translation>Hups</translation> </message> <message> - <source>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file by email (sherb@gmx.net), the bug is a lot more likely to be fixed.</source> - <translation type="obsolete">ModOrganizer havaroval! Má se vytvořit diagnostický soubor? Pokud mi tento soubor pošlete (sherb@gmx.net), bude omnoho vyšší šance, že chybu opravím.</translation> - </message> - <message> - <location filename="main.cpp" line="140"/> - <source>The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="main.cpp" line="232"/> + <location filename="main.cpp" line="217"/> <source>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file (%1) to sherb@gmx.net, the bug is a lot more likely to be fixed. Please include a short description of what you were doing when the crash happened</source> <translation type="unfinished"></translation> </message> <message> - <location filename="main.cpp" line="270"/> + <location filename="main.cpp" line="255"/> <source>ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1</source> <translation>ModOrganizer havaroval! Naneštěstí, nezdařilo se ani vytvořit diagnostický soubor: %1</translation> </message> <message> - <location filename="main.cpp" line="332"/> - <location filename="settings.cpp" line="542"/> + <location filename="main.cpp" line="376"/> + <location filename="settings.cpp" line="557"/> <source>Mod Organizer</source> <translation>Mod Organizer</translation> </message> <message> - <location filename="main.cpp" line="332"/> + <location filename="main.cpp" line="376"/> <source>An instance of Mod Organizer is already running</source> <translation>Jedna instance Mod Organizeru už běží</translation> </message> <message> - <location filename="main.cpp" line="354"/> + <location filename="main.cpp" line="398"/> <source>No game identified in "%1". The directory is required to contain the game binary and its launcher.</source> <translation>Žádná hra nebyla nalezena v "%1". Je potřebné, aby adresář obsahoval binár hry a spouštěč.</translation> </message> <message> - <location filename="main.cpp" line="357"/> - <location filename="main.cpp" line="386"/> + <location filename="main.cpp" line="401"/> + <location filename="main.cpp" line="430"/> <source>Please select the game to manage</source> <translation>Prosím vyberte hru, kterou chcete spravovat</translation> </message> <message> - <location filename="main.cpp" line="412"/> + <location filename="main.cpp" line="456"/> <source>Please select the game edition you have (MO can't start the game correctly if this is set incorrectly!)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="782"/> + <location filename="main.cpp" line="545"/> + <source>failed to start application: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="842"/> <source>Please use "Help" from the toolbar to get usage instructions to all elements</source> <translation>Prosím použijte "Pomoc" z panelu nástrojú pro instrukce ke všem elementům</translation> </message> <message> - <location filename="mainwindow.cpp" line="1610"/> - <location filename="mainwindow.cpp" line="4216"/> + <location filename="mainwindow.cpp" line="1613"/> + <location filename="mainwindow.cpp" line="4226"/> <source><Manage...></source> <translation><Manage...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1628"/> + <location filename="mainwindow.cpp" line="1631"/> <source>failed to parse profile %1: %2</source> <translation>Nezdařilo se rozebrat profil %1: %2</translation> </message> <message> - <location filename="pluginlist.cpp" line="335"/> - <location filename="profile.cpp" line="233"/> + <location filename="pluginlist.cpp" line="352"/> <source>failed to find "%1"</source> <translation>Nepodařilo sa najít "%1"</translation> </message> <message> - <source>encoding error, please report this as a bug and include the file mo_interface.log!</source> - <translation type="obsolete">Chyba kódování, prosím nahlaste tuto chybu a poskytněte záznamový soubor mo_interface.log!</translation> - </message> - <message> - <location filename="pluginlist.cpp" line="491"/> + <location filename="pluginlist.cpp" line="515"/> <source>failed to access %1</source> <translation>zlyhal přístup k %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="505"/> + <location filename="pluginlist.cpp" line="529"/> <source>failed to set file time %1</source> <translation>nepodařilo se nastavit čas souboru %1</translation> </message> @@ -5567,12 +4473,13 @@ p, li { white-space: pre-wrap; } <translation>Nepodařilo se vytvořit %1</translation> </message> <message> - <source>modlist.txt missing</source> - <translation type="obsolete">modlist.txt chybí</translation> + <location filename="profile.cpp" line="96"/> + <source>"%1" is missing or inaccessible</source> + <translation type="unfinished"></translation> </message> <message> - <source>failed to copy "%1" to "%2", this is going to end badly...</source> - <translation type="obsolete">nepodařilo se skopírovat "%1" do "%2", tohle dopadne velice špatně...</translation> + <source>"%1" is missing</source> + <translation type="obsolete">"%1" chybí</translation> </message> <message> <location filename="profilesdialog.cpp" line="80"/> @@ -5598,27 +4505,27 @@ p, li { white-space: pre-wrap; } <translation>nepodařilo se otevřít %1</translation> </message> <message> - <location filename="settings.cpp" line="549"/> + <location filename="settings.cpp" line="564"/> <source>Script Extender</source> <translation>Skript Extender</translation> </message> <message> - <location filename="settings.cpp" line="556"/> + <location filename="settings.cpp" line="571"/> <source>Proxy DLL</source> <translation>Proxy DLL</translation> </message> <message> - <location filename="spawn.cpp" line="106"/> + <location filename="spawn.cpp" line="127"/> <source>failed to spawn "%1"</source> <translation>nepodařilo se vytvořit "%1"</translation> </message> <message> - <location filename="spawn.cpp" line="113"/> + <location filename="spawn.cpp" line="134"/> <source>Elevation required</source> <translation type="unfinished"></translation> </message> <message> - <location filename="spawn.cpp" line="114"/> + <location filename="spawn.cpp" line="135"/> <source>This process requires elevation to run. This is a potential security risk so I highly advice you to investigate if "%1" @@ -5628,83 +4535,26 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <translation type="unfinished"></translation> </message> <message> - <location filename="spawn.cpp" line="129"/> + <location filename="spawn.cpp" line="150"/> <source>failed to spawn "%1": %2</source> <translation>nepodařilo se vytvořit "%1": %2</translation> </message> <message> - <location filename="spawn.cpp" line="138"/> + <location filename="spawn.cpp" line="159"/> <source>"%1" doesn't exist</source> <translation>"%1" neexistuje</translation> </message> <message> - <location filename="spawn.cpp" line="145"/> + <location filename="spawn.cpp" line="166"/> <source>failed to inject dll into "%1": %2</source> <translation>nepodařilo se vsunout dll do "%1": %2</translation> </message> <message> - <location filename="spawn.cpp" line="153"/> + <location filename="spawn.cpp" line="174"/> <source>failed to run "%1"</source> <translation>nepodařilo se spustit "%1"</translation> </message> <message> - <source>removal of "%1" failed: %2</source> - <translation type="obsolete">odstránení "%1" zlyhalo: %2</translation> - </message> - <message> - <source>removal of "%1" failed</source> - <translation type="obsolete">odstránení "%1" zlyhalo</translation> - </message> - <message> - <source>"%1" doesn't exist (remove)</source> - <translation type="obsolete">"%1" neexistuje (odstránění)</translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="70"/> - <source>invalid field name "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="76"/> - <source>invalid type for "%1" (should be integer)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="81"/> - <source>invalid type for "%1" (should be string)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="86"/> - <source>invalid type for "%1" (should be float)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="103"/> - <source>no fields set up yet!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="140"/> - <source>field not set "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="237"/> - <source>invalid character in field "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="240"/> - <source>empty field name</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="gameinfoimpl.cpp" line="41"/> - <source>invalid game type %1</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="safewritefile.cpp" line="32"/> <source>failed to open temporary file</source> <translation type="unfinished"></translation> @@ -5749,13 +4599,6 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe </message> </context> <context> - <name>QuestionBoxMemory</name> - <message> - <source>Remember selection</source> - <translation type="obsolete">pamatovat si výběr</translation> - </message> -</context> -<context> <name>SaveGameInfoWidget</name> <message> <location filename="savegameinfowidget.ui" line="39"/> @@ -5796,7 +4639,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="savetextasdialog.ui" line="14"/> <source>Dialog</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Výzva</translation> </message> <message> <location filename="savetextasdialog.ui" line="32"/> @@ -5850,10 +4693,6 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <context> <name>SelfUpdater</name> <message> - <source>mo_archive.dll not loaded: "%1"</source> - <translation type="obsolete">mo_archive.dll nenačteno: "%1"</translation> - </message> - <message> <location filename="selfupdater.cpp" line="66"/> <source>archive.dll not loaded: "%1"</source> <translation type="unfinished"></translation> @@ -5922,46 +4761,34 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <translation type="unfinished"></translation> </message> <message> - <location filename="selfupdater.cpp" line="460"/> - <source>No download server available. Please try again later.</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>no file for update found</source> - <translation type="obsolete">Nenalezen soubor pro aktualizaci</translation> - </message> - <message> <location filename="selfupdater.cpp" line="440"/> <source>Failed to retrieve update information: %1</source> <translation>Nepodařilo se získat informace o aktualizaci: %1</translation> </message> + <message> + <location filename="selfupdater.cpp" line="460"/> + <source>No download server available. Please try again later.</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>Settings</name> <message> - <source>Administrative rights required to change this.</source> - <translation type="obsolete">Administrátorské práva jsou požadovány na tuhle změnu.</translation> - </message> - <message> - <location filename="settings.cpp" line="320"/> - <location filename="settings.cpp" line="339"/> + <location filename="settings.cpp" line="329"/> + <location filename="settings.cpp" line="348"/> <source>attempt to store setting for unknown plugin "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settings.cpp" line="660"/> + <location filename="settings.cpp" line="681"/> <source>Confirm</source> <translation>Potvrdit</translation> </message> <message> - <location filename="settings.cpp" line="660"/> + <location filename="settings.cpp" line="681"/> <source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed?</source> <translation>Zmena adresáře modu změní všechny tvoje profily! Nenalezené mody (nebo přejmenované) v nové lokaci budou deaktivovány ve všech profilech. Není možnosť návratu pokud si nezazálohujete profily ručně. Pokračovat?</translation> </message> - <message> - <source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all mods. There is no way to undo this unless you backed up your profiles manually. Proceed?</source> - <translation type="obsolete">Zmena adresáře modu změní všechny tvoje profily! Nenalezené mody (nebo přejmenované) v nové lokaci budou deaktivovány ve všech profilech. Není možnosť návratu pokud si nezazálohujete profily ručně. Pokračovat?</translation> - </message> </context> <context> <name>SettingsDialog</name> @@ -5999,68 +4826,6 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Zobrazovací jazyk. Zobrazí se jenom jazyky, které máte nainstalované.</span></p></body></html></translation> </message> <message> - <location filename="settingsdialog.ui" line="113"/> - <source>Advanced</source> - <translation>Pokročilé</translation> - </message> - <message> - <location filename="settingsdialog.ui" line="125"/> - <location filename="settingsdialog.ui" line="128"/> - <source>Directory where downloads are stored.</source> - <translation>Adresář kam se stahují soubory.</translation> - </message> - <message> - <location filename="settingsdialog.ui" line="148"/> - <source>Mod Directory</source> - <translation>Mody do</translation> - </message> - <message> - <location filename="settingsdialog.ui" line="155"/> - <source>Directory where mods are stored.</source> - <translation>Adresář ve kterém jsou nainstalovány mody.</translation> - </message> - <message> - <location filename="settingsdialog.ui" line="158"/> - <source>Directory where mods are stored. Please note that changing this will break all associations of profiles with mods that don't exist in the new location (with the same name).</source> - <translation>Adresář ve kterém jsou nainstalovány mody. Prosím berte na vědomí, že změna tohto zruší všechny asociace v starších profilech, pokud mody nebudou předem uloženy v nové lokaci (a se stejným jménem).</translation> - </message> - <message> - <location filename="settingsdialog.ui" line="172"/> - <source>Download Directory</source> - <translation>Stahováni do</translation> - </message> - <message> - <location filename="settingsdialog.ui" line="179"/> - <source>Cache Directory</source> - <translation>Cache</translation> - </message> - <message> - <source>Choose the integrated fomod installer over the external one wherever possible.</source> - <translation type="obsolete">Zvolit integrovaný fomod instalátor místo externího kdykoliv je to možné.</translation> - </message> - <message> - <source>Use the integrated fomod installer if possible. This installer is only able to handle archives scripted using an xml-file (that's maybe half the fomods out there), other files are still installed using the external installer if it's available.</source> - <translation type="obsolete">Použít integrovaný fomod instalátor pokud je to možné. Instalátor dokáže pracovat pouze s archívy naskriptovány v xml souboru (to je zhruba polovina fomodů, které jsou), ostatní soubory jsou instalovány použitím externího instalátoru, pokud je k dispozici.</translation> - </message> - <message> - <source>Prefer integrated fomod installer</source> - <translation type="obsolete">Preferovat integrovaný fomod instalátor</translation> - </message> - <message> - <source>Use a very simple installation dialog if MO recognizes the structure of the installation archive. If you prefer your life complicated, uncheck this box.</source> - <translation type="obsolete">Použití jednoduchého dotazu pro instalaci pokud MO rozpozná strukturu v instalačním archivu. Pokud preferujete úplný přehled a zložitost, odznačte políčko.</translation> - </message> - <message> - <source>Enable "Quick Installer"</source> - <translation type="obsolete">Používat "Rychlou instalaci"</translation> - </message> - <message> - <location filename="settingsdialog.ui" line="231"/> - <location filename="settingsdialog.ui" line="234"/> - <source>Modify the categories available to arrange your mods.</source> - <translation>Úprava kategorií pro seřazování modů.</translation> - </message> - <message> <location filename="settingsdialog.ui" line="57"/> <source>Style</source> <translation type="unfinished"></translation> @@ -6107,103 +4872,105 @@ p, li { white-space: pre-wrap; } <translation type="unfinished">Chyba</translation> </message> <message> - <location filename="settingsdialog.ui" line="205"/> - <source>Reset stored information from dialogs.</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="113"/> + <source>Advanced</source> + <translation>Pokročilé</translation> </message> <message> - <location filename="settingsdialog.ui" line="208"/> - <source>This will make all dialogs show up again where you checked the "Remember selection"-box.</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="125"/> + <location filename="settingsdialog.ui" line="128"/> + <source>Directory where downloads are stored.</source> + <translation>Adresář kam se stahují soubory.</translation> </message> <message> - <location filename="settingsdialog.ui" line="211"/> - <source>Reset Dialogs</source> - <translation>Obnovit dialogy</translation> + <location filename="settingsdialog.ui" line="148"/> + <source>Mod Directory</source> + <translation>Mody do</translation> </message> <message> - <location filename="settingsdialog.ui" line="237"/> - <source>Configure Mod Categories</source> - <translation>Konfigurovat Kategorie Modů</translation> + <location filename="settingsdialog.ui" line="155"/> + <source>Directory where mods are stored.</source> + <translation>Adresář ve kterém jsou nainstalovány mody.</translation> </message> <message> - <location filename="settingsdialog.ui" line="318"/> - <source>Disable automatic internet features</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="158"/> + <source>Directory where mods are stored. Please note that changing this will break all associations of profiles with mods that don't exist in the new location (with the same name).</source> + <translation>Adresář ve kterém jsou nainstalovány mody. Prosím berte na vědomí, že změna tohto zruší všechny asociace v starších profilech, pokud mody nebudou předem uloženy v nové lokaci (a se stejným jménem).</translation> </message> <message> - <location filename="settingsdialog.ui" line="321"/> - <source>Disable automatic internet features. This does not affect features that are explicitly invoked by the user (like checking mods for updates, endorsing, opening the web browser)</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="172"/> + <source>Download Directory</source> + <translation>Stahováni do</translation> </message> <message> - <location filename="settingsdialog.ui" line="324"/> - <source>Offline Mode</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="179"/> + <source>Cache Directory</source> + <translation>Cache</translation> </message> <message> - <location filename="settingsdialog.ui" line="331"/> - <source>Use a proxy for network connections.</source> + <location filename="settingsdialog.ui" line="199"/> + <source>User interface</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="334"/> - <source>Use a proxy for network connections. This uses the system-wide settings which can be configured in Internet Explorer. Please note that MO will start up a few seconds slower on some systems when using a proxy.</source> + <location filename="settingsdialog.ui" line="205"/> + <source>If checked, the download interface will be more compact.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="337"/> - <source>Use HTTP Proxy (Uses System Settings)</source> + <location filename="settingsdialog.ui" line="208"/> + <source>Compact Download Interface</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="346"/> - <source>Associate with "Download with manager" links</source> + <location filename="settingsdialog.ui" line="215"/> + <source>If checked, the download list will display meta information instead of file names.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="375"/> - <source>Known Servers (updated on download)</source> + <location filename="settingsdialog.ui" line="218"/> + <source>Download Meta Information</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="396"/> - <source>Preferred Servers (Drag & Drop)</source> + <location filename="settingsdialog.ui" line="234"/> + <source>Reset stored information from dialogs.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="536"/> - <source>Blacklisted Plugins (use <del> to remove):</source> + <location filename="settingsdialog.ui" line="237"/> + <source>This will make all dialogs show up again where you checked the "Remember selection"-box.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="632"/> - <source>Mod Organizer needs a dll to be injected into the game so all mods are visible to it. -There are several means to do this: -*Mod Organizer* (default) In this mode the Mod Organizer itself injects the dll. The disadvantage is that you always have to start the game through MO or a link created by it. -*Script Extender* In this mode, MO is installed as a Script Extender (obse, fose, nvse, skse) plugin. -*Proxy DLL* In this mode, MO replaces one of the game's dlls with one that loads MO (and the original dll of course). This will ONLY work with Steam games and it has only been tested with Skyrim. Please use this only if the other mechanisms don't work. - -If you use the Steam version of Oblivion the default will NOT work. In this case, please install obse and use "Script Extender" as the load mechanism. Also you can then not start Oblivion from MO. Instead, use MO only to set up your mods, then quit and start Oblivion through Steam.</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="240"/> + <source>Reset Dialogs</source> + <translation>Obnovit dialogy</translation> </message> <message> - <source>Installer</source> - <translation type="obsolete">Instalační</translation> + <location filename="settingsdialog.ui" line="260"/> + <location filename="settingsdialog.ui" line="263"/> + <source>Modify the categories available to arrange your mods.</source> + <translation>Úprava kategorií pro seřazování modů.</translation> </message> <message> - <location filename="settingsdialog.ui" line="245"/> - <location filename="settingsdialog.ui" line="261"/> + <location filename="settingsdialog.ui" line="266"/> + <source>Configure Mod Categories</source> + <translation>Konfigurovat Kategorie Modů</translation> + </message> + <message> + <location filename="settingsdialog.ui" line="274"/> + <location filename="settingsdialog.ui" line="290"/> <source>Nexus</source> <translation>Nexus</translation> </message> <message> - <location filename="settingsdialog.ui" line="251"/> + <location filename="settingsdialog.ui" line="280"/> <source>Allows automatic log-in when the Nexus-Page for the game is clicked.</source> <translation>Povolí automatické přihlasováni na stránky Nexusu pokud je označeno.</translation> </message> <message> - <location filename="settingsdialog.ui" line="254"/> + <location filename="settingsdialog.ui" line="283"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -6216,84 +4983,122 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Povolí automatické přihlasováni na stránky Nexusu pokud je označeno. Prosím berte na vědomí ,že maskování hesla v souboru modorganizer.ini není příliš silné. Pokud máte obavy, že by vám někdo mohl ukrást heslo, neukládajte ho.</span></p></body></html></translation> </message> <message> - <location filename="settingsdialog.ui" line="270"/> + <location filename="settingsdialog.ui" line="299"/> <source>If checked and if correct credentials are entered below, log-in to Nexus (for browsing and downloading) is automatic.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="273"/> + <location filename="settingsdialog.ui" line="302"/> <source>Automatically Log-In to Nexus</source> <translation>Automaticky přihlásit do Nexusu</translation> </message> <message> - <location filename="settingsdialog.ui" line="282"/> + <location filename="settingsdialog.ui" line="311"/> <source>Username</source> <translation>Přihlasovací jméno</translation> </message> <message> - <location filename="settingsdialog.ui" line="296"/> + <location filename="settingsdialog.ui" line="325"/> <source>Password</source> <translation>Heslo</translation> </message> <message> - <source>Handle NXM Links</source> - <translation type="obsolete">Spravovat odkazy z Nexusu</translation> + <location filename="settingsdialog.ui" line="347"/> + <source>Disable automatic internet features</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="350"/> + <source>Disable automatic internet features. This does not affect features that are explicitly invoked by the user (like checking mods for updates, endorsing, opening the web browser)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="353"/> + <source>Offline Mode</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="360"/> + <source>Use a proxy for network connections.</source> + <translation type="unfinished"></translation> </message> <message> - <source>If checked, MO will use an external browser for buttons like "Visit on Nexus" instead of the integrated one.</source> - <translation type="obsolete">Pokud je označeno, MO bude používat váš osobní externí prohlížeč pro příkazy jako "navštiv na Nexusu" místo vstavaného prohlížeče.</translation> + <location filename="settingsdialog.ui" line="363"/> + <source>Use a proxy for network connections. This uses the system-wide settings which can be configured in Internet Explorer. Please note that MO will start up a few seconds slower on some systems when using a proxy.</source> + <translation type="unfinished"></translation> </message> <message> - <source>Prefer external browser</source> - <translation type="obsolete">Preferuj externí prohlížeč</translation> + <location filename="settingsdialog.ui" line="366"/> + <source>Use HTTP Proxy (Uses System Settings)</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="431"/> + <location filename="settingsdialog.ui" line="375"/> + <source>Associate with "Download with manager" links</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="404"/> + <source>Known Servers (updated on download)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="425"/> + <source>Preferred Servers (Drag & Drop)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="460"/> <source>Plugins</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="453"/> + <location filename="settingsdialog.ui" line="482"/> <source>Author:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="467"/> + <location filename="settingsdialog.ui" line="496"/> <source>Version:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="481"/> + <location filename="settingsdialog.ui" line="510"/> <source>Description:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="519"/> + <location filename="settingsdialog.ui" line="548"/> <source>Key</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="524"/> + <location filename="settingsdialog.ui" line="553"/> <source>Value</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="547"/> + <location filename="settingsdialog.ui" line="565"/> + <source>Blacklisted Plugins (use <del> to remove):</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="576"/> <source>Workarounds</source> <translation>Řešení</translation> </message> <message> - <location filename="settingsdialog.ui" line="555"/> + <location filename="settingsdialog.ui" line="584"/> <source>Steam App ID</source> <translation>Steam App ID</translation> </message> <message> - <location filename="settingsdialog.ui" line="575"/> + <location filename="settingsdialog.ui" line="604"/> <source>The Steam AppID for your game</source> <translation>Steam AppID pro vaši hru</translation> </message> <message> - <location filename="settingsdialog.ui" line="578"/> + <location filename="settingsdialog.ui" line="607"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -6320,47 +5125,38 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">22380 je id, které hledáte.</span></p></body></html></translation> </message> <message> - <location filename="settingsdialog.ui" line="609"/> + <location filename="settingsdialog.ui" line="638"/> <source>Load Mechanism</source> <translation>Mechanizmus spuštění</translation> </message> <message> - <location filename="settingsdialog.ui" line="629"/> + <location filename="settingsdialog.ui" line="658"/> <source>Select loading mechanism. See help for details.</source> <translation>Vyberte mechanizmus použit pro spuštění. Pro víc detailů čti Nápovědu.</translation> </message> <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Mod Organizer needs a dll to be injected into the game so all mods are visible to it.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">There are several means to do this:</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Mod Organizer</span><span style=" font-size:8pt;"> (default) In this mode the Mod Organizer itself injects the dll. The disadvantage is that you always have to start the game through MO or a link created by it. This does not work for the Steam version of Oblivion!</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Script Extender</span><span style=" font-size:8pt;"> In this mode, MO is installed as a Script Extender (obse, fose, nvse, skse) plugin. (recommended if you have a script extender installed)</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Proxy DLL</span><span style=" font-size:8pt;"> In this mode, MO replaces one of the game's dlls with one that loads MO (and the original dll of course). This will ONLY work with Steam games and it has only been tested with Skyrim. Please use this only if the other mechanisms don't work.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Mod Organizer potrebuje dll vsunuté do hry aby všechny mody byli pro hru viditelné.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Je více spůsobů jak to docílit:</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Mod Organizer</span><span style=" font-size:8pt;"> (standartne) v tomhle módu Mod Organizer sám vsune dll. Nevýhodou je, že vždy musíte spouštět hru přez MO nebo přez odkaz na ploše, vytvorený mod organizérem. Tato možnost nefunguje pro steamovou verzi OBLIVIONU!</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Script Extender</span><span style=" font-size:8pt;"> V tomhle módu MO je nainstalován ako Script Extender (obse, fose, nvse, skse) plugin. (odoručeno jenom pokud máte nainstalován pro hru jeden ze spomenutých script extenderů)</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Proxy DLL</span><span style=" font-size:8pt;"> V tomhle módu, MO nahradí jedno dll samotné hry takovým, které načte MO (a také původní obsah dll samozřejmě). Tohle bude fungovat POUZE pro Steamové verze her a bylo testováno pouze u Skyrimu. Vyhněte se téhle metóde pokud funguje jedna z předchozích.</span></p></body></html></translation> + <location filename="settingsdialog.ui" line="661"/> + <source>Mod Organizer needs a dll to be injected into the game so all mods are visible to it. +There are several means to do this: +*Mod Organizer* (default) In this mode the Mod Organizer itself injects the dll. The disadvantage is that you always have to start the game through MO or a link created by it. +*Script Extender* In this mode, MO is installed as a Script Extender (obse, fose, nvse, skse) plugin. +*Proxy DLL* In this mode, MO replaces one of the game's dlls with one that loads MO (and the original dll of course). This will ONLY work with Steam games and it has only been tested with Skyrim. Please use this only if the other mechanisms don't work. + +If you use the Steam version of Oblivion the default will NOT work. In this case, please install obse and use "Script Extender" as the load mechanism. Also you can then not start Oblivion from MO. Instead, use MO only to set up your mods, then quit and start Oblivion through Steam.</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="649"/> + <location filename="settingsdialog.ui" line="678"/> <source>NMM Version</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="669"/> + <location filename="settingsdialog.ui" line="698"/> <source>The Version of Nexus Mod Manager to impersonate.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="672"/> + <location filename="settingsdialog.ui" line="701"/> <source>Mod Organizer uses an API provided by the Nexus to provide features like checking for updates and downloading files. Unfortunately this API has not been made available officially to third party tools like MO so we have to impersonate the Nexus Mod Manager to be allowed in. On top of this Nexus has used the client identification to lock out outdated versions of NMM to force users to update. This means that MO also needs to impersonate the new version of NMM even if MO doesn't need an update. Therefore you can configure the version to identify as here. Please note that MO does identify itself as MO to the webserver, it's not lying about what it is. It is merely adding a "compatible" NMM version to the user agent. @@ -6369,61 +5165,75 @@ tl;dr-version: If Nexus-features don't work, insert the current version num <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="694"/> + <location filename="settingsdialog.ui" line="723"/> <source>Enforces that inactive ESPs and ESMs are never loaded.</source> <translation>Zabezpečí, aby se neaktivní ESP a ESM vůbec nezobrazovali.</translation> </message> <message> - <location filename="settingsdialog.ui" line="697"/> + <location filename="settingsdialog.ui" line="726"/> <source>It seems that the Games occasionally load ESP or ESM files even if they haven't been activated as plugins. I don't yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded.</source> <translation>Zdá se, že hry občasně načtou ESP nebo ESM soubory i když nebyli označeny ako aktivní pluginy. Nevím za jakých podmínek se to stává, ale uživatelé říkaj, že v některých případech je to neželané. Pokud je tohle označeno, ESP a ESM soubory které v seznamu nejsou označeny, nemůžou být za žádných okolností načtené ve hře.</translation> </message> <message> - <location filename="settingsdialog.ui" line="701"/> + <location filename="settingsdialog.ui" line="730"/> <source>Hide inactive ESPs/ESMs</source> <translation>Skrýt neaktivní ESP/ESM</translation> </message> <message> - <location filename="settingsdialog.ui" line="708"/> + <location filename="settingsdialog.ui" line="737"/> <source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="711"/> + <location filename="settingsdialog.ui" line="740"/> <source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on) Uncheck this if you want to use Mod Organizer with total conversions (like Nehrim) but be aware that the game will crash if required files are not enabled.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="715"/> + <location filename="settingsdialog.ui" line="744"/> <source>Force-enable game files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="725"/> - <location filename="settingsdialog.ui" line="729"/> + <location filename="settingsdialog.ui" line="754"/> + <source>Disable this to no longer display mods installed outside MO in the mod list (left pane). Assets from those mods will then be treated as having lowest mod priority together with the original game content.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="757"/> + <source>By default Mod Organizer will display esp+bsa bundles installed with foreign tools as mods (left pane). This allows you to control their priority in relation to other mods. This is particularly useful if you also use Steam Workshop to install mods. +However, if you installed loose file mods outside MO which conflict with BSAs also installed outside MO those conflicts can't be resolved correctly. + +If you disable this feature, MO will only display official DLCs this way. Please note that plugins (esps and esms) displayed in the right pane are completely unaffected by this feature.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="763"/> + <source>Display mods installed outside MO</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="773"/> + <location filename="settingsdialog.ui" line="777"/> <source>For Skyrim, this can be used instead of Archive Invalidation. It should make AI redundant for all Profiles. For the other games this is not a sufficient replacement for AI!</source> <translation>Pro Skyrim, tohle je možné použít místo Invalidace Archívu. Pro všechny profily bude IA nepotřebná. Pro ostatné hry tohle není dostatečná náhrada Invalidace Archívu! </translation> </message> <message> - <location filename="settingsdialog.ui" line="733"/> + <location filename="settingsdialog.ui" line="781"/> <source>Back-date BSAs</source> <translation>Uprav dátumy BSA</translation> </message> <message> - <location filename="settingsdialog.ui" line="757"/> + <location filename="settingsdialog.ui" line="805"/> <source>These are workarounds for problems with Mod Organizer. Please make sure you read the help text before changing anything here.</source> <translation type="unfinished"></translation> </message> <message> - <source>These are workarounds for problems with Mod Organizer. They are usually not neccessary. Please make sure you read the help text before changing anything here.</source> - <translation type="obsolete">Tohle jsou různé náhradné řešení problému s používaním modů. Obvykle nejsou potřebné. Prosím určite si projděte Nápovědu předtím než zde neco poměníte.</translation> - </message> - <message> <location filename="settingsdialog.cpp" line="95"/> <source>Select download directory</source> <translation>Vyber adresář pro stahování</translation> @@ -6492,7 +5302,6 @@ Pro ostatné hry tohle není dostatečná náhrada Invalidace Archívu! </trans </message> <message> <location filename="singleinstance.cpp" line="82"/> - <location filename="singleinstance.cpp" line="88"/> <source>failed to connect to running instance: %1</source> <translation>zlyhalo připojení k bežící instanci: %1</translation> </message> @@ -6505,10 +5314,6 @@ Pro ostatné hry tohle není dostatečná náhrada Invalidace Archívu! </trans <context> <name>SyncOverwriteDialog</name> <message> - <source>Dialog</source> - <translation type="obsolete">Okno</translation> - </message> - <message> <location filename="syncoverwritedialog.ui" line="14"/> <source>Sync Overwrite</source> <translation>Synchronizovat přepsání</translation> @@ -6540,37 +5345,6 @@ Pro ostatné hry tohle není dostatečná náhrada Invalidace Archívu! </trans </message> </context> <context> - <name>TextViewer</name> - <message> - <source>Log Viewer</source> - <translation type="obsolete">Náhled do logu</translation> - </message> - <message> - <source>Placeholder</source> - <translation type="obsolete">Placeholder</translation> - </message> - <message> - <source>Save changes?</source> - <translation type="obsolete">Uložit změny?</translation> - </message> - <message> - <source>Do you want to save changes to %1?</source> - <translation type="obsolete">Chcete uložit změny do %1?</translation> - </message> - <message> - <source>failed to write to %1</source> - <translation type="obsolete">zlyhal zápis do %1</translation> - </message> - <message> - <source>file not found: %1</source> - <translation type="obsolete">soubor nenalezen: %1</translation> - </message> - <message> - <source>Save</source> - <translation type="obsolete">Uložit</translation> - </message> -</context> -<context> <name>TransferSavesDialog</name> <message> <location filename="transfersavesdialog.ui" line="14"/> @@ -6597,14 +5371,6 @@ On Windows Vista/Windows 7: On Windows XP: C:\Documents and Settings\[UserName]\My Documents\My Games\Skyrim\Saves </source> - <oldsource>This is a list of characters in the global location. - -On Windows Vista/Windows 7: - C:\Users\[UserName]\Documents\My Games\Skyrim\Saves - -On Windows XP: - C:\Documents and Settings[UserName]\My Documents\My Games\Skyrim\Saves -</oldsource> <translation type="unfinished"></translation> </message> <message> diff --git a/src/organizer_de.ts b/src/organizer_de.ts index 16d4521f..d7338f72 100644 --- a/src/organizer_de.ts +++ b/src/organizer_de.ts @@ -7,42 +7,42 @@ <location filename="aboutdialog.ui" line="14"/> <location filename="aboutdialog.ui" line="53"/> <source>About</source> - <translation type="unfinished"></translation> + <translation>Über</translation> </message> <message> <location filename="aboutdialog.ui" line="66"/> <source>Revision:</source> - <translation type="unfinished"></translation> + <translation>Revision:</translation> </message> <message> <location filename="aboutdialog.ui" line="104"/> <source>Used Software</source> - <translation type="unfinished"></translation> + <translation>Verwendete Software</translation> </message> <message> <location filename="aboutdialog.ui" line="117"/> <source>Credits</source> - <translation type="unfinished"></translation> + <translation>Mitwirkende</translation> </message> <message> <location filename="aboutdialog.ui" line="123"/> <source>Translators</source> - <translation type="unfinished"></translation> + <translation>Übersetzer</translation> </message> <message> <location filename="aboutdialog.ui" line="189"/> <source>Others</source> - <translation type="unfinished"></translation> + <translation>Andere</translation> </message> <message> <location filename="aboutdialog.ui" line="266"/> <source>Close</source> - <translation type="unfinished">Schliessen</translation> + <translation>Schliessen</translation> </message> <message> <location filename="aboutdialog.cpp" line="81"/> <source>No license</source> - <translation type="unfinished"></translation> + <translation>Keine Lizenz</translation> </message> </context> <context> @@ -155,6 +155,29 @@ Wenn eine Komponente namens "00 Core" existiert ist diese üblicherwei </message> </context> <context> + <name>BrowserDialog</name> + <message> + <location filename="browserdialog.ui" line="14"/> + <source>Some Page</source> + <translation>Eine Seite</translation> + </message> + <message> + <location filename="browserdialog.ui" line="256"/> + <source>Search</source> + <translation>Suchen</translation> + </message> + <message> + <location filename="browserdialog.cpp" line="91"/> + <source>new</source> + <translation>neu</translation> + </message> + <message> + <location filename="browserdialog.cpp" line="204"/> + <source>failed to start download</source> + <translation>konnte Download nicht starten</translation> + </message> +</context> +<context> <name>CategoriesDialog</name> <message> <location filename="categoriesdialog.ui" line="14"/> @@ -245,7 +268,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="credentialsdialog.ui" line="20"/> <source>This feature may not work unless you're logged in with Nexus</source> - <translation>Diese Funktion funktioniert unter Umständen nicht wenn Sie nicht eingeloggt sind.</translation> + <translation>Diese Funktion funktioniert unter Umständen nicht wenn Sie nicht eingeloggt sind</translation> </message> <message> <location filename="credentialsdialog.ui" line="32"/> @@ -271,13 +294,9 @@ p, li { white-space: pre-wrap; } <context> <name>DirectoryRefresher</name> <message> - <source>failed to read %1: %2</source> - <translation type="obsolete">konnte %1 nicht lesen: %2</translation> - </message> - <message> - <location filename="directoryrefresher.cpp" line="99"/> + <location filename="directoryrefresher.cpp" line="146"/> <source>failed to read bsa: %1</source> - <translation type="unfinished"></translation> + <translation>konnte bsa nicht lesen: %1</translation> </message> </context> <context> @@ -295,7 +314,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="downloadlist.cpp" line="66"/> <source>Done</source> - <translation type="unfinished">Fertig</translation> + <translation>Fertig</translation> </message> <message> <location filename="downloadlist.cpp" line="82"/> @@ -305,7 +324,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="downloadlist.cpp" line="89"/> <source>pending download</source> - <translation type="unfinished"></translation> + <translation>unerledigte downloads</translation> </message> </context> <context> @@ -318,28 +337,28 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="downloadlistwidget.ui" line="99"/> - <location filename="downloadlistwidget.cpp" line="145"/> - <location filename="downloadlistwidget.cpp" line="147"/> + <location filename="downloadlistwidget.cpp" line="150"/> + <location filename="downloadlistwidget.cpp" line="152"/> <source>Done - Double Click to install</source> <translation>Fertig - Doppelklick zum Installieren</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="111"/> - <location filename="downloadlistwidget.cpp" line="113"/> + <location filename="downloadlistwidget.cpp" line="116"/> + <location filename="downloadlistwidget.cpp" line="118"/> <source>Paused - Double Click to resume</source> - <translation type="unfinished"></translation> + <translation>Pausiert - Doppelklick zum fortsetzen</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="131"/> - <location filename="downloadlistwidget.cpp" line="133"/> + <location filename="downloadlistwidget.cpp" line="136"/> + <location filename="downloadlistwidget.cpp" line="138"/> <source>Installed - Double Click to re-install</source> <translation>Installiert - Doppelclick um erneut zu installieren</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="138"/> - <location filename="downloadlistwidget.cpp" line="140"/> + <location filename="downloadlistwidget.cpp" line="143"/> + <location filename="downloadlistwidget.cpp" line="145"/> <source>Uninstalled - Double Click to re-install</source> - <translation type="unfinished"></translation> + <translation>Deinstalliert - Doppelklick um erneut zu installieren</translation> </message> </context> <context> @@ -359,135 +378,135 @@ p, li { white-space: pre-wrap; } <context> <name>DownloadListWidgetCompactDelegate</name> <message> - <location filename="downloadlistwidgetcompact.cpp" line="241"/> - <location filename="downloadlistwidgetcompact.cpp" line="250"/> - <location filename="downloadlistwidgetcompact.cpp" line="259"/> - <location filename="downloadlistwidgetcompact.cpp" line="268"/> - <source>Are you sure?</source> - <translation>Sind sie sicher?</translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="242"/> - <source>This will remove all finished downloads from this list and from disk.</source> - <translation>Entfernt alle abgeschlossenen Downloads aus der Liste und von der Festplatte.</translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="251"/> - <source>This will remove all installed downloads from this list and from disk.</source> - <translation>Entfernt alle installierten Downloads aus der Liste und von der Festplatte.</translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="298"/> - <source>Install</source> - <translation>Installieren</translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="300"/> - <source>Query Info</source> - <translation>Info abfragen</translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="312"/> - <source>Remove</source> - <translation>Entfernen</translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="309"/> - <source>Cancel</source> - <translation>Abbrechen</translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="88"/> + <location filename="downloadlistwidgetcompact.cpp" line="92"/> <source>< mod %1 file %2 ></source> - <translation type="unfinished"></translation> + <translation>< mod %1 datei %2 ></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="93"/> + <location filename="downloadlistwidgetcompact.cpp" line="97"/> <source>Pending</source> - <translation type="unfinished"></translation> + <translation>Bevorstehend</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="116"/> + <location filename="downloadlistwidgetcompact.cpp" line="120"/> <source>Paused</source> - <translation type="unfinished"></translation> + <translation>Pausiert</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="119"/> + <location filename="downloadlistwidgetcompact.cpp" line="123"/> <source>Fetching Info 1</source> - <translation type="unfinished"></translation> + <translation>Informationen abrufen 1</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="121"/> + <location filename="downloadlistwidgetcompact.cpp" line="125"/> <source>Fetching Info 2</source> - <translation type="unfinished"></translation> + <translation>Informationen abrufen 2</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="126"/> + <location filename="downloadlistwidgetcompact.cpp" line="130"/> <source>Installed</source> - <translation type="unfinished"></translation> + <translation>Installiert</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="129"/> + <location filename="downloadlistwidgetcompact.cpp" line="133"/> <source>Uninstalled</source> - <translation type="unfinished"></translation> + <translation>Deinstalliert</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="132"/> + <location filename="downloadlistwidgetcompact.cpp" line="136"/> <source>Done</source> - <translation type="unfinished">Fertig</translation> + <translation>Fertig</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="260"/> + <location filename="downloadlistwidgetcompact.cpp" line="245"/> + <location filename="downloadlistwidgetcompact.cpp" line="254"/> + <location filename="downloadlistwidgetcompact.cpp" line="263"/> + <location filename="downloadlistwidgetcompact.cpp" line="272"/> + <source>Are you sure?</source> + <translation>Sind sie sicher?</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="246"/> + <source>This will remove all finished downloads from this list and from disk.</source> + <translation>Entfernt alle abgeschlossenen Downloads aus der Liste und von der Festplatte.</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="255"/> + <source>This will remove all installed downloads from this list and from disk.</source> + <translation>Entfernt alle installierten Downloads aus der Liste und von der Festplatte.</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="264"/> <source>This will permanently remove all finished downloads from this list (but NOT from disk).</source> - <translation type="unfinished"></translation> + <translation>Dies entfernt alle fertigen Downloads von dieser Liste (aber NICHT von der Festplatte).</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="269"/> + <location filename="downloadlistwidgetcompact.cpp" line="273"/> <source>This will permanently remove all installed downloads from this list (but NOT from disk).</source> - <translation type="unfinished"></translation> + <translation>Dies entfernt alle bereits installierten Downloads aus der Liste (aber NICHT von der Festplatte).</translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="302"/> - <source>Delete</source> - <translation type="unfinished"></translation> + <source>Install</source> + <translation>Installieren</translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="304"/> - <source>Un-Hide</source> - <translation type="unfinished">Sichtbar machen</translation> + <source>Query Info</source> + <translation>Info abfragen</translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="306"/> - <source>Remove from View</source> - <translation type="unfinished"></translation> + <source>Delete</source> + <translation>Löschen</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="308"/> + <source>Un-Hide</source> + <translation>Sichtbar machen</translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="310"/> + <source>Remove from View</source> + <translation>Von Liste entfernen</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="313"/> + <source>Cancel</source> + <translation>Abbrechen</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="314"/> <source>Pause</source> <translation>Pausieren</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="313"/> + <location filename="downloadlistwidgetcompact.cpp" line="316"/> + <source>Remove</source> + <translation>Entfernen</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="317"/> <source>Resume</source> <translation>Fortsetzen</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="318"/> + <location filename="downloadlistwidgetcompact.cpp" line="322"/> <source>Delete Installed...</source> - <translation type="unfinished"></translation> + <translation>Installierte löschen...</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="319"/> + <location filename="downloadlistwidgetcompact.cpp" line="323"/> <source>Delete All...</source> - <translation type="unfinished"></translation> + <translation>Alle Löschen...</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="322"/> + <location filename="downloadlistwidgetcompact.cpp" line="326"/> <source>Remove Installed...</source> <translation>Installierte entfernen...</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="323"/> + <location filename="downloadlistwidgetcompact.cpp" line="327"/> <source>Remove All...</source> <translation>Alle löschen...</translation> </message> @@ -495,115 +514,115 @@ p, li { white-space: pre-wrap; } <context> <name>DownloadListWidgetDelegate</name> <message> - <location filename="downloadlistwidget.cpp" line="253"/> - <location filename="downloadlistwidget.cpp" line="262"/> - <location filename="downloadlistwidget.cpp" line="271"/> - <location filename="downloadlistwidget.cpp" line="280"/> + <location filename="downloadlistwidget.cpp" line="93"/> + <source>< mod %1 file %2 ></source> + <translation>< mod %1 datei %2 ></translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="96"/> + <source>Pending</source> + <translation>Bevorstehend</translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="123"/> + <source>Fetching Info 1</source> + <translation>Informationen abrufen 1</translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="126"/> + <source>Fetching Info 2</source> + <translation>Informationen abrufen 2</translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="258"/> + <location filename="downloadlistwidget.cpp" line="267"/> + <location filename="downloadlistwidget.cpp" line="276"/> + <location filename="downloadlistwidget.cpp" line="285"/> <source>Are you sure?</source> <translation>Sind sie sicher?</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="254"/> + <location filename="downloadlistwidget.cpp" line="259"/> <source>This will remove all finished downloads from this list and from disk.</source> <translation>Entfernt alle abgeschlossenen Downloads aus der Liste und von der Festplatte.</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="263"/> + <location filename="downloadlistwidget.cpp" line="268"/> <source>This will remove all installed downloads from this list and from disk.</source> <translation>Entfernt alle installierten Downloads aus der Liste und von der Festplatte.</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="272"/> + <location filename="downloadlistwidget.cpp" line="277"/> <source>This will remove all finished downloads from this list (but NOT from disk).</source> - <translation type="unfinished"></translation> + <translation>Dies entfernt alle abgeschlossenen Downloads von der Liste (aber NICHT von der Festplatte).</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="281"/> + <location filename="downloadlistwidget.cpp" line="286"/> <source>This will remove all installed downloads from this list (but NOT from disk).</source> - <translation type="unfinished"></translation> + <translation>Dies wird alle installierten Downloads von der Liste entfernen (aber NICHT von der Festplatte).</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="309"/> + <location filename="downloadlistwidget.cpp" line="314"/> <source>Install</source> <translation>Installieren</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="311"/> + <location filename="downloadlistwidget.cpp" line="316"/> <source>Query Info</source> <translation>Info abfragen</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="313"/> + <location filename="downloadlistwidget.cpp" line="318"/> <source>Delete</source> - <translation type="unfinished"></translation> + <translation>Löschen</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="315"/> + <location filename="downloadlistwidget.cpp" line="320"/> <source>Un-Hide</source> - <translation type="unfinished">Sichtbar machen</translation> + <translation>Sichtbar machen</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="317"/> + <location filename="downloadlistwidget.cpp" line="322"/> <source>Remove from View</source> - <translation type="unfinished"></translation> + <translation>Von Liste entfernen</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="323"/> - <source>Remove</source> - <translation>Entfernen</translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="320"/> + <location filename="downloadlistwidget.cpp" line="325"/> <source>Cancel</source> <translation>Abbrechen</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="88"/> - <source>< mod %1 file %2 ></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="91"/> - <source>Pending</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="118"/> - <source>Fetching Info 1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="121"/> - <source>Fetching Info 2</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="321"/> + <location filename="downloadlistwidget.cpp" line="326"/> <source>Pause</source> <translation>Pausieren</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="324"/> + <location filename="downloadlistwidget.cpp" line="328"/> + <source>Remove</source> + <translation>Entfernen</translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="329"/> <source>Resume</source> <translation>Fortsetzen</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="329"/> + <location filename="downloadlistwidget.cpp" line="334"/> <source>Delete Installed...</source> - <translation type="unfinished"></translation> + <translation>Installierte löschen...</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="330"/> + <location filename="downloadlistwidget.cpp" line="335"/> <source>Delete All...</source> - <translation type="unfinished"></translation> + <translation>Alle löschen...</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="333"/> + <location filename="downloadlistwidget.cpp" line="338"/> <source>Remove Installed...</source> <translation>Installierte entfernen...</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="334"/> + <location filename="downloadlistwidget.cpp" line="339"/> <source>Remove All...</source> <translation>Alle löschen...</translation> </message> @@ -611,141 +630,176 @@ p, li { white-space: pre-wrap; } <context> <name>DownloadManager</name> <message> - <location filename="downloadmanager.cpp" line="539"/> - <location filename="downloadmanager.cpp" line="557"/> - <location filename="downloadmanager.cpp" line="570"/> - <location filename="downloadmanager.cpp" line="587"/> - <location filename="downloadmanager.cpp" line="598"/> - <location filename="downloadmanager.cpp" line="633"/> - <source>invalid index %1</source> - <translation>ungültiger index %1</translation> + <location filename="downloadmanager.cpp" line="142"/> + <source>failed to rename "%1" to "%2"</source> + <translation>konnte "%1" nicht in "%2" umbenennen</translation> </message> <message> - <source>failed to delete file</source> - <translation type="obsolete">Löschen der Datei ist fehlgeschlagen</translation> + <location filename="downloadmanager.cpp" line="321"/> + <source>Memory allocation error (in refreshing directory).</source> + <translation>Speicherallokation fehlgeschlagen (refresh).</translation> </message> <message> - <location filename="downloadmanager.cpp" line="457"/> - <source>failed to delete %1</source> - <translation>konnte %1 nicht löschen</translation> + <location filename="downloadmanager.cpp" line="369"/> + <source>Download again?</source> + <translation>Erneut herunterladen?</translation> </message> <message> - <location filename="downloadmanager.cpp" line="463"/> - <source>failed to delete meta file for %1</source> - <translation>konnte meta-informationen für %1 nicht löschen</translation> + <location filename="downloadmanager.cpp" line="369"/> + <source>A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name.</source> + <translation>Eine Datei mit dem gleichen Namen wurde bereits heruntergeladen. Willst du den Download wiederholen? Die neue Datei erhält einen anderen Namen.</translation> </message> <message> - <location filename="downloadmanager.cpp" line="439"/> - <location filename="downloadmanager.cpp" line="506"/> - <location filename="downloadmanager.cpp" line="682"/> - <location filename="downloadmanager.cpp" line="691"/> - <location filename="downloadmanager.cpp" line="701"/> - <location filename="downloadmanager.cpp" line="710"/> - <location filename="downloadmanager.cpp" line="724"/> - <location filename="downloadmanager.cpp" line="734"/> - <location filename="downloadmanager.cpp" line="744"/> - <location filename="downloadmanager.cpp" line="754"/> - <location filename="downloadmanager.cpp" line="765"/> + <location filename="downloadmanager.cpp" line="417"/> + <source>failed to download %1: could not open output file: %2</source> + <translation>Download von %1 fehlgeschlagen: Konnte Ausgabedatei %2 nicht öffnen</translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="454"/> + <source>Wrong Game</source> + <translation>Falsches Spiel</translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="454"/> + <source>The download link is for a mod for "%1" but this instance of MO has been set up for "%2".</source> + <translation>Dieser Download ist für eine Mod für "%1" aber diese MO Installation wurde für "%2" konfiguriert.</translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="471"/> + <location filename="downloadmanager.cpp" line="538"/> + <location filename="downloadmanager.cpp" line="726"/> + <location filename="downloadmanager.cpp" line="735"/> + <location filename="downloadmanager.cpp" line="756"/> <location filename="downloadmanager.cpp" line="773"/> <location filename="downloadmanager.cpp" line="782"/> - <location filename="downloadmanager.cpp" line="792"/> - <location filename="downloadmanager.cpp" line="807"/> + <location filename="downloadmanager.cpp" line="796"/> + <location filename="downloadmanager.cpp" line="806"/> + <location filename="downloadmanager.cpp" line="816"/> + <location filename="downloadmanager.cpp" line="826"/> + <location filename="downloadmanager.cpp" line="841"/> + <location filename="downloadmanager.cpp" line="849"/> + <location filename="downloadmanager.cpp" line="858"/> + <location filename="downloadmanager.cpp" line="868"/> + <location filename="downloadmanager.cpp" line="883"/> <source>invalid index</source> <translation>ungültiger Index</translation> </message> <message> - <location filename="downloadmanager.cpp" line="132"/> - <source>failed to rename "%1" to "%2"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadmanager.cpp" line="342"/> - <source>Download again?</source> - <translation type="unfinished"></translation> + <location filename="downloadmanager.cpp" line="489"/> + <source>failed to delete %1</source> + <translation>konnte %1 nicht löschen</translation> </message> <message> - <location filename="downloadmanager.cpp" line="342"/> - <source>A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name.</source> - <translation type="unfinished"></translation> + <location filename="downloadmanager.cpp" line="495"/> + <source>failed to delete meta file for %1</source> + <translation>konnte meta-informationen für %1 nicht löschen</translation> </message> <message> - <location filename="downloadmanager.cpp" line="421"/> - <source>Wrong Game</source> - <translation type="unfinished"></translation> + <location filename="downloadmanager.cpp" line="571"/> + <location filename="downloadmanager.cpp" line="589"/> + <location filename="downloadmanager.cpp" line="602"/> + <location filename="downloadmanager.cpp" line="622"/> + <location filename="downloadmanager.cpp" line="633"/> + <location filename="downloadmanager.cpp" line="673"/> + <source>invalid index %1</source> + <translation>ungültiger index %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="421"/> - <source>The download link is for a mod for "%1" but this instance of MO has been set up for "%2".</source> - <translation type="unfinished"></translation> + <location filename="downloadmanager.cpp" line="640"/> + <source>No known download urls. Sorry, this download can't be resumed.</source> + <translation>Keine download urls bekannt.Dieser download kann leider nicht fortgesetzt werden. </translation> </message> <message> - <location filename="downloadmanager.cpp" line="650"/> + <location filename="downloadmanager.cpp" line="695"/> <source>Please enter the nexus mod id</source> <translation>Bitte gib die Nexus Mod ID ein</translation> </message> <message> - <location filename="downloadmanager.cpp" line="650"/> + <location filename="downloadmanager.cpp" line="695"/> <source>Mod ID:</source> <translation>Mod ID:</translation> </message> <message> - <source>invalid alphabetical index %1</source> - <translation type="obsolete">ungültiger alphabetischer index %1</translation> + <location filename="downloadmanager.cpp" line="744"/> + <source>Main</source> + <translation>Primär</translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="745"/> + <source>Update</source> + <translation>Aktualisierung</translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="746"/> + <source>Optional</source> + <translation>Optional</translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="747"/> + <source>Old</source> + <translation>Alt</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1042"/> + <location filename="downloadmanager.cpp" line="748"/> + <source>Misc</source> + <translation>Sonstiges</translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="749"/> + <source>Unknown</source> + <translation>Unbekannt</translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="999"/> + <source>Memory allocation error (in processing progress event).</source> + <translation>Speicherallokation fehlgeschlagen (progress).</translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="1012"/> + <source>Memory allocation error (in processing downloaded data).</source> + <translation>Speicherallokation fehlgeschlagen (processing).</translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="1141"/> <source>Information updated</source> <translation>Informationen aktualisiert</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1044"/> - <location filename="downloadmanager.cpp" line="1058"/> + <location filename="downloadmanager.cpp" line="1143"/> + <location filename="downloadmanager.cpp" line="1157"/> <source>No matching file found on Nexus! Maybe this file is no longer available or it was renamed?</source> <translation>Keine passende Datei auf Nexus gefunden! Ist die Datei vielleicht nicht mehr verfügbar?</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1046"/> + <location filename="downloadmanager.cpp" line="1145"/> <source>No file on Nexus matches the selected file by name. Please manually choose the correct one.</source> - <translation>Keine Datei mit diesem Namen auf Nexus gefunden. Bitte wähle die passende händisch aus.</translation> + <translation>Keine Datei mit diesem Namen auf Nexus gefunden. Bitte wählen Sie die passende händisch aus.</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1180"/> + <location filename="downloadmanager.cpp" line="1286"/> <source>No download server available. Please try again later.</source> - <translation type="unfinished"></translation> + <translation>Kein download server verfügbar. Bitte versuche es später noch einmal.</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1224"/> + <location filename="downloadmanager.cpp" line="1329"/> <source>Failed to request file info from nexus: %1</source> <translation>Konnte Datei-Informationen nicht von Nexus abrufen: %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1249"/> + <location filename="downloadmanager.cpp" line="1357"/> <source>Download failed. Server reported: %1</source> - <translation type="unfinished"></translation> + <translation>Download fehlgeschlagen. Server meldet: %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1251"/> + <location filename="downloadmanager.cpp" line="1359"/> <source>Download failed: %1 (%2)</source> <translation>Download fehlgeschlagen: %1 (%2)</translation> </message> <message> - <source>Failed to request file info from nexus!</source> - <translation type="obsolete">Abfrage von Dateiinformationen von Nexus fehlgeschlagen!</translation> - </message> - <message> - <location filename="downloadmanager.cpp" line="1331"/> + <location filename="downloadmanager.cpp" line="1458"/> <source>failed to re-open %1</source> <translation>Öffnen von %1 fehlgeschlagen</translation> </message> - <message> - <source>failed to parse nexus response</source> - <translation type="obsolete">konnte Antwort von Nexus nicht interpretieren</translation> - </message> - <message> - <location filename="downloadmanager.cpp" line="388"/> - <source>failed to download %1: could not open output file: %2</source> - <translation>Download von %1 fehlgeschlagen: Konnte Ausgabedatei %2 nicht öffnen</translation> - </message> </context> <context> <name>EditExecutablesDialog</name> @@ -829,9 +883,8 @@ p, li { white-space: pre-wrap; } Every game/tool distributed through Steam has a unique ID. MO needs to know this ID to start those programs directly, otherwise the program is started by steam and then MO will not work. By default, MO will use the AppID for the game. Right now the only case I know of where this needs to be overwritten is for the Skyrim Creation Kit which has its own AppID. This overwrite is already preconfigured.</source> <translation>Erlaubt es, die Steam AppID für diese ausführbare Datei zu ändern. -Jedes Spiel und jede Anwendung die über Steam vertrieben wird hat eine eindeutige ID. MO muss diese ID wissen um das Programm direkt starten zu können, ansonsten wird das Programm indirekt von Steam gestartet und MO funktioniert nicht. -Standardmäßig verwendet MO die AppID des Spiels. -Momentan ist der einzige bekannte Fall in dem dies benötigt wird der Skyrim Creation Kit der eine andere AppID hat als Skyrim selber.</translation> +Jedes Spiel und jede Anwendung die über Steam vertrieben wird hat eine eindeutige ID. MO muss diese ID wissen um das Programm direkt starten zu können, ansonsten wird das Programm indirekt von Steam gestartet und MO funktioniert nicht. Standardmäßig verwendet MO die AppID des Spiels. +Momentan ist der einzige bekannte Fall in dem dies benötigt wird der Skyrim Creation Kit der eine andere AppID hat als Skyrim selber. Dies ist bereits vorkonfiguriert.</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="143"/> @@ -848,10 +901,9 @@ Momentan ist der einzige bekannte Fall in dem dies benötigt wird der Skyrim Cre <source>Steam AppID to use for this executable that differs from the games AppID. Every game/tool distributed through Steam has a unique ID. MO needs to know this ID to start those programs directly, otherwise the program is started by steam and then MO will not work. By default, MO will use the AppID for the game (usually 72850). Right now the only case I know of where this needs to be overwritten is for the Skyrim Creation Kit which has its own AppID (usually 202480). This overwrite is already preconfigured.</source> - <translation>Steam AppID die für diese Datei statt der des Spieles verwendet werden soll -Jedes Spiel und jede Anwendung die über Steam vertrieben wird hat eine eindeutige ID. MO muss diese ID wissen um das Programm direkt starten zu können, ansonsten wird das Programm indirekt von Steam gestartet und MO funktioniert nicht. -Standardmäßig verwendet MO die AppID des Spiels (bei Skyrim z.B. 72850). -Momentan ist der einzige bekannte Fall in dem dies benötigt wird der Skyrim Creation Kit der eine andere AppID (202480) hat als Skyrim selber.</translation> + <translation>Steam AppID die für diese Datei statt der des Spieles verwendet werden soll. +Jedes Spiel und jede Anwendung die über Steam vertrieben wird hat eine eindeutige ID. MO muss diese ID wissen um das Programm direkt starten zu können, ansonsten wird das Programm indirekt von Steam gestartet und MO funktioniert nicht. Standardmäßig verwendet MO die AppID des Spiels (bei Skyrim z.B. 72850). +Momentan ist der einzige bekannte Fall in dem dies benötigt wird der Skyrim Creation Kit der eine andere AppID (202480) hat als Skyrim selber. Dies is bereits vorkonfiguriert.</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="169"/> @@ -891,7 +943,7 @@ Momentan ist der einzige bekannte Fall in dem dies benötigt wird der Skyrim Cre <message> <location filename="editexecutablesdialog.ui" line="233"/> <source>Close</source> - <translation type="unfinished">Schliessen</translation> + <translation>Schliessen</translation> </message> <message> <location filename="editexecutablesdialog.cpp" line="125"/> @@ -906,12 +958,12 @@ Momentan ist der einzige bekannte Fall in dem dies benötigt wird der Skyrim Cre <message> <location filename="editexecutablesdialog.cpp" line="149"/> <source>Java (32-bit) required</source> - <translation type="unfinished"></translation> + <translation>Java (32-bit) wird benötigt</translation> </message> <message> <location filename="editexecutablesdialog.cpp" line="150"/> <source>MO requires 32-bit java to run this application. If you already have it installed, select javaw.exe from that installation as the binary.</source> - <translation type="unfinished"></translation> + <translation>MO benötigt Java(32-bit) um diese Anwendung auszuführen. Wenn Sie Java(32-bit) schon installiert haben, wählen Sie die javaw.exe aus dem Installationsordner als binary.</translation> </message> <message> <location filename="editexecutablesdialog.cpp" line="166"/> @@ -929,31 +981,27 @@ Momentan ist der einzige bekannte Fall in dem dies benötigt wird der Skyrim Cre <translation>Die ausführbare Datei "%1" löschen?</translation> </message> <message> + <location filename="editexecutablesdialog.cpp" line="200"/> + <source>Modify</source> + <translation>Ändern</translation> + </message> + <message> <location filename="editexecutablesdialog.cpp" line="230"/> <location filename="editexecutablesdialog.cpp" line="278"/> <source>Save Changes?</source> - <translation type="unfinished"></translation> + <translation>Änderungen speichern?</translation> </message> <message> <location filename="editexecutablesdialog.cpp" line="231"/> <location filename="editexecutablesdialog.cpp" line="279"/> <source>You made changes to the current executable, do you want to save them?</source> - <translation type="unfinished"></translation> + <translation>Sie haben Änderungen an der aktuellen Executable gemacht, wollen Sie sie speichern?</translation> </message> <message> <location filename="editexecutablesdialog.cpp" line="255"/> <source>MO must be kept running or this application will not work correctly.</source> <translation>MO muss aktiv bleiben sonst funktioniert diese Anwendung nicht korrekt.</translation> </message> - <message> - <source>Executable (*.exe *.bat)</source> - <translation type="obsolete">Ausführbare Datei (*.exe, *.bat)</translation> - </message> - <message> - <location filename="editexecutablesdialog.cpp" line="200"/> - <source>Modify</source> - <translation>Ändern</translation> - </message> </context> <context> <name>FindDialog</name> @@ -1044,62 +1092,6 @@ Momentan ist der einzige bekannte Fall in dem dies benötigt wird der Skyrim Cre <source>Cancel</source> <translation>Abbrechen</translation> </message> - <message> - <source>ModuleConfig.xml missing</source> - <translation type="obsolete">ModuleConfig.xml fehlt</translation> - </message> - <message> - <source><a href="%1">Link</a></source> - <translation type="obsolete"><a href="%1">Link</a></translation> - </message> - <message> - <source>failed to parse info.xml: %1 (%2) (line %3, column %4)</source> - <translation type="obsolete">konnte info.xml nicht parsen: %1 (%2) (Zeile %3, Spalte %4)</translation> - </message> - <message> - <source>unsupported order type %1</source> - <translation type="obsolete">nicht unterstütze Sortierung %1</translation> - </message> - <message> - <source>unsupported group type %1</source> - <translation type="obsolete">nicht unterstützter Gruppen-Typ %1</translation> - </message> - <message> - <source>This component is required</source> - <translation type="obsolete">Diese Komponente wird benötigt</translation> - </message> - <message> - <source>It is recommended you enable this component</source> - <translation type="obsolete">Es wird empfohlen diese Komponente zu aktivieren</translation> - </message> - <message> - <source>Optional component</source> - <translation type="obsolete">Optionale Komponente</translation> - </message> - <message> - <source>This component is not usable in combination with other installed plugins</source> - <translation type="obsolete">Diese Komponente kann nicht in Kombination mit einigen der aktivien Plugins verwendet werden.</translation> - </message> - <message> - <source>You may be experiencing instability in combination with other installed plugins</source> - <translation type="obsolete">Es ist möglich dass die Kombination dieser Komponente mit anderen installierten Plugins zu abstürzen führt.</translation> - </message> - <message> - <source>None</source> - <translation type="obsolete">Keine</translation> - </message> - <message> - <source>Select one or more of these options:</source> - <translation type="obsolete">Wähle eine oder mehrere dieser Optionen:</translation> - </message> - <message> - <source>failed to parse ModuleConfig.xml: %1</source> - <translation type="obsolete">konnte ModuleConfig.xml nicht parsen: %1</translation> - </message> - <message> - <source>Install</source> - <translation type="obsolete">Installieren</translation> - </message> </context> <context> <name>InstallDialog</name> @@ -1145,7 +1137,6 @@ Momentan ist der einzige bekannte Fall in dem dies benötigt wird der Skyrim Cre p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This displays the content of the archive. &lt;data&gt; represents the base directory which will map to the game's data directory. You can change the base directory via the right-click context menu and you can move around files via drag&amp;drop</span></p></body></html></source> - <translatorcomment>english version missing punctuation</translatorcomment> <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1160,59 +1151,20 @@ p, li { white-space: pre-wrap; } <message> <location filename="installdialog.ui" line="141"/> <source>OK</source> - <translation type="unfinished">OK</translation> + <translation>OK</translation> </message> <message> <location filename="installdialog.ui" line="148"/> <source>Cancel</source> - <translation type="unfinished">Abbrechen</translation> - </message> - <message> - <source>Looks good</source> - <translation type="obsolete">Sieht gut aus</translation> - </message> - <message> - <source>No problem detected</source> - <translation type="obsolete">Keine Probleme entdeckt</translation> - </message> - <message> - <source>No game data on top level</source> - <translation type="obsolete">Keine Spieldaten in der obersten Ebene</translation> - </message> - <message> - <source>There is no esp/esm file or asset directory (textures, meshes, interface, ...) on the top level.</source> - <translation type="obsolete">Es gibt auf der obersten Ebene keine esp / esm Dateien oder Resourcen (Texturen, Netze, Oberfläche...).</translation> - </message> - <message> - <source>Enter a directory name</source> - <translation type="obsolete">Geben Sie einen Verzeichnisnamen an</translation> - </message> - <message> - <source>A directory with that name exists</source> - <translation type="obsolete">Ein Verzeichnis mit diesem Namen existiert bereits</translation> - </message> - <message> - <source>Set data directory</source> - <translation type="obsolete">Daten Verzeichnis wechseln</translation> - </message> - <message> - <source>Unset data directory</source> - <translation type="obsolete">Daten Verzeichnis zurückwechseln</translation> - </message> - <message> - <source>Create directory...</source> - <translation type="obsolete">Verzeichnis anlegen...</translation> - </message> - <message> - <source>&Open</source> - <translation type="obsolete">&Öffnen</translation> + <translation>Abbrechen</translation> </message> </context> <context> <name>InstallationManager</name> <message> - <source>mo_archive.dll not loaded: "%1"</source> - <translation type="obsolete">mo_archive.dll nicht geladen: %1</translation> + <location filename="installationmanager.cpp" line="76"/> + <source>archive.dll not loaded: "%1"</source> + <translation>archive.dll nicht geladen: "%1"</translation> </message> <message> <location filename="installationmanager.cpp" line="98"/> @@ -1225,154 +1177,89 @@ p, li { white-space: pre-wrap; } <translation>Kennwort</translation> </message> <message> - <source>Directory exists</source> - <translation type="obsolete">Verzeichnis existiert bereits</translation> - </message> - <message> - <source>The mod seems to be installed already. Do you want to add files from this archive (overwriting existing ones)?</source> - <translation type="obsolete">Dieser Mod scheint bereits installiert zu sein. Wollen Sie die Datein aus dem Archiv dem Mod hinzufügen (existierende Dateien werden überschrieben)?</translation> - </message> - <message> <location filename="installationmanager.cpp" line="164"/> <location filename="installationmanager.cpp" line="248"/> - <location filename="installationmanager.cpp" line="529"/> + <location filename="installationmanager.cpp" line="530"/> <source>Extracting files</source> <translation>Extrahiere Dateien</translation> </message> <message> - <location filename="installationmanager.cpp" line="757"/> - <source>failed to open archive</source> - <translation>Öffnen des Archivs fehlgeschlagen</translation> - </message> - <message> - <location filename="installationmanager.cpp" line="609"/> - <source>File format "%1" not supported</source> - <translation>Dateiformat "%1" wird nicht unterstützt</translation> - </message> - <message> - <source>failed to open archive "%1"</source> - <translation type="obsolete">Archiv "%1" konnte nicht geöffnet werden</translation> - </message> - <message> - <source>This mod seems to be installed already. Do you want to add files from this archive (overwriting existing ones) or do you want to completely replace the existing files (old files are deleted)</source> - <translation type="obsolete">Diese Mod ist anscheinend schon installiert. Möchtest du die dieses Archive mit der installierten Mod kombinieren (existierende Dateien werden nötigenfals überschrieben) oder möchtest du die existierende Mod vollständig ersetzen?</translation> - </message> - <message> - <source>Add Files</source> - <translation type="obsolete">Dateien hinzufügen</translation> - </message> - <message> - <source>Replace</source> - <translation type="obsolete">Ersetzen</translation> - </message> - <message> - <source>Preparing installer</source> - <translation type="obsolete">Installation wird vorbereitet</translation> - </message> - <message> - <source>Installation as fomod failed: %1</source> - <translation type="obsolete">Die Installation als fomod ist fehlgeschlagen: %1</translation> - </message> - <message> - <source>failed to start %1</source> - <translation type="obsolete">Konnte %1 nicht starten</translation> - </message> - <message> - <source>Running external installer</source> - <translation type="obsolete">Führe Installation mit externer Anwendung durch</translation> - </message> - <message> - <source>Force Close</source> - <translation type="obsolete">Schließen erzwingen</translation> - </message> - <message> - <source>Confirm</source> - <translation type="obsolete">Bestätigen</translation> - </message> - <message> - <source>installation failed (errorcode %1)</source> - <translation type="obsolete">Installation fehlgeschlagen (Fehlercode %1)</translation> - </message> - <message> - <location filename="installationmanager.cpp" line="76"/> - <source>archive.dll not loaded: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="installationmanager.cpp" line="439"/> <source>failed to create backup</source> - <translation type="unfinished"></translation> + <translation>konnte kein Backup erzeugen</translation> </message> <message> <location filename="installationmanager.cpp" line="448"/> <source>Mod Name</source> - <translation type="unfinished"></translation> + <translation>Mod Name</translation> </message> <message> <location filename="installationmanager.cpp" line="448"/> <source>Name</source> - <translation type="unfinished">Name</translation> + <translation>Name</translation> </message> <message> <location filename="installationmanager.cpp" line="501"/> <source>Invalid name</source> - <translation type="unfinished"></translation> + <translation>Ungültiger Name</translation> </message> <message> <location filename="installationmanager.cpp" line="502"/> <source>The name you entered is invalid, please enter a different one.</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Installer missing</source> - <translation type="obsolete">Installer nicht installiert</translation> + <translation>Der Name den Sie eingegeben haben ist ungültig, bitte geben sie einen neuen ein.</translation> </message> <message> - <source>This package contains a scripted installer. To use this installer you need the optional "nmm installer for MO" package and the .net runtime. Do you want to continue, treating this as a manual installer?</source> - <translation type="obsolete">Dieses Archive enthält einen geskripteten Installer. Um diesen zu nutzen wird das Optionale Paket "NCC" und die .net Runtime benötigt. Willst du jetzt mit einer manuellen Installation fortfahren?</translation> + <location filename="installationmanager.cpp" line="610"/> + <source>File format "%1" not supported</source> + <translation>Dateiformat "%1" wird nicht unterstützt</translation> </message> <message> - <location filename="installationmanager.cpp" line="735"/> + <location filename="installationmanager.cpp" line="743"/> <source>None of the available installer plugins were able to handle that archive</source> - <translation type="unfinished"></translation> + <translation>Keinem der vorhandenen Installations Plugins ist es möglich dieses Archiv zu öffnen</translation> </message> <message> - <location filename="installationmanager.cpp" line="745"/> + <location filename="installationmanager.cpp" line="753"/> <source>no error</source> <translation>Kein Fehler</translation> </message> <message> - <location filename="installationmanager.cpp" line="748"/> + <location filename="installationmanager.cpp" line="756"/> <source>7z.dll not found</source> <translation>7z.dll nicht gefunden</translation> </message> <message> - <location filename="installationmanager.cpp" line="751"/> + <location filename="installationmanager.cpp" line="759"/> <source>7z.dll isn't valid</source> <translation>7z.dll ist ungültig</translation> </message> <message> - <location filename="installationmanager.cpp" line="754"/> + <location filename="installationmanager.cpp" line="762"/> <source>archive not found</source> <translation>Archiv nicht gefunden</translation> </message> <message> - <location filename="installationmanager.cpp" line="760"/> + <location filename="installationmanager.cpp" line="765"/> + <source>failed to open archive</source> + <translation>Öffnen des Archivs fehlgeschlagen</translation> + </message> + <message> + <location filename="installationmanager.cpp" line="768"/> <source>unsupported archive type</source> <translation>Archivtyp wird nicht unterstützt</translation> </message> <message> - <location filename="installationmanager.cpp" line="763"/> + <location filename="installationmanager.cpp" line="771"/> <source>internal library error</source> <translation>Interner Fehler in der Bibliothek</translation> </message> <message> - <location filename="installationmanager.cpp" line="766"/> + <location filename="installationmanager.cpp" line="774"/> <source>archive invalid</source> <translation>Ungültiges Archiv</translation> </message> <message> - <location filename="installationmanager.cpp" line="770"/> + <location filename="installationmanager.cpp" line="778"/> <source>unknown archive error</source> <translation>Unbekannter Fehler im Archiv</translation> </message> @@ -1403,7 +1290,7 @@ p, li { white-space: pre-wrap; } <context> <name>LogBuffer</name> <message> - <location filename="logbuffer.cpp" line="73"/> + <location filename="logbuffer.cpp" line="83"/> <source>failed to write log to %1: %2</source> <translation>konnte Protokoll nicht nach %1 schreiben: %2</translation> </message> @@ -1411,43 +1298,68 @@ p, li { white-space: pre-wrap; } <context> <name>MOApplication</name> <message> - <location filename="moapplication.cpp" line="68"/> + <location filename="moapplication.cpp" line="115"/> <source>an error occured: %1</source> - <translation type="unfinished">ein Fehler ist aufgetreten: %1</translation> + <translation>ein Fehler ist aufgetreten: %1</translation> </message> <message> - <location filename="moapplication.cpp" line="73"/> + <location filename="moapplication.cpp" line="120"/> <source>an error occured</source> - <translation type="unfinished">ein Fehler ist aufgetreten</translation> + <translation>ein Fehler ist aufgetreten</translation> </message> </context> <context> <name>MainWindow</name> <message> - <location filename="mainwindow.ui" line="51"/> - <location filename="mainwindow.ui" line="392"/> + <location filename="mainwindow.ui" line="43"/> + <location filename="mainwindow.ui" line="482"/> <source>Categories</source> - <translation type="unfinished">Kategorien</translation> + <translation>Kategorien</translation> + </message> + <message> + <location filename="mainwindow.ui" line="97"/> + <source>Click blank area to deselect</source> + <translation>Leere Fläche klicken z. abwählen</translation> + </message> + <message> + <location filename="mainwindow.ui" line="116"/> + <source>If checked, only mods that match all selected categories are displayed.</source> + <translation>Es werden nur Mods angezeigt die in allen selektierten Kategorien sind.</translation> + </message> + <message> + <location filename="mainwindow.ui" line="119"/> + <source>And</source> + <translation>Und</translation> + </message> + <message> + <location filename="mainwindow.ui" line="129"/> + <source>If checked, all mods that match at least one of the selected categories are displayed.</source> + <translation>Es werden alle Mods angezeigt die in einer der selektierten Kategorien sind.</translation> </message> <message> - <location filename="mainwindow.ui" line="128"/> + <location filename="mainwindow.ui" line="132"/> + <source>Or</source> + <translation>Oder</translation> + </message> + <message> + <location filename="mainwindow.ui" line="171"/> <source>Profile</source> - <translation type="unfinished">Profil</translation> + <translation>Profil</translation> </message> <message> - <location filename="mainwindow.ui" line="138"/> + <location filename="mainwindow.ui" line="181"/> <source>Pick a module collection</source> - <translation type="unfinished">Wähle eine Modul-Kollektion</translation> + <translation>Wähle eine Modul-Kollektion</translation> </message> <message> - <location filename="mainwindow.ui" line="141"/> + <location filename="mainwindow.ui" line="184"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Create profiles here. Each profile contains its own list of active mods and esps. This way you can quickly switch between setups for different play throughs.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Please note that right now your esp load order is not kept seperate for different profiles.</span></p></body></html></source> - <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> @@ -1455,65 +1367,73 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Beachten Sie, dass derzeit die ESP Ladefolge nicht getrennt für verschiedene Profile gespeichert wird.</span></p></body></html></translation> </message> <message> - <location filename="mainwindow.ui" line="159"/> + <location filename="mainwindow.ui" line="215"/> <source>Refresh list</source> - <translation type="unfinished">Liste aktualisieren</translation> + <translation>Liste aktualisieren</translation> </message> <message> - <location filename="mainwindow.ui" line="162"/> + <location filename="mainwindow.ui" line="218"/> <source>Refresh list. This is usually not necessary unless you modified data outside the program.</source> - <translation type="unfinished">Liste aktualisieren. Dies ist normalerweise nicht notwendig, es sei denn Sie haben Daten außerhalb von MO verändert.</translation> + <translation>Liste aktualisieren. Dies ist normalerweise nicht notwendig, es sei denn Sie haben Daten außerhalb von MO verändert.</translation> + </message> + <message> + <location filename="mainwindow.ui" line="238"/> + <location filename="mainwindow.ui" line="739"/> + <source>Restore Backup...</source> + <translation>Backup wiederherstellen...</translation> </message> <message> - <location filename="mainwindow.ui" line="278"/> + <location filename="mainwindow.ui" line="252"/> + <location filename="mainwindow.ui" line="759"/> + <source>Create Backup</source> + <translation>Backup erzeugen</translation> + </message> + <message> + <location filename="mainwindow.ui" line="368"/> <source>List of available mods.</source> - <translation type="unfinished"></translation> + <translation>Liste der verfügbaren mods.</translation> </message> <message> - <location filename="mainwindow.ui" line="281"/> + <location filename="mainwindow.ui" line="371"/> <source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag & drop mods to change their "installation" orders.</source> - <translation type="unfinished"></translation> + <translation>Dies ist eine Liste der installierten mods. Benutze die checkboxen um mods zu aktivieren oder deaktivieren und drag & drop um die "Installations"-Reihenfolge zu verändern.</translation> </message> <message> - <location filename="mainwindow.ui" line="366"/> + <location filename="mainwindow.ui" line="456"/> <source>Filter</source> - <translation type="unfinished">Filter</translation> + <translation>Filter</translation> </message> <message> - <location filename="mainwindow.ui" line="387"/> + <location filename="mainwindow.ui" line="477"/> <source>No groups</source> - <translation type="unfinished"></translation> + <translation>Keine Gruppen</translation> </message> <message> - <location filename="mainwindow.ui" line="397"/> + <location filename="mainwindow.ui" line="487"/> <source>Nexus IDs</source> - <translation type="unfinished">Nexus IDs</translation> + <translation>Nexus IDs</translation> </message> <message> - <location filename="mainwindow.ui" line="405"/> - <location filename="mainwindow.ui" line="724"/> - <location filename="mainwindow.ui" line="1046"/> + <location filename="mainwindow.ui" line="495"/> + <location filename="mainwindow.ui" line="876"/> + <location filename="mainwindow.ui" line="1214"/> <source>Namefilter</source> - <translation type="unfinished"></translation> + <translation>Namensfilter</translation> </message> <message> - <source>Start</source> - <translation type="obsolete">Ausführen</translation> - </message> - <message> - <location filename="mainwindow.ui" line="440"/> + <location filename="mainwindow.ui" line="530"/> <source>Pick a program to run.</source> - <translation type="unfinished">Wähle das auszuführende Programm.</translation> + <translation>Wähle das auszuführende Programm.</translation> </message> <message> - <location filename="mainwindow.ui" line="443"/> + <location filename="mainwindow.ui" line="533"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Choose the program to run. Once you start using ModOrganizer, you should always run your game and tools from here or through shortcuts created here, otherwise mods installed through MO will not be visible.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">You can add new Tools to this list, but I can't promise tools I haven't tested will work.</span></p></body></html></source> - <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> @@ -1521,182 +1441,170 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Sie können weitere Programme dieser Liste hinzufügen, aber ich kann nicht garantieren, dass von mir nicht getestete Anwendungen vollständig funktionieren..</span></p></body></html></translation> </message> <message> - <location filename="mainwindow.ui" line="491"/> + <location filename="mainwindow.ui" line="581"/> <source>Run program</source> - <translation type="unfinished">Ausführen</translation> + <translation>Ausführen</translation> </message> <message> - <location filename="mainwindow.ui" line="494"/> + <location filename="mainwindow.ui" line="584"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Run the selected program with ModOrganizer enabled.</span></p></body></html></source> - <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Das ausgewählte Programm durch Mod Organiser ausführen.</span></p></body></html></translation> </message> <message> - <location filename="mainwindow.ui" line="504"/> + <location filename="mainwindow.ui" line="594"/> <source>Run</source> - <translation type="unfinished">Starten</translation> + <translation>Starten</translation> </message> <message> - <location filename="mainwindow.ui" line="545"/> + <location filename="mainwindow.ui" line="635"/> <source>Create a shortcut in your start menu or on the desktop to the specified program</source> - <translation type="unfinished"></translation> + <translation>Erzeugt eine Verknüpfung zum gewählten Programm im Startmenü oder auf dem Desktop.</translation> </message> <message> - <location filename="mainwindow.ui" line="548"/> + <location filename="mainwindow.ui" line="638"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This creates a start menu shortcut that directly starts the selected program with the MO active.</span></p></body></html></source> - <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Erstellt einen Eintrag im Startmenü, der direkt das gewählte Programm durch Mod Organsier ausführt.</span></p></body></html></translation> </message> <message> - <location filename="mainwindow.ui" line="555"/> + <location filename="mainwindow.ui" line="645"/> <source>Shortcut</source> - <translation type="unfinished"></translation> + <translation>Verknüpfung</translation> </message> <message> - <source>save esp list and load order.</source> - <translation type="obsolete">ESP selektion und Reihenfolge speichern.</translation> + <location filename="mainwindow.ui" line="695"/> + <source>Plugins</source> + <translation>Plugins</translation> + </message> + <message> + <location filename="mainwindow.ui" line="821"/> + <source>List of available esp/esm files</source> + <translation>Liste der verfügbaren ESP / ESM Dateien</translation> </message> <message> + <location filename="mainwindow.ui" line="824"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Save the list of active mods and load order. This automatically happens if you close MO or start a program.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This list contains the esps and esms contained in the active mods. These require their own load order. Use drag&amp;drop to modify this load order. Please note that MO will only save the load order for mods that are active/checked.<br />There is a great tool named &quot;BOSS&quot; to automatically sort these files.</span></p></body></html></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Die Liste der aktiven Mods und ihrer Ladefolge speichern. Dies geschieht automatisch wenn Sie Mord Organiser schliessen oder ein Programm starten.</span></p></body></html></translation> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Diese Liste enthält alle ESPs und ESMs die in den aktiven Mods zur Verfügung steht. Diese Dateien benötigen ihre eigene Ladefolge - verwenden Sie Drag&amp;Drop um die Reihenfolge zu ändern. Beachten Sie, dass Mod Organiser nur die Reihenfolge von Mods speichert, die als aktiv markiert sind.<br />Es gibt ein großartiges Programm names &quot;BOSS&quot; um die Dateien automatisch zu sortieren.</span></p></body></html></translation> </message> <message> - <source>Save</source> - <translation type="obsolete">Speichern</translation> + <location filename="mainwindow.ui" line="715"/> + <source>Sort</source> + <translation>Sortieren</translation> </message> <message> - <location filename="mainwindow.ui" line="669"/> - <source>List of available esp/esm files</source> - <translation type="unfinished">Liste der verfügbaren ESP / ESM Dateien</translation> + <location filename="mainwindow.ui" line="886"/> + <source>Archives</source> + <translation>Archive</translation> </message> <message> - <location filename="mainwindow.ui" line="672"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This list contains the esps and esms contained in the active mods. These require their own load order. Use drag&amp;drop to modify this load order. Please note that MO will only save the load order for mods that are active/checked.<br />There is a great tool named &quot;BOSS&quot; to automatically sort these files.</span></p></body></html></source> - <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Diese Liste enthält alle ESPs und ESMs die in den aktiven Mods zur Verfügung steht. Diese Dateien benötigen ihre eigene Ladefolge - verwenden Sie Drag&amp;Drop um die Reihenfolge zu ändern. Beachten Sie, dass Mod Organiser nur die Reihenfolge von Mods speichert, die als aktiv markiert sind.<br />Es gibt ein großartiges Programm names &quot;BOSS&quot; um die Dateien automatisch zu sortieren.</span></p></body></html></translation> + <location filename="mainwindow.ui" line="916"/> + <source><html><head/><body><p>BSAs are bundles of game assets (textures, scripts, ...). By default, the engine loads these bundles in a separate step from loose files. MO can manage those archives to align their load order with that of loose files:</p><p>If archives are <span style=" font-weight:600;">managed</span>, their load order is specified by the priority of the corresponding mod (left pane), the same as the loose files. You can manually enable any BSA that has no corresponding plugin active.<br/></p><p>If archives are <span style=" font-weight:600;">not managed</span> their load order is specified by the priority of the corresponding plugin (right pane, plugins tab). You can then not manually enable BSAs where the plugin isn't active.</p><p>In either case you can not disable archives if there is a matching plugin, the game will load them no matter what.</p></body></html></source> + <translation><html><head/><body><p>BSAs sind gebündelte game assets (Texturen, Skripte, ...). Normalerweise lädt das Spiel diese Archive in einem anderen Arbeitsschritt als loose Dateien. MO kann Archive so behandeln dass ihre Ladereihenfolge zu der von losen Dateien passen:</p><p>Wenn Archive<span style=" font-weight:600;">verwaltet</span> werden hängt ihre Ladereihenfolge von der Priorität der zugehörigen Mod (linke Liste) ab, genauso wie Loose Dateien. Sie können außerdem auch solche Archive aktivieren für die es kein zugehöriges Plugin (esp) gibt.<br/></p><p>Wenn Archive <span style=" font-weight:600;">nicht verwaltet</span> werden hängt ihre Ladereihenfolge von dem gleichnamigen Plugin (rechte Liste, "Plugins" Reiter) ab. Es werden dann auch nur die BSAs geladen für die das zugehörige Plugin geladen wird.</p><p>In beiden Fällen werden solche Plugins immer geladen wenn ein gleichnamiges Plugin aktiv ist, das wird vom Spiel erzwungen.</p></body></html></translation> </message> <message> - <source>IMPORTANT: You can change the order of BSAs here but installation order of mods has priority over the order specified here!</source> - <translation type="obsolete">WICHTIG: Sie können die Ladereihenfolge der BSAs hier ändern aber die Installationsreihenfolge hat Vorrang vor der Reihenfolge hier!</translation> + <location filename="mainwindow.ui" line="919"/> + <source><html><head/><body><p>Have MO manage archives (<a href="#"><span style=" text-decoration: underline; color:#0000ff;">read more</span></a>)</p></body></html></source> + <translation><html><head/><body><p>Archive von MO verwalten lassen (<a href="#"><span style=" text-decoration: underline; color:#0000ff;">mehr Information</span></a>)</p></body></html></translation> </message> <message> - <location filename="mainwindow.ui" line="762"/> + <location filename="mainwindow.ui" line="934"/> <source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source> - <translation type="unfinished">Liste der BS Archive. Archive die hier nicht markiert sind werden nicht von MO verwaltet und beachten daher nicht die gewählte Installationsreihenfolge.</translation> + <translation>Liste der BS Archive. Archive die hier nicht markiert sind werden nicht von MO verwaltet und beachten daher nicht die gewählte Installationsreihenfolge.</translation> </message> <message> - <location filename="mainwindow.ui" line="765"/> + <location filename="mainwindow.ui" line="937"/> <source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" with loose files in your data directory over which is loaded. By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored! BSAs checked here are loaded in such a way that your installation order is obeyed properly.</source> - <translation type="unfinished"></translation> + <translation>BSA-Dateien sind Archive (vergleichbar mit .zip-Dateien) und enthalten Meshes, Texturen, usw. die vom Spiel benötigt werden. Daher stehen diese Dateien in "Konkurrenz" mit den Einzeldateien anderer Mods darüber, welche geladen werden sollen. +Das Standardverhalten des Spiels ist, alle BSAs automatisch zu laden die den gleichen Namen haben wie ein aktives ESP (z.B. plugin.esp und plugin.bsa) und deren Dateien Vorrang vor Einzeldateien zu geben. Die Installationsreihenfolge die du mit MO konfiguriert hast wird für diese Dateien ignoriert! + +BSAs die du hier markierst werden hingegen anders geladen so dass die Installationsreihenfolge korrekt eingehalten wird.</translation> </message> <message> - <location filename="mainwindow.ui" line="811"/> - <location filename="mainwindow.ui" line="880"/> + <location filename="mainwindow.ui" line="983"/> + <location filename="mainwindow.ui" line="1042"/> <source>File</source> - <translation type="unfinished">Datei</translation> + <translation>Datei</translation> </message> <message> - <location filename="mainwindow.ui" line="819"/> <source><html><head/><body><p>Marked Archives (<img src=":/MO/gui/warning_16"/>) are still loaded on Skyrim but the <a href="http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/"><span style=" text-decoration: underline; color:#0000ff;">regular file override</span></a> mechanism will apply: Loose files override BSAs, no matter the mod/plugin priority.</p></body></html></source> - <translation type="unfinished"></translation> + <translation type="obsolete"><html><head/><body><p>Markierte Archive (<img src=":/MO/gui/warning_16"/>) werden von Skyrim trotzdem geladen aber der <a href="http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/"><span style=" text-decoration: underline; color:#0000ff;">ursprüngliche Überschreibungsmechanismus</span></a> wird greifen: Loose Dateien überschreiben dann den Inhalt von BSAs, unabhängig von der eingerichteten mod/plugin priority.</p></body></html></translation> </message> <message> - <location filename="mainwindow.ui" line="885"/> - <source>Mod</source> - <translation type="unfinished">Mod</translation> - </message> - <message> - <location filename="mainwindow.ui" line="830"/> + <location filename="mainwindow.ui" line="992"/> <source>Data</source> - <translation type="unfinished">Data</translation> + <translation>Data</translation> </message> <message> - <location filename="mainwindow.ui" line="605"/> - <source>Plugins</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="731"/> - <source>Sort</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="741"/> - <source>Archives</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="848"/> + <location filename="mainwindow.ui" line="1010"/> <source>refresh data-directory overview</source> - <translation type="unfinished">Data-Verzeichnis übersicht neu laden</translation> + <translation>Data-Verzeichnis übersicht neu laden</translation> </message> <message> - <location filename="mainwindow.ui" line="851"/> + <location filename="mainwindow.ui" line="1013"/> <source>Refresh the overview. This may take a moment.</source> - <translation type="unfinished">Lädt die Übersicht neu. Dies kann einen Augenblick dauern.</translation> + <translation>Lädt die Übersicht neu. Dies kann einen Augenblick dauern.</translation> </message> <message> - <location filename="mainwindow.ui" line="854"/> - <location filename="mainwindow.cpp" line="3781"/> - <location filename="mainwindow.cpp" line="4604"/> + <location filename="mainwindow.ui" line="1016"/> + <location filename="mainwindow.cpp" line="3749"/> + <location filename="mainwindow.cpp" line="4614"/> <source>Refresh</source> - <translation type="unfinished">Neu laden</translation> + <translation>Neu laden</translation> </message> <message> - <location filename="mainwindow.ui" line="870"/> + <location filename="mainwindow.ui" line="1032"/> <source>This is an overview of your data directory as visible to the game (and tools). </source> - <translation type="unfinished">Dies ist eine Übersicht des "data"-verzeichnisses so wie es das Spiel zu sehen bekommt.</translation> + <translation>Dies ist eine Übersicht des "data"-verzeichnisses so wie es das Spiel (und Tools) zu sehen bekommt.</translation> </message> <message> - <location filename="mainwindow.ui" line="895"/> - <location filename="mainwindow.ui" line="898"/> + <location filename="mainwindow.ui" line="1047"/> + <source>Mod</source> + <translation>Mod</translation> + </message> + <message> + <location filename="mainwindow.ui" line="1057"/> + <location filename="mainwindow.ui" line="1060"/> <source>Filter the above list so that only conflicts are displayed.</source> - <translation type="unfinished">Obere Liste filtern um nur Konflikte anzuzeigen.</translation> + <translation>Obere Liste filtern damit nur Konflikte angezeigt werden.</translation> </message> <message> - <location filename="mainwindow.ui" line="901"/> + <location filename="mainwindow.ui" line="1063"/> <source>Show only conflicts</source> - <translation type="unfinished">Nur Konflikte anzeigen</translation> + <translation>Nur Konflikte anzeigen</translation> </message> <message> - <location filename="mainwindow.ui" line="909"/> + <location filename="mainwindow.ui" line="1071"/> <source>Saves</source> - <translation type="unfinished">Spielstände</translation> + <translation>Spielstände</translation> </message> <message> - <location filename="mainwindow.ui" line="933"/> + <location filename="mainwindow.ui" line="1095"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1704,7 +1612,7 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a list of all savegames for this game. Hover over a list entry to get detailed information about the save including a list of esps/esms that were used at the time this save was created but aren't active now.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you click &quot;Fix Mods...&quot; in the context menu, MO will try to activate all mods and esps to fix those missing esps. It will not disable anything!</span></p></body></html></source> - <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> @@ -1713,1140 +1621,1249 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Wenn Sie im Kontextmenü auf &quot;Mods reparieren...&quot; klicken, wird Mod Organiser versuchen die entsprechenden Mods und ESPs zu aktivieren. Es werden dabei kein Eintrag deaktiviert!</span></p></body></html></translation> </message> <message> - <location filename="mainwindow.ui" line="947"/> + <location filename="mainwindow.ui" line="1109"/> <source>Downloads</source> - <translation type="unfinished">Downloads</translation> + <translation>Downloads</translation> </message> <message> - <location filename="mainwindow.ui" line="979"/> + <location filename="mainwindow.ui" line="1141"/> <source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source> - <translation type="unfinished">Dies ist eine Liste der Mods die von Nexus heruntergeladen wurden. Doppelklicken Sie um zu installieren.</translation> + <translation>Dies ist eine Liste der Mods die von Nexus heruntergeladen wurden. Doppelklicken Sie um zu installieren.</translation> </message> <message> - <location filename="mainwindow.ui" line="1032"/> <source>Compact</source> - <translation type="unfinished">Kompakt</translation> + <translation type="obsolete">Kompakt</translation> </message> <message> - <location filename="mainwindow.ui" line="1039"/> + <location filename="mainwindow.ui" line="1194"/> <source>Show Hidden</source> - <translation type="unfinished"></translation> + <translation>Verborgene anzeigen</translation> </message> <message> - <location filename="mainwindow.ui" line="1070"/> + <location filename="mainwindow.ui" line="1256"/> <source>Tool Bar</source> - <translation type="unfinished">Werkzeugleiste</translation> + <translation>Werkzeugleiste</translation> </message> <message> - <location filename="mainwindow.ui" line="1112"/> + <location filename="mainwindow.ui" line="1298"/> <source>Install Mod</source> - <translation type="unfinished">Mod installieren</translation> + <translation>Mod installieren</translation> </message> <message> - <location filename="mainwindow.ui" line="1115"/> + <location filename="mainwindow.ui" line="1301"/> <source>Install &Mod</source> - <translation type="unfinished">&Mod installieren</translation> + <translation>&Mod installieren</translation> </message> <message> - <location filename="mainwindow.ui" line="1118"/> + <location filename="mainwindow.ui" line="1304"/> <source>Install a new mod from an archive</source> - <translation type="unfinished">Installiert eine Mod aus einem Archiv</translation> + <translation>Installiert eine Mod aus einem Archiv</translation> </message> <message> - <location filename="mainwindow.ui" line="1121"/> + <location filename="mainwindow.ui" line="1307"/> <source>Ctrl+M</source> - <translation type="unfinished">Ctrl+M</translation> + <translation>Ctrl+M</translation> </message> <message> - <location filename="mainwindow.ui" line="1130"/> + <location filename="mainwindow.ui" line="1316"/> <source>Profiles</source> - <translation type="unfinished">Profile</translation> + <translation>Profile</translation> </message> <message> - <location filename="mainwindow.ui" line="1133"/> + <location filename="mainwindow.ui" line="1319"/> <source>&Profiles</source> - <translation type="unfinished">&Profile</translation> + <translation>&Profile</translation> </message> <message> - <location filename="mainwindow.ui" line="1136"/> + <location filename="mainwindow.ui" line="1322"/> <source>Configure Profiles</source> - <translation type="unfinished">Profile konfigurieren</translation> + <translation>Profile konfigurieren</translation> </message> <message> - <location filename="mainwindow.ui" line="1139"/> + <location filename="mainwindow.ui" line="1325"/> <source>Ctrl+P</source> - <translation type="unfinished">Ctrl+P</translation> + <translation>Ctrl+P</translation> </message> <message> - <location filename="mainwindow.ui" line="1148"/> + <location filename="mainwindow.ui" line="1334"/> <source>Executables</source> - <translation type="unfinished">Programme</translation> + <translation>Programme</translation> </message> <message> - <location filename="mainwindow.ui" line="1151"/> + <location filename="mainwindow.ui" line="1337"/> <source>&Executables</source> - <translation type="unfinished">Programm&e</translation> + <translation>Programm&e</translation> </message> <message> - <location filename="mainwindow.ui" line="1154"/> + <location filename="mainwindow.ui" line="1340"/> <source>Configure the executables that can be started through Mod Organizer</source> - <translation type="unfinished">Konfigurieren der Programme die von Mod Organiser gestartet werden können</translation> + <translation>Konfigurieren der Programme die von Mod Organiser gestartet werden können</translation> </message> <message> - <location filename="mainwindow.ui" line="1157"/> + <location filename="mainwindow.ui" line="1343"/> <source>Ctrl+E</source> - <translation type="unfinished">Ctrl+E</translation> + <translation>Ctrl+E</translation> </message> <message> - <location filename="mainwindow.ui" line="1166"/> - <location filename="mainwindow.ui" line="1172"/> + <location filename="mainwindow.ui" line="1352"/> + <location filename="mainwindow.ui" line="1358"/> <source>Tools</source> - <translation type="unfinished"></translation> + <translation>Werkzeuge</translation> </message> <message> - <location filename="mainwindow.ui" line="1169"/> + <location filename="mainwindow.ui" line="1355"/> <source>&Tools</source> - <translation type="unfinished"></translation> + <translation>&Werkzeuge</translation> </message> <message> - <location filename="mainwindow.ui" line="1175"/> + <location filename="mainwindow.ui" line="1361"/> <source>Ctrl+I</source> - <translation type="unfinished">Ctrl+I</translation> + <translation>Ctrl+I</translation> </message> <message> - <location filename="mainwindow.ui" line="1184"/> + <location filename="mainwindow.ui" line="1370"/> <source>Settings</source> - <translation type="unfinished">Einstellungen</translation> + <translation>Einstellungen</translation> </message> <message> - <location filename="mainwindow.ui" line="1187"/> + <location filename="mainwindow.ui" line="1373"/> <source>&Settings</source> - <translation type="unfinished">Ein&stellungen</translation> + <translation>Ein&stellungen</translation> </message> <message> - <location filename="mainwindow.ui" line="1190"/> + <location filename="mainwindow.ui" line="1376"/> <source>Configure settings and workarounds</source> - <translation type="unfinished">Einstellungen und Workarounds verwalten</translation> + <translation>Einstellungen und Workarounds verwalten</translation> </message> <message> - <location filename="mainwindow.ui" line="1193"/> + <location filename="mainwindow.ui" line="1379"/> <source>Ctrl+S</source> - <translation type="unfinished">Ctrl+S</translation> + <translation>Ctrl+S</translation> </message> <message> - <location filename="mainwindow.ui" line="1202"/> + <location filename="mainwindow.ui" line="1388"/> <source>Nexus</source> - <translation type="unfinished">Nexus</translation> + <translation>Nexus</translation> </message> <message> - <location filename="mainwindow.ui" line="1205"/> + <location filename="mainwindow.ui" line="1391"/> <source>Search nexus network for more mods</source> - <translation type="unfinished">Durchsuche die passende Seite des Nexus-Netzwerks nach weiteren Mods</translation> + <translation>Durchsuche die passende Seite des Nexus-Netzwerks nach weiteren Mods</translation> </message> <message> - <location filename="mainwindow.ui" line="1208"/> + <location filename="mainwindow.ui" line="1394"/> <source>Ctrl+N</source> - <translation type="unfinished">Ctrl+N</translation> + <translation>Ctrl+N</translation> </message> <message> - <location filename="mainwindow.ui" line="1220"/> - <location filename="mainwindow.cpp" line="4545"/> + <location filename="mainwindow.ui" line="1406"/> + <location filename="mainwindow.cpp" line="4555"/> <source>Update</source> - <translation type="unfinished">Aktualisierung</translation> + <translation>Aktualisierung</translation> </message> <message> - <location filename="mainwindow.ui" line="1223"/> + <location filename="mainwindow.ui" line="1409"/> <source>Mod Organizer is up-to-date</source> - <translation type="unfinished">Mod Organizer ist auf dem neuesten Stand</translation> + <translation>Mod Organizer ist auf dem neuesten Stand</translation> </message> <message> - <location filename="mainwindow.ui" line="1235"/> - <location filename="mainwindow.cpp" line="509"/> + <location filename="mainwindow.ui" line="1421"/> + <location filename="mainwindow.cpp" line="561"/> <source>No Problems</source> - <translation type="unfinished">Keine Probleme</translation> + <translation>Keine Probleme</translation> </message> <message> - <location filename="mainwindow.ui" line="1238"/> + <location filename="mainwindow.ui" line="1424"/> <source>This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them. !Work in progress! Right now this has very limited functionality</source> - <translation type="unfinished">Dieser Button wird markiert wenn MO potenzielle Probleme in Ihrer Installation erkennt und bietet Hinweise wie diese zu beheben sind. -Diese Funktion ist noch in arbeit und ist sehr eingeschränkt.</translation> + <translation>Dieser Button wird markiert wenn MO potenzielle Probleme in Ihrer Installation erkennt und bietet Hinweise wie diese zu beheben sind. + +!In Arbeit! +Diese Funktion ist noch sehr eingeschränkt</translation> </message> <message> - <location filename="mainwindow.ui" line="1250"/> - <location filename="mainwindow.ui" line="1253"/> + <location filename="mainwindow.ui" line="1436"/> + <location filename="mainwindow.ui" line="1439"/> <source>Help</source> - <translation type="unfinished">Hilfe</translation> + <translation>Hilfe</translation> </message> <message> - <location filename="mainwindow.ui" line="1256"/> + <location filename="mainwindow.ui" line="1442"/> <source>Ctrl+H</source> - <translation type="unfinished">Ctrl+H</translation> + <translation>Ctrl+H</translation> </message> <message> - <location filename="mainwindow.ui" line="1265"/> + <location filename="mainwindow.ui" line="1451"/> <source>Endorse MO</source> - <translation type="unfinished"></translation> + <translation>Endorsement für MO abgeben</translation> </message> <message> - <location filename="mainwindow.ui" line="1268"/> - <location filename="mainwindow.cpp" line="4633"/> + <location filename="mainwindow.ui" line="1454"/> + <location filename="mainwindow.cpp" line="4637"/> <source>Endorse Mod Organizer</source> - <translation type="unfinished"></translation> + <translation>Endorsement für Mod Organizer abgeben</translation> + </message> + <message> + <location filename="mainwindow.ui" line="1459"/> + <source>Copy Log to Clipboard</source> + <translation>Log in die Zwischenablage kopieren</translation> + </message> + <message> + <location filename="mainwindow.ui" line="1462"/> + <source>Ctrl+C</source> + <translation>Ctrl+C</translation> </message> <message> - <location filename="mainwindow.cpp" line="223"/> + <location filename="mainwindow.cpp" line="244"/> <source>Toolbar</source> - <translation type="unfinished"></translation> + <translation>Werkzeugleiste</translation> </message> <message> - <location filename="mainwindow.cpp" line="224"/> + <location filename="mainwindow.cpp" line="245"/> <source>Desktop</source> - <translation type="unfinished"></translation> + <translation>Desktop</translation> </message> <message> - <location filename="mainwindow.cpp" line="225"/> + <location filename="mainwindow.cpp" line="246"/> <source>Start Menu</source> - <translation type="unfinished"></translation> + <translation>Startmenü</translation> </message> <message> - <location filename="mainwindow.cpp" line="505"/> + <location filename="mainwindow.cpp" line="549"/> <source>Problems</source> - <translation type="unfinished">Probleme</translation> + <translation>Probleme</translation> </message> <message> - <location filename="mainwindow.cpp" line="506"/> + <location filename="mainwindow.cpp" line="550"/> <source>There are potential problems with your setup</source> - <translation type="unfinished">Es bestehen möglicherweise Probleme mit Ihrer Konfiguration</translation> + <translation>Es bestehen möglicherweise Probleme mit Ihrer Konfiguration</translation> </message> <message> - <location filename="mainwindow.cpp" line="510"/> + <location filename="mainwindow.cpp" line="562"/> <source>Everything seems to be in order</source> - <translation type="unfinished">Alles in bester Ordnung</translation> - </message> - <message> - <source><li>NCC not installed. You won't be able to install some scripted mod-installers. Get NCC from <a href="http://skyrim.nexusmods.com/downloads/file.php?id=1334">the MO page on nexus</a></li></source> - <translation type="obsolete"><li>NCC ist nicht installiert. Sie werden einige geskriptete mod-Archive nicht installieren können. Sie können NCC von <a href="http://skyrim.nexusmods.com/downloads/file.php?id=1334">der MO seite des Nexus herunterladen</a></li></translation> - </message> - <message> - <source><li>NCC version may be incompatible.</li></source> - <translation type="obsolete"><li>Die NCC version ist möglicherweise nicht kompatibel.</li></translation> - </message> - <message> - <source><li>dotNet is not installed or outdated. This is required to use NCC. Get it from here: <a href="%1">%1</a></li></source> - <translation type="obsolete"><li>dotNet ist nicht installiert oder veraltet. Dies wird benötigt um NCC nutzen zu können. Laden Sie die korrekte Version von <a href="%1">%1</a> herunter</li></translation> + <translation>Alles in bester Ordnung</translation> </message> <message> - <location filename="mainwindow.cpp" line="568"/> + <location filename="mainwindow.cpp" line="619"/> <source>Help on UI</source> - <translation type="unfinished">Hilfe zur Oberfläche</translation> + <translation>Hilfe zur Oberfläche</translation> </message> <message> - <location filename="mainwindow.cpp" line="572"/> + <location filename="mainwindow.cpp" line="623"/> <source>Documentation Wiki</source> - <translation type="unfinished">Wiki Dokumentation</translation> + <translation>Wiki Dokumentation</translation> </message> <message> - <location filename="mainwindow.cpp" line="576"/> + <location filename="mainwindow.cpp" line="627"/> <source>Report Issue</source> - <translation type="unfinished">Fehler melden</translation> + <translation>Fehler melden</translation> </message> <message> - <location filename="mainwindow.cpp" line="580"/> + <location filename="mainwindow.cpp" line="631"/> <source>Tutorials</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>load order could not be saved</source> - <translation type="obsolete">Ladereihenfolge konnte nicht gespeichert werden</translation> + <translation>Tutorials</translation> </message> <message> - <location filename="mainwindow.cpp" line="705"/> - <source>failed to save load order: %1</source> - <translation type="unfinished">Reihenfolge konnt nicht gespeichert werden: %1</translation> - </message> - <message> - <location filename="mainwindow.cpp" line="619"/> + <location filename="mainwindow.cpp" line="670"/> <source>About</source> - <translation type="unfinished"></translation> + <translation>Über</translation> </message> <message> - <location filename="mainwindow.cpp" line="620"/> + <location filename="mainwindow.cpp" line="671"/> <source>About Qt</source> - <translation type="unfinished"></translation> + <translation>Über Qt</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="765"/> + <source>failed to save load order: %1</source> + <translation>Reihenfolge konnt nicht gespeichert werden: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="717"/> + <location filename="mainwindow.cpp" line="777"/> <source>Name</source> - <translation type="unfinished">Name</translation> + <translation>Name</translation> </message> <message> - <location filename="mainwindow.cpp" line="718"/> + <location filename="mainwindow.cpp" line="778"/> <source>Please enter a name for the new profile</source> - <translation type="unfinished">Bitte geben Sie einen Namen für das neue Profil an</translation> + <translation>Bitte geben Sie einen Namen für das neue Profil an</translation> </message> <message> - <location filename="mainwindow.cpp" line="726"/> + <location filename="mainwindow.cpp" line="786"/> <source>failed to create profile: %1</source> - <translation type="unfinished">Erstellen des Profils fehlgeschlagen: %1</translation> + <translation>Erstellen des Profils fehlgeschlagen: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="769"/> + <location filename="mainwindow.cpp" line="829"/> <source>Show tutorial?</source> - <translation type="unfinished"></translation> + <translation>Tutorial anzeigen?</translation> </message> <message> - <location filename="mainwindow.cpp" line="770"/> + <location filename="mainwindow.cpp" line="830"/> <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> + <translation>Sie starten Mod Organizer zum ersten mal. Wollen Sie ein Tutorial über die grundlegenden Funktionen sehen? Wenn Sie "nein" wählen können Sie das Tutorial aus dem "Hilfe"-Menü starten.</translation> </message> <message> - <location filename="mainwindow.cpp" line="801"/> + <location filename="mainwindow.cpp" line="861"/> <source>Downloads in progress</source> - <translation type="unfinished">Download in Bearbeitung</translation> + <translation>Download in Bearbeitung</translation> </message> <message> - <location filename="mainwindow.cpp" line="802"/> + <location filename="mainwindow.cpp" line="862"/> <source>There are still downloads in progress, do you really want to quit?</source> - <translation type="unfinished">Es gibt noch unfertige Downloads, wollen Sie wirklich das Programm beenden?</translation> + <translation>Es gibt noch unfertige Downloads, wollen Sie wirklich das Programm beenden?</translation> </message> <message> - <location filename="mainwindow.cpp" line="848"/> + <location filename="mainwindow.cpp" line="916"/> <source>failed to read savegame: %1</source> - <translation type="unfinished">Spielstand konnte nicht gelesen werden: %1</translation> + <translation>Spielstand konnte nicht gelesen werden: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="972"/> + <location filename="mainwindow.cpp" line="1040"/> <source>Plugin "%1" failed: %2</source> - <translation type="unfinished"></translation> + <translation>Plugin "%1" fehlgeschlagen: %2</translation> </message> <message> - <location filename="mainwindow.cpp" line="1085"/> + <location filename="mainwindow.cpp" line="1042"/> + <source>Plugin "%1" failed</source> + <translation>Plugin "%1" fehlgeschlagen</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1211"/> + <source>failed to init plugin %1: %2</source> + <translation>Konnte das Plugin %1 nicht initialisieren: %2</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1249"/> <source>Plugin error</source> - <translation type="unfinished"></translation> + <translation>Plugin fehler</translation> </message> <message> - <location filename="mainwindow.cpp" line="1086"/> + <location filename="mainwindow.cpp" line="1250"/> <source>It appears the plugin "%1" failed to load last startup and caused MO to crash. Do you want to disable it? (Please note: If this is the first time you see this message for this plugin you may want to give it another try. The plugin may be able to recover from the problem)</source> - <translation type="unfinished"></translation> + <translation>Es scheint als ob das Plugin "%1" beim letzten Programmstart nicht geladen werden konnte und einen Absturz von MO verursacht hat. Wollen sie das Plugin deaktivieren? +(Bitte beachten: Wenn dies das erste mal ist dass sie diese Meldung für dieses Plugin sehen macht es vielleicht Sinn ihm eine zweite Chance zu geben. Das Plugin selber hat vielleicht eine Möglichkeit solche Fehler zu korrigieren)</translation> </message> <message> - <location filename="mainwindow.cpp" line="1270"/> + <location filename="mainwindow.cpp" line="1309"/> <source>Failed to start "%1"</source> - <translation type="unfinished"></translation> + <translation>Konnte "%1" nicht starten</translation> </message> <message> - <location filename="mainwindow.cpp" line="1272"/> + <location filename="mainwindow.cpp" line="1311"/> <source>Waiting</source> - <translation type="unfinished">Warte</translation> + <translation>Warte</translation> </message> <message> - <location filename="mainwindow.cpp" line="1272"/> + <location filename="mainwindow.cpp" line="1311"/> <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> + <translation>Bitte drücken sie OK sobald sie bei Steam angemeldet sind.</translation> </message> <message> - <source>"%1" not found</source> - <translation type="obsolete">"%1" nicht gefunden</translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1298"/> + <location filename="mainwindow.cpp" line="1337"/> <source>Start Steam?</source> - <translation type="unfinished"></translation> + <translation>Steam starten?</translation> </message> <message> - <location filename="mainwindow.cpp" line="1299"/> + <location filename="mainwindow.cpp" line="1338"/> <source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source> - <translation type="unfinished">Steam muss laufen um das Spiel korrekt zu starten. Soll MO versuchen Steam zu starten?</translation> + <translation>Steam muss laufen um das Spiel korrekt zu starten. Soll MO versuchen Steam zu starten?</translation> </message> <message> <location filename="mainwindow.cpp" line="1526"/> <source>Also in: <br></source> - <translation type="unfinished">Auch in: <br></translation> + <translation>Auch in: <br></translation> </message> <message> <location filename="mainwindow.cpp" line="1537"/> <source>No conflict</source> - <translation type="unfinished">Keine Konflikte</translation> + <translation>Keine Konflikte</translation> </message> <message> - <location filename="mainwindow.cpp" line="1692"/> + <location filename="mainwindow.cpp" line="1706"/> <source><Edit...></source> - <translation type="unfinished"><Bearbeiten...></translation> + <translation><Bearbeiten...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1929"/> + <location filename="mainwindow.cpp" line="1976"/> <source>This bsa is enabled in the ini file so it may be required!</source> - <translation type="unfinished">Dieses Archiv ist in der ini Konfiguration gelistet, daher ist es möglicherweise erforderlich!</translation> + <translation>Dieses Archiv ist in der ini Konfiguration gelistet, daher ist es möglicherweise erforderlich!</translation> </message> <message> - <location filename="mainwindow.cpp" line="1936"/> <source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source> - <translation type="unfinished">Dieses Archiv wird vom Spiel geladen werden da ein Plugin mit dem selben Namen aktiv ist aber die enthaltenen Dateien werden sich nicht an Ihre Installations-Reihenfolge halten!</translation> + <translation type="obsolete">Dieses Archiv wird vom Spiel geladen werden da ein Plugin mit dem selben Namen aktiv ist aber die enthaltenen Dateien werden sich nicht an Ihre Installations-Reihenfolge halten!</translation> </message> <message> - <location filename="mainwindow.cpp" line="1991"/> + <location filename="mainwindow.cpp" line="2038"/> <source>Activating Network Proxy</source> - <translation type="unfinished"></translation> + <translation>Netzwerk Proxy aktivieren</translation> </message> <message> - <location filename="mainwindow.cpp" line="2122"/> - <location filename="mainwindow.cpp" line="4248"/> + <location filename="mainwindow.cpp" line="2269"/> + <location filename="mainwindow.cpp" line="4258"/> <source>Installation successful</source> - <translation type="unfinished">Installation erfolgreich</translation> + <translation>Installation erfolgreich</translation> </message> <message> - <location filename="mainwindow.cpp" line="2133"/> - <location filename="mainwindow.cpp" line="4261"/> + <location filename="mainwindow.cpp" line="2280"/> + <location filename="mainwindow.cpp" line="4270"/> <source>Configure Mod</source> - <translation type="unfinished">Mod konfigurieren</translation> + <translation>Mod konfigurieren</translation> </message> <message> - <location filename="mainwindow.cpp" line="2134"/> - <location filename="mainwindow.cpp" line="4262"/> + <location filename="mainwindow.cpp" line="2281"/> + <location filename="mainwindow.cpp" line="4271"/> <source>This mod contains ini tweaks. Do you want to configure them now?</source> - <translation type="unfinished">Diese Mod enthält Anpassungen für die Ini datei. Wollen Sie diese nun konfigurieren?</translation> + <translation>Diese Mod enthält Anpassungen für die Ini datei. Wollen Sie diese nun konfigurieren?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2140"/> - <location filename="mainwindow.cpp" line="4268"/> + <location filename="mainwindow.cpp" line="2288"/> + <location filename="mainwindow.cpp" line="4278"/> <source>mod "%1" not found</source> - <translation type="unfinished">mod "%1" nicht gefunden</translation> + <translation>mod "%1" nicht gefunden</translation> </message> <message> - <location filename="mainwindow.cpp" line="2143"/> - <location filename="mainwindow.cpp" line="4274"/> + <location filename="mainwindow.cpp" line="2291"/> + <location filename="mainwindow.cpp" line="4284"/> <source>Installation cancelled</source> - <translation type="unfinished">Installation abgebrochen</translation> + <translation>Installation abgebrochen</translation> </message> <message> - <location filename="mainwindow.cpp" line="2143"/> - <location filename="mainwindow.cpp" line="4274"/> + <location filename="mainwindow.cpp" line="2291"/> + <location filename="mainwindow.cpp" line="4284"/> <source>The mod was not installed completely.</source> - <translation type="unfinished">Die mod wurde nicht erfolgreich installiert.</translation> + <translation>Die mod wurde nicht erfolgreich installiert.</translation> </message> <message> - <location filename="mainwindow.cpp" line="2292"/> + <location filename="mainwindow.cpp" line="2196"/> <source>Some plugins could not be loaded</source> - <translation type="unfinished"></translation> + <translation>Einige Plugins konnten nicht geladen werden</translation> </message> <message> - <location filename="mainwindow.cpp" line="2295"/> + <location filename="mainwindow.cpp" line="2199"/> <source>Too many esps and esms enabled</source> - <translation type="unfinished"></translation> + <translation>Zu viele esps und esms aktiv</translation> </message> <message> - <location filename="mainwindow.cpp" line="2298"/> - <location filename="mainwindow.cpp" line="2319"/> + <location filename="mainwindow.cpp" line="2202"/> + <location filename="mainwindow.cpp" line="2223"/> <source>Description missing</source> - <translation type="unfinished"></translation> + <translation>Beschreibung fehlt</translation> </message> <message> - <location filename="mainwindow.cpp" line="2315"/> + <location filename="mainwindow.cpp" line="2211"/> + <source>The following plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:</source> + <translation>Die folgenden Plugins konnten nicht geladen werden. Der Grund könnte eine fehlende Abhängigkeit sein (z.B. python) oder eine veraltete Version der Abhängigkeiten:</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2219"/> <source>The game doesn't allow more than 255 active plugins (including the official ones) to be loaded. You have to disable some unused plugins or merge some plugins into one. You can find a guide here: <a href="http://wiki.step-project.com/Guide:Merging_Plugins">http://wiki.step-project.com/Guide:Merging_Plugins</a></source> - <translation type="unfinished"></translation> + <translation>Das Spiel unterstützt nicht mehr als 255 aktive Plugins (inklusive der offiziellen). Sie müssen einige unbenutzte Plugins deaktivieren oder mehrere Plugins kombinieren. Hier finden sie eine Anleitung: <a href="http://wiki.step-project.com/Guide:Merging_Plugins">http://wiki.step-project.com/Guide:Merging_Plugins</a></translation> </message> <message> - <location filename="mainwindow.cpp" line="2341"/> + <location filename="mainwindow.cpp" line="2245"/> <source>Choose Mod</source> - <translation type="unfinished">Mod wählen</translation> + <translation>Mod wählen</translation> </message> <message> - <location filename="mainwindow.cpp" line="2342"/> + <location filename="mainwindow.cpp" line="2246"/> <source>Mod Archive</source> - <translation type="unfinished">Mod Archiv</translation> + <translation>Mod Archiv</translation> </message> <message> - <location filename="mainwindow.cpp" line="2495"/> + <location filename="mainwindow.cpp" line="2502"/> <source>Start Tutorial?</source> - <translation type="unfinished"></translation> + <translation>Tutorial starten?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2496"/> + <location filename="mainwindow.cpp" line="2503"/> <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> + <translation>Du bist dabei ein Tutorial zu starten. Aus technischen Gründen ist es nicht möglich das Tutorial abzubrechen. Fortsetzen?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2651"/> - <location filename="mainwindow.cpp" line="4171"/> + <location filename="mainwindow.cpp" line="2647"/> + <location filename="mainwindow.cpp" line="4179"/> <source>Download started</source> - <translation type="unfinished">Download gestartet</translation> + <translation>Download gestartet</translation> </message> <message> - <location filename="mainwindow.cpp" line="2682"/> + <location filename="mainwindow.cpp" line="2708"/> <source>failed to update mod list: %1</source> - <translation type="unfinished">Aktualisieren der Modliste fehlgeschlagen: %1</translation> + <translation>Aktualisieren der Modliste fehlgeschlagen: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2711"/> + <location filename="mainwindow.cpp" line="2738"/> <source>failed to spawn notepad.exe: %1</source> - <translation type="unfinished">notepad.exe konnte nicht aufgerufen werden: %1</translation> + <translation>notepad.exe konnte nicht aufgerufen werden: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2752"/> + <location filename="mainwindow.cpp" line="2775"/> <source>failed to open %1</source> - <translation type="unfinished">%1 konnte nicht geöffnet werden</translation> + <translation>%1 konnte nicht geöffnet werden</translation> </message> <message> - <location filename="mainwindow.cpp" line="2830"/> + <location filename="mainwindow.cpp" line="2850"/> <source>failed to change origin name: %1</source> - <translation type="unfinished">konnte den Namen der Dateiquelle nicht ändern: %1</translation> + <translation>konnte den Namen der Dateiquelle nicht ändern: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2860"/> - <source>failed to move "%1" from mod "%2" to "%3": %4</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2997"/> - <source>Multiple esps activated, please check that they don't conflict.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3345"/> - <location filename="mainwindow.cpp" line="3792"/> - <source>Create Mod...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3355"/> - <source>A mod with this name already exists</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3613"/> - <source>Continue?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3614"/> - <source>The versioning scheme decides which version is considered newer than another. -This function will guess the versioning scheme under the assumption that the installed version is outdated.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3634"/> - <location filename="mainwindow.cpp" line="4516"/> - <source>Sorry</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="1323"/> + <source>Executable "%1" not found</source> + <translation>Executable "%1" nicht gefunden</translation> </message> <message> - <location filename="mainwindow.cpp" line="3635"/> - <source>I don't know a versioning scheme where %1 is newer than %2.</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="1803"/> + <source>Failed to refresh list of esps: %1</source> + <translation>Konnte die Plugin Liste nicht aktualisieren: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3883"/> - <source><All></source> - <translation type="unfinished"><Alle></translation> + <location filename="mainwindow.cpp" line="2880"/> + <source>failed to move "%1" from mod "%2" to "%3": %4</source> + <translation>konnte "%1" nicht von Mod "%2" nac h "%3" verschieben: %4</translation> </message> <message> - <location filename="mainwindow.cpp" line="2909"/> + <location filename="mainwindow.cpp" line="2929"/> <source><Checked></source> - <translation type="unfinished"><Markierte></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="974"/> - <source>Plugin "%1" failed</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1047"/> - <source>failed to init plugin %1: %2</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2307"/> - <source>The following plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:</source> - <translation type="unfinished"></translation> + <translation><Markierte></translation> </message> <message> - <location filename="mainwindow.cpp" line="2910"/> + <location filename="mainwindow.cpp" line="2930"/> <source><Unchecked></source> - <translation type="unfinished"><Nicht markierte></translation> + <translation><Nicht markierte></translation> </message> <message> - <location filename="mainwindow.cpp" line="2911"/> + <location filename="mainwindow.cpp" line="2931"/> <source><Update></source> - <translation type="unfinished"><Update></translation> + <translation><Update></translation> </message> <message> - <location filename="mainwindow.cpp" line="2912"/> + <location filename="mainwindow.cpp" line="2934"/> <source><No category></source> - <translation type="unfinished"><Ohne Kategorie></translation> + <translation><Ohne Kategorie></translation> </message> <message> - <location filename="mainwindow.cpp" line="2913"/> + <location filename="mainwindow.cpp" line="2935"/> <source><Conflicted></source> - <translation type="unfinished"></translation> + <translation><Überschneidungen></translation> </message> <message> - <location filename="mainwindow.cpp" line="2914"/> + <location filename="mainwindow.cpp" line="2936"/> <source><Not Endorsed></source> - <translation type="unfinished"></translation> + <translation><Nicht Endorsed></translation> </message> <message> - <location filename="mainwindow.cpp" line="2947"/> + <location filename="mainwindow.cpp" line="2969"/> <source>failed to rename mod: %1</source> - <translation type="unfinished">konnte die Mod nicht umbenennen: %1</translation> + <translation>konnte die Mod nicht umbenennen: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2960"/> + <location filename="mainwindow.cpp" line="2982"/> <source>Overwrite?</source> - <translation type="unfinished"></translation> + <translation>Überschreiben?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2961"/> + <location filename="mainwindow.cpp" line="2983"/> <source>This will replace the existing mod "%1". Continue?</source> - <translation type="unfinished"></translation> + <translation>Dies wird die existierende Mod "%1" ersetzen. Fortsetzen?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2964"/> + <location filename="mainwindow.cpp" line="2986"/> <source>failed to remove mod "%1"</source> - <translation type="unfinished"></translation> + <translation>konnte die mod "%1" nicht löschen</translation> </message> <message> - <location filename="mainwindow.cpp" line="2968"/> - <location filename="mainwindow.cpp" line="4446"/> - <location filename="mainwindow.cpp" line="4470"/> + <location filename="mainwindow.cpp" line="2990"/> + <location filename="mainwindow.cpp" line="4456"/> + <location filename="mainwindow.cpp" line="4480"/> <source>failed to rename "%1" to "%2"</source> - <translation type="unfinished"></translation> + <translation>konnte "%1" nicht in "%2" umbenennen</translation> </message> <message> - <location filename="mainwindow.cpp" line="3024"/> - <location filename="mainwindow.cpp" line="3687"/> - <location filename="mainwindow.cpp" line="3695"/> - <location filename="mainwindow.cpp" line="3902"/> + <location filename="mainwindow.cpp" line="3015"/> + <source>Multiple esps activated, please check that they don't conflict.</source> + <translation>Mehrere esps aktiv, bitte überprüfen sie, dass diese nicht miteinander kollidieren.</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3043"/> + <location filename="mainwindow.cpp" line="3662"/> + <location filename="mainwindow.cpp" line="3670"/> + <location filename="mainwindow.cpp" line="3890"/> <source>Confirm</source> - <translation type="unfinished">Bestätigen</translation> + <translation>Bestätigen</translation> </message> <message> - <location filename="mainwindow.cpp" line="3025"/> + <location filename="mainwindow.cpp" line="3044"/> <source>Remove the following mods?<br><ul>%1</ul></source> - <translation type="unfinished"></translation> + <translation>Die folgenden Mods entfernen?<br><ul>%1</ul></translation> </message> <message> - <location filename="mainwindow.cpp" line="3036"/> + <location filename="mainwindow.cpp" line="3055"/> <source>failed to remove mod: %1</source> - <translation type="unfinished">konnte die mod nicht entfernen: %1</translation> + <translation>konnte die mod nicht entfernen: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3071"/> - <location filename="mainwindow.cpp" line="3074"/> + <location filename="mainwindow.cpp" line="3090"/> + <location filename="mainwindow.cpp" line="3093"/> <source>Failed</source> - <translation type="unfinished">Fehlgeschlagen</translation> + <translation>Fehlgeschlagen</translation> </message> <message> - <location filename="mainwindow.cpp" line="3071"/> + <location filename="mainwindow.cpp" line="3090"/> <source>Installation file no longer exists</source> - <translation type="unfinished">Installationsdatei existiert nicht mehr</translation> + <translation>Installationsdatei existiert nicht mehr</translation> </message> <message> - <location filename="mainwindow.cpp" line="3075"/> + <location filename="mainwindow.cpp" line="3094"/> <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> + <translation>Mods die mit alten Versionen von MO installiert wurden können nicht auf diese Weise neu-installiert werden.</translation> </message> <message> - <location filename="mainwindow.cpp" line="3090"/> - <location filename="mainwindow.cpp" line="3117"/> + <location filename="mainwindow.cpp" line="3125"/> + <location filename="mainwindow.cpp" line="3152"/> <source>You need to be logged in with Nexus to endorse</source> - <translation type="unfinished"></translation> + <translation>Sie müssen bei Nexus eingeloggt sein um Endorsements zu vergeben</translation> </message> <message> - <location filename="mainwindow.cpp" line="3249"/> - <location filename="mainwindow.cpp" line="4882"/> + <location filename="mainwindow.cpp" line="4871"/> <source>Extract BSA</source> - <translation type="unfinished">BSA extrahieren</translation> + <translation>BSA extrahieren</translation> </message> <message> - <location filename="mainwindow.cpp" line="3250"/> <source>This mod contains at least one BSA. Do you want to unpack it? (This removes the BSA after completion. If you don't know about BSAs, just select no)</source> - <translation type="unfinished">Diese mod enthält mindestens eine BSA datei. Soll sie entpackt werden? -(Das BSA wird danach gelöscht. Wenn Sie nicht wissen was BSAs sind wählen Sie am besten \"nein\")</translation> + <translation type="obsolete">Diese mod enthält mindestens eine BSA datei. Soll sie entpackt werden? +(Das BSA wird danach gelöscht. Wenn Sie nicht wissen was BSAs sind wählen Sie am besten "nein")</translation> </message> <message> - <location filename="mainwindow.cpp" line="3259"/> - <location filename="mainwindow.cpp" line="4839"/> - <location filename="mainwindow.cpp" line="4890"/> + <location filename="mainwindow.cpp" line="4828"/> + <location filename="mainwindow.cpp" line="4879"/> <source>failed to read %1: %2</source> - <translation type="unfinished"></translation> + <translation>konnte %1 nicht lesen: %2</translation> </message> <message> - <location filename="mainwindow.cpp" line="3272"/> - <location filename="mainwindow.cpp" line="4901"/> + <location filename="mainwindow.cpp" line="4890"/> <source>This archive contains invalid hashes. Some files may be broken.</source> - <translation type="unfinished">Dieses Archiv enthält ungültige Prüfsummen. Einige Dateien sind evtl. defekt.</translation> + <translation>Dieses Archiv enthält ungültige Prüfsummen. Einige Dateien sind evtl. defekt.</translation> </message> <message> - <location filename="mainwindow.cpp" line="3306"/> + <location filename="mainwindow.cpp" line="3298"/> <source>Nexus ID for this Mod is unknown</source> - <translation type="unfinished">Nexus ID für diese Mod unbekannt</translation> + <translation>Nexus ID für diese Mod unbekannt</translation> </message> <message> - <source>Priority</source> - <translation type="obsolete">Priorität</translation> + <location filename="mainwindow.cpp" line="1085"/> + <source>Download?</source> + <translation>Herunterladen?</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1086"/> + <source>A download has been started but no installed page plugin recognizes it. +If you download anyway no information (i.e. version) will be associated with the download. +Continue?</source> + <translation>Ein Download wurde gestartet aber keines der installierten Plugins erkennt die Quelle. +Wenn Sie den Download dennoch fortfahren sind keine erweiterten Informationen (z.B. Version) über die Datei verfügbar. +Fortfahren? </translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1127"/> + <source>Browse Mod Page</source> + <translation>Mod Seite öffnen</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2143"/> + <location filename="mainwindow.cpp" line="2150"/> + <source>Failed to write settings</source> + <translation>Konnte Einstellungen nicht speichern</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2144"/> + <location filename="mainwindow.cpp" line="2151"/> + <source>An error occured trying to write back MO settings: %1</source> + <translation>Ein Fehler ist aufgetreten bei dem Versuch die MO Einstellungen zu speichern: %1</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2147"/> + <source>File is write protected</source> + <translation>Die Datei ist schreibgeschützt</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2148"/> + <source>Invalid file format (probably a bug)</source> + <translation>Falsches Dateiformat (vermutlich ein Bug)</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2149"/> + <source>Unknown error %1</source> + <translation>Unbekannter Fehler %1</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2932"/> + <source><Managed by MO></source> + <translation><Von MO verwaltet></translation> </message> <message> - <source>Choose Priority</source> - <translation type="obsolete">Priorität wählen</translation> + <location filename="mainwindow.cpp" line="2933"/> + <source><Managed outside MO></source> + <translation><Nicht von MO verwaltet></translation> </message> <message> - <location filename="mainwindow.cpp" line="3687"/> + <location filename="mainwindow.cpp" line="3109"/> + <source>You need to be logged in with Nexus to resume a download</source> + <translation>Sie müssen bei Nexus eingeloggt sein um Downloads fortzusetzen </translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3337"/> + <location filename="mainwindow.cpp" line="3777"/> + <source>Create Mod...</source> + <translation>Mod erstellen...</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3338"/> + <source>This will move all files from overwrite into a new, regular mod. +Please enter a name:</source> + <translation>Es werden alle Dateien von "Overwrite" in eine neue, reguläre Mod verschoben. +Bitte wählen sie dafür einen Namen:</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3347"/> + <source>A mod with this name already exists</source> + <translation>Eine Mod mit diesem Name existiert bereits</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3588"/> + <source>Continue?</source> + <translation>Fortfahren?</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3589"/> + <source>The versioning scheme decides which version is considered newer than another. +This function will guess the versioning scheme under the assumption that the installed version is outdated.</source> + <translation>Das Versionsschema bestimmt, welche version neuer als eine andere identifiziert wird. +Diese Funktion wird das Versionsschema erraten, unter der Annahme dass die installierte Version veraltet ist.</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3609"/> + <location filename="mainwindow.cpp" line="4526"/> + <source>Sorry</source> + <translation>Entschuldigung</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3610"/> + <source>I don't know a versioning scheme where %1 is newer than %2.</source> + <translation>Es ist kein Versionsschema bekannt bei welchem %1 neuer ist als %2.</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3662"/> <source>Really enable all visible mods?</source> - <translation type="unfinished">Alle angezeigten Mods aktivieren?</translation> + <translation>Alle angezeigten Mods aktivieren?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3695"/> + <location filename="mainwindow.cpp" line="3670"/> <source>Really disable all visible mods?</source> - <translation type="unfinished">Alle angezeigten Mods deaktivieren?</translation> + <translation>Alle angezeigten Mods deaktivieren?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3703"/> + <location filename="mainwindow.cpp" line="3678"/> <source>Choose what to export</source> - <translation type="unfinished"></translation> + <translation>Bitte wählen Sie was sie exportieren wollen</translation> </message> <message> - <location filename="mainwindow.cpp" line="3705"/> + <location filename="mainwindow.cpp" line="3680"/> <source>Everything</source> - <translation type="unfinished"></translation> + <translation>Alles</translation> </message> <message> - <location filename="mainwindow.cpp" line="3705"/> + <location filename="mainwindow.cpp" line="3680"/> <source>All installed mods are included in the list</source> - <translation type="unfinished"></translation> + <translation>Alle installierten Modifikationen sind in dieser Liste enthalten</translation> </message> <message> - <location filename="mainwindow.cpp" line="3706"/> + <location filename="mainwindow.cpp" line="3681"/> <source>Active Mods</source> - <translation type="unfinished"></translation> + <translation>Aktive Mods</translation> </message> <message> - <location filename="mainwindow.cpp" line="3706"/> + <location filename="mainwindow.cpp" line="3681"/> <source>Only active (checked) mods from your current profile are included</source> - <translation type="unfinished"></translation> + <translation>Ausschließlich aktive Mods aus ihrem aktuellen Profil sind enthalten</translation> </message> <message> - <location filename="mainwindow.cpp" line="3707"/> + <location filename="mainwindow.cpp" line="3682"/> <source>Visible</source> - <translation type="unfinished"></translation> + <translation>Sichtbar</translation> </message> <message> - <location filename="mainwindow.cpp" line="3707"/> + <location filename="mainwindow.cpp" line="3682"/> <source>All mods visible in the mod list are included</source> - <translation type="unfinished"></translation> + <translation>Alle sichtbaren Mods in der Mod Liste sind enthalten</translation> </message> <message> - <location filename="mainwindow.cpp" line="3750"/> + <location filename="mainwindow.cpp" line="3725"/> <source>export failed: %1</source> - <translation type="unfinished"></translation> + <translation>Exportieren fehlgeschlagen: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3774"/> + <location filename="mainwindow.cpp" line="3742"/> <source>Install Mod...</source> - <translation type="unfinished">Mod installieren...</translation> + <translation>Mod installieren...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3776"/> + <location filename="mainwindow.cpp" line="3744"/> <source>Enable all visible</source> - <translation type="unfinished">Alle sichtbaren aktvieren</translation> + <translation>Alle sichtbaren aktvieren</translation> </message> <message> - <location filename="mainwindow.cpp" line="3777"/> + <location filename="mainwindow.cpp" line="3745"/> <source>Disable all visible</source> - <translation type="unfinished">Alle sichtbaren deaktvieren</translation> + <translation>Alle sichtbaren deaktvieren</translation> </message> <message> - <location filename="mainwindow.cpp" line="3779"/> + <location filename="mainwindow.cpp" line="3747"/> <source>Check all for update</source> - <translation type="unfinished">Alle auf Aktualisierungen überprüfen</translation> + <translation>Alle auf Aktualisierungen überprüfen</translation> </message> <message> - <location filename="mainwindow.cpp" line="3783"/> + <location filename="mainwindow.cpp" line="3751"/> <source>Export to csv...</source> - <translation type="unfinished"></translation> + <translation>Als CSV exportieren...</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3770"/> + <source>All Mods</source> + <translation>Alle Mods</translation> </message> <message> - <location filename="mainwindow.cpp" line="3791"/> + <location filename="mainwindow.cpp" line="3776"/> <source>Sync to Mods...</source> - <translation type="unfinished">Mods synchronisieren...</translation> + <translation>Mods synchronisieren...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3795"/> + <location filename="mainwindow.cpp" line="3780"/> <source>Restore Backup</source> - <translation type="unfinished"></translation> + <translation>Backup wiederherstellen</translation> </message> <message> - <location filename="mainwindow.cpp" line="3796"/> + <location filename="mainwindow.cpp" line="3781"/> <source>Remove Backup...</source> - <translation type="unfinished"></translation> + <translation>Backup entfernen...</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3785"/> + <source>Add/Remove Categories</source> + <translation>Kategorien hinzufügen/entfernen</translation> </message> <message> - <source>Set Category</source> - <translation type="obsolete">Kategorie festlegen</translation> + <location filename="mainwindow.cpp" line="3790"/> + <source>Replace Categories</source> + <translation>Kategorien ersetzen</translation> </message> <message> - <location filename="mainwindow.cpp" line="3808"/> + <location filename="mainwindow.cpp" line="3795"/> <source>Primary Category</source> - <translation type="unfinished"></translation> + <translation>Primäre Kategorie</translation> </message> <message> - <location filename="mainwindow.cpp" line="3815"/> + <location filename="mainwindow.cpp" line="3802"/> <source>Change versioning scheme</source> - <translation type="unfinished"></translation> + <translation>Versionsschema ändern</translation> </message> <message> - <location filename="mainwindow.cpp" line="3819"/> + <location filename="mainwindow.cpp" line="3806"/> <source>Un-ignore update</source> - <translation type="unfinished"></translation> + <translation>Update nicht mehr ignorieren</translation> </message> <message> - <location filename="mainwindow.cpp" line="3821"/> + <location filename="mainwindow.cpp" line="3808"/> <source>Ignore update</source> - <translation type="unfinished"></translation> + <translation>Dieses Update ignorieren</translation> </message> <message> - <location filename="mainwindow.cpp" line="3826"/> + <location filename="mainwindow.cpp" line="3813"/> <source>Rename Mod...</source> - <translation type="unfinished">Mod umbenennen...</translation> + <translation>Mod umbenennen...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3827"/> + <location filename="mainwindow.cpp" line="3814"/> <source>Remove Mod...</source> - <translation type="unfinished">Mod entfernen...</translation> + <translation>Mod entfernen...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3828"/> + <location filename="mainwindow.cpp" line="3815"/> <source>Reinstall Mod</source> - <translation type="unfinished">Mod neu installieren</translation> + <translation>Mod neu installieren</translation> </message> <message> - <location filename="mainwindow.cpp" line="3831"/> + <location filename="mainwindow.cpp" line="3818"/> <source>Un-Endorse</source> - <translation type="unfinished"></translation> + <translation>Endorsement zurückziehen</translation> </message> <message> - <location filename="mainwindow.cpp" line="3834"/> - <location filename="mainwindow.cpp" line="3838"/> + <location filename="mainwindow.cpp" line="3821"/> + <location filename="mainwindow.cpp" line="3825"/> <source>Endorse</source> - <translation type="unfinished"></translation> + <translation>Endorsement vergeben</translation> </message> <message> - <location filename="mainwindow.cpp" line="3835"/> + <location filename="mainwindow.cpp" line="3822"/> <source>Won't endorse</source> - <translation type="unfinished"></translation> + <translation>Niemals "Endorsement" vergeben</translation> </message> <message> - <location filename="mainwindow.cpp" line="3841"/> + <location filename="mainwindow.cpp" line="3828"/> <source>Endorsement state unknown</source> - <translation type="unfinished"></translation> + <translation>"Endorsement"-stand unbekannt</translation> </message> <message> - <location filename="mainwindow.cpp" line="3848"/> + <location filename="mainwindow.cpp" line="3835"/> <source>Ignore missing data</source> - <translation type="unfinished"></translation> + <translation>Fehlende Daten ignorieren</translation> </message> <message> - <location filename="mainwindow.cpp" line="3851"/> + <location filename="mainwindow.cpp" line="3838"/> <source>Visit on Nexus</source> - <translation type="unfinished">Auf Nexus besuchen</translation> + <translation>Auf Nexus besuchen</translation> </message> <message> - <location filename="mainwindow.cpp" line="3852"/> + <location filename="mainwindow.cpp" line="3839"/> <source>Open in explorer</source> - <translation type="unfinished">In Explorer öffnen</translation> + <translation>In Explorer öffnen</translation> </message> <message> - <location filename="mainwindow.cpp" line="3855"/> + <location filename="mainwindow.cpp" line="3843"/> <source>Information...</source> - <translation type="unfinished">Informationen...</translation> + <translation>Informationen...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3861"/> - <location filename="mainwindow.cpp" line="5086"/> + <location filename="mainwindow.cpp" line="3850"/> + <location filename="mainwindow.cpp" line="5089"/> <source>Exception: </source> - <translation type="unfinished">Ausnahme:</translation> + <translation>Ausnahme:</translation> </message> <message> - <location filename="mainwindow.cpp" line="3863"/> - <location filename="mainwindow.cpp" line="5088"/> + <location filename="mainwindow.cpp" line="3852"/> + <location filename="mainwindow.cpp" line="5091"/> <source>Unknown exception</source> - <translation type="unfinished">Unbekannte Ausnahme</translation> + <translation>Unbekannte Ausnahme</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3871"/> + <source><All></source> + <translation><Alle></translation> </message> <message> - <location filename="mainwindow.cpp" line="3885"/> + <location filename="mainwindow.cpp" line="3873"/> <source><Multiple></source> - <translation type="unfinished"></translation> + <translation><Mehrere></translation> </message> <message> - <location filename="mainwindow.cpp" line="3902"/> + <location filename="mainwindow.cpp" line="3890"/> <source>Really delete "%1"?</source> - <translation type="unfinished"></translation> + <translation>"%1" wirklich löschen?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4013"/> + <location filename="mainwindow.cpp" line="4001"/> <source>Fix Mods...</source> - <translation type="unfinished">Mods reparieren...</translation> + <translation>Mods reparieren...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4014"/> + <location filename="mainwindow.cpp" line="4002"/> <source>Delete</source> - <translation type="unfinished"></translation> + <translation>Löschen</translation> </message> <message> - <location filename="mainwindow.cpp" line="4038"/> - <location filename="mainwindow.cpp" line="4069"/> + <location filename="mainwindow.cpp" line="4027"/> + <location filename="mainwindow.cpp" line="4060"/> <source>failed to remove %1</source> - <translation type="unfinished">%1 konnte nicht entfernt werden</translation> + <translation>%1 konnte nicht entfernt werden</translation> </message> <message> - <location filename="mainwindow.cpp" line="4053"/> - <location filename="mainwindow.cpp" line="4084"/> + <location filename="mainwindow.cpp" line="4044"/> + <location filename="mainwindow.cpp" line="4076"/> <source>failed to create %1</source> - <translation type="unfinished">%1 konnte nicht erstellt werden</translation> + <translation>%1 konnte nicht erstellt werden</translation> </message> <message> - <location filename="mainwindow.cpp" line="4107"/> + <location filename="mainwindow.cpp" line="4100"/> <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> + <translation>Das download verzeichnis kann nicht geändert werden solange Downloads laufen!</translation> </message> <message> - <location filename="mainwindow.cpp" line="4174"/> + <location filename="mainwindow.cpp" line="4182"/> <source>Download failed</source> - <translation type="unfinished">Download fehlgeschlagen</translation> + <translation>Download fehlgeschlagen</translation> </message> <message> - <location filename="mainwindow.cpp" line="4323"/> + <location filename="mainwindow.cpp" line="4333"/> <source>failed to write to file %1</source> - <translation type="unfinished">Speichern in Datei "%1" fehlgeschlagen</translation> + <translation>Speichern in Datei "%1" fehlgeschlagen</translation> </message> <message> - <location filename="mainwindow.cpp" line="4329"/> + <location filename="mainwindow.cpp" line="4339"/> <source>%1 written</source> - <translation type="unfinished">"%1" gespeichert</translation> + <translation>"%1" gespeichert</translation> </message> <message> - <location filename="mainwindow.cpp" line="4368"/> + <location filename="mainwindow.cpp" line="4378"/> <source>Select binary</source> - <translation type="unfinished">Binary wählen</translation> + <translation>Binary wählen</translation> </message> <message> - <location filename="mainwindow.cpp" line="4368"/> + <location filename="mainwindow.cpp" line="4378"/> <source>Binary</source> - <translation type="unfinished">Ausführbare Datei</translation> + <translation>Ausführbare Datei</translation> </message> <message> - <location filename="mainwindow.cpp" line="4394"/> + <location filename="mainwindow.cpp" line="4404"/> <source>Enter Name</source> - <translation type="unfinished">Namen eingeben</translation> + <translation>Namen eingeben</translation> </message> <message> - <location filename="mainwindow.cpp" line="4395"/> + <location filename="mainwindow.cpp" line="4405"/> <source>Please enter a name for the executable</source> - <translation type="unfinished">Bitte geben Sie einen Namen für die Anwendungsdatei ein</translation> + <translation>Bitte geben Sie einen Namen für die Anwendungsdatei ein</translation> </message> <message> - <location filename="mainwindow.cpp" line="4406"/> + <location filename="mainwindow.cpp" line="4416"/> <source>Not an executable</source> - <translation type="unfinished">Datei ist nicht ausführbar</translation> + <translation>Datei ist nicht ausführbar</translation> </message> <message> - <location filename="mainwindow.cpp" line="4406"/> + <location filename="mainwindow.cpp" line="4416"/> <source>This is not a recognized executable.</source> - <translation type="unfinished"></translation> + <translation>Dies Datei wird nicht als ausführbare Datei erkannt.</translation> </message> <message> - <location filename="mainwindow.cpp" line="4431"/> - <location filename="mainwindow.cpp" line="4456"/> + <location filename="mainwindow.cpp" line="4441"/> + <location filename="mainwindow.cpp" line="4466"/> <source>Replace file?</source> - <translation type="unfinished">Datei ersetzen?</translation> + <translation>Datei ersetzen?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4431"/> + <location filename="mainwindow.cpp" line="4441"/> <source>There already is a hidden version of this file. Replace it?</source> - <translation type="unfinished">Es existiert bereits eine versteckte Variante von dieser Datei. Soll diese ersetzt werden?</translation> + <translation>Es existiert bereits eine versteckte Variante von dieser Datei. Soll diese ersetzt werden?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4434"/> - <location filename="mainwindow.cpp" line="4459"/> + <location filename="mainwindow.cpp" line="4444"/> + <location filename="mainwindow.cpp" line="4469"/> <source>File operation failed</source> - <translation type="unfinished">Dateioperation fehlgeschlagen</translation> + <translation>Dateioperation fehlgeschlagen</translation> </message> <message> - <location filename="mainwindow.cpp" line="4434"/> - <location filename="mainwindow.cpp" line="4459"/> + <location filename="mainwindow.cpp" line="4444"/> + <location filename="mainwindow.cpp" line="4469"/> <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> + <translation>Konnte "%1" nicht löschen. Fehlen Ihnen evtl. die nötigen Berechtigungen?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4456"/> + <location filename="mainwindow.cpp" line="4466"/> <source>There already is a visible version of this file. Replace it?</source> - <translation type="unfinished">Es existiert bereits eine sichtbare Variante dieser Datei. Soll diese ersetzt werden?</translation> + <translation>Es existiert bereits eine sichtbare Variante dieser Datei. Soll diese ersetzt werden?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4489"/> + <location filename="mainwindow.cpp" line="4499"/> <source>file not found: %1</source> - <translation type="unfinished">Datei nicht gefunden: %1</translation> + <translation>datei nicht gefunden: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4502"/> + <location filename="mainwindow.cpp" line="4512"/> <source>failed to generate preview for %1</source> - <translation type="unfinished"></translation> + <translation>konnte keine Vorschau für %1 erzeugen</translation> </message> <message> - <location filename="mainwindow.cpp" line="4516"/> + <location filename="mainwindow.cpp" line="4526"/> <source>Sorry, can't preview anything. This function currently does not support extracting from bsas.</source> - <translation type="unfinished"></translation> + <translation>Leider ist keine Vorschau möglich. Dieses Feature kann aktuell keine Dateien aus bsas anzeigen.</translation> </message> <message> - <location filename="mainwindow.cpp" line="4547"/> + <location filename="mainwindow.cpp" line="4557"/> <source>Update available</source> - <translation type="unfinished">Aktualisierung verfügbar</translation> + <translation>Aktualisierung verfügbar</translation> </message> <message> - <location filename="mainwindow.cpp" line="4584"/> + <location filename="mainwindow.cpp" line="4594"/> <source>Open/Execute</source> - <translation type="unfinished">Öffnen/Ausführen</translation> + <translation>Öffnen/Ausführen</translation> </message> <message> - <location filename="mainwindow.cpp" line="4585"/> + <location filename="mainwindow.cpp" line="4595"/> <source>Add as Executable</source> - <translation type="unfinished">Als Anwendung hinzufügen</translation> + <translation>Als Anwendung hinzufügen</translation> </message> <message> - <location filename="mainwindow.cpp" line="4589"/> + <location filename="mainwindow.cpp" line="4599"/> <source>Preview</source> - <translation type="unfinished"></translation> + <translation>Vorschau</translation> </message> <message> - <location filename="mainwindow.cpp" line="4595"/> + <location filename="mainwindow.cpp" line="4605"/> <source>Un-Hide</source> - <translation type="unfinished">Sichtbar machen</translation> + <translation>Sichtbar machen</translation> </message> <message> - <location filename="mainwindow.cpp" line="4597"/> + <location filename="mainwindow.cpp" line="4607"/> <source>Hide</source> - <translation type="unfinished">Verstecken</translation> + <translation>Verstecken</translation> </message> <message> - <location filename="mainwindow.cpp" line="4603"/> + <location filename="mainwindow.cpp" line="4613"/> <source>Write To File...</source> - <translation type="unfinished">In Datei speichern...</translation> + <translation>In Datei speichern...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4634"/> + <location filename="mainwindow.cpp" line="4638"/> <source>Do you want to endorse Mod Organizer on %1 now?</source> - <translation type="unfinished"></translation> + <translation>Willst du Mod Organizer auf %1 ein Endorsement geben?</translation> </message> <message> - <location filename="mainwindow.cpp" line="5047"/> - <source>Remove</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="4757"/> + <source>Request to Nexus failed: %1</source> + <translation>Anfrage an Nexus fehlgeschlagen: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="5077"/> - <source>Unlock load order</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="4764"/> + <location filename="mainwindow.cpp" line="4782"/> + <source>login successful</source> + <translation>Login erfolgreich</translation> </message> <message> - <location filename="mainwindow.cpp" line="5080"/> - <source>Lock load order</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="4791"/> + <source>login failed: %1. Trying to download anyway</source> + <translation>login fehlgeschlagen: %1. Der Download scheitert vermutlich</translation> </message> <message> - <location filename="mainwindow.cpp" line="5149"/> - <source>BOSS working</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="4797"/> + <source>login failed: %1</source> + <translation>login fehlgeschlagen: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="5157"/> - <source>failed to run boss: %1</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="4807"/> + <source>login failed: %1. You need to log-in with Nexus to update MO.</source> + <translation>login fehlgeschlagen: %1. Sie müssen bei Nexus eingeloggt sein um das update herunterzuladen.</translation> </message> <message> - <location filename="mainwindow.cpp" line="4770"/> - <source>Request to Nexus failed: %1</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="4840"/> + <source>Error</source> + <translation>Fehler</translation> </message> <message> - <location filename="mainwindow.cpp" line="1284"/> - <source>Executable "%1" not found</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="4840"/> + <source>failed to extract %1 (errorcode %2)</source> + <translation>konnte "%1" nicht extrahieren (fehlercode %2)</translation> </message> <message> - <location filename="mainwindow.cpp" line="1789"/> - <source>Failed to refresh list of esps: %1</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="4935"/> + <source>Extract...</source> + <translation>Extrahieren...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3346"/> - <source>This will move all files from overwrite into a new, regular mod. -Please enter a name:</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="4997"/> + <source>Edit Categories...</source> + <translation>Kategorien ändern...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3798"/> - <source>Add/Remove Categories</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="4998"/> + <source>Deselect filter</source> + <translation>Filter abwählen</translation> </message> <message> - <location filename="mainwindow.cpp" line="3803"/> - <source>Replace Categories</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="5049"/> + <source>Remove</source> + <translation>Entfernen</translation> </message> <message> - <location filename="mainwindow.cpp" line="4777"/> - <location filename="mainwindow.cpp" line="4794"/> - <source>login successful</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="5060"/> + <source>Enable all</source> + <translation>Alle aktivieren</translation> </message> <message> - <location filename="mainwindow.cpp" line="4803"/> - <source>login failed: %1. Trying to download anyway</source> - <translation type="unfinished">login fehlgeschlagen: %1. Der Download scheitert vermutlich</translation> + <location filename="mainwindow.cpp" line="5061"/> + <source>Disable all</source> + <translation>Alle deaktivieren</translation> </message> <message> - <location filename="mainwindow.cpp" line="4809"/> - <source>login failed: %1</source> - <translation type="unfinished">login fehlgeschlagen: %1</translation> + <location filename="mainwindow.cpp" line="5080"/> + <source>Unlock load order</source> + <translation>Sperrung der Ladereihenfolge aufheben</translation> </message> <message> - <location filename="mainwindow.cpp" line="4818"/> - <source>login failed: %1. You need to log-in with Nexus to update MO.</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="5083"/> + <source>Lock load order</source> + <translation>Ladereihenfolge sperren</translation> </message> <message> - <location filename="mainwindow.cpp" line="4851"/> - <source>Error</source> - <translation type="unfinished">Fehler</translation> + <location filename="mainwindow.cpp" line="5212"/> + <source>depends on missing "%1"</source> + <translation>Voraussetzung "%1" fehlt</translation> </message> <message> - <location filename="mainwindow.cpp" line="4851"/> - <source>failed to extract %1 (errorcode %2)</source> - <translation type="unfinished">konnte "%1" nicht extrahieren (fehlercode %2)</translation> + <location filename="mainwindow.cpp" line="5232"/> + <source>No profile set</source> + <translation>Kein Profil ausgewählt</translation> </message> <message> - <location filename="mainwindow.cpp" line="4946"/> - <source>Extract...</source> - <translation type="unfinished">Extrahieren...</translation> + <location filename="mainwindow.cpp" line="5280"/> + <source>LOOT working</source> + <translation>LOOT arbeitet</translation> </message> <message> - <location filename="mainwindow.cpp" line="5002"/> - <source>Edit Categories...</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="5326"/> + <source>loot failed. Exit code was: %1</source> + <translation>LOOT ist fehlgeschlagen. Fehlercode: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="5057"/> - <source>Enable all</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="5333"/> + <source>failed to run loot: %1</source> + <translation>konnte LOOT nicht ausführen: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="5058"/> - <source>Disable all</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="5336"/> + <source>Errors occured</source> + <translation>Es sind Fehler aufgetreten</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5384"/> + <source>Backup of load order created</source> + <translation>Backup der Ladereihenfolge gespeichert</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5394"/> + <source>Choose backup to restore</source> + <translation>Wählen Sie das zu ladende Backup</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5407"/> + <source>No Backups</source> + <translation>Keine Backups vorhanden</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5407"/> + <source>There are no backups to restore</source> + <translation>Es sind keine Backups vorhanden die Wiederhergestellt werden könnten</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5428"/> + <location filename="mainwindow.cpp" line="5449"/> + <source>Restore failed</source> + <translation>Wiederherstellung fehlgeschlagen</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5429"/> + <location filename="mainwindow.cpp" line="5450"/> + <source>Failed to restore the backup. Errorcode: %1</source> + <translation>Konnte das Backup nicht wiederherstellen. Fehlercode: %1</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5440"/> + <source>Backup of modlist created</source> + <translation>Backup der Modliste gespeichert</translation> + </message> + <message> + <source>failed to run boss: %1</source> + <translation type="obsolete">konnte bsa nicht lesen: %1</translation> </message> </context> <context> @@ -2861,22 +2878,18 @@ Please enter a name:</source> <context> <name>ModInfo</name> <message> - <location filename="modinfo.cpp" line="96"/> - <location filename="modinfo.cpp" line="125"/> + <location filename="modinfo.cpp" line="106"/> + <location filename="modinfo.cpp" line="135"/> <source>invalid index %1</source> <translation>ungültiger index %1</translation> </message> - <message> - <source>invalid mod id %1</source> - <translation type="obsolete">ungültige Mod ID %1</translation> - </message> </context> <context> <name>ModInfoBackup</name> <message> - <location filename="modinfo.cpp" line="820"/> + <location filename="modinfo.cpp" line="898"/> <source>This is the backup of a mod</source> - <translation type="unfinished"></translation> + <translation>Dies ist das Backup einer Mod</translation> </message> </context> <context> @@ -2902,208 +2915,196 @@ Please enter a name:</source> <translation>Eine Liste mit Textdateien im Modverzeichnis, z.B. Readme.</translation> </message> <message> + <location filename="modinfodialog.ui" line="67"/> + <location filename="modinfodialog.ui" line="175"/> + <source>Save</source> + <translation>Speichern</translation> + </message> + <message> <location filename="modinfodialog.ui" line="77"/> <source>INI-Files</source> <translation>INI Dateien</translation> </message> <message> - <location filename="modinfodialog.ui" line="97"/> + <location filename="modinfodialog.ui" line="91"/> + <source>Ini Files</source> + <translation>INI Dateien</translation> + </message> + <message> + <location filename="modinfodialog.ui" line="104"/> <source>This is a list of .ini files in the mod.</source> <translation>Liste mit .ini Dateien im Mod.</translation> </message> <message> - <location filename="modinfodialog.ui" line="100"/> + <location filename="modinfodialog.ui" line="107"/> <source>This is a list of .ini files in the mod. These are usually used to configure the behaviour of mods if there are configurable parameters.</source> <translation>Eine Liste mit Textdateien im Modverzeichnis. Die Dateien werden üblicherweise dazu verwendet um das Verhalten und Parameter der mods zu konfigurieren.</translation> </message> <message> - <location filename="modinfodialog.ui" line="149"/> + <location filename="modinfodialog.ui" line="114"/> + <source>Ini Tweaks</source> + <translation>INI Tweaks</translation> + </message> + <message> + <location filename="modinfodialog.ui" line="130"/> + <source>This is a list of ini tweaks (ini modifications that can be toggled).</source> + <translation>Dies ist eine Liste von ini tweaks (Anpassungen der ini Datei die an und ausgeschaltet werden können).</translation> + </message> + <message> + <location filename="modinfodialog.ui" line="133"/> + <source>This is a list of ini tweaks. Ini Tweaks are (usually small) fragments of ini files that are applied over existing settings in skyrim.ini/skyrimprefs.ini. Each tweak can be toggled individually. You should check the description of the mod wether the tweaks are really optional.</source> + <translation>Dies ist eine Liste von ini tweaks. Dabei handelt es sich um (meist kleine) Fragmente von ini dateien die zur Laufzeit Einstellungen aus den primären Konfigurationsdateien des Spiels ersetzen. Jeder Tweak kann separat aktiviert werden. Sie sollten die Beschreibung der Mod sorgsam durchlesen um zu erfahren ob diese tweaks wirklich optional sind.</translation> + </message> + <message> + <location filename="modinfodialog.ui" line="169"/> <source>Save changes to the file.</source> <translation>Änderungen an der Datei speichern.</translation> </message> <message> - <location filename="modinfodialog.ui" line="152"/> + <location filename="modinfodialog.ui" line="172"/> <source>Save changes to the file. This overwrites the original. There is no automatic backup!</source> <translation>Änderungen der Datei speichern. Dies überschreibt das Original - es gibt keine automatische Sicherung!</translation> </message> <message> - <location filename="modinfodialog.ui" line="67"/> - <location filename="modinfodialog.ui" line="155"/> - <source>Save</source> - <translation>Speichern</translation> - </message> - <message> - <location filename="modinfodialog.ui" line="165"/> + <location filename="modinfodialog.ui" line="185"/> <source>Images</source> <translation>Bilder</translation> </message> <message> - <location filename="modinfodialog.ui" line="220"/> + <location filename="modinfodialog.ui" line="240"/> <source>Images located in the mod.</source> <translation>Bilder im Modverzeichnis.</translation> </message> <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Listet alle Bilder (*.jpg, *.png) im Modverzeichnis auf, bspw. Screenshots. Klicken für eine größere Ansicht.</span></p></body></html></translation> + <location filename="modinfodialog.ui" line="243"/> + <source>This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</source> + <translation>Dies führt alle Bilder (.jpg und .png) wie Screenshots und ähnliches im Mod Verzeichnis auf. Anklicken für eine Großansicht.</translation> </message> <message> - <location filename="modinfodialog.ui" line="256"/> - <location filename="modinfodialog.ui" line="275"/> + <location filename="modinfodialog.ui" line="276"/> + <location filename="modinfodialog.ui" line="295"/> <source>Optional ESPs</source> <translation>Optionale ESPs</translation> </message> <message> - <location filename="modinfodialog.ui" line="262"/> + <location filename="modinfodialog.ui" line="282"/> <source>List of esps and esms that can not be loaded by the game.</source> <translation>Liste mit ESP und ESM Dateien die vom Spiel nicht geladen werden können.</translation> </message> <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">They usually contain optional functionality, see the readme.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Most mods do not have optional esps, so chances are good you are looking at an empty list.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Eine Liste mit ESPs und ESMs in diesem Plugin die nicht im Spiel geladen werden können. Die Dateien werden auch nicht in der ESP Liste im Hauptfenster von MO erscheinen.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Üblicherweise enthalten sie optionale Funktionalität, siehe das entsprechende Readme.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Die meisten Mods haben keine optionalen ESPs, wahrscheinlich sehen Sie also eine leere Liste vor sich..</span></p></body></html></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="223"/> - <source>This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="265"/> + <location filename="modinfodialog.ui" line="285"/> <source>List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window. They usually contain optional functionality, see the readme. Most mods do not have optional esps, so chances are good you are looking at an empty list.</source> - <translation type="unfinished"></translation> + <translation>Liste der esps und esms die in dieser Mod enthalten sind aber aktuell nicht geladen werden können. Sie tauchen nicht in der plugin-Liste des Hauptfensters auf. +Dies sind üblicherweise Plugins mit optionaler Funktionalität. Für Details, lesen sie bitte die Beschreibung der Mod. + +Die meisten Mods haben keine optionalen esps, es ist also gut möglich dass sie sich gerade eine leere Liste ansehen.</translation> </message> <message> - <location filename="modinfodialog.ui" line="290"/> + <location filename="modinfodialog.ui" line="310"/> <source>Make the selected mod in the lower list unavailable.</source> <translation>Den unten ausgewählten Mod als nicht verfügbar markieren.</translation> </message> <message> - <location filename="modinfodialog.ui" line="293"/> + <location filename="modinfodialog.ui" line="313"/> <source>The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become "invisible" to the game. It can then no longer be activated.</source> <translation>Die in der unteren Liste ausgewählte ESP wird in ein Unterverzeichnis des Mods verschoben und so für das Spiel unsichtbar. Sie kann nicht mehr im Spiel aktiviert werden.</translation> </message> <message> - <location filename="modinfodialog.ui" line="319"/> + <location filename="modinfodialog.ui" line="339"/> <source>Move a file to the data directory.</source> <translation>Datei in das Datenverzeichnis verschieben.</translation> </message> <message> - <location filename="modinfodialog.ui" line="322"/> + <location filename="modinfodialog.ui" line="342"/> <source>This moves a esp to the esp directory so it can be enabled in the main window. Please note that the ESP merely becomes "available", it will not necessarily be loaded! That is configured in the main window of omo.</source> <translation>Verschiebt ein ESP in das ESP Verzeichnis damit es im Hauptfenster aktiviert werden kann. Bitte beachten Sie, dass das ESP nur "verfügbar" wird, es wird nicht zwangsläufig geladen! Das Laden der ESP wird im Hauptfenster von MO eingestellt.</translation> </message> <message> - <location filename="modinfodialog.ui" line="357"/> + <location filename="modinfodialog.ui" line="377"/> <source>ESPs in the data directory and thus visible to the game.</source> <translation>ESPs im Datenverzeichnis und für das Spiel sichtbar.</translation> </message> <message> - <location filename="modinfodialog.ui" line="360"/> + <location filename="modinfodialog.ui" line="380"/> <source>These are the mod files that are in the (virtual) data directory of your game and will thus be selecteable in the esp list in the main window.</source> <translation>Dies Mod Dateien sind im (virtuellen) Datenverzeichnis des Spiels und somit in der ESP Liste des Hauptfenster auswählbar.</translation> </message> <message> - <location filename="modinfodialog.ui" line="367"/> + <location filename="modinfodialog.ui" line="387"/> <source>Available ESPs</source> <translation>Verfügbare ESPs</translation> </message> <message> - <location filename="modinfodialog.ui" line="375"/> + <location filename="modinfodialog.ui" line="395"/> <source>Conflicts</source> <translation>Konflikte</translation> </message> <message> - <location filename="modinfodialog.ui" line="383"/> + <location filename="modinfodialog.ui" line="403"/> <source>The following conflicted files are provided by this mod</source> <translation>Die folgenden konfliktbehafteten Dateien werden von dieser Mod bereitgestellt</translation> </message> <message> - <location filename="modinfodialog.ui" line="433"/> - <location filename="modinfodialog.ui" line="483"/> + <location filename="modinfodialog.ui" line="453"/> + <location filename="modinfodialog.ui" line="503"/> <source>File</source> <translation>Datei</translation> </message> <message> - <location filename="modinfodialog.ui" line="438"/> + <location filename="modinfodialog.ui" line="458"/> <source>Overwritten Mods</source> <translation>Überschriebene Mods</translation> </message> <message> - <location filename="modinfodialog.ui" line="448"/> + <location filename="modinfodialog.ui" line="468"/> <source>The following conflicted files are provided by other mods</source> <translation>Die folgenden konfliktbehafteten Dateien werden von anderen Mods bereitgestellt</translation> </message> <message> - <location filename="modinfodialog.ui" line="488"/> + <location filename="modinfodialog.ui" line="508"/> <source>Providing Mod</source> <translation>Bereitstellende Mod</translation> </message> <message> - <location filename="modinfodialog.ui" line="498"/> + <location filename="modinfodialog.ui" line="518"/> <source>Non-Conflicted files</source> <translation>Konfliktfreie Dateien</translation> </message> <message> - <location filename="modinfodialog.ui" line="518"/> + <location filename="modinfodialog.ui" line="538"/> <source>Categories</source> <translation>Kategorien</translation> </message> <message> - <location filename="modinfodialog.ui" line="541"/> + <location filename="modinfodialog.ui" line="561"/> <source>Primary Category</source> - <translation type="unfinished"></translation> + <translation>Primäre Kategorie</translation> </message> <message> - <location filename="modinfodialog.ui" line="558"/> + <location filename="modinfodialog.ui" line="578"/> <source>Nexus Info</source> <translation>Nexus Info</translation> </message> <message> - <location filename="modinfodialog.ui" line="566"/> + <location filename="modinfodialog.ui" line="586"/> <source>Mod ID</source> <translation>Mod ID</translation> </message> <message> - <location filename="modinfodialog.ui" line="573"/> + <location filename="modinfodialog.ui" line="593"/> <source>Mod ID for this mod on Nexus.</source> <translation>ID dieser mod auf Nexus.</translation> </message> <message> - <location filename="modinfodialog.ui" line="576"/> + <location filename="modinfodialog.ui" line="596"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Mod ID for this mod on Nexus. This is filled in automatically if you downloaded and installed the mod from inside MO. Otherwise you can enter it manually. To find the correct id, find the mod on nexus. The URL will look like this: </span><a href=" http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://skyrim.nexusmods.com/downloads/file.php?id=1334</span></a><a href="http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" font-size:8pt; color:#000000;">. In this example, 1334 is the id you're looking for. Besides: The above is the link to Mod Organizer on the Nexus. Why not go there now and endorse?</span></a></p></body></html></source> - <oldsource><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Mod ID for this mod on Nexus. This is filled in automatically if you downloaded and installed the mod from inside MO. Otherwise you can enter it manually. To find the correct id, find the mod on nexus. The URL will look like this: <a href=" http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" text-decoration: underline; color:#0000ff;">http://www.skyrimnexus.com/downloads/file.php?id=1334</span></a><a href="http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" color:#000000;">. In this example, 1334 is the id you're looking for. Besides: The above is the link to Mod Organizer on the Nexus. Why not go there now and endorse?</span></a></p></body></html></oldsource> <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -3111,7 +3112,7 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">ModID für den Mod auf Nexus. Um die korrekte Id zu finden, einfach den Mod auf Nexus aufrufen. Die URL sieht so aus:<a href=" http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" text-decoration: underline; color:#0000ff;">http://www.skyrimnexus.com/downloads/file.php?id=1334</span></a><a href="http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" color:#000000;">. In diesem Beispiel ist 1334 die gesuchte Id. Zufällig ist das genau der Link zu Mod Organiser im Nexus. Warum nicht einfach mal anklicken und ein Endorsement hinzufügen?</span></a></p></body></html></translation> </message> <message> - <location filename="modinfodialog.ui" line="600"/> + <location filename="modinfodialog.ui" line="620"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -3124,97 +3125,60 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Installierte Version des Mods. Der Tooltip zeigt die auf Nexus verfügbare Version. Die installierte Versionsnummer kann nur angezeigt werden wenn der Mod durch MO installiert wurde.</span></p></body></html></translation> </message> <message> - <location filename="modinfodialog.ui" line="607"/> + <location filename="modinfodialog.ui" line="627"/> <source>Version</source> <translation>Version</translation> </message> <message> - <location filename="modinfodialog.ui" line="637"/> + <location filename="modinfodialog.ui" line="657"/> <source>Refresh</source> - <translation type="unfinished">Neu laden</translation> + <translation>Neu laden</translation> </message> <message> - <location filename="modinfodialog.ui" line="640"/> + <location filename="modinfodialog.ui" line="660"/> <source>Refresh all information from Nexus.</source> - <translation type="unfinished"></translation> + <translation>Alle Informationen von Nexus nachladen.</translation> </message> <message> - <location filename="modinfodialog.ui" line="654"/> + <location filename="modinfodialog.ui" line="674"/> <source>Description</source> <translation>Beschreibung</translation> </message> <message> - <location filename="modinfodialog.ui" line="669"/> + <location filename="modinfodialog.ui" line="689"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><br /></p></body></html></source> - <translation type="unfinished"></translation> - </message> - <message> - <source>about:blank</source> - <translation type="obsolete">about:blank</translation> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><br /></p></body></html></translation> </message> <message> - <location filename="modinfodialog.ui" line="704"/> + <location filename="modinfodialog.ui" line="724"/> <source>Endorse</source> - <translation type="unfinished"></translation> + <translation>Endorsement vergeben</translation> </message> <message> - <location filename="modinfodialog.ui" line="718"/> + <location filename="modinfodialog.ui" line="738"/> <source>Notes</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Full description as reported my nexus.</source> - <translation type="obsolete">Vollständige Beschreibung von Nexus.</translation> - </message> - <message> - <source>Files</source> - <translation type="obsolete">Dateien</translation> - </message> - <message> - <source>List of files currently uploaded on nexus. Double click to download.</source> - <translation type="obsolete">Liste mit derzeit auf Nexus hochgeladenen Dateien. Doppelklick zum Herunterladen.</translation> - </message> - <message> - <source>Type</source> - <translation type="obsolete">Typ</translation> + <translation>Anmerkungen</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1221"/> - <source>Name</source> - <translation type="unfinished">Name</translation> - </message> - <message> - <source>Size (kB)</source> - <translation type="obsolete">Größe (kB)</translation> - </message> - <message> - <source>Size</source> - <translation type="obsolete">Größe</translation> - </message> - <message> - <source>Endorsements are an important motivation for authors. Please don't forget to endorse mods you like.</source> - <translation type="obsolete">Endorsements sind eine gute Möglichkeit, Mod-authoren für ihre Arbeit zu danken. Bitte vergiss nicht, Endorsements zu vergeben für mods die dir gefallen.</translation> - </message> - <message> - <source>Have you endorsed this yet?</source> - <translation type="obsolete">Schon ein "endorsement" vergeben?</translation> - </message> - <message> - <location filename="modinfodialog.ui" line="728"/> + <location filename="modinfodialog.ui" line="748"/> <source>Filetree</source> <translation>Verzeichnisbaum</translation> </message> <message> - <location filename="modinfodialog.ui" line="737"/> + <location filename="modinfodialog.ui" line="757"/> <source>A directory view of this mod</source> <translation>Verzeichnisansicht des Mods</translation> </message> <message> - <location filename="modinfodialog.ui" line="740"/> + <location filename="modinfodialog.ui" line="760"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -3229,357 +3193,288 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Veränderungen werden sofort auf der Platte ausgeführt, also</span><span style=" font-size:8pt; font-weight:600;"> vorsichtig sein!</span><span style=" font-size:8pt;">.</span></p></body></html></translation> </message> <message> - <location filename="modinfodialog.ui" line="767"/> + <location filename="modinfodialog.ui" line="787"/> <source>Previous</source> - <translation type="unfinished"></translation> + <translation>Vorherige</translation> </message> <message> - <location filename="modinfodialog.ui" line="774"/> + <location filename="modinfodialog.ui" line="794"/> <source>Next</source> - <translation type="unfinished">Weiter</translation> + <translation>Weiter</translation> </message> <message> - <location filename="modinfodialog.ui" line="794"/> + <location filename="modinfodialog.ui" line="814"/> <source>Close</source> <translation>Schliessen</translation> </message> <message> - <location filename="modinfodialog.cpp" line="104"/> + <location filename="modinfodialog.cpp" line="165"/> <source>&Delete</source> <translation>&Löschen</translation> </message> <message> - <location filename="modinfodialog.cpp" line="105"/> + <location filename="modinfodialog.cpp" line="166"/> <source>&Rename</source> <translation>&Umbenennen</translation> </message> <message> - <location filename="modinfodialog.cpp" line="106"/> + <location filename="modinfodialog.cpp" line="167"/> <source>&Hide</source> - <translation type="unfinished"></translation> + <translation>&Verstecken</translation> </message> <message> - <location filename="modinfodialog.cpp" line="107"/> + <location filename="modinfodialog.cpp" line="168"/> <source>&Unhide</source> - <translation type="unfinished"></translation> + <translation>&Wiederherstellen</translation> </message> <message> - <location filename="modinfodialog.cpp" line="108"/> + <location filename="modinfodialog.cpp" line="169"/> <source>&Open</source> <translation>&Öffnen</translation> </message> <message> - <location filename="modinfodialog.cpp" line="109"/> + <location filename="modinfodialog.cpp" line="170"/> <source>&New Folder</source> <translation>&Neuer Ordner</translation> </message> <message> - <location filename="modinfodialog.cpp" line="405"/> - <location filename="modinfodialog.cpp" line="420"/> + <location filename="modinfodialog.cpp" line="416"/> + <location filename="modinfodialog.cpp" line="431"/> <source>Save changes?</source> <translation>Änderungen speichern?</translation> </message> <message> - <source>Save changes to the "%1"?</source> - <translation type="obsolete">Änderungen an "%1" speichern?</translation> + <location filename="modinfodialog.cpp" line="416"/> + <location filename="modinfodialog.cpp" line="431"/> + <source>Save changes to "%1"?</source> + <translation>Änderungen an "%1" speichern?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="612"/> + <location filename="modinfodialog.cpp" line="621"/> <source>File Exists</source> <translation>Datei existiert bereits</translation> </message> <message> - <location filename="modinfodialog.cpp" line="612"/> + <location filename="modinfodialog.cpp" line="621"/> <source>A file with that name exists, please enter a new one</source> <translation>Eine Datei mit diesem Namen existiert bereits, bitte wählen Sie einen anderen Namen</translation> </message> <message> - <location filename="modinfodialog.cpp" line="629"/> + <location filename="modinfodialog.cpp" line="638"/> <source>failed to move file</source> <translation>Verschieben der Datei fehlgeschlagen</translation> </message> <message> - <location filename="modinfodialog.cpp" line="654"/> + <location filename="modinfodialog.cpp" line="663"/> <source>failed to create directory "optional"</source> <translation>Erstellen des Verzeichnis "optional" fehlgeschlagen</translation> </message> <message> - <location filename="modinfodialog.cpp" line="692"/> - <location filename="modinfodialog.cpp" line="1198"/> + <location filename="modinfodialog.cpp" line="701"/> + <location filename="modinfodialog.cpp" line="1206"/> <source>Info requested, please wait</source> <translation>Information wird abgerufen, bitte warten</translation> </message> <message> - <source>request failed: %1</source> - <translation type="obsolete">Anfrage fehlgeschlagen: %1</translation> - </message> - <message> - <source> -(description incomplete, please visit nexus)</source> - <oldsource> -(description incomplete, please visit nexus)</oldsource> - <translation type="obsolete"> -(Beschreibung unvollständig. Bitte besuche die Nexus-Seite)</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="746"/> + <location filename="modinfodialog.cpp" line="755"/> <source>Main</source> <translation>Primär</translation> </message> <message> - <location filename="modinfodialog.cpp" line="747"/> + <location filename="modinfodialog.cpp" line="756"/> <source>Update</source> <translation>Aktualisierung</translation> </message> <message> - <location filename="modinfodialog.cpp" line="748"/> + <location filename="modinfodialog.cpp" line="757"/> <source>Optional</source> <translation>Optional</translation> </message> <message> - <location filename="modinfodialog.cpp" line="749"/> + <location filename="modinfodialog.cpp" line="758"/> <source>Old</source> <translation>Alt</translation> </message> <message> - <location filename="modinfodialog.cpp" line="750"/> + <location filename="modinfodialog.cpp" line="759"/> <source>Misc</source> <translation>Sonstiges</translation> </message> <message> - <location filename="modinfodialog.cpp" line="751"/> + <location filename="modinfodialog.cpp" line="760"/> <source>Unknown</source> <translation>Unbekannt</translation> </message> <message> - <source>request failed</source> - <translation type="obsolete">Anfrage fehlgeschlagen</translation> + <location filename="modinfodialog.cpp" line="771"/> + <source>Current Version: %1</source> + <translation>Aktuelle Version: %1</translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="775"/> + <source>No update available</source> + <translation>Keine neue Version verfügbar</translation> </message> <message> - <location filename="modinfodialog.cpp" line="807"/> + <location filename="modinfodialog.cpp" line="816"/> <source>(description incomplete, please visit nexus)</source> - <translation type="unfinished"></translation> + <translation>(Beschreibung unvollständig. Bitte besuche die Nexus-Seite)</translation> </message> <message> - <location filename="modinfodialog.cpp" line="822"/> + <location filename="modinfodialog.cpp" line="831"/> <source><a href="%1">Visit on Nexus</a></source> <translation><a href="%1">Auf Nexus öffnen</a></translation> </message> <message> - <location filename="modinfodialog.cpp" line="912"/> - <location filename="modinfodialog.cpp" line="917"/> - <source>Confirm</source> - <translation>Bestätigen</translation> - </message> - <message> - <source>Download "%1"?</source> - <translation type="obsolete">"%1" herunterladen?</translation> - </message> - <message> - <source>Download started</source> - <translation type="obsolete">Download gestartet</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="901"/> + <location filename="modinfodialog.cpp" line="910"/> <source>Failed to delete %1</source> <translation>"%1" konnte nicht gelöscht werden</translation> </message> <message> - <location filename="modinfodialog.cpp" line="912"/> + <location filename="modinfodialog.cpp" line="921"/> + <location filename="modinfodialog.cpp" line="926"/> + <source>Confirm</source> + <translation>Bestätigen</translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="921"/> <source>Are sure you want to delete "%1"?</source> <translation>Sind Sie sicher, dass Sie "%1" löschen wollen?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="917"/> + <location filename="modinfodialog.cpp" line="926"/> <source>Are sure you want to delete the selected files?</source> <translation>Sind Sie sicher, dass Sie die ausgewählten Dateien löschen wollen?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="991"/> - <location filename="modinfodialog.cpp" line="997"/> + <location filename="modinfodialog.cpp" line="1000"/> + <location filename="modinfodialog.cpp" line="1006"/> <source>New Folder</source> <translation>Neuer Ordner</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1003"/> + <location filename="modinfodialog.cpp" line="1012"/> <source>Failed to create "%1"</source> <translation>"%1" konnte nicht erstellt werden</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1107"/> - <location filename="modinfodialog.cpp" line="1131"/> + <location filename="modinfodialog.cpp" line="1116"/> + <location filename="modinfodialog.cpp" line="1140"/> <source>Replace file?</source> - <translation type="unfinished">Datei ersetzen?</translation> + <translation>Datei ersetzen?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1107"/> + <location filename="modinfodialog.cpp" line="1116"/> <source>There already is a hidden version of this file. Replace it?</source> - <translation type="unfinished">Es existiert bereits eine versteckte Variante von dieser Datei. Soll diese ersetzt werden?</translation> + <translation>Es existiert bereits eine versteckte Variante von dieser Datei. Soll diese ersetzt werden?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1110"/> - <location filename="modinfodialog.cpp" line="1134"/> + <location filename="modinfodialog.cpp" line="1119"/> + <location filename="modinfodialog.cpp" line="1143"/> <source>File operation failed</source> - <translation type="unfinished">Dateioperation fehlgeschlagen</translation> + <translation>Dateioperation fehlgeschlagen</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1110"/> - <location filename="modinfodialog.cpp" line="1134"/> + <location filename="modinfodialog.cpp" line="1119"/> + <location filename="modinfodialog.cpp" line="1143"/> <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> + <translation>Konnte "%1" nicht löschen. Fehlen Ihnen evtl. die nötigen Berechtigungen?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1121"/> - <location filename="modinfodialog.cpp" line="1144"/> + <location filename="modinfodialog.cpp" line="1130"/> + <location filename="modinfodialog.cpp" line="1153"/> <source>failed to rename %1 to %2</source> - <translation type="unfinished">konnte "%1" nicht in "%2" umbenennen</translation> + <translation>"%1" konnte nicht zu "%2" umbenannt werden</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1131"/> + <location filename="modinfodialog.cpp" line="1140"/> <source>There already is a visible version of this file. Replace it?</source> - <translation type="unfinished">Es existiert bereits eine sichtbare Variante dieser Datei. Soll diese ersetzt werden?</translation> + <translation>Es existiert bereits eine sichtbare Variante dieser Datei. Soll diese ersetzt werden?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1178"/> + <location filename="modinfodialog.cpp" line="1186"/> <source>Un-Hide</source> - <translation type="unfinished">Sichtbar machen</translation> + <translation>Sichtbar machen</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1180"/> + <location filename="modinfodialog.cpp" line="1188"/> <source>Hide</source> - <translation type="unfinished">Verstecken</translation> + <translation>Verstecken</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1221"/> + <location filename="modinfodialog.cpp" line="1229"/> + <source>Name</source> + <translation>Name</translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1229"/> <source>Please enter a name</source> - <translation type="unfinished"></translation> + <translation>Bitte geben Sie einen Namen ein.</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1225"/> - <location filename="modinfodialog.cpp" line="1228"/> + <location filename="modinfodialog.cpp" line="1233"/> + <location filename="modinfodialog.cpp" line="1236"/> <source>Error</source> - <translation type="unfinished">Fehler</translation> + <translation>Fehler</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1225"/> + <location filename="modinfodialog.cpp" line="1233"/> <source>Invalid name. Must be a valid file name</source> - <translation type="unfinished"></translation> + <translation>Ungültiger Name. Dies muss ein gültiger Dateiname sein</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1228"/> + <location filename="modinfodialog.cpp" line="1236"/> <source>A tweak by that name exists</source> - <translation type="unfinished"></translation> + <translation>Ein "Tweak" mit diesem Namen existiert bereits</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1240"/> + <location filename="modinfodialog.cpp" line="1250"/> <source>Create Tweak</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="762"/> - <source>Current Version: %1</source> - <translation>Aktuelle Version: %1</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="405"/> - <location filename="modinfodialog.cpp" line="420"/> - <source>Save changes to "%1"?</source> - <translation type="unfinished"></translation> + <translation>"Tweak" anlegen</translation> </message> +</context> +<context> + <name>ModInfoForeign</name> <message> - <location filename="modinfodialog.cpp" line="766"/> - <source>No update available</source> - <translation>Keine neue Version verfügbar</translation> + <location filename="modinfo.cpp" line="987"/> + <source>This pseudo mod represents content managed outside MO. It isn't modified by MO.</source> + <translation>Diese Pseudo-Mod repräsentiert Inhalte die nicht von MO verwaltet werden. Sie können diese nicht in MO verändern.</translation> </message> </context> <context> <name>ModInfoOverwrite</name> <message> - <source>Overwrite</source> - <translation type="obsolete">Overwrite</translation> - </message> - <message> - <location filename="modinfo.cpp" line="866"/> + <location filename="modinfo.cpp" line="943"/> <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source> - <translation type="unfinished">Diese Pseudo-Mod enthält Dateien des virtuellen Verzeichnisses die modifiziert wurden (z.B. durch den Construction Kit)</translation> + <translation>Diese Pseudo-Mod enthält Dateien des virtuellen Verzeichnisses die modifiziert wurden (z.B. durch den Construction Kit)</translation> </message> </context> <context> <name>ModInfoRegular</name> <message> - <location filename="modinfo.cpp" line="393"/> <source>failed to write %1/meta.ini: %2</source> - <translation>konnte %1/meta.ini nicht schreiben: %2</translation> + <translation type="obsolete">konnte %1/meta.ini nicht schreiben: %2</translation> </message> <message> - <location filename="modinfo.cpp" line="661"/> + <location filename="modinfo.cpp" line="557"/> + <location filename="modinfo.cpp" line="560"/> + <source>failed to write %1/meta.ini: error %2</source> + <translation>konnte %1/meta.ini nicht schreiben: Fehler %2</translation> + </message> + <message> + <location filename="modinfo.cpp" line="811"/> <source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source> - <translation type="unfinished">%1 enthält keine esp / esm Dateien und keine Resourcen (Texturen, Netze, Oberfläche...)</translation> + <translation>%1 enthält keine esp / esm Dateien und keine Resourcen (Texturen, Netze, Oberfläche...)</translation> </message> <message> - <location filename="modinfo.cpp" line="665"/> + <location filename="modinfo.cpp" line="815"/> <source>Categories: <br></source> - <translation type="unfinished">Kategorien: <br></translation> + <translation>Kategorien: <br></translation> </message> </context> <context> <name>ModList</name> <message> - <source>mod not found: %1</source> - <translation type="obsolete">Mod nicht gefunden: %1</translation> - </message> - <message> - <source>Check started</source> - <translation type="obsolete">aÜberprüfung gestartet</translation> - </message> - <message> - <location filename="modlist.cpp" line="776"/> - <source>Confirm</source> - <translation>Bestätigen</translation> - </message> - <message> - <source>Are you sure you want to remove this mod?</source> - <translation type="obsolete">Sind Sie sicher, dass Sie diesen Mod entfernen wollen?</translation> - </message> - <message> - <source>failed to rename mod to %1</source> - <translation type="obsolete">Mod konnte nicht in "%1" umbenannt werden</translation> - </message> - <message> - <source>invalid row-index %1</source> - <translation type="obsolete">ungültige zeilennummer %1</translation> - </message> - <message> - <source>min</source> - <translation type="obsolete">Min</translation> - </message> - <message> - <source>max</source> - <translation type="obsolete">Max</translation> - </message> - <message> - <location filename="modlist.cpp" line="308"/> - <source>installed version: "%1", newest version: "%2"</source> - <oldsource>installed version: %1, newest version: %2</oldsource> - <translation type="unfinished">installierte Version: %1, neueste Version: %2</translation> - </message> - <message> - <source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source> - <translation type="obsolete">%1 enthält keine esp / esm Dateien und keine Resourcen (Texturen, Netze, Oberfläche...)</translation> - </message> - <message> - <source>Really enable all visible mods?</source> - <translation type="obsolete">Alle angezeigten Mods aktivieren?</translation> - </message> - <message> - <source>Really disable all visible mods?</source> - <translation type="obsolete">Alle angezeigten Mods deaktivieren?</translation> - </message> - <message> - <source>Overwrite</source> - <translation type="obsolete">Overwrite</translation> - </message> - <message> <location filename="modlist.cpp" line="109"/> <source>This entry contains files that have been created inside the virtual data tree (i.e. by the construction kit)</source> <translation>Dieser Eintrag enthält Dateien die innerhalb des virtuellen Verzeichnisses erstellt wurden (z.B. durch den Construction Kit)</translation> @@ -3587,156 +3482,159 @@ p, li { white-space: pre-wrap; } <message> <location filename="modlist.cpp" line="118"/> <source>Backup</source> - <translation type="unfinished"></translation> + <translation>Backup</translation> </message> <message> <location filename="modlist.cpp" line="119"/> <source>No valid game data</source> - <translation type="unfinished"></translation> + <translation>Keine gültigen Spieldaten</translation> </message> <message> <location filename="modlist.cpp" line="120"/> <source>Not endorsed yet</source> - <translation type="unfinished"></translation> + <translation>Noch kein Endorsement vergeben</translation> </message> <message> <location filename="modlist.cpp" line="122"/> <source>Overwrites files</source> - <translation type="unfinished"></translation> + <translation>Dateien werden überschrieben</translation> </message> <message> <location filename="modlist.cpp" line="123"/> <source>Overwritten files</source> - <translation type="unfinished"></translation> + <translation>Überschriebene Dateien</translation> </message> <message> <location filename="modlist.cpp" line="124"/> <source>Overwrites & Overwritten</source> - <translation type="unfinished"></translation> + <translation>Überschreibt & Wird überschrieben</translation> </message> <message> <location filename="modlist.cpp" line="125"/> <source>Redundant</source> - <translation type="unfinished"></translation> + <translation>Redundant</translation> </message> <message> - <location filename="modlist.cpp" line="197"/> + <location filename="modlist.cpp" line="170"/> + <source>Non-MO</source> + <translation>MO-fremd</translation> + </message> + <message> + <location filename="modlist.cpp" line="201"/> <source>invalid</source> - <translation type="unfinished"></translation> + <translation>ungültig</translation> </message> <message> - <location filename="modlist.cpp" line="310"/> + <location filename="modlist.cpp" line="314"/> + <source>installed version: "%1", newest version: "%2"</source> + <oldsource>installed version: %1, newest version: %2</oldsource> + <translation>installierte Version: "%1", neueste Version: "%2"</translation> + </message> + <message> + <location filename="modlist.cpp" line="316"/> <source>The newest version on Nexus seems to be older than the one you have installed. This could either mean the version you have has been withdrawn (i.e. due to a bug) or the author uses a non-standard versioning scheme and that newest version is actually newer. Either way you may want to "upgrade".</source> - <translation type="unfinished"></translation> + <translation>Die neueste Version auf Nexus scheint älter zu sein als die die sie installiert haben. Dies könnte bedeuten dass die Version die sie installiert haben entfernt wurde (z.B. weigen eines Bugs) oder der Autor verwendet ein nicht-standardisiertes Versionierungssystem und ihre Version ist in Wirklichkeit doch veraltet. In beiden Fällen ist es empfehlenswert die Version von Nexus zu installieren.</translation> </message> <message> - <location filename="modlist.cpp" line="318"/> + <location filename="modlist.cpp" line="324"/> <source>Categories: <br></source> <translation>Kategorien: <br></translation> </message> <message> - <location filename="modlist.cpp" line="347"/> + <location filename="modlist.cpp" line="353"/> <source>Invalid name</source> - <translation type="unfinished"></translation> + <translation>Ungültiger Name</translation> </message> <message> - <location filename="modlist.cpp" line="832"/> - <source>Mod Name</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="837"/> - <source>Installation</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="850"/> - <source>Category of the mod.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="851"/> - <source>Id of the mod as used on Nexus.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="852"/> - <source>Emblemes to highlight things that might require attention.</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="747"/> + <source>drag&drop failed: %1</source> + <translation>Drag&Drop fehlgeschlagen: %1</translation> </message> <message> - <location filename="modlist.cpp" line="853"/> - <source>Time this mod was installed</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="810"/> + <source>Confirm</source> + <translation>Bestätigen</translation> </message> <message> - <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source> - <translation type="obsolete">Diese Pseudo-Mod enthält Dateien des virtuellen Verzeichnisses die modifiziert wurden (z.B. durch den Construction Kit)</translation> + <location filename="modlist.cpp" line="810"/> + <source>Are you sure you want to remove "%1"?</source> + <translation>Sind Sie sicher dass Sie "%1" löschen wollen?</translation> </message> <message> - <source>Name</source> - <translation type="obsolete">Name</translation> + <location filename="modlist.cpp" line="865"/> + <source>Flags</source> + <translation>Markierungen</translation> </message> <message> - <source>Names of your mods</source> - <translation type="obsolete">Namen Ihrer Mods</translation> + <location filename="modlist.cpp" line="866"/> + <source>Mod Name</source> + <translation>Mod Name</translation> </message> <message> - <location filename="modlist.cpp" line="833"/> + <location filename="modlist.cpp" line="867"/> <source>Version</source> <translation>Version</translation> </message> <message> - <location filename="modlist.cpp" line="847"/> - <source>Version of the mod (if available)</source> - <translation>Version des Mod (wenn verfügbar)</translation> - </message> - <message> - <location filename="modlist.cpp" line="834"/> + <location filename="modlist.cpp" line="868"/> <source>Priority</source> <translation>Priorität</translation> </message> <message> - <location filename="modlist.cpp" line="717"/> - <source>drag&drop failed: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="831"/> - <source>Flags</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="835"/> + <location filename="modlist.cpp" line="869"/> <source>Category</source> - <translation type="unfinished"></translation> + <translation>Kategorie</translation> </message> <message> - <location filename="modlist.cpp" line="836"/> + <location filename="modlist.cpp" line="870"/> <source>Nexus ID</source> - <translation type="unfinished"></translation> + <translation>Nexus ID</translation> + </message> + <message> + <location filename="modlist.cpp" line="871"/> + <source>Installation</source> + <translation>Installation</translation> </message> <message> - <location filename="modlist.cpp" line="838"/> - <location filename="modlist.cpp" line="854"/> + <location filename="modlist.cpp" line="872"/> + <location filename="modlist.cpp" line="888"/> <source>unknown</source> - <translation type="unfinished"></translation> + <translation>unbekannt</translation> </message> <message> - <location filename="modlist.cpp" line="846"/> + <location filename="modlist.cpp" line="880"/> <source>Name of your mods</source> - <translation type="unfinished"></translation> + <translation>Name Ihrer Mods</translation> </message> <message> - <location filename="modlist.cpp" line="848"/> + <location filename="modlist.cpp" line="881"/> + <source>Version of the mod (if available)</source> + <translation>Version des Mod (wenn verfügbar)</translation> + </message> + <message> + <location filename="modlist.cpp" line="882"/> <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source> - <oldsource>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority</oldsource> <translation>Installations-Priorität Ihres Mods. Je höher, desto wichtiger ist dieser Mod und überschreibt damit Dateien von Mods mit niedrigerer Priorität.</translation> </message> <message> - <location filename="modlist.cpp" line="776"/> - <source>Are you sure you want to remove "%1"?</source> - <translation>Bist du sicher dass du "%1" löschen willst?</translation> + <location filename="modlist.cpp" line="884"/> + <source>Category of the mod.</source> + <translation>Kategorie der Mod.</translation> + </message> + <message> + <location filename="modlist.cpp" line="885"/> + <source>Id of the mod as used on Nexus.</source> + <translation>Id der Mod von Nexus.</translation> + </message> + <message> + <location filename="modlist.cpp" line="886"/> + <source>Emblemes to highlight things that might require attention.</source> + <translation>Symbole um Dinge hervorzuheben die evtl. Aufmerksamkeit erfordern.</translation> + </message> + <message> + <location filename="modlist.cpp" line="887"/> + <source>Time this mod was installed</source> + <translation>Zeitpunkt an dem die Mod installiert wurde</translation> </message> </context> <context> @@ -3747,27 +3645,12 @@ p, li { white-space: pre-wrap; } <translation>Neuigkeiten</translation> </message> <message> - <source>about:blank</source> - <translation type="obsolete">about:blank</translation> - </message> - <message> <location filename="motddialog.ui" line="42"/> <source>OK</source> <translation>OK</translation> </message> </context> <context> - <name>MyApplication</name> - <message> - <source>an error occured: %1</source> - <translation type="obsolete">ein Fehler ist aufgetreten: %1</translation> - </message> - <message> - <source>an error occured</source> - <translation type="obsolete">ein Fehler ist aufgetreten</translation> - </message> -</context> -<context> <name>MyFileSystemModel</name> <message> <location filename="overwriteinfodialog.cpp" line="47"/> @@ -3783,1070 +3666,40 @@ p, li { white-space: pre-wrap; } <context> <name>NXMAccessManager</name> <message> - <location filename="nxmaccessmanager.cpp" line="130"/> + <location filename="nxmaccessmanager.cpp" line="144"/> <source>Logging into Nexus</source> - <translation type="unfinished"></translation> + <translation>Logge auf Nexus ein</translation> </message> <message> - <location filename="nxmaccessmanager.cpp" line="145"/> + <location filename="nxmaccessmanager.cpp" line="159"/> <source>timeout</source> <translation>Zeitüberschreitung</translation> </message> <message> - <location filename="nxmaccessmanager.cpp" line="185"/> + <location filename="nxmaccessmanager.cpp" line="200"/> <source>Please check your password</source> <translation>Bitte das Passwort überprüfen</translation> </message> </context> <context> - <name>NXMUrl</name> - <message> - <source>invalid nxm-link: %1</source> - <translation type="obsolete">ungültiger nxm Link: %1</translation> - </message> -</context> -<context> - <name>NexusDialog</name> - <message> - <source>Nexus</source> - <translation type="obsolete">Nexus</translation> - </message> - <message> - <source>Mod ID</source> - <translation type="obsolete">Mod ID</translation> - </message> - <message> - <source>Search</source> - <translation type="obsolete">Suche</translation> - </message> - <message> - <source>about:blank</source> - <translation type="obsolete">about:blank</translation> - </message> - <message> - <source>new</source> - <translation type="obsolete">Neu</translation> - </message> - <message> - <source>login failed: %1</source> - <translation type="obsolete">login fehlgeschlagen: %1</translation> - </message> - <message> - <source>login successful</source> - <translation type="obsolete">Login erfolgreich</translation> - </message> - <message> - <source>failed to start download</source> - <translation type="obsolete">konnte Download nicht starten</translation> - </message> - <message> - <source>login timeout</source> - <translation type="obsolete">Zeitüberschreitung bei der Anmeldung</translation> - </message> - <message> - <source>login error: %1</source> - <translation type="obsolete">Fehler bei der Anmeldung: %1</translation> - </message> - <message> - <source>login success</source> - <translation type="obsolete">Anmeldung erfolgreich</translation> - </message> - <message> - <source>login failed, please check your password</source> - <translation type="obsolete">Anmeldung fehlgeschlagen, bitte überprüfen Sie ihr Kennwort</translation> - </message> - <message> - <source>Download started</source> - <translation type="obsolete">Download gestartet</translation> - </message> - <message> - <source>Download started.</source> - <translation type="obsolete">Download gestartet.</translation> - </message> - <message> - <source>Please enter the ID</source> - <translation type="obsolete">Bitte geben Sie die ID ein</translation> - </message> - <message> - <source>ModID</source> - <translation type="obsolete">ModID</translation> - </message> - <message> - <source>Open by mod id...</source> - <translation type="obsolete">ModID direkt öffnen...</translation> - </message> - <message> - <source>Download started. Manual downloads do not have version information!</source> - <translation type="obsolete">Download gestartet. Manuelle downloads haben keine Versionsinformation!</translation> - </message> -</context> -<context> <name>NexusInterface</name> <message> - <location filename="nexusinterface.cpp" line="218"/> + <location filename="nexusinterface.cpp" line="216"/> <source>Failed to guess mod id for "%1", please pick the correct one</source> - <translation type="unfinished"></translation> + <translation>Konnte die mod id für "%1" nicht erraten. Bitte wähle die richtige aus</translation> </message> <message> - <location filename="nexusinterface.cpp" line="455"/> + <location filename="nexusinterface.cpp" line="481"/> <source>empty response</source> <translation>leere Antwort</translation> </message> <message> - <location filename="nexusinterface.cpp" line="483"/> + <location filename="nexusinterface.cpp" line="510"/> <source>invalid response</source> <translation>ungültige Antwort</translation> </message> </context> <context> - <name>OMOWindow</name> - <message> - <source>Profile</source> - <translation type="obsolete">Profil</translation> - </message> - <message> - <source>Pick a module collection</source> - <translation type="obsolete">Wähle eine Modul-Kollektion</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Create profiles here. Each profile contains its own list of active mods and esps. This way you can quickly switch between setups for different play throughs.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Please note that right now your esp load order is not kept seperate for different profiles.</span></p></body></html></source> - <oldsource><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Create profiles here. Each profile contains its own list of active mods and esps. This way you can quickly switch between setups for different play throughs.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Please note that right now the oblivion.ini file and your esp load order is not kept seperate for different profiles.</span></p></body></html></oldsource> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Erstellen Sie ein Profil. Jedes Profil enthält eine eigene Liste mit aktiven Mods und ESPs. Auf diesem Weg können Sie schnell zwischen verschiedenen Einstellungen für ein Spiel wechseln.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Beachten Sie, dass derzeit die ESP Ladefolge nicht getrennt für verschiedene Profile gespeichert wird.</span></p></body></html></translation> - </message> - <message> - <source>Refresh list</source> - <translation type="obsolete">Liste aktualisieren</translation> - </message> - <message> - <source>Refresh list. This is usually not necessary unless you modified data outside the program.</source> - <translation type="obsolete">Liste aktualisieren. Dies ist normalerweise nicht notwendig, es sei denn Sie haben Daten außerhalb von MO verändert.</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Segoe UI'; font-size:9pt;">List of available mods.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Segoe UI'; font-size:9pt;">Liste der verfügbaren Mods.</span></p></body></html></translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag&amp;drop mods to change their &quot;installation&quot; orders.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Eine Liste der installierten Mods. Benutzen Sie die Checkboxen um Mods zu de/aktivieren und Drag&amp;Drop um die Installations-Reihenfolge zu verändern.</span></p></body></html></translation> - </message> - <message> - <source>Filter</source> - <translation type="obsolete">Filter</translation> - </message> - <message> - <source>Select a filter to only display mods with the specified category.</source> - <translation type="obsolete">Eine Filter wählen um nur Mods in der gewählten Kategorie anzuzeigen.</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Select a filter to only display mods with the specified category. You can set the category from the context menu on the mods.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Wählt einen Filter um nur Mods in der angegebenen Kategorie anzuzeigen. Sie können die Kategorie den Mods über das Kontextmenü zuweisen.</span></p></body></html></translation> - </message> - <message> - <source>Start</source> - <translation type="obsolete">Ausführen</translation> - </message> - <message> - <source>Pick a program to run.</source> - <translation type="obsolete">Wähle das auszuführende Programm.</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Choose the program to run. Once you start using ModOrganizer, you should always run your game and tools from here or through shortcuts created here, otherwise mods installed through MO will not be visible.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">You can add new Tools to this list, but I can't promise tools I haven't tested will work.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Wählen Sie das zu startende Programm. Sobald Sie anfangen Mod Organiser zu benutzen, sollten Sie das Spiel und alle zusätzlichen Programme immer von hier starten oder über Verknüpfungen die von Mod Organiser erstellt wurden. Sonst werden alle Mods die durch Mod Organiser installiert wurden nicht sichtbar sein.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Sie können weitere Programme dieser Liste hinzufügen, aber ich kann nicht garantieren, dass von mir nicht getestete Anwendungen vollständig funktionieren..</span></p></body></html></translation> - </message> - <message> - <source>Run program</source> - <translation type="obsolete">Ausführen</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Run the selected program with ModOrganizer enabled.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Das ausgewählte Programm durch Mod Organiser ausführen.</span></p></body></html></translation> - </message> - <message> - <source>Run</source> - <translation type="obsolete">Starten</translation> - </message> - <message> - <source>Create a shortcut in your start menu to the specified program</source> - <translation type="obsolete">Erzeugt einen Startmenü-Eintrag für das selektierte Programm</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This creates a start menu shortcut that directly starts the selected program with the MO active.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Erstellt einen Eintrag im Startmenü, der direkt das gewählte Programm durch Mod Organsier ausführt.</span></p></body></html></translation> - </message> - <message> - <source>Menu Shortcut</source> - <translation type="obsolete">Startmenü-Verknüpfung</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">create a desktop shortcut for the selected program</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Desktop Verknüpfung für das gewählte Programm erstellen.</span></p></body></html></translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This creates a desktop shortcut that directly starts the selected program with the MO active.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Erstellt eine Desktop Verknüpfung, die direkt das gewählte Programm durch Mord Organiser startet.</span></p></body></html></translation> - </message> - <message> - <source>Desktop Shortcut</source> - <translation type="obsolete">Desktop Verknüpfung</translation> - </message> - <message> - <source>ESPs</source> - <translation type="obsolete">ESPs</translation> - </message> - <message> - <source>save esp list and load order.</source> - <translation type="obsolete">ESP selektion und Reihenfolge speichern.</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Save the list of active mods and load order. This automatically happens if you close MO or start a program.</span></p></body></html></source> - <oldsource><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Save the list of active mods and load order. This automatically happens if you close omo or start a program.</span></p></body></html></oldsource> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Die Liste der aktiven Mods und ihrer Ladefolge speichern. Dies geschieht automatisch wenn Sie Mord Organiser schliessen oder ein Programm starten.</span></p></body></html></translation> - </message> - <message> - <source>Save</source> - <translation type="obsolete">Speichern</translation> - </message> - <message> - <source>List of available esp/esm files</source> - <translation type="obsolete">Liste der verfügbaren ESP / ESM Dateien</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This list contains the esps and esms contained in the active mods. These require their own load order. Use drag&amp;drop to modify this load order. Please note that MO will only save the load order for mods that are active/checked.<br />There is a great tool named &quot;BOSS&quot; to automatically sort these files.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Diese Liste enthält alle ESPs und ESMs die in den aktiven Mods zur Verfügung steht. Diese Dateien benötigen ihre eigene Ladefolge - verwenden Sie Drag&amp;Drop um die Reihenfolge zu ändern. Beachten Sie, dass Mod Organiser nur die Reihenfolge von Mods speichert, die als aktiv markiert sind.<br />Es gibt ein großartiges Programm names &quot;BOSS&quot; um die Dateien automatisch zu sortieren.</span></p></body></html></translation> - </message> - <message> - <source>BSAs</source> - <translation type="obsolete">BSAs</translation> - </message> - <message> - <source>IMPORTANT: You can change the order of BSAs here but installation order of mods has priority over the order specified here!</source> - <translation type="obsolete">WICHTIG: Sie können die Ladereihenfolge der BSAs hier ändern aber die Installationsreihenfolge hat Vorrang vor der Reihenfolge hier!</translation> - </message> - <message> - <source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source> - <translation type="obsolete">Liste der BS Archive. Archive die hier nicht markiert sind werden nicht von MO verwaltet und beachten daher nicht die gewählte Installationsreihenfolge.</translation> - </message> - <message> - <source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by Skyrim. As such they "compete" with loose files in your data directory over which is loaded. -By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored! - -BSAs checked here are loaded in such a way that your installation order is obeyed properly.</source> - <translation type="obsolete">BSA-Dateien sind Archive (vergleichbar mit .zip-Dateien) und enthalten Meshes, Texturen, usw. die vom Spiel benötigt werden. Daher stehen diese Dateien in "Konkurrenz" mit den Einzeldateien anderer Mods darüber, welche geladen werden sollen. -Das Standardverhalten des Spiels ist, alle BSAs automatisch zu laden die den gleichen Namen haben wie ein aktives ESP (z.B. plugin.esp und plugin.bsa) und deren Dateien Vorrang vor Einzeldateien zu geben. Die Installationsreihenfolge die du mit MO konfiguriert hast wird für diese Dateien ignoriert. - -BSAs die du hier markierst werden hingegen anders geladen so dass die Installationsreihenfolge korrekt eingehalten wird.</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a list of all savegames for this game. Hover over a list entry to get detailed information about the save including a list of esps/esms that were used at the time this save was created but aren't active now.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you click &quot;Fix Mods...&quot; in the context menu, MO will try to activate all mods and esps to fix those missing esps. It will not disable anything!</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Dies ist eine Liste aller Spielstände für dieses Spiel. Bewegen Sie den Mauszeiger über einen Eintrag, um genaue Informationen über den Spielstand zu bekommen, inklusive einer Liste aller ESPs / ESMs die im Spielstand verwendet werden, die aber derzeit nicht aktiv sind.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Wenn Sie im Kontextmenü auf &quot;Mods reparieren...&quot; klicken, wird Mod Organiser versuchen die entsprechenden Mods und ESPs zu aktivieren. Es werden dabei kein Eintrag deaktiviert!</span></p></body></html></translation> - </message> - <message> - <source>Refresh list of downloads.</source> - <translation type="obsolete">Downloadliste neu einlesen.</translation> - </message> - <message> - <source>Configure the executables that can be started through Mod Organizer</source> - <translation type="obsolete">Konfigurieren der Programme die von Mod Organiser gestartet werden können</translation> - </message> - <message> - <source>No Problems</source> - <translation type="obsolete">Keine Probleme</translation> - </message> - <message> - <source>This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them. - -!Work in progress! -Right now this has very limited functionality</source> - <translation type="obsolete">Dieser Button wird markiert wenn MO potenzielle Probleme in Ihrer Installation erkennt und bietet Hinweise wie diese zu beheben sind. -Diese Funktion ist noch in arbeit und ist sehr eingeschränkt.</translation> - </message> - <message> - <source>Data</source> - <translation type="obsolete">Data</translation> - </message> - <message> - <source>refresh data-directory overview</source> - <translation type="obsolete">Data-Verzeichnis übersicht neu laden</translation> - </message> - <message> - <source>Refresh the overview. This may take a moment.</source> - <translation type="obsolete">Lädt die Übersicht neu. Dies kann einen Augenblick dauern.</translation> - </message> - <message> - <source>Refresh</source> - <translation type="obsolete">Neu laden</translation> - </message> - <message> - <source>This is an overview of your data directory as visible to the game (and tools). </source> - <oldsource>This is an overview of your data directory as visible to oblivion (and tools). </oldsource> - <translation type="obsolete">Dies ist eine Übersicht des "data"-verzeichnisses so wie es das Spiel zu sehen bekommt.</translation> - </message> - <message> - <source>File</source> - <translation type="obsolete">Datei</translation> - </message> - <message> - <source>Categories</source> - <translation type="obsolete">Kategorien</translation> - </message> - <message> - <source>Mod</source> - <translation type="obsolete">Mod</translation> - </message> - <message> - <source>Filter the above list so that only conflicts are displayed.</source> - <translation type="obsolete">Obere Liste filtern um nur Konflikte anzuzeigen.</translation> - </message> - <message> - <source>Show only conflicts</source> - <translation type="obsolete">Nur Konflikte anzeigen</translation> - </message> - <message> - <source>Saves</source> - <translation type="obsolete">Spielstände</translation> - </message> - <message> - <source>Downloads</source> - <translation type="obsolete">Downloads</translation> - </message> - <message> - <source>Downloaded mods</source> - <translation type="obsolete">Heruntergeladene Mods</translation> - </message> - <message> - <source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source> - <translation type="obsolete">Dies ist eine Liste der Mods die von Nexus heruntergeladen wurden. Doppelklicken Sie um zu installieren.</translation> - </message> - <message> - <source>Compact</source> - <translation type="obsolete">Kompakt</translation> - </message> - <message> - <source>Tool Bar</source> - <translation type="obsolete">Werkzeugleiste</translation> - </message> - <message> - <source>Install Mod</source> - <translation type="obsolete">Mod installieren</translation> - </message> - <message> - <source>Install &Mod</source> - <translation type="obsolete">&Mod installieren</translation> - </message> - <message> - <source>Install a new mod from an archive</source> - <translation type="obsolete">Installiert eine Mod aus einem Archiv</translation> - </message> - <message> - <source>Ctrl+M</source> - <translation type="obsolete">Ctrl+M</translation> - </message> - <message> - <source>Help</source> - <translation type="obsolete">Hilfe</translation> - </message> - <message> - <source>&Help</source> - <translation type="obsolete">&Hilfe</translation> - </message> - <message> - <source>Provides help to almost elements of the UI</source> - <translation type="obsolete">Bietet Hilfestellung für fast alle Elemente des Programms</translation> - </message> - <message> - <source>Ctrl+H</source> - <translation type="obsolete">Ctrl+H</translation> - </message> - <message> - <source>Profiles</source> - <translation type="obsolete">Profile</translation> - </message> - <message> - <source>&Profiles</source> - <translation type="obsolete">&Profile</translation> - </message> - <message> - <source>Configure Profiles</source> - <translation type="obsolete">Profile konfigurieren</translation> - </message> - <message> - <source>Ctrl+P</source> - <translation type="obsolete">Ctrl+P</translation> - </message> - <message> - <source>Executables</source> - <translation type="obsolete">Programme</translation> - </message> - <message> - <source>&Executables</source> - <translation type="obsolete">Programm&e</translation> - </message> - <message> - <source>Ctrl+E</source> - <translation type="obsolete">Ctrl+E</translation> - </message> - <message> - <source>Edit Ini</source> - <translation type="obsolete">Ini editieren</translation> - </message> - <message> - <source>Edit &Ini</source> - <translation type="obsolete">&Ini editieren</translation> - </message> - <message> - <source>Edit the ini file of the current profile</source> - <translation type="obsolete">Konfiguration der ini-Dateien des aktuellen Profils</translation> - </message> - <message> - <source>Ctrl+I</source> - <translation type="obsolete">Ctrl+I</translation> - </message> - <message> - <source>Settings</source> - <translation type="obsolete">Einstellungen</translation> - </message> - <message> - <source>&Settings</source> - <translation type="obsolete">Ein&stellungen</translation> - </message> - <message> - <source>Configure settings and workarounds</source> - <oldsource>Confirgure settings and workarounds</oldsource> - <translation type="obsolete">Einstellungen und Workarounds verwalten</translation> - </message> - <message> - <source>Ctrl+S</source> - <translation type="obsolete">Ctrl+S</translation> - </message> - <message> - <source>Nexus</source> - <translation type="obsolete">Nexus</translation> - </message> - <message> - <source>Search nexus network for more mods</source> - <translation type="obsolete">Durchsuche die passende Seite des Nexus-Netzwerks nach weiteren Mods</translation> - </message> - <message> - <source>Ctrl+N</source> - <translation type="obsolete">Ctrl+N</translation> - </message> - <message> - <source>Update</source> - <translation type="obsolete">Aktualisierung</translation> - </message> - <message> - <source>Mod Organizer is up-to-date</source> - <translation type="obsolete">Mod Organizer ist auf dem neuesten Stand</translation> - </message> - <message> - <source><All></source> - <translation type="obsolete"><Alle></translation> - </message> - <message> - <source><Checked></source> - <translation type="obsolete"><Markierte></translation> - </message> - <message> - <source><Unchecked></source> - <translation type="obsolete"><Nicht markierte></translation> - </message> - <message> - <source>init failed</source> - <translation type="obsolete">Initialisierung fehlgeschlagen</translation> - </message> - <message> - <source>failed to save load order: %1</source> - <translation type="obsolete">Reihenfolge konnt nicht gespeichert werden: %1</translation> - </message> - <message> - <source><Update></source> - <translation type="obsolete"><Update></translation> - </message> - <message> - <source>Name</source> - <translation type="obsolete">Name</translation> - </message> - <message> - <source>load order could not be saved</source> - <translation type="obsolete">Ladereihenfolge konnte nicht gespeichert werden</translation> - </message> - <message> - <source>Please enter a name for the new profile</source> - <translation type="obsolete">Bitte geben Sie einen Namen für das neue Profil an</translation> - </message> - <message> - <source>failed to create profile: %1</source> - <translation type="obsolete">Erstellen des Profils fehlgeschlagen: %1</translation> - </message> - <message> - <source>Downloads in progress</source> - <translation type="obsolete">Download in Bearbeitung</translation> - </message> - <message> - <source>There are still downloads in progress, do you really want to quit?</source> - <translation type="obsolete">Es gibt noch unfertige Downloads, wollen Sie wirklich das Programm beenden?</translation> - </message> - <message> - <source>failed to read savegame: %1</source> - <translation type="obsolete">Spielstand konnte nicht gelesen werden: %1</translation> - </message> - <message> - <source><table cellspacing="5"><tr><td>Save Number</td><td>%1</td></tr><tr><td>Character</td><td>%2</td></tr><tr><td>Level</td><td>%3</td></tr><tr><td>Location</td><td>%4</td></tr><tr><td>Date</td><td>%5</td></tr><tr><td>Screenshot</td><td>%6</td></tr><tr><td>Missing ESPs</td><td><h5>%7</h5></td></tr></table></source> - <translation type="obsolete"><table cellspacing="5"><tr><td>Spielstand Nummer</td><td>%1</td></tr><tr><td>Charakter</td><td>%2</td></tr><tr><td>Stufe</td><td>%3</td></tr><tr><td>Ort</td><td>%4</td></tr><tr><td>Datum</td><td>%5</td></tr><tr><td>Screenshot</td><td>%6</td></tr><tr><td>Fehlende ESPs</td><td><h5>%7</h5></td></tr></table></translation> - </message> - <message> - <source>Failed to start steam</source> - <translation type="obsolete">Konnte Steam nicht starten</translation> - </message> - <message> - <source>Waiting</source> - <translation type="obsolete">Warte</translation> - </message> - <message> - <source>Please press OK once you're logged into steam.</source> - <translation type="obsolete">Bitte drücken sie OK sobald sie bei Steam angemeldet sind.</translation> - </message> - <message> - <source>"%1" not found</source> - <translation type="obsolete">"%1" nicht gefunden</translation> - </message> - <message> - <source>Start steam?</source> - <translation type="obsolete">Steam starten?</translation> - </message> - <message> - <source>Steam is required to be running already to correctly start Mod Organizer. Should MO try to start steam now?</source> - <translation type="obsolete">Steam muss bereits laufen damit Mod Organizer korrekt gestartet werden kann. Soll MO jetzt versuchen Steam zu starten?</translation> - </message> - <message> - <source>Never</source> - <translation type="obsolete">Nie</translation> - </message> - <message> - <source>Also in: </source> - <translation type="obsolete">Ebenfalls in:</translation> - </message> - <message> - <source>No conflict</source> - <translation type="obsolete">Keine Konflikte</translation> - </message> - <message> - <source><Edit...></source> - <translation type="obsolete"><Bearbeiten...></translation> - </message> - <message> - <source>Choose Mod</source> - <translation type="obsolete">Mod wählen</translation> - </message> - <message> - <source>Mod Archive (*.zip *.7z *.rar)</source> - <translation type="obsolete">Mod Archiv (*.zip, *.7z, *.rar)</translation> - </message> - <message> - <source>Installation successful</source> - <translation type="obsolete">Installation erfolgreich</translation> - </message> - <message> - <source>Configure Mod</source> - <translation type="obsolete">Mod konfigurieren</translation> - </message> - <message> - <source>This mod contains ini tweaks. Do you want to configure them now?</source> - <translation type="obsolete">Diese Mod enthält Anpassungen für die Ini datei. Wollen Sie diese nun konfigurieren?</translation> - </message> - <message> - <source>mod "%1" not found</source> - <translation type="obsolete">mod "%1" nicht gefunden</translation> - </message> - <message> - <source>Installation cancelled</source> - <translation type="obsolete">Installation abgebrochen</translation> - </message> - <message> - <source>The mod was not installed completely.</source> - <translation type="obsolete">Die mod wurde nicht erfolgreich installiert.</translation> - </message> - <message> - <source>failed to refresh directory structure</source> - <translation type="obsolete">Verzeichnisstruktur konnte nicht aktualisiert werden</translation> - </message> - <message> - <source>Download started</source> - <translation type="obsolete">Download gestartet</translation> - </message> - <message> - <source>failed to update mod list: %1</source> - <translation type="obsolete">Aktualisieren der Modliste fehlgeschlagen: %1</translation> - </message> - <message> - <source>failed to spawn notepad.exe: %1</source> - <translation type="obsolete">notepad.exe konnte nicht aufgerufen werden: %1</translation> - </message> - <message> - <source>Ini files are local to the currently selected profile.</source> - <translation type="obsolete">Ini Dateien sind lokal im gewählten Profil gespeichert.</translation> - </message> - <message> - <source>failed to open %1</source> - <translation type="obsolete">%1 konnte nicht geöffnet werden</translation> - </message> - <message> - <source>Name not valid</source> - <translation type="obsolete">Name nicht gültig</translation> - </message> - <message> - <source>failed to change origin name: %1</source> - <translation type="obsolete">konnte den Namen der Dateiquelle nicht ändern: %1</translation> - </message> - <message> - <source><No category></source> - <translation type="obsolete"><Ohne Kategorie></translation> - </message> - <message> - <source>New name</source> - <translation type="obsolete">Neuer Name</translation> - </message> - <message> - <source>A mod with that name exists already</source> - <translation type="obsolete">Ein Mod mit diesem Namen existiert bereits</translation> - </message> - <message> - <source>failed to rename mod: %1</source> - <translation type="obsolete">konnte die Mod nicht umbenennen: %1</translation> - </message> - <message> - <source>failed to remove mod: %1</source> - <translation type="obsolete">konnte die mod nicht entfernen: %1</translation> - </message> - <message> - <source>Failed</source> - <translation type="obsolete">Fehlgeschlagen</translation> - </message> - <message> - <source>Installation file no longer exists</source> - <translation type="obsolete">Installationsdatei existiert nicht mehr</translation> - </message> - <message> - <source>Mods installed with old versions of MO can't be reinstalled in this way.</source> - <translation type="obsolete">Mods die mit alten Versionen von MO installiert wurden können nicht auf diese Weise neu-installiert werden.</translation> - </message> - <message> - <source>Extract BSA</source> - <translation type="obsolete">BSA extrahieren</translation> - </message> - <message> - <source>This mod contains at least one BSA. Do you want to unpack it? -(This removes the BSA after completion. If you don't know about BSAs, just select no)</source> - <translation type="obsolete">Diese mod enthält mindestens eine BSA datei. Soll sie entpackt werden? -(Das BSA wird danach gelöscht. Wenn Sie nicht wissen was BSAs sind wählen Sie am besten \"nein\")</translation> - </message> - <message> - <source>failed to read %1: %2</source> - <translation type="obsolete">konnte "%1" nicht lesen: %2</translation> - </message> - <message> - <source>This archive contains invalid hashes. Some files may be broken.</source> - <translation type="obsolete">Dieses Archiv enthält ungültige Prüfsummen. Einige Dateien sind evtl. defekt.</translation> - </message> - <message> - <source>Nexus ID for this Mod is unknown</source> - <translation type="obsolete">Nexus ID für diese Mod unbekannt</translation> - </message> - <message> - <source>Priority</source> - <translation type="obsolete">Priorität</translation> - </message> - <message> - <source>Choose Priority</source> - <translation type="obsolete">Priorität wählen</translation> - </message> - <message> - <source>Install Mod...</source> - <translation type="obsolete">Mod installieren...</translation> - </message> - <message> - <source>Set Priority</source> - <translation type="obsolete">Priorität setzen</translation> - </message> - <message> - <source>Highest</source> - <translation type="obsolete">Höchste</translation> - </message> - <message> - <source>Manually...</source> - <translation type="obsolete">Manuell...</translation> - </message> - <message> - <source>Lowest</source> - <translation type="obsolete">Niedrigste</translation> - </message> - <message> - <source>Rename Mod...</source> - <translation type="obsolete">Mod umbenennen...</translation> - </message> - <message> - <source>Remove Mod...</source> - <translation type="obsolete">Mod entfernen...</translation> - </message> - <message> - <source>Reinstall Mod</source> - <translation type="obsolete">Mod neu installieren</translation> - </message> - <message> - <source>Sync to Mods...</source> - <translation type="obsolete">Mods synchronisieren...</translation> - </message> - <message> - <source>Exception: </source> - <translation type="obsolete">Ausnahme:</translation> - </message> - <message> - <source>Unknown exception</source> - <translation type="obsolete">Unbekannte Ausnahme</translation> - </message> - <message> - <source>Can't change download directory while downloads are in progress!</source> - <translation type="obsolete">Das download verzeichnis kann nicht geändert werden solange Downloads laufen!</translation> - </message> - <message> - <source>Select binary</source> - <translation type="obsolete">Binary wählen</translation> - </message> - <message> - <source>Binary (*.exe)</source> - <translation type="obsolete">Binary (*.exe)</translation> - </message> - <message> - <source>Enter Name</source> - <translation type="obsolete">Namen eingeben</translation> - </message> - <message> - <source>Please enter a name for the executable</source> - <translation type="obsolete">Bitte geben Sie einen Namen für die Anwendungsdatei ein</translation> - </message> - <message> - <source>Not an executable</source> - <translation type="obsolete">Datei ist nicht ausführbar</translation> - </message> - <message> - <source>This is not a recognized executable</source> - <translation type="obsolete">Diese Datei wurde nicht als ausführbar erkannt.</translation> - </message> - <message> - <source>Replace file?</source> - <translation type="obsolete">Datei ersetzen?</translation> - </message> - <message> - <source>There already is a hidden version of this file. Replace it?</source> - <translation type="obsolete">Es existiert bereits eine versteckte Variante von dieser Datei. Soll diese ersetzt werden?</translation> - </message> - <message> - <source>File operation failed</source> - <translation type="obsolete">Dateioperation fehlgeschlagen</translation> - </message> - <message> - <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> - <translation type="obsolete">Konnte "%1" nicht löschen. Fehlen Ihnen evtl. die nötigen Berechtigungen?</translation> - </message> - <message> - <source>failed to rename %1 to %2</source> - <translation type="obsolete">konnte "%1" nicht in "%2" umbenennen</translation> - </message> - <message> - <source>There already is a visible version of this file. Replace it?</source> - <translation type="obsolete">Es existiert bereits eine sichtbare Variante dieser Datei. Soll diese ersetzt werden?</translation> - </message> - <message> - <source>Open/Execute</source> - <translation type="obsolete">Öffnen/Ausführen</translation> - </message> - <message> - <source>Add as Executable</source> - <translation type="obsolete">Als Anwendung hinzufügen</translation> - </message> - <message> - <source>Un-Hide</source> - <translation type="obsolete">Sichtbar machen</translation> - </message> - <message> - <source>Hide</source> - <translation type="obsolete">Verstecken</translation> - </message> - <message> - <source>login successful</source> - <translation type="obsolete">login erfolgreich</translation> - </message> - <message> - <source>login failed: %1. Trying to download anyway</source> - <translation type="obsolete">login fehlgeschlagen: %1. Der Download scheitert vermutlich</translation> - </message> - <message> - <source>login failed: %1. You need to log-in with Nexus to update MO</source> - <translation type="obsolete">login fehlgeschlagen: %1. Sie müssen auf Nexus eingeloggt sein um MO zu aktualisieren.</translation> - </message> - <message> - <source>Error</source> - <translation type="obsolete">Fehler</translation> - </message> - <message> - <source>failed to extract %1 (errorcode %2)</source> - <translation type="obsolete">konnte "%1" nicht extrahieren (fehlercode %2)</translation> - </message> - <message> - <source>Extract...</source> - <translation type="obsolete">Extrahieren...</translation> - </message> - <message> - <source>Edit...</source> - <translation type="obsolete">Editieren...</translation> - </message> - <message> - <source>Enable all visible</source> - <translation type="obsolete">Alle sichtbaren aktvieren</translation> - </message> - <message> - <source>Disable all visible</source> - <translation type="obsolete">Alle sichtbaren deaktvieren</translation> - </message> - <message> - <source>Information...</source> - <translation type="obsolete">Informationen...</translation> - </message> - <message> - <source>Set Category</source> - <translation type="obsolete">Kategorie festlegen</translation> - </message> - <message> - <source>Problems</source> - <translation type="obsolete">Probleme</translation> - </message> - <message> - <source>There are potential problems with your setup</source> - <translation type="obsolete">Es bestehen möglicherweise Probleme mit Ihrer Konfiguration</translation> - </message> - <message> - <source>Everything seems to be in order</source> - <translation type="obsolete">Alles in bester Ordnung</translation> - </message> - <message> - <source><li>Your BSAs may be set up incorrectly. The game may not run! Please check the BSA tab</li></source> - <translation type="obsolete"><li>Ihre BSA sind eventuell falsch eingerichtet. Das Spiel wird eventuell nicht funktionieren! Bitte prüfen Sie den BSA-Reiter</li></translation> - </message> - <message> - <source><li>NCC not installed. You won't be able to install some scripted mod-installers. Get NCC from <a href="http://skyrim.nexusmods.com/downloads/file.php?id=1334">the MO page on nexus</a></li></source> - <translation type="obsolete"><li>NCC ist nicht installiert. Sie werden einige geskriptete mod-Archive nicht installieren können. Sie können NCC von <a href="http://skyrim.nexusmods.com/downloads/file.php?id=1334">der MO seite des Nexus herunterladen</a></li></translation> - </message> - <message> - <source><li>NCC version may be incompatible.</li></source> - <translation type="obsolete"><li>Die NCC version ist möglicherweise nicht kompatibel.</li></translation> - </message> - <message> - <source><li>dotNet is not installed or outdated. This is required to use NCC. Get it from here: <a href="%1">%1</a></li></source> - <translation type="obsolete"><li>dotNet ist nicht installiert oder veraltet. Dies wird benötigt um NCC nutzen zu können. Laden Sie die korrekte Version von <a href="%1">%1</a> herunter</li></translation> - </message> - <message> - <source>Click here if you have any problems with Mod Organizer</source> - <translation type="obsolete">Klicken Sie hier wenn Sie Probleme mit Mod Organizer haben</translation> - </message> - <message> - <source>Help on UI</source> - <translation type="obsolete">Hilfe zur Oberfläche</translation> - </message> - <message> - <source>Documentation Wiki</source> - <translation type="obsolete">Wiki Dokumentation</translation> - </message> - <message> - <source>Report Issue</source> - <translation type="obsolete">Fehler melden</translation> - </message> - <message> - <source>Failed to start %1</source> - <translation type="obsolete">Konnte "%1" nicht starten</translation> - </message> - <message> - <source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source> - <translation type="obsolete">Steam muss laufen um das Spiel korrekt zu starten. Soll MO versuchen Steam zu starten?</translation> - </message> - <message> - <source>Also in: <br></source> - <translation type="obsolete">Auch in: <br></translation> - </message> - <message> - <source>This bsa is enabled in the ini file so it may be required!</source> - <translation type="obsolete">Dieses Archiv ist in der ini Konfiguration gelistet, daher ist es möglicherweise erforderlich!</translation> - </message> - <message> - <source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source> - <translation type="obsolete">Dieses Archiv wird vom Spiel geladen werden da ein Plugin mit dem selben Namen aktiv ist aber die enthaltenen Dateien werden sich nicht an Ihre Installations-Reihenfolge halten!</translation> - </message> - <message> - <source>Mod Archive</source> - <translation type="obsolete">Mod Archiv</translation> - </message> - <message> - <source>Check all for update</source> - <translation type="obsolete">Alle auf Aktualisierungen überprüfen</translation> - </message> - <message> - <source>Visit on Nexus</source> - <translation type="obsolete">Auf Nexus besuchen</translation> - </message> - <message> - <source>Open in explorer</source> - <translation type="obsolete">In Explorer öffnen</translation> - </message> - <message> - <source>Fix Mods...</source> - <translation type="obsolete">Mods reparieren...</translation> - </message> - <message> - <source>failed to remove %1</source> - <translation type="obsolete">%1 konnte nicht entfernt werden</translation> - </message> - <message> - <source>failed to create %1</source> - <translation type="obsolete">%1 konnte nicht erstellt werden</translation> - </message> - <message> - <source>Download failed</source> - <translation type="obsolete">Download fehlgeschlagen</translation> - </message> - <message> - <source>failed to open archive: %1</source> - <translation type="obsolete">Öffnen des Archivs fehlgeschlagen: %1</translation> - </message> - <message> - <source>failed to write to file %1</source> - <translation type="obsolete">Speichern in Datei "%1" fehlgeschlagen</translation> - </message> - <message> - <source>%1 written</source> - <translation type="obsolete">"%1" gespeichert</translation> - </message> - <message> - <source>Update available</source> - <translation type="obsolete">Aktualisierung verfügbar</translation> - </message> - <message> - <source>Write To File...</source> - <translation type="obsolete">In Datei speichern...</translation> - </message> -</context> -<context> <name>OverwriteInfoDialog</name> <message> <location filename="overwriteinfodialog.ui" line="14"/> @@ -4856,7 +3709,7 @@ Diese Funktion ist noch in arbeit und ist sehr eingeschränkt.</translation> <message> <location filename="overwriteinfodialog.ui" line="39"/> <source>You can use drag&drop to move files and directories to regular mods.</source> - <translation type="unfinished"></translation> + <translation>Sie können per Drag&Drop Dateien und Ordner zu regulären Mods hinzufügen.</translation> </message> <message> <location filename="overwriteinfodialog.cpp" line="90"/> @@ -4879,13 +3732,9 @@ Diese Funktion ist noch in arbeit und ist sehr eingeschränkt.</translation> <translation>&Neuer Ordner</translation> </message> <message> - <source>Failed to delete %1</source> - <translation type="obsolete">"%1" konnte nicht gelöscht werden</translation> - </message> - <message> <location filename="overwriteinfodialog.cpp" line="136"/> <source>Failed to delete "%1"</source> - <translation type="unfinished"></translation> + <translation>"%1" konnte nicht gelöscht werden</translation> </message> <message> <location filename="overwriteinfodialog.cpp" line="147"/> @@ -4918,141 +3767,120 @@ Diese Funktion ist noch in arbeit und ist sehr eingeschränkt.</translation> <context> <name>PluginList</name> <message> - <location filename="pluginlist.cpp" line="111"/> + <location filename="pluginlist.cpp" line="103"/> + <source>Name</source> + <translation>Name</translation> + </message> + <message> + <location filename="pluginlist.cpp" line="104"/> + <source>Priority</source> + <translation>Priorität</translation> + </message> + <message> + <location filename="pluginlist.cpp" line="105"/> <source>Mod Index</source> - <translation type="unfinished"></translation> + <translation>Mod Index</translation> </message> <message> - <location filename="pluginlist.cpp" line="112"/> + <location filename="pluginlist.cpp" line="106"/> <source>Flags</source> - <translation type="unfinished"></translation> + <translation>Markierungen</translation> </message> <message> - <location filename="pluginlist.cpp" line="113"/> - <location filename="pluginlist.cpp" line="125"/> + <location filename="pluginlist.cpp" line="107"/> + <location filename="pluginlist.cpp" line="119"/> <source>unknown</source> - <translation type="unfinished"></translation> + <translation>unbekannt</translation> </message> <message> - <location filename="pluginlist.cpp" line="121"/> + <location filename="pluginlist.cpp" line="115"/> <source>Name of your mods</source> - <translation type="unfinished"></translation> + <translation>Namen Ihrer Mods</translation> </message> <message> - <location filename="pluginlist.cpp" line="122"/> + <location filename="pluginlist.cpp" line="116"/> <source>Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority.</source> - <translation type="unfinished"></translation> + <translation>Lade-Reihenfolge des Plugins.. Je höher desto "wichtiger" ist es und überschreibt damit Daten von Plugins mit niedrigerer Priorität.</translation> </message> <message> - <location filename="pluginlist.cpp" line="124"/> + <location filename="pluginlist.cpp" line="118"/> <source>The modindex determins the formids of objects originating from this mods.</source> - <translation type="unfinished"></translation> + <translation>Der ModIndex bestimmt die FormIDs von Objekten die aus dieser Mod stammen.</translation> </message> <message> - <location filename="pluginlist.cpp" line="165"/> + <location filename="pluginlist.cpp" line="159"/> <source>failed to update esp info for file %1 (source id: %2), error: %3</source> - <translation type="unfinished"></translation> + <translation>konnte die esp information für %1 (quell id: %2) nicht aktualisieren. Fehler: %3</translation> </message> <message> - <location filename="pluginlist.cpp" line="233"/> + <location filename="pluginlist.cpp" line="227"/> <source>esp not found: %1</source> - <translation>ESP nicht gefunden: %1</translation> + <translation>esp nicht gefunden: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="240"/> - <location filename="pluginlist.cpp" line="252"/> + <location filename="pluginlist.cpp" line="234"/> + <location filename="pluginlist.cpp" line="246"/> <source>Confirm</source> - <translation type="unfinished">Bestätigen</translation> + <translation>Bestätigen</translation> </message> <message> - <location filename="pluginlist.cpp" line="240"/> + <location filename="pluginlist.cpp" line="234"/> <source>Really enable all plugins?</source> - <translation type="unfinished"></translation> + <translation>Wirklich alle Plugins aktivieren?</translation> </message> <message> - <location filename="pluginlist.cpp" line="252"/> + <location filename="pluginlist.cpp" line="246"/> <source>Really disable all plugins?</source> - <translation type="unfinished"></translation> + <translation>Wirklich alle Plugins deaktivieren?</translation> </message> <message> - <location filename="pluginlist.cpp" line="380"/> + <location filename="pluginlist.cpp" line="397"/> <source>The file containing locked plugin indices is broken</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>failed to open output file: %1</source> - <translation type="obsolete">konnte die Ausgabedatei nicht öffnen: %1</translation> + <translation>Die Datei welche die Indizes gesperrter Plugins enthält ist kaputt</translation> </message> <message> - <location filename="pluginlist.cpp" line="418"/> + <location filename="pluginlist.cpp" line="438"/> <source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source> <translation>Einige Ihrer Plugins haben ungültige Namen! Diese Plugins können nicht vom Spiel geladen werden. Die Datei mo_interface.log enthält eine Liste der betroffenen Plugins. Bitte benennen Sie diese um.</translation> </message> <message> - <location filename="pluginlist.cpp" line="644"/> - <source>BOSS dll incompatible</source> - <translation type="unfinished"></translation> + <location filename="pluginlist.cpp" line="804"/> + <source><b>Origin</b>: %1</source> + <translation><b>Ursprung</b>: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="987"/> - <source>Missing Masters</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="pluginlist.cpp" line="993"/> - <source>Enabled Masters</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="pluginlist.cpp" line="1134"/> - <source>failed to restore load order for %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>min</source> - <translation type="obsolete">min</translation> + <location filename="pluginlist.cpp" line="806"/> + <source>Author</source> + <translation>Autor</translation> </message> <message> - <source>max</source> - <translation type="obsolete">max</translation> + <location filename="pluginlist.cpp" line="809"/> + <source>Description</source> + <translation>Beschreibung</translation> </message> <message> - <location filename="pluginlist.cpp" line="983"/> + <location filename="pluginlist.cpp" line="802"/> <source>This plugin can't be disabled (enforced by the game)</source> <translation>Dieses Plugin kann nicht deaktiviert werden (vom Spiel benötigt)</translation> </message> <message> - <location filename="pluginlist.cpp" line="985"/> <source>Origin: %1</source> - <translation>Ursprung: %1</translation> - </message> - <message> - <location filename="pluginlist.cpp" line="109"/> - <source>Name</source> - <translation>Name</translation> - </message> - <message> - <source>Names of your mods</source> - <translation type="obsolete">Namen Ihrer Mods</translation> - </message> - <message> - <location filename="pluginlist.cpp" line="110"/> - <source>Priority</source> - <translation>Priorität</translation> + <translation type="obsolete">Ursprung: %1</translation> </message> <message> - <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source> - <oldsource>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority</oldsource> - <translation type="obsolete">Installations-Priorität Ihres Mods. Je höher, desto wichtiger ist dieser Mod und überschreibt damit Dateien von Mods mit niedrigerer Priorität.</translation> + <location filename="pluginlist.cpp" line="812"/> + <source>Missing Masters</source> + <translation>Fehlende Master</translation> </message> <message> - <source>ModIndex</source> - <translation type="obsolete">Mod Index</translation> + <location filename="pluginlist.cpp" line="819"/> + <source>Enabled Masters</source> + <translation>Aktivierte Master</translation> </message> <message> - <source>This index determines the id of items, spells, ... introduced by the mod. Their id will be "xxyyyyyy" where "xx" is this index which "yyyyyy" is determined by the mod itself.</source> - <oldsource>This index determines the id of items, spells, ... introduced by the mod. Their id will be "xxyyyyyy"where xx is this index which yyyyyy is determined by the mod itself.</oldsource> - <translation type="obsolete">Dieser Index legt die ID von Gegenständen, Zaubersprüchen, etc. fest, die mit dem Mod eingeführt werden. Die ID wird "xxyyyyyy" sein, wobei "xx" dieser Index ist und "yyyyyy" vom Mod selbst bestimmt wird.</translation> + <location filename="pluginlist.cpp" line="960"/> + <source>failed to restore load order for %1</source> + <translation>Konnte die Ladereihenfolge für %1 nicht wiederherstellen</translation> </message> </context> <context> @@ -5060,12 +3888,12 @@ Diese Funktion ist noch in arbeit und ist sehr eingeschränkt.</translation> <message> <location filename="previewdialog.ui" line="14"/> <source>Preview</source> - <translation type="unfinished"></translation> + <translation>Vorschau</translation> </message> <message> <location filename="previewdialog.ui" line="78"/> <source>Close</source> - <translation type="unfinished">Schliessen</translation> + <translation>Schliessen</translation> </message> </context> <context> @@ -5073,7 +3901,7 @@ Diese Funktion ist noch in arbeit und ist sehr eingeschränkt.</translation> <message> <location filename="problemsdialog.ui" line="14"/> <source>Problems</source> - <translation type="unfinished">Probleme</translation> + <translation>Probleme</translation> </message> <message> <location filename="problemsdialog.ui" line="49"/> @@ -5082,105 +3910,105 @@ Diese Funktion ist noch in arbeit und ist sehr eingeschränkt.</translation> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html></source> - <oldsource><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><br /></p></body></html></oldsource> - <translation type="unfinished"></translation> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0p;"><br /></p></body></html></translation> </message> <message> <location filename="problemsdialog.ui" line="75"/> <source>Close</source> - <translation type="unfinished">Schliessen</translation> + <translation>Schliessen</translation> </message> <message> <location filename="problemsdialog.cpp" line="44"/> <location filename="problemsdialog.cpp" line="45"/> <source>Fix</source> - <translation type="unfinished"></translation> + <translation>Beheben</translation> </message> <message> <location filename="problemsdialog.cpp" line="49"/> <source>No guided fix</source> - <translation type="unfinished"></translation> + <translation>Keine geführte Problembehandlung</translation> </message> </context> <context> <name>Profile</name> <message> - <source>failed to apply ini tweaks</source> - <translation type="obsolete">konnte Ini Anpassungen nicht anwenden</translation> - </message> - <message> <location filename="profile.cpp" line="59"/> <source>invalid profile name %1</source> - <translation type="unfinished"></translation> + <translation>Ungültiger Profilname %1</translation> </message> <message> <location filename="profile.cpp" line="63"/> <source>failed to create %1</source> - <translation type="unfinished">%1 konnte nicht erstellt werden</translation> + <translation>%1 konnte nicht erstellt werden</translation> </message> <message> - <location filename="profile.cpp" line="182"/> + <location filename="profile.cpp" line="184"/> <source>failed to write mod list: %1</source> - <translation type="unfinished"></translation> + <translation>Aktualisieren der Modliste fehlgeschlagen: %1</translation> </message> <message> - <location filename="profile.cpp" line="193"/> + <location filename="profile.cpp" line="195"/> <source>failed to update tweaked ini file, wrong settings may be used: %1</source> - <translation type="unfinished"></translation> + <translation>Kombination der "ini tweaks" gescheitert, es werden evtl. falsche Spieleinstellungen verwendet: %1</translation> </message> <message> - <location filename="profile.cpp" line="223"/> + <location filename="profile.cpp" line="226"/> <source>failed to create tweaked ini: %1</source> - <translation type="unfinished"></translation> + <translation>konnte keine .ini-datei aus den Mod-spezifischen Einstellungen erzeugen: %1</translation> + </message> + <message> + <location filename="profile.cpp" line="236"/> + <source>"%1" is missing or inaccessible</source> + <translation>"%1" fehlt oder ist zugriffsbeschränkt</translation> + </message> + <message> + <location filename="profile.cpp" line="281"/> + <location filename="profile.cpp" line="313"/> + <location filename="profile.cpp" line="415"/> + <location filename="profile.cpp" line="432"/> + <location filename="profile.cpp" line="442"/> + <source>invalid index %1</source> + <translation>ungültiger index %1</translation> </message> <message> - <location filename="profile.cpp" line="371"/> + <location filename="profile.cpp" line="396"/> <source>Overwrite directory couldn't be parsed</source> - <translation type="unfinished"></translation> + <translation>Das Verzeichnis "Overwrite" konnte nicht gelesen werden</translation> </message> <message> - <location filename="profile.cpp" line="380"/> + <location filename="profile.cpp" line="405"/> <source>invalid priority %1</source> <translation>Ungültige Priorität %1</translation> </message> <message> - <location filename="profile.cpp" line="568"/> + <location filename="profile.cpp" line="592"/> <source>failed to parse ini file (%1)</source> - <translation type="unfinished"></translation> + <translation>Konnte ini-datei (%1) nicht auslesen</translation> </message> <message> - <location filename="profile.cpp" line="596"/> + <location filename="profile.cpp" line="620"/> <source>failed to parse ini file (%1): %2</source> <translation>Konnte ini-datei (%1) nicht auslesen: %2</translation> </message> <message> - <location filename="profile.cpp" line="620"/> - <location filename="profile.cpp" line="657"/> + <location filename="profile.cpp" line="644"/> + <location filename="profile.cpp" line="681"/> <source>failed to modify "%1"</source> - <translation type="unfinished"></translation> + <translation>Konnte "%1" nicht verändern</translation> </message> <message> - <location filename="profile.cpp" line="685"/> + <location filename="profile.cpp" line="709"/> <source>Delete savegames?</source> - <translation type="unfinished"></translation> + <translation>Spielstände löschen?</translation> </message> <message> - <location filename="profile.cpp" line="686"/> + <location filename="profile.cpp" line="710"/> <source>Do you want to delete local savegames? (If you select "No", the save games will show up again if you re-enable local savegames)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profile.cpp" line="276"/> - <location filename="profile.cpp" line="305"/> - <location filename="profile.cpp" line="390"/> - <location filename="profile.cpp" line="408"/> - <location filename="profile.cpp" line="418"/> - <source>invalid index %1</source> - <translation>ungültiger index %1</translation> + <translation>Wollen Sie die lokalen Spielstände löschen? (Wenn Sie "Nein" wählen werden die Spielstände wieder sichtbar sobald Sie das Feature wieder aktivieren)</translation> </message> </context> <context> @@ -5238,66 +4066,23 @@ p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Eine Liste der Profile. Jedes Profil enthält eine eigene Liste mit Mods und ihrer Installationsreihenfolge aus einem gemeinsamen Pool, eine Konfiguration von aktivierten ESPs und ESMs, eine Kopie der INI Datei des Spiels und einen optionalen Spielstands-Filter.</p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Bemerkung</span>Aus technischen Grünen ist es derzeit nicht möglich, eine getrennte Reihenfolge für ESPs anzugeben. Das bedeutet dass die Reihenfolge, in der Mods geladen werden in jedem Profil die gleiche ist.</p></body></html></translation> - </message> - <message> - <source>Savegame Filter</source> - <translation type="obsolete">Spielstand Filter</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Experimental</span><span style=" font-size:8pt;"> Enter a charactername to hide all save games from other characters in the game.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Experimentell</span><span style=" font-size:8pt;">Geben Sie den Namen eines Ihrer Spiel-Charaktere ein um alle Spielstände der anderen Charaktere zu verbergen.</span></p></body></html></translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Experimental</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Here you can enter a character name to filter the save games displayed inside the game. This makes it easy to have concurrent walkthroughs with different characters.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Note</span> however that autosave and quicksave are always displayed and overwritten even if they belong to a different character.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Note</span> also this may confuse the savegame counter which is why this feature is marked experimental.</p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Experimentell</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Hier können Sie den Namen eines Spielcharakters eingeben um die Anzeige der Spielstände zu filtern. Dies vereinfach das gleichzeitige Durchspielen mit mehreren Charakteren.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Bemerkung: </span>Derzeit werden auch Auto- und Quicksaves gemeinsam verwendet und somit überschrieben!</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Bemerkung: </span>desweiteren wird durch diese Funktion der automatische Zähler der Spielstände verwirrt, weswegen der Filter als experimentell zu betrachten ist.</p></body></html></translation> - </message> - <message> - <location filename="profilesdialog.ui" line="51"/> - <source>This ensures data files from mods are actually used. You want to enable this unless you use a different tool for Archive Invalidation.</source> - <translation>Stellt sicher, dass einzelne Dateien von Mods tatsächlich verwendet werden. Sollte aktiv sein, es sei denn Sie verwenden ein eigenes Tool um die Archiv Invalidierung durchzuführen.</translation> - </message> - <message> - <source>The games Oblivion, Fallout 3 and Fallout NV contain a bug which prevents texture and mesh replacers (that is: all modifications to meshes and textures already in game) from working. -The Mod Organizer uses a workaround called "BSA redirection" (google is your friend) to fix this issue reliably and without further work. Simply activate and forget. - -With Skyrim this bug seems to be fixed.</source> - <translation type="obsolete">Die Spiele Oblivion, Fallout 3 und Fallout New Vegas enthalten einen Bug, der verhindert dass Texturen und Meshes ersetzt werden können (d.h. alle Modifkationen von Meshes und Texturen die bereits im Spiel vorhanden sind). Mod Organiser benutzt hierzu die sogenannte "BSA Redirection" (siehe Google) - auf diese Weise wird das Problem zuverlässig und ohne dass weitere Schritte nötig werden gelöst. Aktivieren Sie diese Option. - -In Skyrim wurde der Fehler von Bethesda behoben.</translation> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Bemerkung</span>Aus technischen Gründen ist es derzeit nicht möglich, eine getrennte Reihenfolge für ESPs anzugeben. Das bedeutet dass die Reihenfolge, in der Mods geladen werden in jedem Profil die gleiche ist.</p></body></html></translation> </message> <message> <location filename="profilesdialog.ui" line="38"/> <location filename="profilesdialog.ui" line="41"/> <source>If checked, savegames are local to this profile and will not appear when starting with a different profile.</source> - <translation type="unfinished"></translation> + <translation>Wenn dies aktiviert ist werden Spielstände lokal in diesem Profil gespeichert und sind nicht sichtbar wenn das Spiel mit einem anderen Profil gestartet wird.</translation> </message> <message> <location filename="profilesdialog.ui" line="44"/> <source>Local Savegames</source> - <translation type="unfinished"></translation> + <translation>Lokale Spielstände</translation> + </message> + <message> + <location filename="profilesdialog.ui" line="51"/> + <source>This ensures data files from mods are actually used. You want to enable this unless you use a different tool for Archive Invalidation.</source> + <translation>Stellt sicher, dass einzelne Dateien von Mods tatsächlich verwendet werden. Sollte aktiv sein, es sei denn Sie verwenden ein eigenes Tool um die Archiv Invalidierung durchzuführen.</translation> </message> <message> <location filename="profilesdialog.ui" line="54"/> @@ -5363,18 +4148,18 @@ p, li { white-space: pre-wrap; } <message> <location filename="profilesdialog.ui" line="123"/> <source>Rename</source> - <translation type="unfinished"></translation> + <translation>Umbenennen</translation> </message> <message> <location filename="profilesdialog.ui" line="133"/> <location filename="profilesdialog.ui" line="136"/> <source>Transfer save games to the selected profile.</source> - <translation type="unfinished"></translation> + <translation>Spielstände in das gewählte Profil übertragen.</translation> </message> <message> <location filename="profilesdialog.ui" line="139"/> <source>Transfer Saves</source> - <translation type="unfinished"></translation> + <translation>Spielstände übertragen</translation> </message> <message> <location filename="profilesdialog.ui" line="162"/> @@ -5410,12 +4195,12 @@ p, li { white-space: pre-wrap; } <message> <location filename="profilesdialog.cpp" line="165"/> <source>Invalid name</source> - <translation type="unfinished"></translation> + <translation>Ungültiger Name</translation> </message> <message> <location filename="profilesdialog.cpp" line="165"/> <source>Invalid profile name</source> - <translation type="unfinished"></translation> + <translation>Ungültiger Profilname</translation> </message> <message> <location filename="profilesdialog.cpp" line="172"/> @@ -5425,31 +4210,27 @@ p, li { white-space: pre-wrap; } <message> <location filename="profilesdialog.cpp" line="172"/> <source>Are you sure you want to remove this profile (including local savegames if any)?</source> - <translation type="unfinished"></translation> + <translation>Sind sie sicher dass sie dieses Profil (inklusive der lokalen Spielstände) löschen wollen?</translation> </message> <message> <location filename="profilesdialog.cpp" line="182"/> <source>Profile broken</source> - <translation type="unfinished"></translation> + <translation>Profil defekt</translation> </message> <message> <location filename="profilesdialog.cpp" line="183"/> <source>This profile you're about to delete seems to be broken or the path is invalid. I'm about to delete the following folder: "%1". Proceed?</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Are you sure you want to remove this profile?</source> - <translation type="obsolete">Sind Sie sicher, dass Sie dieses Profil löschen wollen?</translation> + <translation>Das Profil dass sie löschen wollen scheint defekt zu sein oder der Pfad ist ungültig. Das folgende Verzeichnis wird gelöscht: "%1". Fortfahren?</translation> </message> <message> <location filename="profilesdialog.cpp" line="215"/> <source>Rename Profile</source> - <translation type="unfinished"></translation> + <translation>Profil umbenennen</translation> </message> <message> <location filename="profilesdialog.cpp" line="215"/> <source>New Name</source> - <translation type="unfinished"></translation> + <translation>Neuer Name</translation> </message> <message> <location filename="profilesdialog.cpp" line="252"/> @@ -5465,208 +4246,235 @@ p, li { white-space: pre-wrap; } <context> <name>QObject</name> <message> - <source>invalid category %1</source> - <translation type="obsolete">Ungültige Kategorie %1</translation> + <location filename="categories.cpp" line="141"/> + <source>Failed to save custom categories</source> + <translation>Konnte die modifizierten Kategorien nicht speichern</translation> </message> <message> - <source>None</source> - <translation type="obsolete">Keine</translation> + <location filename="categories.cpp" line="218"/> + <location filename="categories.cpp" line="253"/> + <location filename="categories.cpp" line="263"/> + <location filename="categories.cpp" line="273"/> + <source>invalid index %1</source> + <translation>ungültiger index %1</translation> </message> <message> - <source>Animations</source> - <translation type="obsolete">Animationen</translation> + <location filename="categories.cpp" line="284"/> + <source>invalid category id %1</source> + <translation>ungültige Kategorie %1</translation> </message> <message> - <source>Armour</source> - <translation type="obsolete">Rüstung</translation> + <location filename="csvbuilder.cpp" line="70"/> + <source>invalid field name "%1"</source> + <translation>Ungültiger Feldname "%1"</translation> </message> <message> - <source>Audio</source> - <translation type="obsolete">Audio</translation> + <location filename="csvbuilder.cpp" line="76"/> + <source>invalid type for "%1" (should be integer)</source> + <translation>ungültiger Datentyp für "%1" (integer erwartet)</translation> </message> <message> - <source>Cities</source> - <translation type="obsolete">Städte</translation> + <location filename="csvbuilder.cpp" line="81"/> + <source>invalid type for "%1" (should be string)</source> + <translation>ungültiger Datentyp für "%1" (string erwartet)</translation> </message> <message> - <source>Clothing</source> - <translation type="obsolete">Kleidung</translation> + <location filename="csvbuilder.cpp" line="86"/> + <source>invalid type for "%1" (should be float)</source> + <translation>ungültiger Datentyp für "%1" (float erwartet)</translation> </message> <message> - <source>Collectables</source> - <translation type="obsolete">Sammlerobjekte</translation> + <location filename="csvbuilder.cpp" line="103"/> + <source>no fields set up yet!</source> + <translation>noch keine Felder gesetzt!</translation> </message> <message> - <source>Creatures</source> - <translation type="obsolete">Kreaturen</translation> + <location filename="csvbuilder.cpp" line="140"/> + <source>field not set "%1"</source> + <translation>feld "%1" nicht gesetzt</translation> </message> <message> - <source>Factions</source> - <translation type="obsolete">Faktionen</translation> + <location filename="csvbuilder.cpp" line="237"/> + <source>invalid character in field "%1"</source> + <translation>ungültiges Zeichen in Feld "%1"</translation> </message> <message> - <source>Gameplay</source> - <translation type="obsolete">Spiel</translation> + <location filename="csvbuilder.cpp" line="240"/> + <source>empty field name</source> + <translation>leerer Feldbezeichner</translation> </message> <message> - <source>Hair</source> - <translation type="obsolete">Haare</translation> + <location filename="gameinfoimpl.cpp" line="41"/> + <source>invalid game type %1</source> + <translation>ungültiger Spieltyp %1</translation> </message> <message> - <source>Items</source> - <translation type="obsolete">Gegenstände</translation> + <location filename="helper.cpp" line="53"/> + <source>helper failed</source> + <translation>Hilfsprogramm fehlgeschlagen</translation> </message> <message> - <source>Locations</source> - <translation type="obsolete">Orte</translation> + <location filename="helper.cpp" line="69"/> + <location filename="helper.cpp" line="90"/> + <source>failed to determine account name</source> + <translation>konnte den Accountnamen nicht bestimmen</translation> </message> <message> - <source>NPCs</source> - <translation type="obsolete">NSCs</translation> + <location filename="installationmanager.cpp" line="64"/> + <location filename="selfupdater.cpp" line="52"/> + <source>invalid 7-zip32.dll: %1</source> + <translation>Ungültige 7-zip32.dll: %1</translation> </message> <message> - <source>Patches</source> - <translation type="obsolete">Patche</translation> + <location filename="loadmechanism.cpp" line="50"/> + <source>failed to open %1: %2</source> + <translation>"%1" konnte nicht geöffnet werden: %2</translation> </message> <message> - <source>Quests</source> - <translation type="obsolete">Quests</translation> + <location filename="loadmechanism.cpp" line="104"/> + <location filename="loadmechanism.cpp" line="113"/> + <source>%1 not found</source> + <translation>"%1" nicht gefunden</translation> </message> <message> - <source>Races & Classes</source> - <translation type="obsolete">Rassen und Klassen</translation> + <location filename="loadmechanism.cpp" line="138"/> + <source>Failed to delete %1</source> + <translation>"%1" konnte nicht gelöscht werden</translation> </message> <message> - <source>UI</source> - <translation type="obsolete">Benutzeroberfläche</translation> + <location filename="loadmechanism.cpp" line="144"/> + <source>Failed to deactivate script extender loading</source> + <translation>Laden Script Extenders konnte nicht deaktiviert werden</translation> </message> <message> - <source>Videos</source> - <translation type="obsolete">Videos</translation> + <location filename="loadmechanism.cpp" line="165"/> + <source>Failed to remove %1: %2</source> + <translation>"%1" konnte nicht entfernt werden: %2</translation> </message> <message> - <source>Weapons</source> - <translation type="obsolete">Waffen</translation> + <location filename="loadmechanism.cpp" line="167"/> + <location filename="loadmechanism.cpp" line="260"/> + <source>Failed to rename %1 to %2</source> + <translation>"%1" konnte nicht zu "%2" umbenannt werden</translation> </message> <message> - <location filename="installationmanager.cpp" line="64"/> - <location filename="selfupdater.cpp" line="52"/> - <source>invalid 7-zip32.dll: %1</source> - <translation>Ungültige 7-zip32.dll: %1</translation> + <location filename="loadmechanism.cpp" line="175"/> + <source>Failed to deactivate proxy-dll loading</source> + <translation>Laden der Proxy-dll konnte nicht deaktiviert werden</translation> </message> <message> - <location filename="profile.cpp" line="96"/> - <source>"%1" is missing</source> - <translation>"%1" fehlt</translation> + <location filename="loadmechanism.cpp" line="209"/> + <location filename="loadmechanism.cpp" line="243"/> + <location filename="loadmechanism.cpp" line="263"/> + <source>Failed to copy %1 to %2</source> + <translation>"%1" konnte nicht nach "%2" kopiert werden</translation> </message> <message> - <source>Failed to create "%1", do you have the necessary access rights to the installation folder?</source> - <translation type="obsolete">"%1" konnte nicht erstellt werden, haben Sie die nötigen Schreibrechte für das Installations Verzeichnis?</translation> + <location filename="loadmechanism.cpp" line="214"/> + <source>Failed to set up script extender loading</source> + <translation>Laden des Script Extenders konnte nicht eingerichtet werden</translation> </message> <message> - <location filename="main.cpp" line="357"/> - <location filename="main.cpp" line="386"/> - <source>Please select the game to manage</source> - <translation>Bitte wählen Sie ein Spiel zum Verwalten aus</translation> + <location filename="loadmechanism.cpp" line="240"/> + <source>Failed to delete old proxy-dll %1</source> + <translation>Alte Proxy-dll %1 konnte nicht gelöscht werden</translation> </message> <message> - <source>invalid profile %1</source> - <translation type="obsolete">Ungültiges Profil %1</translation> + <location filename="loadmechanism.cpp" line="256"/> + <source>Failed to overwrite %1</source> + <translation>%1 konnte nicht überschrieben werden</translation> </message> <message> - <location filename="main.cpp" line="139"/> + <location filename="loadmechanism.cpp" line="268"/> + <source>Failed to set up proxy-dll loading</source> + <translation>Laden der Proxy-dll konnte nicht eingerichtet werden</translation> + </message> + <message> + <location filename="main.cpp" line="121"/> <source>Permissions required</source> <translation>Berechtigungen erforderlich</translation> </message> <message> - <source>The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "mo_helper.exe" with administrative rights).</source> - <translation type="obsolete">Der aktuelle Benutzeraccount hat die erforderlichen Berechtigungen nicht um Mod Organizer auszuführen. The notwendigen Änderungen können automatisch durchgeführt werden (der aktuelle Benutzeraccount erhält Schreibzugriff auf das ModOrganizer Verzeichnis). Sie werden aufgefordert werden "mo_helper.exe" mit erhöhten Privilegien auszuführen.</translation> + <location filename="main.cpp" line="122"/> + <source>The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights.</source> + <translation>Das aktive Nutzerkonto hat nicht die nötigen Rechte Mod Organizer auszuführen. Die notwendigen Änderungen können automatisch durchgeführt werden (das MO Verzeichnis wird für den aktiven Nutzer schreibbar gemacht). Wenn sie fortfahren werden sie gefragt werden ob sie "helper.exe" als Administrator ausführen wollen.</translation> </message> <message> - <location filename="main.cpp" line="231"/> - <location filename="main.cpp" line="269"/> + <location filename="main.cpp" line="216"/> + <location filename="main.cpp" line="254"/> <source>Woops</source> <translation>Oha</translation> </message> <message> - <source>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file by email (sherb@gmx.net), the bug is a lot more likely to be fixed.</source> - <translation type="obsolete">ModOrganizer ist abgestürzt! Soll eine Diagnosedatei geschrieben werden? Wenn sie mir diese Datei per eMail (sherb@gmx.net) schicken kann dieser Fehler vermutlich eher behoben werden.</translation> - </message> - <message> - <location filename="main.cpp" line="140"/> - <source>The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="main.cpp" line="232"/> + <location filename="main.cpp" line="217"/> <source>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file (%1) to sherb@gmx.net, the bug is a lot more likely to be fixed. Please include a short description of what you were doing when the crash happened</source> - <translation type="unfinished"></translation> + <translation>Mod Organizer ist abgestürzt! Soll eine Diagnose-Datei erstellt werden? Wenn sie mir diese Datei (%1) an sherb@gmx.net schicken wird der Fehler mit höherer Wahrscheinlichkeit behoben. Bitte fügen sie eine kurze Beschreibung bei was sie gerade getan haben als der Absturz geschah.</translation> </message> <message> - <location filename="main.cpp" line="270"/> + <location filename="main.cpp" line="255"/> <source>ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1</source> - <translation>ModOrganizer ist abgestürzt! Leider konnte keine Diagnosedatei geschrieben werden: %1</translation> + <translation>Mod Organizer ist abgestürzt! Leider konnte ich keine diagnose-datei schreiben: %1</translation> </message> <message> - <location filename="main.cpp" line="332"/> + <location filename="main.cpp" line="376"/> + <location filename="settings.cpp" line="557"/> + <source>Mod Organizer</source> + <translation>Mod Organizer</translation> + </message> + <message> + <location filename="main.cpp" line="376"/> <source>An instance of Mod Organizer is already running</source> <translation>Mod Organizer läuft bereits</translation> </message> <message> - <location filename="main.cpp" line="354"/> + <location filename="main.cpp" line="398"/> <source>No game identified in "%1". The directory is required to contain the game binary and its launcher.</source> <translation>Es wurde kein Spiel in "%1" gefunden. Das Verzeichnis muss das Anwendungsdatei des Spiels und des Launchers enthalten.</translation> </message> <message> - <location filename="main.cpp" line="412"/> + <location filename="main.cpp" line="401"/> + <location filename="main.cpp" line="430"/> + <source>Please select the game to manage</source> + <translation>Bitte wählen Sie ein Spiel zum Verwalten aus</translation> + </message> + <message> + <location filename="main.cpp" line="456"/> <source>Please select the game edition you have (MO can't start the game correctly if this is set incorrectly!)</source> - <translation type="unfinished"></translation> + <translation>Bitte wählen sie die Variante des Spiels die sie installiert haben (MO kann das Spiel nur dann korrekt starten wenn dies richtig gesetzt ist!)</translation> </message> <message> - <source>"%1" not found</source> - <translation type="obsolete">"%1" nicht gefunden</translation> + <location filename="main.cpp" line="545"/> + <source>failed to start application: %1</source> + <translation>konnte Anwendung nicht starten: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="782"/> + <location filename="mainwindow.cpp" line="842"/> <source>Please use "Help" from the toolbar to get usage instructions to all elements</source> <translation>Bitte verwenden Sie die "Hilfe" Funktion um Hinweise zu Nutzung aller Elemete zu bekommen</translation> </message> <message> - <source>invalid row %1</source> - <translation type="obsolete">Ungültige Reihe %1</translation> - </message> - <message> - <source>invalid priority %1</source> - <translation type="obsolete">Ungültige Priorität %1</translation> - </message> - <message> - <location filename="pluginlist.cpp" line="335"/> - <location filename="profile.cpp" line="233"/> - <source>failed to find "%1"</source> - <translation>Konnte "%1" nicht finden</translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1610"/> - <location filename="mainwindow.cpp" line="4216"/> + <location filename="mainwindow.cpp" line="1613"/> + <location filename="mainwindow.cpp" line="4226"/> <source><Manage...></source> <translation><Verwalten...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1628"/> + <location filename="mainwindow.cpp" line="1631"/> <source>failed to parse profile %1: %2</source> <translation>Konnte Profil %1 nicht verarbeiten: %2</translation> </message> <message> - <source>encoding error, please report this as a bug and include the file mo_interface.log!</source> - <translation type="obsolete">Kodierungsfehler! Bitte melden Sie dies als Bug und fügen Sie die Datei mo_interface.log bei!</translation> + <location filename="pluginlist.cpp" line="352"/> + <source>failed to find "%1"</source> + <translation>Konnte "%1" nicht finden</translation> </message> <message> - <location filename="pluginlist.cpp" line="491"/> + <location filename="pluginlist.cpp" line="515"/> <source>failed to access %1</source> <translation>Auf %1 konnte nicht zugegriffen werden</translation> </message> <message> - <location filename="pluginlist.cpp" line="505"/> + <location filename="pluginlist.cpp" line="529"/> <source>failed to set file time %1</source> <translation>Konnte Dateizeit nicht setzen %1</translation> </message> @@ -5676,16 +4484,15 @@ p, li { white-space: pre-wrap; } <translation>%1 konnte nicht erstellt werden</translation> </message> <message> - <source>modlist.txt missing</source> - <translation type="obsolete">modlist.txt fehlt</translation> - </message> - <message> - <source>failed to copy "%1" to "%2", this is going to end badly...</source> - <translation type="obsolete">Konnte "%1" nicht nach "%2" kopieren. Das geht nicht gut aus...</translation> + <location filename="profile.cpp" line="96"/> + <source>"%1" is missing or inaccessible</source> + <oldsource>"%1" is missing</oldsource> + <translation>"%1" fehlt oder ist zugriffsbeschränkt</translation> </message> <message> - <source>Before you can use ModOrganizer, you need to create at least one profile!</source> - <translation type="obsolete">Bevor Sie ModOrganizer verwenden können, müssen Sie zuerst mindestens ein Profil anlegen!</translation> + <location filename="profilesdialog.cpp" line="80"/> + <source>Before you can use ModOrganizer, you need to create at least one profile. ATTENTION: Run the game at least once before creating a profile!</source> + <translation>Bevor sie Mod Organizer nutzen können müssen Sie mindestens ein Profil erstellen. ACHTUNG: Starten sie das Spiel bitte zumindest ein mal bevor Sie das erste Profil erstellen!</translation> </message> <message> <location filename="report.cpp" line="33"/> @@ -5706,225 +4513,64 @@ p, li { white-space: pre-wrap; } <translation>%1 konnte nicht geöffnet werden</translation> </message> <message> - <location filename="spawn.cpp" line="106"/> + <location filename="settings.cpp" line="564"/> + <source>Script Extender</source> + <translation>Script Extender</translation> + </message> + <message> + <location filename="settings.cpp" line="571"/> + <source>Proxy DLL</source> + <translation>Proxy DLL</translation> + </message> + <message> + <location filename="spawn.cpp" line="127"/> <source>failed to spawn "%1"</source> <translation>"%1" konnte nicht erzeugt werden</translation> </message> <message> - <location filename="spawn.cpp" line="113"/> + <location filename="spawn.cpp" line="134"/> <source>Elevation required</source> - <translation type="unfinished"></translation> + <translation>Mehr Rechte erforderlich</translation> </message> <message> - <location filename="spawn.cpp" line="114"/> + <location filename="spawn.cpp" line="135"/> <source>This process requires elevation to run. This is a potential security risk so I highly advice you to investigate if "%1" can be installed to work without elevation. Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe to make changes to the system)</source> - <translation type="unfinished"></translation> + <translation>Diesen Prozess auszuführen erfordert zusätzliche Rechte. +Dies ist ein mögliches Sicherheitsrisiko daher empfehle ich dringend dass sie untersuchen ob +"%1" +nicht ohne diese Rechte lauffähig ist. + +Trotzdem fortfahren? (sie werden vom System gefragt werden ob sie ModOrganizer.exe erlauben wollen Systemänderungen durchzuführen)</translation> </message> <message> - <location filename="spawn.cpp" line="129"/> + <location filename="spawn.cpp" line="150"/> <source>failed to spawn "%1": %2</source> <translation>"%1" konnte nicht erzeugt werden: %2</translation> </message> <message> - <location filename="spawn.cpp" line="138"/> + <location filename="spawn.cpp" line="159"/> <source>"%1" doesn't exist</source> <translation>"%1" existiert nicht</translation> </message> <message> - <location filename="spawn.cpp" line="145"/> + <location filename="spawn.cpp" line="166"/> <source>failed to inject dll into "%1": %2</source> <translation>Konnte dll nicht in "%1" einspeisen: %2</translation> </message> <message> - <location filename="spawn.cpp" line="153"/> + <location filename="spawn.cpp" line="174"/> <source>failed to run "%1"</source> <translation>"%1" konnte nicht ausgeführt werden</translation> </message> <message> - <source>removal of "%1" failed: %2</source> - <oldsource>remove %1 failed</oldsource> - <translation type="obsolete">%1 kann nicht entfernt werden: %2</translation> - </message> - <message> - <source>removal of "%1" failed</source> - <translation type="obsolete">Löschung von "%1" fehlgeschlagen</translation> - </message> - <message> - <source>"%1" doesn't exist (remove)</source> - <translation type="obsolete">"%1" existiert nicht</translation> - </message> - <message> - <location filename="loadmechanism.cpp" line="50"/> - <source>failed to open %1: %2</source> - <translation>"%1" konnte nicht geöffnet werden: %2</translation> - </message> - <message> - <location filename="loadmechanism.cpp" line="104"/> - <location filename="loadmechanism.cpp" line="113"/> - <source>%1 not found</source> - <translation>"%1" nicht gefunden</translation> - </message> - <message> - <location filename="loadmechanism.cpp" line="138"/> - <source>Failed to delete %1</source> - <translation>"%1" konnte nicht gelöscht werden</translation> - </message> - <message> - <location filename="loadmechanism.cpp" line="144"/> - <source>Failed to deactivate script extender loading</source> - <translation>Laden Script Extenders konnte nicht deaktiviert werden</translation> - </message> - <message> - <location filename="loadmechanism.cpp" line="165"/> - <source>Failed to remove %1: %2</source> - <translation>"%1" konnte nicht entfernt werden: %2</translation> - </message> - <message> - <location filename="loadmechanism.cpp" line="167"/> - <location filename="loadmechanism.cpp" line="260"/> - <source>Failed to rename %1 to %2</source> - <translation>"%1" konnte nicht zu "%2" umbenannt werden</translation> - </message> - <message> - <location filename="loadmechanism.cpp" line="175"/> - <source>Failed to deactivate proxy-dll loading</source> - <translation>Laden der Proxy-dll konnte nicht deaktiviert werden</translation> - </message> - <message> - <location filename="loadmechanism.cpp" line="209"/> - <location filename="loadmechanism.cpp" line="243"/> - <location filename="loadmechanism.cpp" line="263"/> - <source>Failed to copy %1 to %2</source> - <translation>"%1" konnte nicht nach "%2" kopiert werden</translation> - </message> - <message> - <location filename="loadmechanism.cpp" line="214"/> - <source>Failed to set up script extender loading</source> - <translation>Laden des Script Extenders konnte nicht eingerichtet werden</translation> - </message> - <message> - <location filename="loadmechanism.cpp" line="240"/> - <source>Failed to delete old proxy-dll %1</source> - <translation>Alte Proxy-dll %1 konnte nicht gelöscht werden</translation> - </message> - <message> - <location filename="loadmechanism.cpp" line="256"/> - <source>Failed to overwrite %1</source> - <translation>%1 konnte nicht überschrieben werden</translation> - </message> - <message> - <location filename="loadmechanism.cpp" line="268"/> - <source>Failed to set up proxy-dll loading</source> - <translation>Laden der Proxy-dll konnte nicht eingerichtet werden</translation> - </message> - <message> - <source>English</source> - <translation type="obsolete">Englisch</translation> - </message> - <message> - <location filename="main.cpp" line="332"/> - <location filename="settings.cpp" line="542"/> - <source>Mod Organizer</source> - <translation>Mod Organizer</translation> - </message> - <message> - <location filename="settings.cpp" line="549"/> - <source>Script Extender</source> - <translation>Script Extender</translation> - </message> - <message> - <location filename="settings.cpp" line="556"/> - <source>Proxy DLL</source> - <translation>Proxy DLL</translation> - </message> - <message> - <location filename="helper.cpp" line="53"/> - <source>helper failed</source> - <translation>Hilfsprogramm fehlgeschlagen</translation> - </message> - <message> - <location filename="helper.cpp" line="69"/> - <location filename="helper.cpp" line="90"/> - <source>failed to determine account name</source> - <translation>konnte den Accountnamen nicht bestimmen</translation> - </message> - <message> - <location filename="categories.cpp" line="141"/> - <source>Failed to save custom categories</source> - <translation>Konnte die modifizierten Kategorien nicht speichern</translation> - </message> - <message> - <location filename="categories.cpp" line="218"/> - <location filename="categories.cpp" line="253"/> - <location filename="categories.cpp" line="263"/> - <location filename="categories.cpp" line="273"/> - <source>invalid index %1</source> - <translation>ungültiger index %1</translation> - </message> - <message> - <location filename="categories.cpp" line="284"/> - <source>invalid category id %1</source> - <translation>ungültige Kategorie %1</translation> - </message> - <message> - <location filename="profilesdialog.cpp" line="80"/> - <source>Before you can use ModOrganizer, you need to create at least one profile. ATTENTION: Run the game at least once before creating a profile!</source> - <translation>Bevor sie Mod Organizer nutzen können müssen Sie mindestens ein Profil erstellen. ACHTUNG: Starten sie das Spiel bitte zumindest ein mal bevor Sie das erste Profil erstellen!</translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="70"/> - <source>invalid field name "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="76"/> - <source>invalid type for "%1" (should be integer)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="81"/> - <source>invalid type for "%1" (should be string)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="86"/> - <source>invalid type for "%1" (should be float)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="103"/> - <source>no fields set up yet!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="140"/> - <source>field not set "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="237"/> - <source>invalid character in field "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="240"/> - <source>empty field name</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="gameinfoimpl.cpp" line="41"/> - <source>invalid game type %1</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="safewritefile.cpp" line="32"/> <source>failed to open temporary file</source> - <translation type="unfinished"></translation> + <translation>Öffnen der temporären Datei fehlgeschlagen</translation> </message> </context> <context> @@ -5932,37 +4578,37 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="queryoverwritedialog.ui" line="14"/> <source>Mod Exists</source> - <translation type="unfinished"></translation> + <translation>Mod existiert bereits</translation> </message> <message> <location filename="queryoverwritedialog.ui" line="45"/> <source>This mod seems to be installed already. Do you want to add files from this archive (overwriting existing ones) or do you want to completely replace the existing files (old files are deleted)? Alternatively you can install this mod under a different name.</source> - <translation type="unfinished"></translation> + <translation>Diese mod scheint bereits installiert zu sein. Wollen sie Dateien aus diesem Archiv hinzufügen (existierende Dateien werden überschrieben oder bleiben erhalten) oder wollen sie die existierenden Dateien vollständig ersetzen (existierende Dateien werden gelöscht)? Alternativ können sie die mod unter einem anderen Namen installieren.</translation> </message> <message> <location filename="queryoverwritedialog.ui" line="63"/> <source>Keep Backup</source> - <translation type="unfinished"></translation> + <translation>Backup</translation> </message> <message> <location filename="queryoverwritedialog.ui" line="70"/> <source>Merge</source> - <translation type="unfinished"></translation> + <translation>Zusammenführen</translation> </message> <message> <location filename="queryoverwritedialog.ui" line="77"/> <source>Replace</source> - <translation type="unfinished">Ersetzen</translation> + <translation>Ersetzen</translation> </message> <message> <location filename="queryoverwritedialog.ui" line="84"/> <source>Rename</source> - <translation type="unfinished"></translation> + <translation>Umbenennen</translation> </message> <message> <location filename="queryoverwritedialog.ui" line="91"/> <source>Cancel</source> - <translation type="unfinished">Abbrechen</translation> + <translation>Abbrechen</translation> </message> </context> <context> @@ -5970,27 +4616,27 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="savegameinfowidget.ui" line="39"/> <source>Save #</source> - <translation type="unfinished"></translation> + <translation>Spielstand #</translation> </message> <message> <location filename="savegameinfowidget.ui" line="51"/> <source>Character</source> - <translation type="unfinished"></translation> + <translation>Charakter</translation> </message> <message> <location filename="savegameinfowidget.ui" line="63"/> <source>Level</source> - <translation type="unfinished"></translation> + <translation>Stufe</translation> </message> <message> <location filename="savegameinfowidget.ui" line="75"/> <source>Location</source> - <translation type="unfinished"></translation> + <translation>Ort</translation> </message> <message> <location filename="savegameinfowidget.ui" line="87"/> <source>Date</source> - <translation type="unfinished"></translation> + <translation>Datum</translation> </message> </context> <context> @@ -5998,7 +4644,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="savegameinfowidgetgamebryo.cpp" line="41"/> <source>Missing ESPs</source> - <translation type="unfinished"></translation> + <translation>Fehlende ESPs</translation> </message> </context> <context> @@ -6006,37 +4652,37 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="savetextasdialog.ui" line="14"/> <source>Dialog</source> - <translation type="unfinished">Dialog</translation> + <translation>Dialog</translation> </message> <message> <location filename="savetextasdialog.ui" line="32"/> <source>Copy To Clipboard</source> - <translation type="unfinished"></translation> + <translation>In die Zwischenablage kopieren</translation> </message> <message> <location filename="savetextasdialog.ui" line="39"/> <source>Save As...</source> - <translation type="unfinished"></translation> + <translation>Speichern unter …</translation> </message> <message> <location filename="savetextasdialog.ui" line="59"/> <source>Close</source> - <translation type="unfinished">Schliessen</translation> + <translation>Schliessen</translation> </message> <message> <location filename="savetextasdialog.cpp" line="36"/> <source>Save CSV</source> - <translation type="unfinished"></translation> + <translation>Als CSV speichern</translation> </message> <message> <location filename="savetextasdialog.cpp" line="36"/> <source>Text Files</source> - <translation type="unfinished"></translation> + <translation>Textdateien</translation> </message> <message> <location filename="savetextasdialog.cpp" line="40"/> <source>failed to open "%1" for writing</source> - <translation type="unfinished"></translation> + <translation>"%1" konnte nicht zum Schreiben geöffnet werden</translation> </message> </context> <context> @@ -6060,13 +4706,9 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <context> <name>SelfUpdater</name> <message> - <source>mo_archive.dll not loaded: "%1"</source> - <translation type="obsolete">mo_archive.dll nicht geladen: "%1"</translation> - </message> - <message> <location filename="selfupdater.cpp" line="66"/> <source>archive.dll not loaded: "%1"</source> - <translation type="unfinished"></translation> + <translation>archive.dll nicht geladen: "%1"</translation> </message> <message> <location filename="selfupdater.cpp" line="116"/> @@ -6104,7 +4746,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="selfupdater.cpp" line="250"/> <source>failed to move outdated files: %1. Please update manually.</source> - <translation type="unfinished"></translation> + <translation>konnte veraltete Dateien nicht verschieben: %1. Bitte aktualisieren sie manuell.</translation> </message> <message> <location filename="selfupdater.cpp" line="268"/> @@ -6129,16 +4771,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="selfupdater.cpp" line="425"/> <source>no file for update found. Please update manually.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="selfupdater.cpp" line="460"/> - <source>No download server available. Please try again later.</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>no file for update found</source> - <translation type="obsolete">kein Update gefunden</translation> + <translation>Keine Datei für das Update gefunden. Bitte aktualisieren sie manuell.</translation> </message> <message> <location filename="selfupdater.cpp" line="440"/> @@ -6146,39 +4779,28 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <translation>Konnte update informationen nicht abrufen: %1</translation> </message> <message> - <source>No incremental update available for this version, the complete package needs to be installed (%1 kB)</source> - <translation type="obsolete">Keine inkrementelle Aktualisierung für diese Version verfügbar. Das komplette Archiv muss installiert werden (%1 kB)</translation> - </message> - <message> - <source>Failed to retrieve update information</source> - <translation type="obsolete">Konnte keine Informationen über die Aktualisierung ermitteln</translation> + <location filename="selfupdater.cpp" line="460"/> + <source>No download server available. Please try again later.</source> + <translation>Kein download server verfügbar. Bitte versuche es später noch einmal.</translation> </message> </context> <context> <name>Settings</name> <message> - <source>Administrative rights required to change this.</source> - <translation type="obsolete">Admistratorrechte sind erforderlich um dies zu ändern.</translation> - </message> - <message> - <location filename="settings.cpp" line="320"/> - <location filename="settings.cpp" line="339"/> + <location filename="settings.cpp" line="329"/> + <location filename="settings.cpp" line="348"/> <source>attempt to store setting for unknown plugin "%1"</source> - <translation type="unfinished"></translation> + <translation>es wurde versucht, Einstellungen für das unbekanntes Plugin "%1" zu speichern</translation> </message> <message> - <location filename="settings.cpp" line="660"/> + <location filename="settings.cpp" line="681"/> <source>Confirm</source> <translation>Bestätigen</translation> </message> <message> - <location filename="settings.cpp" line="660"/> + <location filename="settings.cpp" line="681"/> <source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed?</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all mods. There is no way to undo this unless you backed up your profiles manually. Proceed?</source> - <translation type="obsolete">Das Mod Verzeichnis zu wechseln wirkt sich auf alle Profile aus! Mods die im neuen Verzeichnis nicht existieren (oder dort anders heißen) werden in allen Profilen deaktiviert. Dies kann nicht rückgängig gemacht werden außer Sie haben ihre Profile manuell gesichert. Fortfahren?</translation> + <translation>Das Mod Verzeichnis zu wechseln wirkt sich auf alle Profile aus! Mods die im neuen Verzeichnis nicht existieren (oder dort anders heißen) werden in allen Profilen deaktiviert. Dies kann nicht rückgängig gemacht werden außer Sie haben ihre Profile manuell gesichert. Fortfahren?</translation> </message> </context> <context> @@ -6219,48 +4841,49 @@ p, li { white-space: pre-wrap; } <message> <location filename="settingsdialog.ui" line="57"/> <source>Style</source> - <translation type="unfinished"></translation> + <translation>Stil</translation> </message> <message> <location filename="settingsdialog.ui" line="64"/> <source>graphical style</source> - <translation type="unfinished"></translation> + <translation>grafischer Stil</translation> </message> <message> <location filename="settingsdialog.ui" line="67"/> <source>graphical style of the MO user interface</source> - <translation type="unfinished"></translation> + <translation>grafischer Stil der MO Benutzeroberfläche</translation> </message> <message> <location filename="settingsdialog.ui" line="78"/> <source>Log Level</source> - <translation type="unfinished"></translation> + <translation>Log Stufe</translation> </message> <message> <location filename="settingsdialog.ui" line="85"/> <source>Decides the amount of data printed to "ModOrganizer.log"</source> - <translation type="unfinished"></translation> + <translation>Bestimmt die Datenmenge die in "ModOrganizer.log" ausgegeben wird.</translation> </message> <message> <location filename="settingsdialog.ui" line="88"/> <source>Decides the amount of data printed to "ModOrganizer.log". "Debug" produces very useful information for finding problems. There is usually no noteworthy performance impact but the file may become rather large. If this is a problem you may prefer the "Info" level for regluar use. On the "Error" level the log file usually remains empty.</source> - <translation type="unfinished"></translation> + <translation>Bestimmt die Menge an log-meldungen die in "ModOrganizer.log" geschrieben werden. +"Debug" erzeugt viele nützliche Informationen um Fehler zu finden. Der Einfluss auf die Performance ist gering aber die Datei kann sehr groß werden. Wenn dies ein Problem ist sollten sie für den regulären Betrieb "Info" verwenden. Auf dem "Error" Level bleibt das log üblicherweise vollstänig leer.</translation> </message> <message> <location filename="settingsdialog.ui" line="93"/> <source>Debug</source> - <translation type="unfinished"></translation> + <translation>Debug</translation> </message> <message> <location filename="settingsdialog.ui" line="98"/> <source>Info</source> - <translation type="unfinished"></translation> + <translation>Info</translation> </message> <message> <location filename="settingsdialog.ui" line="103"/> <source>Error</source> - <translation type="unfinished">Fehler</translation> + <translation>Error</translation> </message> <message> <location filename="settingsdialog.ui" line="113"/> @@ -6299,164 +4922,234 @@ p, li { white-space: pre-wrap; } <translation>Cache-Verzeichnis</translation> </message> <message> - <location filename="settingsdialog.ui" line="318"/> - <source>Disable automatic internet features</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="199"/> + <source>User interface</source> + <translation>Benutzerschnittstelle</translation> </message> <message> - <location filename="settingsdialog.ui" line="321"/> - <source>Disable automatic internet features. This does not affect features that are explicitly invoked by the user (like checking mods for updates, endorsing, opening the web browser)</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="205"/> + <source>If checked, the download interface will be more compact.</source> + <translation>Wenn aktiv wird die Downloadliste kompakter dargestellt.</translation> </message> <message> - <location filename="settingsdialog.ui" line="324"/> - <source>Offline Mode</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="208"/> + <source>Compact Download Interface</source> + <translation>Kompakte Downloadliste</translation> </message> <message> - <location filename="settingsdialog.ui" line="331"/> - <source>Use a proxy for network connections.</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="215"/> + <source>If checked, the download list will display meta information instead of file names.</source> + <translation>Wenn aktiv werden in der Downloadliste Metainformationen statt Dateinamen angezeigt. </translation> </message> <message> - <location filename="settingsdialog.ui" line="334"/> - <source>Use a proxy for network connections. This uses the system-wide settings which can be configured in Internet Explorer. Please note that MO will start up a few seconds slower on some systems when using a proxy.</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="218"/> + <source>Download Meta Information</source> + <translation>Meta Informationen in Downloadliste</translation> </message> <message> - <location filename="settingsdialog.ui" line="337"/> - <source>Use HTTP Proxy (Uses System Settings)</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="234"/> + <source>Reset stored information from dialogs.</source> + <translation>Gespeicherte Dialoginformation zurücksetzen.</translation> </message> <message> - <location filename="settingsdialog.ui" line="346"/> - <source>Associate with "Download with manager" links</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="237"/> + <source>This will make all dialogs show up again where you checked the "Remember selection"-box.</source> + <translation>Dies führt dazu dass alle Dialoge wieder angezeigt werden bei denen sie die "Auswahl merken"-box angewählt hatten.</translation> </message> <message> - <location filename="settingsdialog.ui" line="375"/> - <source>Known Servers (updated on download)</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="240"/> + <source>Reset Dialogs</source> + <translation>Dialoge zurücksetzen</translation> </message> <message> - <location filename="settingsdialog.ui" line="396"/> - <source>Preferred Servers (Drag & Drop)</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="260"/> + <location filename="settingsdialog.ui" line="263"/> + <source>Modify the categories available to arrange your mods.</source> + <translation>Kategorien anpassen mit denen Mods sortiert werden können.</translation> </message> <message> - <source>...</source> - <translation type="obsolete">...</translation> + <location filename="settingsdialog.ui" line="266"/> + <source>Configure Mod Categories</source> + <translation>Mod Kategorien anpassen</translation> </message> <message> - <source>Choose the integrated fomod installer over the external one wherever possible.</source> - <translation type="obsolete">Wenn möglich den integrierten Installer für fomod-Archive verwenden.</translation> + <location filename="settingsdialog.ui" line="274"/> + <location filename="settingsdialog.ui" line="290"/> + <source>Nexus</source> + <translation>Nexus</translation> </message> <message> - <source>Use the integrated fomod installer if possible. This installer is only able to handle archives scripted using an xml-file (that's maybe half the fomods out there), other files are still installed using the external installer if it's available.</source> - <translation type="obsolete">Wenn möglich den integrierten Installer für fomod-Archive verwenden. Dieser Installer kann nur mit Archiven umgehen die mittels xml-Dateien geskriptet wurden (ungefähr die Hälfte der fomods), andere fomods werden mittels des externen Installers (NCC) installiert wenn dieser verfügbar ist.</translation> + <location filename="settingsdialog.ui" line="280"/> + <source>Allows automatic log-in when the Nexus-Page for the game is clicked.</source> + <translation>Erlaubt MO sich automatisch im Nexus anzumelden, wenn die Nexus Registerkarte für das Spiel ausgewählt wird.</translation> </message> <message> - <source>Prefer integrated fomod installer</source> - <translation type="obsolete">Integrierten fomod Installer vorziehen</translation> + <location filename="settingsdialog.ui" line="283"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Allows automatic log-in when the Nexus-Page for the game is clicked. Please note that the obfuscation with which the password is stored in modorganizer.ini is not very strong. If you're worried someone might steal your password, don't store it here.</span></p></body></html></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Erlaubt es MO sich automatisch am Nexus für dieses Spiel anzumelden. Bitte beachten Sie, dass die Verschlüsselung des Kennworts in MO nicht besonders stark ist. Wenn Sie Bedenken haben, dass jemand Ihr Kennwort stehlen kann, speichern Sie es nicht in MO ab.</span></p></body></html></translation> </message> <message> - <source>Use a very simple installation dialog if MO recognizes the structure of the installation archive. If you prefer your life complicated, uncheck this box.</source> - <translation type="obsolete">Bietet einen sehr einfachen Installationsdialog wenn MO die Verzeichnisstruktur des Archivs erkennt. Wenn Ihnen das Leben zu einfach ist, deaktivieren Sie diese Option.</translation> + <location filename="settingsdialog.ui" line="299"/> + <source>If checked and if correct credentials are entered below, log-in to Nexus (for browsing and downloading) is automatic.</source> + <translation>Wenn dies ausgewählt ist und gültige Login Informationen unten eingegeben werden passiert der log-in bei Nexus automatisch (sobald MO darauf zugreift).</translation> </message> <message> - <source>Enable "Quick Installer"</source> - <translation type="obsolete">"Express Installer" aktivieren</translation> + <location filename="settingsdialog.ui" line="302"/> + <source>Automatically Log-In to Nexus</source> + <translation>Automatisch in Nexus anmelden</translation> </message> <message> - <location filename="settingsdialog.ui" line="231"/> - <location filename="settingsdialog.ui" line="234"/> - <source>Modify the categories available to arrange your mods.</source> - <translation>Kategorien anpassen mit denen Mods sortiert werden können.</translation> + <location filename="settingsdialog.ui" line="311"/> + <source>Username</source> + <translation>Nutzername</translation> </message> <message> - <location filename="settingsdialog.ui" line="205"/> - <source>Reset stored information from dialogs.</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="325"/> + <source>Password</source> + <translation>Kennwort</translation> </message> <message> - <location filename="settingsdialog.ui" line="208"/> - <source>This will make all dialogs show up again where you checked the "Remember selection"-box.</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="347"/> + <source>Disable automatic internet features</source> + <translation>Automatsiche Internet-funktionen deaktivieren</translation> </message> <message> - <location filename="settingsdialog.ui" line="211"/> - <source>Reset Dialogs</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="350"/> + <source>Disable automatic internet features. This does not affect features that are explicitly invoked by the user (like checking mods for updates, endorsing, opening the web browser)</source> + <translation>Automatische Internetzugriffe unterbinden. Dies wirkt sich nicht auf solche Funktionen aus die explizit vom Benutzer ausgelöst werden (wie die Prüfung von Mods auf Updates)</translation> </message> <message> - <location filename="settingsdialog.ui" line="237"/> - <source>Configure Mod Categories</source> - <translation>Mod Kategorien anpassen</translation> + <location filename="settingsdialog.ui" line="353"/> + <source>Offline Mode</source> + <translation>Offline Modus</translation> </message> <message> - <location filename="settingsdialog.ui" line="270"/> - <source>If checked and if correct credentials are entered below, log-in to Nexus (for browsing and downloading) is automatic.</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="360"/> + <source>Use a proxy for network connections.</source> + <translation>Proxy für Netzwerkverbindung nutzen.</translation> </message> <message> - <source>Handle NXM Links</source> - <translation type="obsolete">NXM Links behandeln</translation> + <location filename="settingsdialog.ui" line="363"/> + <source>Use a proxy for network connections. This uses the system-wide settings which can be configured in Internet Explorer. Please note that MO will start up a few seconds slower on some systems when using a proxy.</source> + <translation>Proyx für Netzwerkverbindung nutzen. Dies greift auf die system-weite Einstellung zurück die z.B. über den Internet Explorer konfiguriert werden kann. Bitte beachten sie dass MO mit dieser Einstellung auf einigen Systemen ein paar Sekunden länger zum starten braucht.</translation> </message> <message> - <source>If checked, MO will use an external browser for buttons like "Visit on Nexus" instead of the integrated one.</source> - <translation type="obsolete">Wenn dies aktiviert ist wird MO Ihren Standardbrowser für Buttons wie "Visit on Nexus" verwenden.</translation> + <location filename="settingsdialog.ui" line="366"/> + <source>Use HTTP Proxy (Uses System Settings)</source> + <translation>HTTP Proxy verwenden (Nutzt Systemeinstellung)</translation> </message> <message> - <source>Prefer external browser</source> - <translation type="obsolete">Standardbrowser vorziehen</translation> + <location filename="settingsdialog.ui" line="375"/> + <source>Associate with "Download with manager" links</source> + <translation>Mit i"Download with manager" links verknüpfen</translation> </message> <message> - <location filename="settingsdialog.ui" line="431"/> + <location filename="settingsdialog.ui" line="404"/> + <source>Known Servers (updated on download)</source> + <translation>Bekannte Server (wird bei jedem Download aktualisiert)</translation> + </message> + <message> + <location filename="settingsdialog.ui" line="425"/> + <source>Preferred Servers (Drag & Drop)</source> + <translation>Bevorzugte Server (Drag & Drop)</translation> + </message> + <message> + <location filename="settingsdialog.ui" line="460"/> <source>Plugins</source> - <translation type="unfinished"></translation> + <translation>Plugins</translation> </message> <message> - <location filename="settingsdialog.ui" line="453"/> + <location filename="settingsdialog.ui" line="482"/> <source>Author:</source> - <translation type="unfinished"></translation> + <translation>Autor:</translation> </message> <message> - <location filename="settingsdialog.ui" line="467"/> + <location filename="settingsdialog.ui" line="496"/> <source>Version:</source> - <translation type="unfinished"></translation> + <translation>Version:</translation> </message> <message> - <location filename="settingsdialog.ui" line="481"/> + <location filename="settingsdialog.ui" line="510"/> <source>Description:</source> - <translation type="unfinished"></translation> + <translation>Beschreibung:</translation> </message> <message> - <location filename="settingsdialog.ui" line="519"/> + <location filename="settingsdialog.ui" line="548"/> <source>Key</source> - <translation type="unfinished"></translation> + <translation>Schlüssel</translation> </message> <message> - <location filename="settingsdialog.ui" line="524"/> + <location filename="settingsdialog.ui" line="553"/> <source>Value</source> - <translation type="unfinished"></translation> + <translation>Wert</translation> </message> <message> - <location filename="settingsdialog.ui" line="536"/> + <location filename="settingsdialog.ui" line="565"/> <source>Blacklisted Plugins (use <del> to remove):</source> - <translation type="unfinished"></translation> + <translation>Gesperrte Plugins (<entf> drücken um Plugins von dieser List zu entfernen):</translation> </message> <message> - <location filename="settingsdialog.ui" line="547"/> + <location filename="settingsdialog.ui" line="576"/> <source>Workarounds</source> <translation>Workarounds</translation> </message> <message> - <location filename="settingsdialog.ui" line="609"/> + <location filename="settingsdialog.ui" line="584"/> + <source>Steam App ID</source> + <translation>Steam AppID</translation> + </message> + <message> + <location filename="settingsdialog.ui" line="604"/> + <source>The Steam AppID for your game</source> + <translation>Die Steam AppID für Ihr Spiel</translation> + </message> + <message> + <location filename="settingsdialog.ui" line="607"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The Steam App ID is required to directly start some games. For Skyrim, if this is not set or wrong, the &quot;Mod Organizer&quot; load mechanism may not work properly.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The preset for this is the App ID of the &quot;regular&quot; version so in most cases, you should be set.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you think you have a different version (GotY or something), follow these steps to get to the id:</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">1. Navigate to the game library in steam</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">2. right-click on the game you need the id for and choose </span><span style=" font-size:8pt; font-weight:600;">Create desktop shortcut</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">3. right-click on the newly created shortcut on your desktop and select </span><span style=" font-size:8pt; font-weight:600;">Properties</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">4. in the URL-field you should see something like this: </span><span style=" font-size:8pt; font-style:italic;">steam://rungameid/22380</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">22380 is the id you're looking for.</span></p></body></html></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Die Steam AppID wird benötigt um einige Spiele direkt zu starten. Wenn dies nicht oder falsch gesetzt ist, wird die Methode &quot;Mod Organiser&quot; für Skyrim unter Umständen nicht funktionieren.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Die Voreinstellung ist die AppID für die normale Version, was in den meisten Fällen ausreicht.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Wenn Sie vermuten, dass Sie eine andere Version haben (z.Bz. GotYI), führen Sie folgende SChritte durch um die ID anzupassen:</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">1. Navigieren Sie zu Ihrer Spielbibliothek in Steam</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">2. Klicken Sie rechts auf das Spiel, dessen ID Sie benötigen und wählen sie &quot;Desktop Verknüpfung erstellen&quot;.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">3. Klicken Sie rechts auf die erstellte Verknüpfung und wählen Sie &quot;Eigenschaften&quot;.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">4. Im URL Feld sollten Sie etwas sehen wie: </span><span style=" font-size:8pt; font-style:italic;">steam://rungameid/22380</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">In diesem Fall ist 22380 die gesuchte AppID.</span></p></body></html></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="638"/> <source>Load Mechanism</source> <translation>Lademechanismus</translation> </message> <message> - <location filename="settingsdialog.ui" line="632"/> + <location filename="settingsdialog.ui" line="658"/> + <source>Select loading mechanism. See help for details.</source> + <translation>Lade-Mechanismus auswählen. Siehe Hilfe für mehr Details.</translation> + </message> + <message> + <location filename="settingsdialog.ui" line="661"/> <source>Mod Organizer needs a dll to be injected into the game so all mods are visible to it. There are several means to do this: *Mod Organizer* (default) In this mode the Mod Organizer itself injects the dll. The disadvantage is that you always have to start the game through MO or a link created by it. @@ -6464,199 +5157,109 @@ There are several means to do this: *Proxy DLL* In this mode, MO replaces one of the game's dlls with one that loads MO (and the original dll of course). This will ONLY work with Steam games and it has only been tested with Skyrim. Please use this only if the other mechanisms don't work. If you use the Steam version of Oblivion the default will NOT work. In this case, please install obse and use "Script Extender" as the load mechanism. Also you can then not start Oblivion from MO. Instead, use MO only to set up your mods, then quit and start Oblivion through Steam.</source> - <translation type="unfinished"></translation> + <translation>Mod Organizer benötigt eine dll die in das Spiel injiziert wird um installierte Mods sichtbar zu machen. +Es gibt mehrere Wege dies zu tun: +*Mod Organizer* (Standard) In diesem Modus kümmert sich Mod Organizer selber um die Injizierung. Der Nachteil ist, dass sie das Spiel immer über MO starten müssen. +*Script Extender* In diesem Modus wird besagte dll als Script Extender (obse, fose, nvse, skse) plugin installiert. +*Proxy DLL* In diesem Modus ersetzt MO eine der dlls des Spiels mit einer die die MO dll lädt (und dann natürlich auch die ursprüngliche dll). Dies funktioniert NUR mit Steam spielen und es wurde nur mit Skyrim getestet. Bitte verwenden sie diesen Mechanismus nur wenn die anderen nicht verwendet werden können. + +Wenn sie die Steam version von Oblivion verwenden wird der Standardweg nicht funktionieren. In dem Fall installieren sie bitte obse und nutzen "Script Extender" als Lademechanismus. Außerdem ist es dann nicht möglich Oblivion von MO aus zu starten. Verwenden sie MO nur um Mods einzurichten, beenden es und starten Oblivion über Steam.</translation> </message> <message> - <location filename="settingsdialog.ui" line="649"/> + <location filename="settingsdialog.ui" line="678"/> <source>NMM Version</source> - <translation type="unfinished"></translation> + <translation>NMM Version</translation> </message> <message> - <location filename="settingsdialog.ui" line="669"/> + <location filename="settingsdialog.ui" line="698"/> <source>The Version of Nexus Mod Manager to impersonate.</source> - <translation type="unfinished"></translation> + <translation>Die Version des Nexus Mod Manager zu der MO sich als "kompatibel" melden soll.</translation> </message> <message> - <location filename="settingsdialog.ui" line="672"/> + <location filename="settingsdialog.ui" line="701"/> <source>Mod Organizer uses an API provided by the Nexus to provide features like checking for updates and downloading files. Unfortunately this API has not been made available officially to third party tools like MO so we have to impersonate the Nexus Mod Manager to be allowed in. On top of this Nexus has used the client identification to lock out outdated versions of NMM to force users to update. This means that MO also needs to impersonate the new version of NMM even if MO doesn't need an update. Therefore you can configure the version to identify as here. Please note that MO does identify itself as MO to the webserver, it's not lying about what it is. It is merely adding a "compatible" NMM version to the user agent. tl;dr-version: If Nexus-features don't work, insert the current version number of NMM here and try again.</source> - <translation type="unfinished"></translation> + <translation>Mod Organizer verwendet eine Schnitttelle die von Nexus zur Verfügung gestellt wird um Funktionen wie update-Prüfung und Datei-downloads zu ermöglichen. Tools die diese Schnittstelle verwenden müssen melden mit welcher Version des Nexus Mod Managers sie kompatibel sind um zugriff zu erhalten. +Nexus hat diese Versionsnummer in der Vergangenheit verwendet um veraltete NMM Versionen auszuschließen. Da dieser Ausschluss sich auf defekte in NMM bezieht die nichts mit MO zu tun haben haben sie hier die Möglichkeit die Nummer einer funktionierenden NMM Version anzugeben. +Bitte beachten sie dass MO sich auch als MO beim Webserver meldet, es "tarnt" sich nicht als NMM. + +tl;dr-version: Wenn Nexus-Funktionen nicht funktionieren kann es helfen hier die aktuelle Versionsnummer von NMM einzutragen und erneut zu probieren.</translation> </message> <message> - <location filename="settingsdialog.ui" line="694"/> + <location filename="settingsdialog.ui" line="723"/> <source>Enforces that inactive ESPs and ESMs are never loaded.</source> <translation>Stellt sicher, dass inaktive ESP und ESM Dateien nie geladen werden.</translation> </message> <message> - <location filename="settingsdialog.ui" line="697"/> + <location filename="settingsdialog.ui" line="726"/> <source>It seems that the Games occasionally load ESP or ESM files even if they haven't been activated as plugins. I don't yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded.</source> <translation>Manche Spiele scheinen gelegentlich ESP oder ESM Dateien zu laden auch wenn sie nicht als Plugins aktiviert wurden. Wenn der Haken aktiviert wurde, sind ESP und ESM Dateien die nicht ausgewählt wurden für das Spiel unsichtbar und können nicht geladen werden.</translation> </message> <message> - <location filename="settingsdialog.ui" line="701"/> + <location filename="settingsdialog.ui" line="730"/> <source>Hide inactive ESPs/ESMs</source> <translation>Inaktive ESP / ESM ausblenden</translation> </message> <message> - <location filename="settingsdialog.ui" line="708"/> + <location filename="settingsdialog.ui" line="737"/> <source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on)</source> - <translation type="unfinished"></translation> + <translation>Wenn aktiv können Dateien (insbesondere esps, esms und bsas) die zum Kernspiel gehören nicht deaktiviert werden. (Standard: aktiv)</translation> </message> <message> - <location filename="settingsdialog.ui" line="711"/> + <location filename="settingsdialog.ui" line="740"/> <source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on) Uncheck this if you want to use Mod Organizer with total conversions (like Nehrim) but be aware that the game will crash if required files are not enabled.</source> - <translation type="unfinished"></translation> + <translation>Wenn aktiv können Dateien (insbesondere esps, esms und bsas) die zum Kernspiel gehören nicht deaktiviert werden. (Standard: aktiv) +Deaktivieren sie dies wenn sie Mod Organizer mit einer "total conversion" (wie Nehrim) nutzen wollen aber beachten sie dass das Speil abstürzen wird wenn benötigte Dateien nicht aktiv sind.</translation> </message> <message> - <location filename="settingsdialog.ui" line="715"/> + <location filename="settingsdialog.ui" line="744"/> <source>Force-enable game files</source> - <translation type="unfinished"></translation> + <translation>Laden von benötigten Spieldateien erzwingen</translation> </message> <message> - <location filename="settingsdialog.ui" line="725"/> - <location filename="settingsdialog.ui" line="729"/> - <source>For Skyrim, this can be used instead of Archive Invalidation. It should make AI redundant for all Profiles. -For the other games this is not a sufficient replacement for AI!</source> - <translation>Für Skyrim kann dies als Alternative zur Archiv Invalidierung verwendet werden. Damit erübrigt sich AI für alle Profile. -Für die anderen Spiele ist dies KEIN hinreichender Ersatz für AI!</translation> - </message> - <message> - <location filename="settingsdialog.ui" line="733"/> - <source>Back-date BSAs</source> - <translation>BSAs zurückdatieren</translation> + <location filename="settingsdialog.ui" line="754"/> + <source>Disable this to no longer display mods installed outside MO in the mod list (left pane). Assets from those mods will then be treated as having lowest mod priority together with the original game content.</source> + <translation>Deaktivieren Sie dies um Mods die außerhalb von MO installiert wurden nicht mehr anzuzeigen (linke Liste). Inhalte dieser Mods haben dann immer niedrigere Priorität als Mods die mit MO installiert wurden.</translation> </message> <message> <location filename="settingsdialog.ui" line="757"/> - <source>These are workarounds for problems with Mod Organizer. Please make sure you read the help text before changing anything here.</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>These are workarounds for problems with Mod Organizer. They are usually not neccessary. Please make sure you read the help text before changing anything here.</source> - <translation type="obsolete">Dies sind Workarounds für Probleme mit Mod Organizer. Normalerweise sollten sie nicht notwendig sein. Bitte lesen Sie die Hilfetexte bevor Sie etwas ändern.</translation> - </message> - <message> - <source>Load</source> - <translation type="obsolete">Lade-Methode</translation> - </message> - <message> - <location filename="settingsdialog.ui" line="629"/> - <source>Select loading mechanism. See help for details.</source> - <translation>Lade-Mechanismus auswählen. Siehe Hilfe für mehr Details.</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Mod Organizer needs a dll to be injected into the game so all mods are visible to it.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">There are several means to do this:</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Mod Organizer</span><span style=" font-size:8pt;"> (default) In this mode the Mod Organizer itself injects the dll. The disadvantage is that you always have to start the game through MO or a link created by it. This does not work for the Steam version of Oblivion!</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Script Extender</span><span style=" font-size:8pt;"> In this mode, MO is installed as a Script Extender (obse, fose, nvse, skse) plugin. (recommended if you have a script extender installed)</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Proxy DLL</span><span style=" font-size:8pt;"> In this mode, MO replaces one of the game's dlls with one that loads MO (and the original dll of course). This will ONLY work with Steam games and it has only been tested with Skyrim. Please use this only if the other mechanisms don't work.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Mod Ograniser benötigt eine DLL die in das Spiel eingespeist wird, damit alle Mods sichtbar sind.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Es gibt mehrere Wege, dies zu tun:</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Mod Organizer</span><span style=" font-size:8pt;"> (Standard) In diesem Modus lädt Mod Organiser selber die dll. Das Nachteil ist, dass Sie das Spiel immer durch MO oder einen von MO erzeugten Link starten müssen. Dies funktioniert nicht bei den Steam Versionen!</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Script Extender</span><span style=" font-size:8pt;"> In diesem Modus wird MO als Erweiterung zu Script Extender (obse, fose, nvse, skse...) installiert. (Empfohlen, wenn Sie einen SCript Extender installiert haben)</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Proxy DLL</span><span style=" font-size:8pt;"> In diesem Modus ersetzt MO eine der dll Dateien des Spiels mit einer eigenen Version, die MO lädt (und die originale dll natürlich). Dies funktioniert NUR mit Steam Versionen und wurde bisher nur mit Skyrim getestet. Bitte verwenden Sie diesen Modus nur, wenn keine der anderen Varianten funktioniert.</span></p></body></html></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="555"/> - <source>Steam App ID</source> - <translation>Steam AppID</translation> - </message> - <message> - <location filename="settingsdialog.ui" line="575"/> - <source>The Steam AppID for your game</source> - <translation>Die Steam AppID für Ihr Spiel</translation> - </message> - <message> - <location filename="settingsdialog.ui" line="578"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The Steam App ID is required to directly start some games. For Skyrim, if this is not set or wrong, the &quot;Mod Organizer&quot; load mechanism may not work properly.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The preset for this is the App ID of the &quot;regular&quot; version so in most cases, you should be set.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you think you have a different version (GotY or something), follow these steps to get to the id:</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">1. Navigate to the game library in steam</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">2. right-click on the game you need the id for and choose </span><span style=" font-size:8pt; font-weight:600;">Create desktop shortcut</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">3. right-click on the newly created shortcut on your desktop and select </span><span style=" font-size:8pt; font-weight:600;">Properties</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">4. in the URL-field you should see something like this: </span><span style=" font-size:8pt; font-style:italic;">steam://rungameid/22380</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">22380 is the id you're looking for.</span></p></body></html></source> - <oldsource><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The Steam App ID is in required to directly start some games. For Skyrim, if this is not set or wrong, the &quot;Mod Organizer&quot; load mechanism may not work properly.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The preset for this is the App ID of the &quot;regular&quot; version so in most cases, you should be set.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you think you have a different version (GotY or something), follow these steps to get to the id:</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">1. Navigate to the game library in steam</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">2. right-click on the game you need the id for and choose </span><span style=" font-size:8pt; font-weight:600;">Create desktop shortcut</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">3. right-click on the newly created shortcut on your desktop and select </span><span style=" font-size:8pt; font-weight:600;">Properties</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">4. in the URL-field you should see something like this: </span><span style=" font-size:8pt; font-style:italic;">steam://rungameid/22380</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">22380 is the id you're looking for.</span></p></body></html></oldsource> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Die Steam AppID wird benötigt um einige Spiele direkt zu starten. Wenn dies nicht oder falsch gesetzt ist, wird die Methode &quot;Mod Organiser&quot; für Skyrim unter Umständen nicht funktionieren.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Die Voreinstellung ist die AppID für die normale Version, was in den meisten Fällen ausreicht.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Wenn Sie vermuten, dass Sie eine andere Version haben (z.Bz. GotYI), führen Sie folgende SChritte durch um die ID anzupassen:</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">1. Navigieren Sie zu Ihrer Spielbibliothek in Steam</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">2. Klicken Sie rechts auf das Spiel, dessen ID Sie benötigen und wählen sie &quot;Desktop Verknüpfung erstellen&quot;.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">3. Klicken Sie rechts auf die erstellte Verknüpfung und wählen Sie &quot;Eigenschaften&quot;.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">4. Im URL Feld sollten Sie etwas sehen wie: </span><span style=" font-size:8pt; font-style:italic;">steam://rungameid/22380</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">In diesem Fall ist 22380 die gesuchte AppID.</span></p></body></html></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="251"/> - <source>Allows automatic log-in when the Nexus-Page for the game is clicked.</source> - <translation>Erlaubt MO sich automatisch im Nexus anzumelden, wenn die Nexus Registerkarte für das Spiel ausgewählt wird.</translation> - </message> - <message> - <location filename="settingsdialog.ui" line="254"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Allows automatic log-in when the Nexus-Page for the game is clicked. Please note that the obfuscation with which the password is stored in modorganizer.ini is not very strong. If you're worried someone might steal your password, don't store it here.</span></p></body></html></source> - <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Erlaubt es MO sich automatisch am Nexus für dieses Spiel anzumelden. Bitte beachten Sie, dass die Verschlüsselung des Kennworts in MO nicht besonders stark ist. Wenn Sie Bedenken haben, dass jemand Ihr Kennwort stehlen kann, speichern Sie es nicht in MO ab.</span></p></body></html></translation> + <source>By default Mod Organizer will display esp+bsa bundles installed with foreign tools as mods (left pane). This allows you to control their priority in relation to other mods. This is particularly useful if you also use Steam Workshop to install mods. +However, if you installed loose file mods outside MO which conflict with BSAs also installed outside MO those conflicts can't be resolved correctly. + +If you disable this feature, MO will only display official DLCs this way. Please note that plugins (esps and esms) displayed in the right pane are completely unaffected by this feature.</source> + <translation>Standardmäßig zeigt Mod Organizer esp+bsa Bündel die mit Tools anderer Anbieter installiert wurden in seiner Modliste an (linke Liste). Dies erlaubt Ihnen die Priorität dieser Mods zu kontrollieren. Dies funktioniert besonders gut mit Mods die im Steam Workshop installiert wurden. +Wenn Sie allerdings Mods außerhalb von MO installiert haben die loose Dateien beinhalten und diese im Konflikt stehen mit BSAs die ebenfalls außerhalb von MO installiert wurden dann werden diese Konflikte anders aufgelöst als wenn dieses Feature nicht existieren würde. Dies kann zu Problemen führen. + +Wenn Sie diese Funktion deaktivieren wird MO nur noch die offiziellen DLCs auf diese Weise anzeigen. Bitte beachten Sie: Plugins (also esps und esms) auf der rechten Seite sind von dieser Option nicht betroffen. </translation> </message> <message> - <location filename="settingsdialog.ui" line="245"/> - <location filename="settingsdialog.ui" line="261"/> - <source>Nexus</source> - <translation>Nexus</translation> + <location filename="settingsdialog.ui" line="763"/> + <source>Display mods installed outside MO</source> + <translation>Mods anzeigen die außerhalb von MO installiert wurden</translation> </message> <message> - <location filename="settingsdialog.ui" line="273"/> - <source>Automatically Log-In to Nexus</source> - <translatorcomment>form is not wide enough</translatorcomment> - <translation>Automatisch in Nexus anmelden</translation> + <location filename="settingsdialog.ui" line="773"/> + <location filename="settingsdialog.ui" line="777"/> + <source>For Skyrim, this can be used instead of Archive Invalidation. It should make AI redundant for all Profiles. +For the other games this is not a sufficient replacement for AI!</source> + <translation>Für Skyrim kann dies als Alternative zur Archiv Invalidierung verwendet werden. Damit erübrigt sich AI für alle Profile. +Für die anderen Spiele ist dies KEIN hinreichender Ersatz für AI!</translation> </message> <message> - <location filename="settingsdialog.ui" line="282"/> - <source>Username</source> - <translation>Nutzername</translation> + <location filename="settingsdialog.ui" line="781"/> + <source>Back-date BSAs</source> + <translation>BSAs zurückdatieren</translation> </message> <message> - <location filename="settingsdialog.ui" line="296"/> - <source>Password</source> - <translation>Kennwort</translation> + <location filename="settingsdialog.ui" line="805"/> + <source>These are workarounds for problems with Mod Organizer. Please make sure you read the help text before changing anything here.</source> + <translation>Dies sind Workarounds für Probleme mit Mod Organizer. Bitte lesen sie unbedingt die Hilfetexte bevor sie hier etwas ändern.</translation> </message> <message> <location filename="settingsdialog.cpp" line="95"/> @@ -6676,12 +5279,12 @@ p, li { white-space: pre-wrap; } <message> <location filename="settingsdialog.cpp" line="119"/> <source>Confirm?</source> - <translation type="unfinished"></translation> + <translation>Bestätigen?</translation> </message> <message> <location filename="settingsdialog.cpp" line="120"/> <source>This will make all dialogs show up again where you checked the "Remember selection"-box. Continue?</source> - <translation type="unfinished"></translation> + <translation>Dies führt dazu dass alle Dialog wieder angezeigt werden in denen Sie "Auswahl speichern" selektiert hatten. Fortsetzen?</translation> </message> </context> <context> @@ -6705,7 +5308,6 @@ p, li { white-space: pre-wrap; } <message> <location filename="simpleinstalldialog.ui" line="55"/> <source>Manual</source> - <translatorcomment>oder "Anleitung", aber ich gehe mal von Manuell aus.</translatorcomment> <translation>Manuell</translation> </message> <message> @@ -6728,7 +5330,6 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="singleinstance.cpp" line="82"/> - <location filename="singleinstance.cpp" line="88"/> <source>failed to connect to running instance: %1</source> <translation>konnte nicht an die laufende Instanz verbinden: %1</translation> </message> @@ -6741,13 +5342,9 @@ p, li { white-space: pre-wrap; } <context> <name>SyncOverwriteDialog</name> <message> - <source>Dialog</source> - <translation type="obsolete">Dialog</translation> - </message> - <message> <location filename="syncoverwritedialog.ui" line="14"/> <source>Sync Overwrite</source> - <translation type="unfinished"></translation> + <translation>Overwrite synchronisieren</translation> </message> <message> <location filename="syncoverwritedialog.ui" line="27"/> @@ -6776,56 +5373,21 @@ p, li { white-space: pre-wrap; } </message> </context> <context> - <name>TextViewer</name> - <message> - <source>Log Viewer</source> - <translation type="obsolete">Log Ansicht</translation> - </message> - <message> - <source>Placeholder</source> - <translation type="obsolete">Platzhalter</translation> - </message> - <message> - <source>Save changes?</source> - <translation type="obsolete">Änderungen speichern?</translation> - </message> - <message> - <source>Do you want to save changes to %1?</source> - <translation type="obsolete">Wollen Sie die Änderungen an %1 speichern?</translation> - </message> - <message> - <source>failed to write to %1</source> - <translation type="obsolete">Schreiben von %1 fehlgeschlagen</translation> - </message> - <message> - <source>file not found: %1</source> - <translation type="obsolete">Datei nicht gefunden: %1</translation> - </message> - <message> - <source>Save</source> - <translation type="obsolete">Speichern</translation> - </message> -</context> -<context> <name>TransferSavesDialog</name> <message> - <source>Dialog</source> - <translation type="obsolete">Dialog</translation> - </message> - <message> <location filename="transfersavesdialog.ui" line="14"/> <source>Transfer Savegames</source> - <translation type="unfinished"></translation> + <translation>Spielstände übertragen</translation> </message> <message> <location filename="transfersavesdialog.ui" line="22"/> <source>Global Characters</source> - <translation type="unfinished"></translation> + <translation>Globale Charaktere</translation> </message> <message> <location filename="transfersavesdialog.ui" line="29"/> <source>This is a list of characters in the global location.</source> - <translation type="unfinished"></translation> + <translation>Dies ist eine Liste der Charaktere an der globalen Stelle.</translation> </message> <message> <location filename="transfersavesdialog.ui" line="32"/> @@ -6837,15 +5399,14 @@ On Windows Vista/Windows 7: On Windows XP: C:\Documents and Settings\[UserName]\My Documents\My Games\Skyrim\Saves </source> - <oldsource>This is a list of characters in the global location. + <translation>Dies ist eine Liste der Charaktere im Profil-unabhängigen Verzeichnis. -On Windows Vista/Windows 7: - C:\Users\[UserName]\Documents\My Games\Skyrim\Saves +Unter Windows Vista oder neuer ist dies: + c:\Benutzer\[Benutzername]\Dokumente\My Games\Skyrim\Saves -On Windows XP: - C:\Documents and Settings[UserName]\My Documents\My Games\Skyrim\Saves -</oldsource> - <translation type="unfinished"></translation> +Unter Windows XP: + c:\Dokumente und Einstellungen\[Benutzername]\Meine Dokumente\My Games\Skyrim\Saves +</translation> </message> <message> <location filename="transfersavesdialog.ui" line="46"/> @@ -6858,47 +5419,55 @@ On Windows XP: C:\Documents and Settings[UserName]\My Documents\My Games\Skyrim\Saves </source> - <translation type="unfinished"></translation> + <translation>Dies ist eine Liste der Spielstände für den gewählten Charakter an der globallen Stelle. + +Unter Windows Vista/Windows 7: + C:\Benutzer\[Benutzername]\Dokumente\My Games\Skyrim\Saves + +Unter Windows XP: + C:\Dokumente und Einstellungen\[Benutzername]\Eigene Dokumente\My Games\Skyrim\Saves + +</translation> </message> <message> <location filename="transfersavesdialog.ui" line="87"/> <source>Move -></source> - <translation type="unfinished"></translation> + <translation>Verschieben -></translation> </message> <message> <location filename="transfersavesdialog.ui" line="97"/> <source>Copy -></source> - <translation type="unfinished"></translation> + <translation>Kopieren -></translation> </message> <message> <location filename="transfersavesdialog.ui" line="123"/> <source><- Move</source> - <translation type="unfinished"></translation> + <translation><- Verschieben</translation> </message> <message> <location filename="transfersavesdialog.ui" line="133"/> <source><- Copy</source> - <translation type="unfinished"></translation> + <translation><- Kopieren</translation> </message> <message> <location filename="transfersavesdialog.ui" line="156"/> <source>Done</source> - <translation type="unfinished">Fertig</translation> + <translation>Fertig</translation> </message> <message> <location filename="transfersavesdialog.ui" line="167"/> <source>Profile Characters</source> - <translation type="unfinished"></translation> + <translation>Profil Charaktere</translation> </message> <message> <location filename="transfersavesdialog.cpp" line="140"/> <source>Overwrite</source> - <translation type="unfinished"></translation> + <translation>Overwrite</translation> </message> <message> <location filename="transfersavesdialog.cpp" line="141"/> <source>Overwrite the file "%1"</source> - <translation type="unfinished"></translation> + <translation>Datei "%1" überschreiben</translation> </message> <message> <location filename="transfersavesdialog.cpp" line="164"/> @@ -6906,23 +5475,23 @@ On Windows XP: <location filename="transfersavesdialog.cpp" line="237"/> <location filename="transfersavesdialog.cpp" line="276"/> <source>Confirm</source> - <translation type="unfinished">Bestätigen</translation> + <translation>Bestätigen</translation> </message> <message> <location filename="transfersavesdialog.cpp" line="165"/> <location filename="transfersavesdialog.cpp" line="203"/> <source>Copy all save games of character "%1" to the profile?</source> - <translation type="unfinished"></translation> + <translation>Alle Spielstände des Charakters "%1" ins Profil kopieren?</translation> </message> <message> <location filename="transfersavesdialog.cpp" line="238"/> <source>Move all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> - <translation type="unfinished"></translation> + <translation>Ale Spielstände des Charakters "%1" an die globale Stelle verschieben? Bitte beachten sie dass dies die laufende Nummer der Spielstände durcheinander bringt.</translation> </message> <message> <location filename="transfersavesdialog.cpp" line="277"/> <source>Copy all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> - <translation type="unfinished"></translation> + <translation>Alle Spielstände des Charakters "%1" an die globale Stelle verschieben? Bitte beachten sie dass dies die laufende Nummer der Spielstände durcheinander bringt.</translation> </message> </context> </TS> diff --git a/src/organizer_es.ts b/src/organizer_es.ts index 1dcb62c3..ec276cef 100644 --- a/src/organizer_es.ts +++ b/src/organizer_es.ts @@ -7,42 +7,42 @@ <location filename="aboutdialog.ui" line="14"/> <location filename="aboutdialog.ui" line="53"/> <source>About</source> - <translation type="unfinished"></translation> + <translation>Sobre</translation> </message> <message> <location filename="aboutdialog.ui" line="66"/> <source>Revision:</source> - <translation type="unfinished"></translation> + <translation>Revisión:</translation> </message> <message> <location filename="aboutdialog.ui" line="104"/> <source>Used Software</source> - <translation type="unfinished"></translation> + <translation>Software Usado</translation> </message> <message> <location filename="aboutdialog.ui" line="117"/> <source>Credits</source> - <translation type="unfinished"></translation> + <translation>Créditos</translation> </message> <message> <location filename="aboutdialog.ui" line="123"/> <source>Translators</source> - <translation type="unfinished"></translation> + <translation>Traductores</translation> </message> <message> <location filename="aboutdialog.ui" line="189"/> <source>Others</source> - <translation type="unfinished"></translation> + <translation>Otros</translation> </message> <message> <location filename="aboutdialog.ui" line="266"/> <source>Close</source> - <translation type="unfinished">Cerrar</translation> + <translation>Cerrar</translation> </message> <message> <location filename="aboutdialog.cpp" line="81"/> <source>No license</source> - <translation type="unfinished"></translation> + <translation>Sin licencia</translation> </message> </context> <context> @@ -50,15 +50,7 @@ <message> <location filename="activatemodsdialog.ui" line="14"/> <source>Activate Mods</source> - <translation>Mods Activos</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a list of esps and esms that were active when the save game was created.</span></p></body></html></source> - <translation type="obsolete">Esta es la lista de esps and esms que estaban activos cuando se guardo esta partida.</translation> + <translation>Activar Mods</translation> </message> <message> <location filename="activatemodsdialog.ui" line="20"/> @@ -75,8 +67,8 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">For each esp, the right column contains the mod (or mods) that can be enabled to make the missing esps/esms available.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you hit Ok, all the mods selected in the right columns and all missing esps that have become available will be activated.</span></p></body></html></source> - <translation>Esta es la lista de esps and esms que estaban activos cuando se guardo esta partida. -Para cada esp. La lista de la derecha contiene el mod (o mods) que pueden seractivados. + <translation>Esta es la lista de esps y esms que estaban activos cuando se guardo esta partida. +Para cada esp. La lista de la derecha contiene el mod (o mods) que pueden ser activados. Si pulsas Aceptar, todos los mods seleccionados en la columna de la derecha seran habilitados y activados.</translation> </message> @@ -101,7 +93,7 @@ Si pulsas Aceptar, todos los mods seleccionados en la columna de la derecha sera <message> <location filename="baincomplexinstallerdialog.ui" line="14"/> <source>BAIN Package Installer</source> - <translation>Instalador de paquete BAIN</translation> + <translation>Instalador de Paquete BAIN</translation> </message> <message> <location filename="baincomplexinstallerdialog.ui" line="22"/> @@ -122,7 +114,7 @@ Si pulsas Aceptar, todos los mods seleccionados en la columna de la derecha sera <location filename="baincomplexinstallerdialog.ui" line="47"/> <source>Components of this package. If there is a component called "00 Core" it is usually required. Options are ordered by priority as set up by the author.</source> - <translation>Componentes de este paquete. /nSi existe un componente llamado "00 Core" es requerido. Las opciones de orden y prioridad han sido definidas por el autor.</translation> + <translation>Componentes de este paquete. /n Si existe un componente que es requerido llamado "00 Core" . Las opciones de orden y prioridad han sido definidas por el autor.</translation> </message> <message> <location filename="baincomplexinstallerdialog.ui" line="57"/> @@ -133,13 +125,13 @@ If there is a component called "00 Core" it is usually required. Optio <message> <location filename="baincomplexinstallerdialog.ui" line="63"/> <source>Package.txt</source> - <translation>Package.txt</translation> + <translation>Paquete.txt</translation> </message> <message> <location filename="baincomplexinstallerdialog.ui" line="83"/> <location filename="baincomplexinstallerdialog.ui" line="86"/> <source>Opens a Dialog that allows custom modifications.</source> - <translation>Abre el dialogo para la personalizacion.</translation> + <translation>Abre un diálogo que permite modificaciones personalizadas.</translation> </message> <message> <location filename="baincomplexinstallerdialog.ui" line="89"/> @@ -149,7 +141,7 @@ If there is a component called "00 Core" it is usually required. Optio <message> <location filename="baincomplexinstallerdialog.ui" line="96"/> <source>Ok</source> - <translation>Ok</translation> + <translation>Aceptar</translation> </message> <message> <location filename="baincomplexinstallerdialog.ui" line="103"/> @@ -158,6 +150,29 @@ If there is a component called "00 Core" it is usually required. Optio </message> </context> <context> + <name>BrowserDialog</name> + <message> + <location filename="browserdialog.ui" line="14"/> + <source>Some Page</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="browserdialog.ui" line="256"/> + <source>Search</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="browserdialog.cpp" line="91"/> + <source>new</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="browserdialog.cpp" line="204"/> + <source>failed to start download</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> <name>CategoriesDialog</name> <message> <location filename="categoriesdialog.ui" line="14"/> @@ -172,12 +187,12 @@ If there is a component called "00 Core" it is usually required. Optio <message> <location filename="categoriesdialog.ui" line="69"/> <source>Internal ID for the category.</source> - <translation>ID interna para la categoria.</translation> + <translation>ID interna para la categoría.</translation> </message> <message> <location filename="categoriesdialog.ui" line="72"/> <source>Internal ID for the category. The categories a mod belongs to are stored by this ID. It is recommended you use new IDs for categories you add instead of re-using existing ones.</source> - <translation>Identificador interno de la categoría. Las categorías que pertenece un mod se almacenan por este ID. Se recomienda utilizar nuevas identificaciones para categorías, agregar en lugar de reutilizar los ya existentes.</translation> + <translation>Identificador interno de la categoría. Las categorías que pertenecen a un mod se almacenan por este ID. Se recomienda utilizar nuevas identificaciones para categorías, agregar en lugar de reutilizar los ya existentes.</translation> </message> <message> <location filename="categoriesdialog.ui" line="77"/> @@ -188,7 +203,7 @@ If there is a component called "00 Core" it is usually required. Optio <location filename="categoriesdialog.ui" line="80"/> <location filename="categoriesdialog.ui" line="83"/> <source>Name of the Categorie used for display.</source> - <translation>Nombre de la categoria</translation> + <translation>Nombre de la categoría que se utiliza para la visualización.</translation> </message> <message> <location filename="categoriesdialog.ui" line="88"/> @@ -209,7 +224,7 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">You can match one or multiple nexus categories to a internal ID. Whenever you download a mod from a Nexus Page, Mod Organizer will try to resolve the category defined on the Nexus to one available in MO.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">To find out a category id used by the nexus, visit the categories list of the nexus page and hover over the links there.</span></p></body></html></source> - <translation type="unfinished"></translation> + <translation>Puede coincidir con una o varias categorías de una ID interna de Nexus. Cada vez que se descarga un mod de la página de Nexus, Mod Organizador tratará de resolver la categoría definida en Nexus a una disponible en MO</translation> </message> <message> <location filename="categoriesdialog.ui" line="105"/> @@ -219,7 +234,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="categoriesdialog.ui" line="108"/> <source>If set, the category is defined as a sub-category of another one. Parent ID needs to be a valid category ID.</source> - <translation>Si activado, la categoria es definida como una sub-categoria de otra. Parent ID necesita una ID de categoria valida.</translation> + <translation>Si esta activado, la categoría es definida como una sub-categoría de otra. Parent ID necesita una ID de categoría valida.</translation> </message> <message> <location filename="categoriesdialog.cpp" line="239"/> @@ -237,40 +252,40 @@ p, li { white-space: pre-wrap; } <message> <location filename="credentialsdialog.ui" line="14"/> <source>Login</source> - <translation type="unfinished"></translation> + <translation>Inicio de sesión</translation> </message> <message> <location filename="credentialsdialog.ui" line="20"/> <source>This feature may not work unless you're logged in with Nexus</source> - <translation type="unfinished"></translation> + <translation>Esta función puede no funcionar a menos que estes conectado con Nexus</translation> </message> <message> <location filename="credentialsdialog.ui" line="32"/> <source>Username</source> - <translation type="unfinished">Usuario</translation> + <translation>Nombre de usuario</translation> </message> <message> <location filename="credentialsdialog.ui" line="46"/> <source>Password</source> - <translation type="unfinished">Contraseña</translation> + <translation>Contraseña</translation> </message> <message> <location filename="credentialsdialog.ui" line="64"/> <source>Remember</source> - <translation type="unfinished"></translation> + <translation>Recordar</translation> </message> <message> <location filename="credentialsdialog.ui" line="75"/> <source>Never ask again</source> - <translation type="unfinished"></translation> + <translation>No volver a preguntar</translation> </message> </context> <context> <name>DirectoryRefresher</name> <message> - <location filename="directoryrefresher.cpp" line="99"/> + <location filename="directoryrefresher.cpp" line="146"/> <source>failed to read bsa: %1</source> - <translation type="unfinished"></translation> + <translation> fallo al leer bsa: %1</translation> </message> </context> <context> @@ -278,27 +293,27 @@ p, li { white-space: pre-wrap; } <message> <location filename="downloadlist.cpp" line="64"/> <source>Name</source> - <translation type="unfinished">Nombre</translation> + <translation>Nombre</translation> </message> <message> <location filename="downloadlist.cpp" line="65"/> <source>Filetime</source> - <translation type="unfinished"></translation> + <translation>Tiempo del archivo</translation> </message> <message> <location filename="downloadlist.cpp" line="66"/> <source>Done</source> - <translation type="unfinished"></translation> + <translation>Realizado</translation> </message> <message> <location filename="downloadlist.cpp" line="82"/> <source>Information missing, please select "Query Info" from the context menu to re-retrieve.</source> - <translation type="unfinished"></translation> + <translation>Falta información, por favor selecciona "Consulta de Información" en el menú contextual para volver a recuperar.</translation> </message> <message> <location filename="downloadlist.cpp" line="89"/> <source>pending download</source> - <translation type="unfinished"></translation> + <translation>descarga pendiente</translation> </message> </context> <context> @@ -307,32 +322,32 @@ p, li { white-space: pre-wrap; } <location filename="downloadlistwidget.ui" line="17"/> <location filename="downloadlistwidget.ui" line="61"/> <source>Placeholder</source> - <translation>Marcador de posicion</translation> + <translation>Marcador de posición</translation> </message> <message> <location filename="downloadlistwidget.ui" line="99"/> - <location filename="downloadlistwidget.cpp" line="145"/> - <location filename="downloadlistwidget.cpp" line="147"/> + <location filename="downloadlistwidget.cpp" line="150"/> + <location filename="downloadlistwidget.cpp" line="152"/> <source>Done - Double Click to install</source> <translation>Listo. Doble click para instalar</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="111"/> - <location filename="downloadlistwidget.cpp" line="113"/> + <location filename="downloadlistwidget.cpp" line="116"/> + <location filename="downloadlistwidget.cpp" line="118"/> <source>Paused - Double Click to resume</source> - <translation type="unfinished"></translation> + <translation>Pausado - Doble Click para reanudar</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="131"/> - <location filename="downloadlistwidget.cpp" line="133"/> + <location filename="downloadlistwidget.cpp" line="136"/> + <location filename="downloadlistwidget.cpp" line="138"/> <source>Installed - Double Click to re-install</source> - <translation type="unfinished"></translation> + <translation>Instalado - Hacer doble clic para reinstalar</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="138"/> - <location filename="downloadlistwidget.cpp" line="140"/> + <location filename="downloadlistwidget.cpp" line="143"/> + <location filename="downloadlistwidget.cpp" line="145"/> <source>Uninstalled - Double Click to re-install</source> - <translation type="unfinished"></translation> + <translation>Desinstalado - Hacer doble clic para reinstalar</translation> </message> </context> <context> @@ -341,262 +356,262 @@ p, li { white-space: pre-wrap; } <location filename="downloadlistwidgetcompact.ui" line="17"/> <location filename="downloadlistwidgetcompact.ui" line="56"/> <source>Placeholder</source> - <translation type="unfinished"></translation> + <translation>Marcador de posicion</translation> </message> <message> <location filename="downloadlistwidgetcompact.ui" line="122"/> <source>Done</source> - <translation type="unfinished"></translation> + <translation>Realizado</translation> </message> </context> <context> <name>DownloadListWidgetCompactDelegate</name> <message> - <location filename="downloadlistwidgetcompact.cpp" line="241"/> - <location filename="downloadlistwidgetcompact.cpp" line="250"/> - <location filename="downloadlistwidgetcompact.cpp" line="259"/> - <location filename="downloadlistwidgetcompact.cpp" line="268"/> - <source>Are you sure?</source> - <translation type="unfinished">Estas seguro?</translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="242"/> - <source>This will remove all finished downloads from this list and from disk.</source> - <translation type="unfinished">Esto limpiara todas las descargas finalizadas del disco y la lista.</translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="251"/> - <source>This will remove all installed downloads from this list and from disk.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="298"/> - <source>Install</source> - <translation type="unfinished">Instalar</translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="300"/> - <source>Query Info</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="312"/> - <source>Remove</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="309"/> - <source>Cancel</source> - <translation type="unfinished">Cancelar</translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="88"/> + <location filename="downloadlistwidgetcompact.cpp" line="92"/> <source>< mod %1 file %2 ></source> - <translation type="unfinished"></translation> + <translation>< mod %1 file %2 ></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="93"/> + <location filename="downloadlistwidgetcompact.cpp" line="97"/> <source>Pending</source> - <translation type="unfinished"></translation> + <translation>Pendiente</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="116"/> + <location filename="downloadlistwidgetcompact.cpp" line="120"/> <source>Paused</source> - <translation type="unfinished"></translation> + <translation>Pausado</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="119"/> + <location filename="downloadlistwidgetcompact.cpp" line="123"/> <source>Fetching Info 1</source> - <translation type="unfinished"></translation> + <translation>Recibiendo información 1</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="121"/> + <location filename="downloadlistwidgetcompact.cpp" line="125"/> <source>Fetching Info 2</source> - <translation type="unfinished"></translation> + <translation>Recibiendo información 2</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="126"/> + <location filename="downloadlistwidgetcompact.cpp" line="130"/> <source>Installed</source> - <translation type="unfinished"></translation> + <translation>Instalado</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="129"/> + <location filename="downloadlistwidgetcompact.cpp" line="133"/> <source>Uninstalled</source> - <translation type="unfinished"></translation> + <translation>Desinstalado</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="132"/> + <location filename="downloadlistwidgetcompact.cpp" line="136"/> <source>Done</source> - <translation type="unfinished"></translation> + <translation>Realizado</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="245"/> + <location filename="downloadlistwidgetcompact.cpp" line="254"/> + <location filename="downloadlistwidgetcompact.cpp" line="263"/> + <location filename="downloadlistwidgetcompact.cpp" line="272"/> + <source>Are you sure?</source> + <translation>¿Estás seguro?</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="246"/> + <source>This will remove all finished downloads from this list and from disk.</source> + <translation>Esto limpiara todas las descargas finalizadas del disco y la lista.</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="255"/> + <source>This will remove all installed downloads from this list and from disk.</source> + <translation>Esto limpiara todas las descargas instaladas del disco y de la lista.</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="260"/> + <location filename="downloadlistwidgetcompact.cpp" line="264"/> <source>This will permanently remove all finished downloads from this list (but NOT from disk).</source> - <translation type="unfinished"></translation> + <translation>Esta acción eliminará todas las descargas terminadas de esta lista (pero NO del disco).</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="269"/> + <location filename="downloadlistwidgetcompact.cpp" line="273"/> <source>This will permanently remove all installed downloads from this list (but NOT from disk).</source> - <translation type="unfinished"></translation> + <translation>Esta acción eliminará permanentemente todas las descargas instaladas de esta lista (pero NO del disco) </translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="302"/> - <source>Delete</source> - <translation type="unfinished"></translation> + <source>Install</source> + <translation>Instalar</translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="304"/> - <source>Un-Hide</source> - <translation type="unfinished"></translation> + <source>Query Info</source> + <translation>Información de Consulta</translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="306"/> - <source>Remove from View</source> - <translation type="unfinished"></translation> + <source>Delete</source> + <translation>Eliminar</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="308"/> + <source>Un-Hide</source> + <translation>Un-Hide</translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="310"/> - <source>Pause</source> - <translation type="unfinished"></translation> + <source>Remove from View</source> + <translation>Quitar de la Vista</translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="313"/> + <source>Cancel</source> + <translation>Cancelar</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="314"/> + <source>Pause</source> + <translation>Pausa</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="316"/> + <source>Remove</source> + <translation>Eliminar</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="317"/> <source>Resume</source> - <translation type="unfinished"></translation> + <translation>Reanudar</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="318"/> + <location filename="downloadlistwidgetcompact.cpp" line="322"/> <source>Delete Installed...</source> - <translation type="unfinished"></translation> + <translation>Eliminar Instalado...</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="319"/> + <location filename="downloadlistwidgetcompact.cpp" line="323"/> <source>Delete All...</source> - <translation type="unfinished"></translation> + <translation>Eliminar todo...</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="322"/> + <location filename="downloadlistwidgetcompact.cpp" line="326"/> <source>Remove Installed...</source> - <translation type="unfinished"></translation> + <translation>Quitar Instalado...</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="323"/> + <location filename="downloadlistwidgetcompact.cpp" line="327"/> <source>Remove All...</source> - <translation type="unfinished">Quitar todos...</translation> + <translation>Quitar Todo...</translation> </message> </context> <context> <name>DownloadListWidgetDelegate</name> <message> - <location filename="downloadlistwidget.cpp" line="253"/> - <location filename="downloadlistwidget.cpp" line="262"/> - <location filename="downloadlistwidget.cpp" line="271"/> - <location filename="downloadlistwidget.cpp" line="280"/> + <location filename="downloadlistwidget.cpp" line="93"/> + <source>< mod %1 file %2 ></source> + <translation>< mod %1 file %2 ></translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="96"/> + <source>Pending</source> + <translation>Pendiente</translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="123"/> + <source>Fetching Info 1</source> + <translation>Recibiendo información 1</translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="126"/> + <source>Fetching Info 2</source> + <translation>Recibiendo información 2</translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="258"/> + <location filename="downloadlistwidget.cpp" line="267"/> + <location filename="downloadlistwidget.cpp" line="276"/> + <location filename="downloadlistwidget.cpp" line="285"/> <source>Are you sure?</source> - <translation>Estas seguro?</translation> + <translation>¿Estás seguro?</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="254"/> + <location filename="downloadlistwidget.cpp" line="259"/> <source>This will remove all finished downloads from this list and from disk.</source> <translation>Esto limpiara todas las descargas finalizadas del disco y la lista.</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="263"/> + <location filename="downloadlistwidget.cpp" line="268"/> <source>This will remove all installed downloads from this list and from disk.</source> - <translation type="unfinished"></translation> + <translation>Esto eliminará todas las descargas finalizadas de la lista y del disco.</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="272"/> + <location filename="downloadlistwidget.cpp" line="277"/> <source>This will remove all finished downloads from this list (but NOT from disk).</source> - <translation type="unfinished"></translation> + <translation>Esto eliminará todas las descargas finalizadas de la lista (pero NO del disco).</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="281"/> + <location filename="downloadlistwidget.cpp" line="286"/> <source>This will remove all installed downloads from this list (but NOT from disk).</source> - <translation type="unfinished"></translation> + <translation>Esto eliminará todas las descargas instaladas de esta lista (pero NO del disco).</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="309"/> + <location filename="downloadlistwidget.cpp" line="314"/> <source>Install</source> <translation>Instalar</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="311"/> + <location filename="downloadlistwidget.cpp" line="316"/> <source>Query Info</source> - <translation type="unfinished"></translation> + <translation>Información de Consulta</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="313"/> + <location filename="downloadlistwidget.cpp" line="318"/> <source>Delete</source> - <translation type="unfinished"></translation> + <translation>Eliminar</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="315"/> + <location filename="downloadlistwidget.cpp" line="320"/> <source>Un-Hide</source> - <translation type="unfinished"></translation> + <translation>Un-Hide</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="317"/> + <location filename="downloadlistwidget.cpp" line="322"/> <source>Remove from View</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="323"/> - <source>Remove</source> - <translation>Quitar</translation> + <translation>Quitar de la Vista</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="320"/> + <location filename="downloadlistwidget.cpp" line="325"/> <source>Cancel</source> <translation>Cancelar</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="88"/> - <source>< mod %1 file %2 ></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="91"/> - <source>Pending</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="118"/> - <source>Fetching Info 1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="121"/> - <source>Fetching Info 2</source> - <translation type="unfinished"></translation> + <location filename="downloadlistwidget.cpp" line="326"/> + <source>Pause</source> + <translation>Pausa</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="321"/> - <source>Pause</source> - <translation type="unfinished"></translation> + <location filename="downloadlistwidget.cpp" line="328"/> + <source>Remove</source> + <translation>Quitar</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="324"/> + <location filename="downloadlistwidget.cpp" line="329"/> <source>Resume</source> - <translation type="unfinished"></translation> + <translation>Reanudar</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="329"/> + <location filename="downloadlistwidget.cpp" line="334"/> <source>Delete Installed...</source> - <translation type="unfinished"></translation> + <translation>Eliminar Instalado...</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="330"/> + <location filename="downloadlistwidget.cpp" line="335"/> <source>Delete All...</source> - <translation type="unfinished"></translation> + <translation>Eliminar Todo...</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="333"/> + <location filename="downloadlistwidget.cpp" line="338"/> <source>Remove Installed...</source> - <translation type="unfinished"></translation> + <translation>Eliminando Instalación...</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="334"/> + <location filename="downloadlistwidget.cpp" line="339"/> <source>Remove All...</source> <translation>Quitar todos...</translation> </message> @@ -604,136 +619,175 @@ p, li { white-space: pre-wrap; } <context> <name>DownloadManager</name> <message> - <location filename="downloadmanager.cpp" line="132"/> + <location filename="downloadmanager.cpp" line="142"/> <source>failed to rename "%1" to "%2"</source> + <translation>Fallo al renombrar "%1" a "%2"</translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="321"/> + <source>Memory allocation error (in refreshing directory).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadmanager.cpp" line="342"/> + <location filename="downloadmanager.cpp" line="369"/> <source>Download again?</source> - <translation type="unfinished"></translation> + <translation>¿Descargar de nuevo?</translation> </message> <message> - <location filename="downloadmanager.cpp" line="342"/> + <location filename="downloadmanager.cpp" line="369"/> <source>A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name.</source> - <translation type="unfinished"></translation> + <translation>Un archivo con el mismo nombre ya se ha descargado. ¿Quieres volver a descargarlo? El nuevo archivo recibirá un nombre diferente.</translation> </message> <message> - <location filename="downloadmanager.cpp" line="388"/> + <location filename="downloadmanager.cpp" line="417"/> <source>failed to download %1: could not open output file: %2</source> <translation>error en la descarga %1: no se puede abrir el fichero de destino: %2</translation> </message> <message> - <location filename="downloadmanager.cpp" line="421"/> + <location filename="downloadmanager.cpp" line="454"/> <source>Wrong Game</source> - <translation type="unfinished"></translation> + <translation>Juego Incorrecto</translation> </message> <message> - <location filename="downloadmanager.cpp" line="421"/> + <location filename="downloadmanager.cpp" line="454"/> <source>The download link is for a mod for "%1" but this instance of MO has been set up for "%2".</source> - <translation type="unfinished"></translation> + <translation>El enlace de descarga es un mod para "%1" pero en este caso MO se ha creado para "%2".</translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="471"/> + <location filename="downloadmanager.cpp" line="538"/> + <location filename="downloadmanager.cpp" line="726"/> + <location filename="downloadmanager.cpp" line="735"/> + <location filename="downloadmanager.cpp" line="756"/> + <location filename="downloadmanager.cpp" line="773"/> + <location filename="downloadmanager.cpp" line="782"/> + <location filename="downloadmanager.cpp" line="796"/> + <location filename="downloadmanager.cpp" line="806"/> + <location filename="downloadmanager.cpp" line="816"/> + <location filename="downloadmanager.cpp" line="826"/> + <location filename="downloadmanager.cpp" line="841"/> + <location filename="downloadmanager.cpp" line="849"/> + <location filename="downloadmanager.cpp" line="858"/> + <location filename="downloadmanager.cpp" line="868"/> + <location filename="downloadmanager.cpp" line="883"/> + <source>invalid index</source> + <translation>Índice no válido.</translation> </message> <message> - <location filename="downloadmanager.cpp" line="457"/> + <location filename="downloadmanager.cpp" line="489"/> <source>failed to delete %1</source> - <translation type="unfinished"></translation> + <translation>fallo al borrar %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="463"/> + <location filename="downloadmanager.cpp" line="495"/> <source>failed to delete meta file for %1</source> - <translation type="unfinished"></translation> + <translation>fallo al eliminar el archivo meta de 1%</translation> </message> <message> - <location filename="downloadmanager.cpp" line="539"/> - <location filename="downloadmanager.cpp" line="557"/> - <location filename="downloadmanager.cpp" line="570"/> - <location filename="downloadmanager.cpp" line="587"/> - <location filename="downloadmanager.cpp" line="598"/> + <location filename="downloadmanager.cpp" line="571"/> + <location filename="downloadmanager.cpp" line="589"/> + <location filename="downloadmanager.cpp" line="602"/> + <location filename="downloadmanager.cpp" line="622"/> <location filename="downloadmanager.cpp" line="633"/> + <location filename="downloadmanager.cpp" line="673"/> <source>invalid index %1</source> - <translation>indice invalido %1</translation> + <translation>Índice no válido %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1042"/> - <source>Information updated</source> + <location filename="downloadmanager.cpp" line="640"/> + <source>No known download urls. Sorry, this download can't be resumed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadmanager.cpp" line="1044"/> - <location filename="downloadmanager.cpp" line="1058"/> - <source>No matching file found on Nexus! Maybe this file is no longer available or it was renamed?</source> - <translation type="unfinished"></translation> + <location filename="downloadmanager.cpp" line="695"/> + <source>Please enter the nexus mod id</source> + <translation>Por favor, introduzca la ID del mod en nexus</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1046"/> - <source>No file on Nexus matches the selected file by name. Please manually choose the correct one.</source> - <translation type="unfinished"></translation> + <location filename="downloadmanager.cpp" line="695"/> + <source>Mod ID:</source> + <translation>ID del MOD</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1180"/> - <source>No download server available. Please try again later.</source> - <translation type="unfinished"></translation> + <location filename="downloadmanager.cpp" line="744"/> + <source>Main</source> + <translation type="unfinished">Principal</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1224"/> - <source>Failed to request file info from nexus: %1</source> + <location filename="downloadmanager.cpp" line="745"/> + <source>Update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadmanager.cpp" line="1249"/> - <source>Download failed. Server reported: %1</source> - <translation type="unfinished"></translation> + <location filename="downloadmanager.cpp" line="746"/> + <source>Optional</source> + <translation type="unfinished">Opcional</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1251"/> - <source>Download failed: %1 (%2)</source> - <translation type="unfinished"></translation> + <location filename="downloadmanager.cpp" line="747"/> + <source>Old</source> + <translation type="unfinished">Antiguo</translation> </message> <message> - <source>failed to delete file</source> - <translation type="obsolete">error borrando el fichero</translation> + <location filename="downloadmanager.cpp" line="748"/> + <source>Misc</source> + <translation type="unfinished">Misc</translation> </message> <message> - <location filename="downloadmanager.cpp" line="439"/> - <location filename="downloadmanager.cpp" line="506"/> - <location filename="downloadmanager.cpp" line="682"/> - <location filename="downloadmanager.cpp" line="691"/> - <location filename="downloadmanager.cpp" line="701"/> - <location filename="downloadmanager.cpp" line="710"/> - <location filename="downloadmanager.cpp" line="724"/> - <location filename="downloadmanager.cpp" line="734"/> - <location filename="downloadmanager.cpp" line="744"/> - <location filename="downloadmanager.cpp" line="754"/> - <location filename="downloadmanager.cpp" line="765"/> - <location filename="downloadmanager.cpp" line="773"/> - <location filename="downloadmanager.cpp" line="782"/> - <location filename="downloadmanager.cpp" line="792"/> - <location filename="downloadmanager.cpp" line="807"/> - <source>invalid index</source> - <translation>indice invalido</translation> + <location filename="downloadmanager.cpp" line="749"/> + <source>Unknown</source> + <translation type="unfinished">Desconocido</translation> </message> <message> - <location filename="downloadmanager.cpp" line="650"/> - <source>Please enter the nexus mod id</source> + <location filename="downloadmanager.cpp" line="999"/> + <source>Memory allocation error (in processing progress event).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadmanager.cpp" line="650"/> - <source>Mod ID:</source> + <location filename="downloadmanager.cpp" line="1012"/> + <source>Memory allocation error (in processing downloaded data).</source> <translation type="unfinished"></translation> </message> <message> - <source>Failed to request file info from nexus!</source> - <translation type="obsolete">Fallo la peticion de fichero de Nexus!</translation> + <location filename="downloadmanager.cpp" line="1141"/> + <source>Information updated</source> + <translation>Información actualizada</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1331"/> - <source>failed to re-open %1</source> - <translation>error reabriendo %1</translation> + <location filename="downloadmanager.cpp" line="1143"/> + <location filename="downloadmanager.cpp" line="1157"/> + <source>No matching file found on Nexus! Maybe this file is no longer available or it was renamed?</source> + <translation>¡Ningún archivo que corresponda se encuentra en Nexus! ¿Tal vez este archivo ya no está disponible o fue renombrado?</translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="1145"/> + <source>No file on Nexus matches the selected file by name. Please manually choose the correct one.</source> + <translation>Ningún archivo de Nexus coincide con el archivo seleccionado por su nombre. Por favor, elegir manualmente el correcto.</translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="1286"/> + <source>No download server available. Please try again later.</source> + <translation>No hay ningún servidor de descarga disponible. Por favor, inténtelo de nuevo más tarde.</translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="1329"/> + <source>Failed to request file info from nexus: %1</source> + <translation>Fallo al solicitar información de archivo desde nexus: %1</translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="1357"/> + <source>Download failed. Server reported: %1</source> + <translation>Error en la descarga. Informe servidor: %1</translation> </message> <message> - <source>failed to parse nexus response</source> - <translation type="obsolete">error de respuesta de nexus</translation> + <location filename="downloadmanager.cpp" line="1359"/> + <source>Download failed: %1 (%2)</source> + <translation>Fallo en la descarga: %1 (%2)</translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="1458"/> + <source>failed to re-open %1</source> + <translation>error reabriendo %1</translation> </message> </context> <context> @@ -794,7 +848,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="editexecutablesdialog.ui" line="93"/> <source>Start in</source> - <translation type="unfinished"></translation> + <translation>Comienzo en</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="114"/> @@ -810,31 +864,35 @@ p, li { white-space: pre-wrap; } <message> <location filename="editexecutablesdialog.ui" line="135"/> <source>Allow the Steam AppID to be used for this executable to be changed.</source> - <translation type="unfinished"></translation> + <translation>Permite la AppID de Steam para ser usada por este ejecutable para ser cambiada.</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="138"/> <source>Allow the Steam AppID to be used for this executable to be changed. Every game/tool distributed through Steam has a unique ID. MO needs to know this ID to start those programs directly, otherwise the program is started by steam and then MO will not work. By default, MO will use the AppID for the game. Right now the only case I know of where this needs to be overwritten is for the Skyrim Creation Kit which has its own AppID. This overwrite is already preconfigured.</source> - <translation type="unfinished"></translation> + <translation>Permitir que el AppID de Steam se utilice para ser cambiado este ejecutable. +Todos los juegos/herramientas distribuidas a través de Steam tiene un identificador único. MO necesita saber este ID para iniciar esos programas directamente, de lo contrario el programa se inicia por medio de Steam y MO no funcionará. Por defecto, MO utilizará el AppID para el juego. +En este momento el único caso que conozco donde esto debe ser sobreescrito es para el Skyrim Creation Kit que tiene su propio AppID. Esta sobrescritura ya está preconfigurada.</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="143"/> <source>Overwrite Steam AppID</source> - <translation type="unfinished"></translation> + <translation>Sobrescribir AppID Steam</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="153"/> <source>Steam AppID to use for this executable that differs from the games AppID.</source> - <translation type="unfinished"></translation> + <translation>Steam AppID usa este ejecutable para diferenciar los juegos AppID.</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="156"/> <source>Steam AppID to use for this executable that differs from the games AppID. Every game/tool distributed through Steam has a unique ID. MO needs to know this ID to start those programs directly, otherwise the program is started by steam and then MO will not work. By default, MO will use the AppID for the game (usually 72850). Right now the only case I know of where this needs to be overwritten is for the Skyrim Creation Kit which has its own AppID (usually 202480). This overwrite is already preconfigured.</source> - <translation type="unfinished"></translation> + <translation>Steam AppID usa este ejecutable que es diferente a la AppID del juego. +Todos los juegos/distribuyen herramientas a través de Steam que tiene un identificador único. MO necesita saber este ID para iniciar esos programas directamente, de lo contrario el programa se iniciara por medio de Steam y MO no funcionará. Por defecto, MO utilizará el AppID para el juego (normalmente 72850). +En este momento el único caso que conozco donde esto debe ser sobreescrito es para el Skyrim Creation Kit que tiene su propio AppID (normalmente 202480). Esta sobrescritura ya está preconfigurada.</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="169"/> @@ -874,7 +932,7 @@ Right now the only case I know of where this needs to be overwritten is for the <message> <location filename="editexecutablesdialog.ui" line="233"/> <source>Close</source> - <translation type="unfinished">Cerrar</translation> + <translation>Cerrar</translation> </message> <message> <location filename="editexecutablesdialog.cpp" line="125"/> @@ -884,58 +942,54 @@ Right now the only case I know of where this needs to be overwritten is for the <message> <location filename="editexecutablesdialog.cpp" line="125"/> <source>Executable (%1)</source> - <translation type="unfinished"></translation> + <translation>Ejecutable (%1)</translation> </message> <message> <location filename="editexecutablesdialog.cpp" line="149"/> <source>Java (32-bit) required</source> - <translation type="unfinished"></translation> + <translation>Java (32-bit) requeredo</translation> </message> <message> <location filename="editexecutablesdialog.cpp" line="150"/> <source>MO requires 32-bit java to run this application. If you already have it installed, select javaw.exe from that installation as the binary.</source> - <translation type="unfinished"></translation> + <translation>MO requiere Java de 32 bits para ejecutar esta aplicación. Si ya se ha instalado, seleccione javaw.exe desde esa instalación como el binario.</translation> </message> <message> <location filename="editexecutablesdialog.cpp" line="166"/> <source>Select a directory</source> - <translation type="unfinished"></translation> + <translation>Seleccione un directorio</translation> </message> <message> <location filename="editexecutablesdialog.cpp" line="175"/> <source>Confirm</source> - <translation type="unfinished">Confirma</translation> + <translation>Confirmar</translation> </message> <message> <location filename="editexecutablesdialog.cpp" line="175"/> <source>Really remove "%1" from executables?</source> - <translation type="unfinished"></translation> + <translation>Realmente eliminar "%1" de ejecutables?</translation> + </message> + <message> + <location filename="editexecutablesdialog.cpp" line="200"/> + <source>Modify</source> + <translation>Modificar</translation> </message> <message> <location filename="editexecutablesdialog.cpp" line="230"/> <location filename="editexecutablesdialog.cpp" line="278"/> <source>Save Changes?</source> - <translation type="unfinished"></translation> + <translation>¿Guardar cambios?</translation> </message> <message> <location filename="editexecutablesdialog.cpp" line="231"/> <location filename="editexecutablesdialog.cpp" line="279"/> <source>You made changes to the current executable, do you want to save them?</source> - <translation type="unfinished"></translation> + <translation>Has hecho cambios en el ejecutable actual, quieres salvarlos?</translation> </message> <message> <location filename="editexecutablesdialog.cpp" line="255"/> <source>MO must be kept running or this application will not work correctly.</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Executable (*.exe *.bat)</source> - <translation type="obsolete">Ejecutable (*.exe *.bat)</translation> - </message> - <message> - <location filename="editexecutablesdialog.cpp" line="200"/> - <source>Modify</source> - <translation>Modificar</translation> + <translation>MO debe mantenerse en ejecución o esta aplicación no funcionará correctamente.</translation> </message> </context> <context> @@ -980,60 +1034,52 @@ Right now the only case I know of where this needs to be overwritten is for the <message> <location filename="fomodinstallerdialog.ui" line="14"/> <source>FOMOD Installation Dialog</source> - <translation type="unfinished"></translation> + <translation>FOMOD Diálogo de Instalación</translation> </message> <message> <location filename="fomodinstallerdialog.ui" line="22"/> <source>Name</source> - <translation type="unfinished">Nombre</translation> + <translation>Nombre</translation> </message> <message> <location filename="fomodinstallerdialog.ui" line="46"/> <source>Author</source> - <translation type="unfinished"></translation> + <translation>Autor</translation> </message> <message> <location filename="fomodinstallerdialog.ui" line="60"/> <source>Version</source> - <translation type="unfinished"></translation> + <translation>Version</translation> </message> <message> <location filename="fomodinstallerdialog.ui" line="74"/> <source>Website</source> - <translation type="unfinished"></translation> + <translation>Página web</translation> </message> <message> <location filename="fomodinstallerdialog.ui" line="81"/> <source><a href="#">Link</a></source> - <translation type="unfinished"></translation> + <translation><a href="#">Link</a></translation> </message> <message> <location filename="fomodinstallerdialog.ui" line="160"/> <source>Manual</source> - <translation type="unfinished">Manual</translation> + <translation>Manual</translation> </message> <message> <location filename="fomodinstallerdialog.ui" line="170"/> <source>Back</source> - <translation type="unfinished"></translation> + <translation>Atrás</translation> </message> <message> <location filename="fomodinstallerdialog.ui" line="177"/> <source>Next</source> - <translation type="unfinished"></translation> + <translation>Siguiente</translation> </message> <message> <location filename="fomodinstallerdialog.ui" line="184"/> <source>Cancel</source> - <translation type="unfinished">Cancelar</translation> - </message> - <message> - <source>None</source> - <translation type="obsolete">Nada</translation> - </message> - <message> - <source>Install</source> - <translation type="obsolete">Instalar</translation> + <translation>Cancelar</translation> </message> </context> <context> @@ -1074,30 +1120,6 @@ Right now the only case I know of where this needs to be overwritten is for the <translation>Contenido del fichero. Puedes cambiar la estructura del directorio usando agarrar y arrastrar. Truco: Tambien puedes usar boton derecho...</translation> </message> <message> - <location filename="installdialog.ui" line="121"/> - <source>Placeholder</source> - <translation>Marcador de posicion</translation> - </message> - <message> - <location filename="installdialog.ui" line="141"/> - <source>OK</source> - <translation type="unfinished">OK</translation> - </message> - <message> - <location filename="installdialog.ui" line="148"/> - <source>Cancel</source> - <translation type="unfinished">Cancelar</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Content of the archive. You can change the directory structure by using drag&amp;drop. </span><span style=" font-size:8pt; font-weight:600;">Hint</span><span style=" font-size:8pt;">: Also try right clicking</span></p></body></html></source> - <translation type="obsolete">Contenido del archivo. Puedes cambiar la estructura de ficheros simplemente arrastrando y soltando. -Truco: Tambien puedes probar el boton derecho.</translation> - </message> - <message> <location filename="installdialog.ui" line="78"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -1107,51 +1129,27 @@ p, li { white-space: pre-wrap; } <translation>Esto muestra los contenidos del archivo. DATA representa el directorio base que sera virtualizado al directorio DATA del juego. Puedes cambiar el directorio base utilizando el boton derecho del raton en el menu contextual, y puedes mover los ficheros utilizando el arrastrar y soltar.</translation> </message> <message> - <source>Looks good</source> - <translation type="obsolete">Es correcto</translation> - </message> - <message> - <source>No problem detected</source> - <translation type="obsolete">No se detectan problemas</translation> - </message> - <message> - <source>No game data on top level</source> - <translation type="obsolete">No hay datos de juego en el directorio actual</translation> - </message> - <message> - <source>There is no esp/esm file or asset directory (textures, meshes, interface, ...) on the top level.</source> - <translation type="obsolete">No existen ficheros asp/esm en el directorio (textures, meshes, interface, ...).</translation> - </message> - <message> - <source>Enter a directory name</source> - <translation type="obsolete">Selecciona el nombre del directorio</translation> - </message> - <message> - <source>A directory with that name exists</source> - <translation type="obsolete">Ya exsite ese directorio</translation> - </message> - <message> - <source>Set data directory</source> - <translation type="obsolete">Selecciona el directorio de los datos</translation> - </message> - <message> - <source>Unset data directory</source> - <translation type="obsolete">Deseleccionar directorio</translation> + <location filename="installdialog.ui" line="121"/> + <source>Placeholder</source> + <translation>Marcador de posicion</translation> </message> <message> - <source>Create directory...</source> - <translation type="obsolete">Crear directorio...</translation> + <location filename="installdialog.ui" line="141"/> + <source>OK</source> + <translation>Aceptar</translation> </message> <message> - <source>&Open</source> - <translation type="obsolete">&Open</translation> + <location filename="installdialog.ui" line="148"/> + <source>Cancel</source> + <translation>Cancelar</translation> </message> </context> <context> <name>InstallationManager</name> <message> - <source>mo_archive.dll not loaded: "%1"</source> - <translation type="obsolete">mo_archive no cargado: "%1"</translation> + <location filename="installationmanager.cpp" line="76"/> + <source>archive.dll not loaded: "%1"</source> + <translation>archivo.dll no cargado: "%1"</translation> </message> <message> <location filename="installationmanager.cpp" line="98"/> @@ -1164,116 +1162,90 @@ p, li { white-space: pre-wrap; } <translation>Contraseña</translation> </message> <message> - <source>Directory exists</source> - <translation type="obsolete">Directorio existe</translation> - </message> - <message> - <source>The mod seems to be installed already. Do you want to add files from this archive (overwriting existing ones)?</source> - <translation type="obsolete">Este Mod parece que ya esta instalado. Quieres agregar los ficheros de este otro mod (Sobreescribiendo los existentes)?</translation> - </message> - <message> <location filename="installationmanager.cpp" line="164"/> <location filename="installationmanager.cpp" line="248"/> - <location filename="installationmanager.cpp" line="529"/> + <location filename="installationmanager.cpp" line="530"/> <source>Extracting files</source> <translation>Extrayendo ficheros</translation> </message> <message> - <location filename="installationmanager.cpp" line="757"/> - <source>failed to open archive</source> - <translation>Error abriendo el fichero</translation> - </message> - <message> - <location filename="installationmanager.cpp" line="609"/> - <source>File format "%1" not supported</source> - <translation>Formato de archivo no soportado para "%1"</translation> - </message> - <message> - <source>failed to open archive "%1"</source> - <translation type="obsolete">Fallo la apertura del fichero "%1"</translation> - </message> - <message> - <source>Installation as fomod failed: %1</source> - <translation type="obsolete">error al abrir el archivo "%1": %2</translation> - </message> - <message> - <source>Confirm</source> - <translation type="obsolete">Confirma</translation> - </message> - <message> - <location filename="installationmanager.cpp" line="76"/> - <source>archive.dll not loaded: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="installationmanager.cpp" line="439"/> <source>failed to create backup</source> - <translation type="unfinished"></translation> + <translation>fallo al crear copia de seguridad</translation> </message> <message> <location filename="installationmanager.cpp" line="448"/> <source>Mod Name</source> - <translation type="unfinished"></translation> + <translation>Nombre del Mod</translation> </message> <message> <location filename="installationmanager.cpp" line="448"/> <source>Name</source> - <translation type="unfinished">Nombre</translation> + <translation>Nombre</translation> </message> <message> <location filename="installationmanager.cpp" line="501"/> <source>Invalid name</source> - <translation type="unfinished"></translation> + <translation>Nombre inválido</translation> </message> <message> <location filename="installationmanager.cpp" line="502"/> <source>The name you entered is invalid, please enter a different one.</source> - <translation type="unfinished"></translation> + <translation>El nombre introducido no es válido, por favor introduzca uno diferente.</translation> + </message> + <message> + <location filename="installationmanager.cpp" line="610"/> + <source>File format "%1" not supported</source> + <translation>Formato de archivo no soportado para "%1"</translation> </message> <message> - <location filename="installationmanager.cpp" line="735"/> + <location filename="installationmanager.cpp" line="743"/> <source>None of the available installer plugins were able to handle that archive</source> - <translation type="unfinished"></translation> + <translation>Ninguno de los plugins del instalador disponible son capaces de manejar este archivo</translation> </message> <message> - <location filename="installationmanager.cpp" line="745"/> + <location filename="installationmanager.cpp" line="753"/> <source>no error</source> <translation>sin error</translation> </message> <message> - <location filename="installationmanager.cpp" line="748"/> + <location filename="installationmanager.cpp" line="756"/> <source>7z.dll not found</source> <translation>7z.dll no se encuentra</translation> </message> <message> - <location filename="installationmanager.cpp" line="751"/> + <location filename="installationmanager.cpp" line="759"/> <source>7z.dll isn't valid</source> <translation>7z.dll no es valido</translation> </message> <message> - <location filename="installationmanager.cpp" line="754"/> + <location filename="installationmanager.cpp" line="762"/> <source>archive not found</source> <translation>archivo no encontrado</translation> </message> <message> - <location filename="installationmanager.cpp" line="760"/> + <location filename="installationmanager.cpp" line="765"/> + <source>failed to open archive</source> + <translation>Error abriendo el fichero</translation> + </message> + <message> + <location filename="installationmanager.cpp" line="768"/> <source>unsupported archive type</source> <translation>formato de fichero no soportado</translation> </message> <message> - <location filename="installationmanager.cpp" line="763"/> + <location filename="installationmanager.cpp" line="771"/> <source>internal library error</source> <translation>error interno de libreria</translation> </message> <message> - <location filename="installationmanager.cpp" line="766"/> + <location filename="installationmanager.cpp" line="774"/> <source>archive invalid</source> <translation>archivo invalido</translation> </message> <message> - <location filename="installationmanager.cpp" line="770"/> + <location filename="installationmanager.cpp" line="778"/> <source>unknown archive error</source> - <translatorcomment>error desconocido del archivo</translatorcomment> <translation>Error de fichero desconocido</translation> </message> </context> @@ -1303,259 +1275,321 @@ p, li { white-space: pre-wrap; } <context> <name>LogBuffer</name> <message> - <location filename="logbuffer.cpp" line="73"/> + <location filename="logbuffer.cpp" line="83"/> <source>failed to write log to %1: %2</source> - <translation type="unfinished"></translation> + <translation>Fallo al escribir en el log en %1: %2</translation> </message> </context> <context> <name>MOApplication</name> <message> - <location filename="moapplication.cpp" line="68"/> + <location filename="moapplication.cpp" line="115"/> <source>an error occured: %1</source> - <translation type="unfinished"></translation> + <translation>Ocurrió un error: %1</translation> </message> <message> - <location filename="moapplication.cpp" line="73"/> + <location filename="moapplication.cpp" line="120"/> <source>an error occured</source> - <translation type="unfinished"></translation> + <translation>Ha ocurrido un error</translation> </message> </context> <context> <name>MainWindow</name> <message> - <location filename="mainwindow.ui" line="51"/> - <location filename="mainwindow.ui" line="392"/> + <location filename="mainwindow.ui" line="43"/> + <location filename="mainwindow.ui" line="482"/> <source>Categories</source> - <translation type="unfinished">Categorias</translation> + <translation>Categorias</translation> </message> <message> - <location filename="mainwindow.ui" line="128"/> + <location filename="mainwindow.ui" line="97"/> + <source>Click blank area to deselect</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="116"/> + <source>If checked, only mods that match all selected categories are displayed.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="119"/> + <source>And</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="129"/> + <source>If checked, all mods that match at least one of the selected categories are displayed.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="132"/> + <source>Or</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="171"/> <source>Profile</source> - <translation type="unfinished">Perfil</translation> + <translation>Perfil</translation> </message> <message> - <location filename="mainwindow.ui" line="138"/> + <location filename="mainwindow.ui" line="181"/> <source>Pick a module collection</source> - <translation type="unfinished">Selecciona un perfil para cargarlo</translation> + <translation>Selecciona un perfil para cargarlo</translation> </message> <message> - <location filename="mainwindow.ui" line="141"/> + <location filename="mainwindow.ui" line="184"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Create profiles here. Each profile contains its own list of active mods and esps. This way you can quickly switch between setups for different play throughs.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Please note that right now your esp load order is not kept seperate for different profiles.</span></p></body></html></source> - <translation type="unfinished">Crea los perfiles aqui. Cada perfil contiene su propia lista de mos y esps activos. Utilizando este metodo puedes cambiar rapidamente de configuraciones para jugar. -Por favor observa que las prioridades no son guardadas para cada perfil.</translation> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Crear perfiles aquí. Cada perfil contiene su propia lista de mods activos y esps. De esta manera puedes cambiar rápidamente entre configuraciones para diferentes juegos.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Ten en cuenta que en estos momentos tu carga de esp no se mantiene separado para diferentes perfiles.</span></p></body></html></translation> </message> <message> - <location filename="mainwindow.ui" line="159"/> + <location filename="mainwindow.ui" line="215"/> <source>Refresh list</source> - <translation type="unfinished">Recargar lista</translation> + <translation>Recargar lista</translation> </message> <message> - <location filename="mainwindow.ui" line="162"/> + <location filename="mainwindow.ui" line="218"/> <source>Refresh list. This is usually not necessary unless you modified data outside the program.</source> - <translation type="unfinished">Recargar lista. Esto es normalmente no necesario, a no ser que hayas modificado algo desde fuera del programa.</translation> + <translation>Recargar lista. Esto es normalmente no necesario, a no ser que hayas modificado algo desde fuera del programa.</translation> </message> <message> - <location filename="mainwindow.ui" line="278"/> - <source>List of available mods.</source> + <location filename="mainwindow.ui" line="238"/> + <location filename="mainwindow.ui" line="739"/> + <source>Restore Backup...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="281"/> - <source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag & drop mods to change their "installation" orders.</source> + <location filename="mainwindow.ui" line="252"/> + <location filename="mainwindow.ui" line="759"/> + <source>Create Backup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="366"/> + <location filename="mainwindow.ui" line="368"/> + <source>List of available mods.</source> + <translation>Lista de mods disponibles.</translation> + </message> + <message> + <location filename="mainwindow.ui" line="371"/> + <source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag & drop mods to change their "installation" orders.</source> + <translation>Esta es una lista de mods instalados. Usa las casillas de verificación para activar/desactivar los mods y arrastrar y soltar para cambiar su órden de "instalación".</translation> + </message> + <message> + <location filename="mainwindow.ui" line="456"/> <source>Filter</source> - <translation type="unfinished">Filtro</translation> + <translation>Filtro</translation> </message> <message> - <location filename="mainwindow.ui" line="387"/> + <location filename="mainwindow.ui" line="477"/> <source>No groups</source> - <translation type="unfinished"></translation> + <translation>Sin grupos</translation> </message> <message> - <location filename="mainwindow.ui" line="397"/> + <location filename="mainwindow.ui" line="487"/> <source>Nexus IDs</source> - <translation type="unfinished">Nexus IDs</translation> + <translation>Nexus IDs</translation> </message> <message> - <location filename="mainwindow.ui" line="405"/> - <location filename="mainwindow.ui" line="724"/> - <location filename="mainwindow.ui" line="1046"/> + <location filename="mainwindow.ui" line="495"/> + <location filename="mainwindow.ui" line="876"/> + <location filename="mainwindow.ui" line="1214"/> <source>Namefilter</source> - <translation type="unfinished"></translation> + <translation>Nombre del filtro</translation> </message> <message> - <source>Start</source> - <translation type="obsolete">Iniciar</translation> - </message> - <message> - <location filename="mainwindow.ui" line="440"/> + <location filename="mainwindow.ui" line="530"/> <source>Pick a program to run.</source> - <translation type="unfinished">Selecciona el programa a iniciar.</translation> + <translation>Selecciona el programa a iniciar.</translation> </message> <message> - <location filename="mainwindow.ui" line="443"/> + <location filename="mainwindow.ui" line="533"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Choose the program to run. Once you start using ModOrganizer, you should always run your game and tools from here or through shortcuts created here, otherwise mods installed through MO will not be visible.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">You can add new Tools to this list, but I can't promise tools I haven't tested will work.</span></p></body></html></source> - <translation type="unfinished"></translation> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Elije el programa a ejecutar. Una vez que comiences a usar ModOrganizer, siempre debes ejecutar tu juego y herramientas desde aquí o a través de los accesos directos creados aquí, de lo contrario los mods instalados a través de MO no serán visibles.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Puedes añadir nuevas herramientas a esta lista, pero no puedo prometer que herramientas que no he probado funcionen.</span></p></body></html></translation> </message> <message> - <location filename="mainwindow.ui" line="491"/> + <location filename="mainwindow.ui" line="581"/> <source>Run program</source> - <translation type="unfinished">Iniciar el programa</translation> + <translation>Iniciar el programa</translation> </message> <message> - <location filename="mainwindow.ui" line="494"/> + <location filename="mainwindow.ui" line="584"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Run the selected program with ModOrganizer enabled.</span></p></body></html></source> - <translation type="unfinished">Iniciar el programa seleccionado con ModOrganizer activado.</translation> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Iniciar el programa seleccionado con ModOrganizer activado.</span></p></body></html></translation> </message> <message> - <location filename="mainwindow.ui" line="504"/> + <location filename="mainwindow.ui" line="594"/> <source>Run</source> - <translation type="unfinished">Iniciar</translation> + <translation>Iniciar</translation> </message> <message> - <location filename="mainwindow.ui" line="545"/> + <location filename="mainwindow.ui" line="635"/> <source>Create a shortcut in your start menu or on the desktop to the specified program</source> - <translation type="unfinished"></translation> + <translation>Crear un acceso directo en el menú Inicio o en el escritorio con el programa especificado</translation> </message> <message> - <location filename="mainwindow.ui" line="548"/> + <location filename="mainwindow.ui" line="638"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This creates a start menu shortcut that directly starts the selected program with the MO active.</span></p></body></html></source> - <translation type="unfinished"></translation> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Esto crea un acceso directo al menú de inicio que iniciara directamente el programa seleccionado con el MO activo.</span></p></body></html></translation> </message> <message> - <location filename="mainwindow.ui" line="555"/> + <location filename="mainwindow.ui" line="645"/> <source>Shortcut</source> - <translation type="unfinished"></translation> + <translation>Acceso rápido</translation> </message> <message> - <source>save esp list and load order.</source> - <translation type="obsolete">Guardar la lista de prioridades de carga.</translation> + <location filename="mainwindow.ui" line="695"/> + <source>Plugins</source> + <translation type="unfinished">Plugins</translation> </message> <message> - <location filename="mainwindow.ui" line="669"/> + <location filename="mainwindow.ui" line="821"/> <source>List of available esp/esm files</source> - <translation type="unfinished">Listado de ficheros esp/esm disponibles</translation> + <translation>Listado de ficheros esp/esm disponibles</translation> </message> <message> - <location filename="mainwindow.ui" line="672"/> + <location filename="mainwindow.ui" line="824"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This list contains the esps and esms contained in the active mods. These require their own load order. Use drag&amp;drop to modify this load order. Please note that MO will only save the load order for mods that are active/checked.<br />There is a great tool named &quot;BOSS&quot; to automatically sort these files.</span></p></body></html></source> - <translation type="unfinished"></translation> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Esta lista contiene los ESP y ESMS contenidos en los mods activos. Requieren su propio orden de carga. Utilice arrastrar y soltar para modificar este orden de carga. Tenga en cuenta que MO sólo salvará el orden de carga de los mods que están activos/comprobados.<br />Hay una gran herramienta llamada &quot;BOSS&quot; para ordenar automáticamente los archivos.</span></p></body></html></translation> </message> <message> - <location filename="mainwindow.ui" line="762"/> - <source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.ui" line="715"/> + <source>Sort</source> + <translation>Ordenar</translation> </message> <message> - <location filename="mainwindow.ui" line="765"/> - <source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" with loose files in your data directory over which is loaded. -By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored! - -BSAs checked here are loaded in such a way that your installation order is obeyed properly.</source> + <location filename="mainwindow.ui" line="886"/> + <source>Archives</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="811"/> - <location filename="mainwindow.ui" line="880"/> - <source>File</source> - <translation type="unfinished">Fichero</translation> + <location filename="mainwindow.ui" line="916"/> + <source><html><head/><body><p>BSAs are bundles of game assets (textures, scripts, ...). By default, the engine loads these bundles in a separate step from loose files. MO can manage those archives to align their load order with that of loose files:</p><p>If archives are <span style=" font-weight:600;">managed</span>, their load order is specified by the priority of the corresponding mod (left pane), the same as the loose files. You can manually enable any BSA that has no corresponding plugin active.<br/></p><p>If archives are <span style=" font-weight:600;">not managed</span> their load order is specified by the priority of the corresponding plugin (right pane, plugins tab). You can then not manually enable BSAs where the plugin isn't active.</p><p>In either case you can not disable archives if there is a matching plugin, the game will load them no matter what.</p></body></html></source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="819"/> - <source><html><head/><body><p>Marked Archives (<img src=":/MO/gui/warning_16"/>) are still loaded on Skyrim but the <a href="http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/"><span style=" text-decoration: underline; color:#0000ff;">regular file override</span></a> mechanism will apply: Loose files override BSAs, no matter the mod/plugin priority.</p></body></html></source> + <location filename="mainwindow.ui" line="919"/> + <source><html><head/><body><p>Have MO manage archives (<a href="#"><span style=" text-decoration: underline; color:#0000ff;">read more</span></a>)</p></body></html></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="885"/> - <source>Mod</source> - <translation type="unfinished">Mod</translation> + <location filename="mainwindow.ui" line="934"/> + <source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source> + <translation>Lista de Archivos BS disponibles. Los archivos no controlados aquí no se gestionaran por el MO e ignorarán el orden de instalación.</translation> </message> <message> - <location filename="mainwindow.ui" line="830"/> - <source>Data</source> - <translation type="unfinished">Datos</translation> + <location filename="mainwindow.ui" line="937"/> + <source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" with loose files in your data directory over which is loaded. +By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored! + +BSAs checked here are loaded in such a way that your installation order is obeyed properly.</source> + <translation>Ficheros BSA son archivos (comparables a. zip) que contienen los datos activos. (mallas, texturas...) para ser utilizado por el juego. Como tales, "compiten" con los archivos sueltos en su directorio de datos sobre el cual se cargan. +Por defecto, BSAs que comparten su nombre de base con un ESP activado (es decir plugin.esp y plugin.bsa) se carga automáticamente y tendrán prioridad sobre todos los archivos sueltos, el orden de instalación configurado a la izquierda es entonces ignorado! + +BSA marcado aquí se cargan de tal manera que su orden de instalación se cumple correctamente.</translation> </message> <message> - <location filename="mainwindow.ui" line="605"/> - <source>Plugins</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.ui" line="983"/> + <location filename="mainwindow.ui" line="1042"/> + <source>File</source> + <translation>Fichero</translation> </message> <message> - <location filename="mainwindow.ui" line="731"/> - <source>Sort</source> - <translation type="unfinished"></translation> + <source><html><head/><body><p>Marked Archives (<img src=":/MO/gui/warning_16"/>) are still loaded on Skyrim but the <a href="http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/"><span style=" text-decoration: underline; color:#0000ff;">regular file override</span></a> mechanism will apply: Loose files override BSAs, no matter the mod/plugin priority.</p></body></html></source> + <translation type="obsolete"><html><head/><body><p>Marked Archives (<img src=":/MO/gui/warning_16"/>) todavía se cargan en Skyrim, pero el <a href="http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/"><span style=" text-decoration: underline; color:#0000ff;">archivo regular anula</span></a> mechanism will apply: Loose files override BSAs, no matter the mod/plugin priority.</p></body></html></translation> </message> <message> - <location filename="mainwindow.ui" line="741"/> - <source>Archives</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.ui" line="992"/> + <source>Data</source> + <translation>Datos</translation> </message> <message> - <location filename="mainwindow.ui" line="848"/> + <location filename="mainwindow.ui" line="1010"/> <source>refresh data-directory overview</source> - <translation type="unfinished">refresca la vista del directorio de datos</translation> + <translation>refresca la vista del directorio de datos</translation> </message> <message> - <location filename="mainwindow.ui" line="851"/> + <location filename="mainwindow.ui" line="1013"/> <source>Refresh the overview. This may take a moment.</source> - <translation type="unfinished">Refresca toda la vista. Esto puede tomar un tiempo.</translation> + <translation>Refresca toda la vista. Esto puede tomar un tiempo.</translation> </message> <message> - <location filename="mainwindow.ui" line="854"/> - <location filename="mainwindow.cpp" line="3781"/> - <location filename="mainwindow.cpp" line="4604"/> + <location filename="mainwindow.ui" line="1016"/> + <location filename="mainwindow.cpp" line="3749"/> + <location filename="mainwindow.cpp" line="4614"/> <source>Refresh</source> - <translation type="unfinished">Recargar</translation> + <translation>Recargar</translation> </message> <message> - <location filename="mainwindow.ui" line="870"/> + <location filename="mainwindow.ui" line="1032"/> <source>This is an overview of your data directory as visible to the game (and tools). </source> - <translation type="unfinished">Esta es una visión general del directorio de datos como visible para el juego (y herramientas).</translation> + <translation>Esta es una visión general del directorio de datos como visible para el juego (y herramientas).</translation> + </message> + <message> + <location filename="mainwindow.ui" line="1047"/> + <source>Mod</source> + <translation>Mod</translation> </message> <message> - <location filename="mainwindow.ui" line="895"/> - <location filename="mainwindow.ui" line="898"/> + <location filename="mainwindow.ui" line="1057"/> + <location filename="mainwindow.ui" line="1060"/> <source>Filter the above list so that only conflicts are displayed.</source> - <translation type="unfinished">Filrar la lista superior por conflictos.</translation> + <translation>Se filtra la lista anterior de modo que sólo se muestren los conflictos.</translation> </message> <message> - <location filename="mainwindow.ui" line="901"/> + <location filename="mainwindow.ui" line="1063"/> <source>Show only conflicts</source> - <translation type="unfinished">Monstrar solo los conflictos</translation> + <translation>Monstrar solo los conflictos</translation> </message> <message> - <location filename="mainwindow.ui" line="909"/> + <location filename="mainwindow.ui" line="1071"/> <source>Saves</source> - <translation type="unfinished">Part. Guardadas</translation> + <translation>Part. Guardadas</translation> </message> <message> - <location filename="mainwindow.ui" line="933"/> + <location filename="mainwindow.ui" line="1095"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1563,1126 +1597,1265 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a list of all savegames for this game. Hover over a list entry to get detailed information about the save including a list of esps/esms that were used at the time this save was created but aren't active now.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you click &quot;Fix Mods...&quot; in the context menu, MO will try to activate all mods and esps to fix those missing esps. It will not disable anything!</span></p></body></html></source> - <translation type="unfinished"></translation> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Esta es una lista de todas las partidas guardadas para este juego. Pase el ratón sobre una entrada de la lista para obtener información detallada sobre el salve, incluida una lista de esp/esm que se utilizaron en el momento que esta salvaguarda se creo, pero que no están activos actualmente.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Si haces clic en &quot;Fix Mods...&quot; en el menú contextual, MO tratará de activar todos los mods y para arreglar esos esps desaparecidos. No va a desactivar ninguna otra cosa!</span></p></body></html></translation> </message> <message> - <location filename="mainwindow.ui" line="947"/> + <location filename="mainwindow.ui" line="1109"/> <source>Downloads</source> - <translation type="unfinished">Descargas</translation> + <translation>Descargas</translation> </message> <message> - <location filename="mainwindow.ui" line="979"/> + <location filename="mainwindow.ui" line="1141"/> <source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source> - <translation type="unfinished">Esta es la lista de los mods que has descargado desde Nexus. Doble Click para instalar.</translation> + <translation>Esta es la lista de los mods que has descargado desde Nexus. Doble Click para instalar.</translation> </message> <message> - <location filename="mainwindow.ui" line="1032"/> <source>Compact</source> - <translation type="unfinished"></translation> + <translation type="obsolete">Compactar</translation> </message> <message> - <location filename="mainwindow.ui" line="1039"/> + <location filename="mainwindow.ui" line="1194"/> <source>Show Hidden</source> - <translation type="unfinished"></translation> + <translation>Mostrar Ocultos</translation> </message> <message> - <location filename="mainwindow.ui" line="1070"/> + <location filename="mainwindow.ui" line="1256"/> <source>Tool Bar</source> - <translation type="unfinished">Tool Bar</translation> + <translation>Barra Herramientas</translation> </message> <message> - <location filename="mainwindow.ui" line="1112"/> + <location filename="mainwindow.ui" line="1298"/> <source>Install Mod</source> - <translation type="unfinished">Instalar Mod</translation> + <translation>Instalar Mod</translation> </message> <message> - <location filename="mainwindow.ui" line="1115"/> + <location filename="mainwindow.ui" line="1301"/> <source>Install &Mod</source> - <translation type="unfinished">Instalar &Mod</translation> + <translation>Instalar &Mod</translation> </message> <message> - <location filename="mainwindow.ui" line="1118"/> + <location filename="mainwindow.ui" line="1304"/> <source>Install a new mod from an archive</source> - <translation type="unfinished">Instalar un nuevo Mod desde un archivo</translation> + <translation>Instalar un nuevo Mod desde un archivo</translation> </message> <message> - <location filename="mainwindow.ui" line="1121"/> + <location filename="mainwindow.ui" line="1307"/> <source>Ctrl+M</source> - <translation type="unfinished">Ctrl+M</translation> + <translation>Ctrl+M</translation> </message> <message> - <location filename="mainwindow.ui" line="1130"/> + <location filename="mainwindow.ui" line="1316"/> <source>Profiles</source> - <translation type="unfinished">Perfiles</translation> + <translation>Perfiles</translation> </message> <message> - <location filename="mainwindow.ui" line="1133"/> + <location filename="mainwindow.ui" line="1319"/> <source>&Profiles</source> - <translation type="unfinished">&Perfiles</translation> + <translation>&Perfiles</translation> </message> <message> - <location filename="mainwindow.ui" line="1136"/> + <location filename="mainwindow.ui" line="1322"/> <source>Configure Profiles</source> - <translation type="unfinished">Configurar los perfiles</translation> + <translation>Configurar Perfiles</translation> </message> <message> - <location filename="mainwindow.ui" line="1139"/> + <location filename="mainwindow.ui" line="1325"/> <source>Ctrl+P</source> - <translation type="unfinished">Ctrl+P</translation> + <translation>Ctrl+P</translation> </message> <message> - <location filename="mainwindow.ui" line="1148"/> + <location filename="mainwindow.ui" line="1334"/> <source>Executables</source> - <translation type="unfinished">Ejecutables</translation> + <translation>Ejecutables</translation> </message> <message> - <location filename="mainwindow.ui" line="1151"/> + <location filename="mainwindow.ui" line="1337"/> <source>&Executables</source> - <translation type="unfinished">&Ejecutables</translation> + <translation>&Ejecutables</translation> </message> <message> - <location filename="mainwindow.ui" line="1154"/> + <location filename="mainwindow.ui" line="1340"/> <source>Configure the executables that can be started through Mod Organizer</source> - <translation type="unfinished">Configura el ejecutable que sera iniciado desde Mod Orgenizer</translation> + <translation>Configura el ejecutable que sera iniciado desde Mod Orgenizer</translation> </message> <message> - <location filename="mainwindow.ui" line="1157"/> + <location filename="mainwindow.ui" line="1343"/> <source>Ctrl+E</source> - <translation type="unfinished">Ctrl+E</translation> + <translation>Ctrl+E</translation> </message> <message> - <location filename="mainwindow.ui" line="1166"/> - <location filename="mainwindow.ui" line="1172"/> + <location filename="mainwindow.ui" line="1352"/> + <location filename="mainwindow.ui" line="1358"/> <source>Tools</source> - <translation type="unfinished"></translation> + <translation>Herramientas</translation> </message> <message> - <location filename="mainwindow.ui" line="1169"/> + <location filename="mainwindow.ui" line="1355"/> <source>&Tools</source> - <translation type="unfinished"></translation> + <translation>&Herramientas</translation> </message> <message> - <location filename="mainwindow.ui" line="1175"/> + <location filename="mainwindow.ui" line="1361"/> <source>Ctrl+I</source> - <translation type="unfinished">Ctrl+I</translation> + <translation>Ctrl+I</translation> </message> <message> - <location filename="mainwindow.ui" line="1184"/> + <location filename="mainwindow.ui" line="1370"/> <source>Settings</source> - <translation type="unfinished">Configuracion</translation> + <translation>Configuracion</translation> </message> <message> - <location filename="mainwindow.ui" line="1187"/> + <location filename="mainwindow.ui" line="1373"/> <source>&Settings</source> - <translation type="unfinished">&Configuracion</translation> + <translation>&Configuracion</translation> </message> <message> - <location filename="mainwindow.ui" line="1190"/> + <location filename="mainwindow.ui" line="1376"/> <source>Configure settings and workarounds</source> - <translation type="unfinished">Configuraciones y modos</translation> + <translation>Configurar opciones y soluciones</translation> </message> <message> - <location filename="mainwindow.ui" line="1193"/> + <location filename="mainwindow.ui" line="1379"/> <source>Ctrl+S</source> - <translation type="unfinished">Ctrl+S</translation> + <translation>Ctrl+S</translation> </message> <message> - <location filename="mainwindow.ui" line="1202"/> + <location filename="mainwindow.ui" line="1388"/> <source>Nexus</source> - <translation type="unfinished">Nexus</translation> + <translation>Nexus</translation> </message> <message> - <location filename="mainwindow.ui" line="1205"/> + <location filename="mainwindow.ui" line="1391"/> <source>Search nexus network for more mods</source> - <translation type="unfinished">Buscar en la red de Nexus mas Mods</translation> + <translation>Buscar en la red de Nexus mas Mods</translation> </message> <message> - <location filename="mainwindow.ui" line="1208"/> + <location filename="mainwindow.ui" line="1394"/> <source>Ctrl+N</source> - <translation type="unfinished">Ctrl+N</translation> + <translation>Ctrl+N</translation> </message> <message> - <location filename="mainwindow.ui" line="1220"/> - <location filename="mainwindow.cpp" line="4545"/> + <location filename="mainwindow.ui" line="1406"/> + <location filename="mainwindow.cpp" line="4555"/> <source>Update</source> - <translation type="unfinished"></translation> + <translation>Actualizacion</translation> </message> <message> - <location filename="mainwindow.ui" line="1223"/> + <location filename="mainwindow.ui" line="1409"/> <source>Mod Organizer is up-to-date</source> - <translation type="unfinished">Mod Organizer esta actualizado</translation> + <translation>Mod Organizer esta actualizado</translation> </message> <message> - <location filename="mainwindow.ui" line="1235"/> - <location filename="mainwindow.cpp" line="509"/> + <location filename="mainwindow.ui" line="1421"/> + <location filename="mainwindow.cpp" line="561"/> <source>No Problems</source> - <translation type="unfinished"></translation> + <translation>Sin problemas</translation> </message> <message> - <location filename="mainwindow.ui" line="1238"/> + <location filename="mainwindow.ui" line="1424"/> <source>This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them. !Work in progress! Right now this has very limited functionality</source> - <translation type="unfinished"></translation> + <translation>Este botón resaltará si MO descubrió problemas potenciales en su configuración y proporcionara consejos sobre cómo solucionarlos. + +!Trabajo en curso! +Ahora esto tiene una funcionalidad muy limitada</translation> </message> <message> - <location filename="mainwindow.ui" line="1250"/> - <location filename="mainwindow.ui" line="1253"/> + <location filename="mainwindow.ui" line="1436"/> + <location filename="mainwindow.ui" line="1439"/> <source>Help</source> - <translation type="unfinished">Ayuda</translation> + <translation>Ayuda</translation> </message> <message> - <location filename="mainwindow.ui" line="1256"/> + <location filename="mainwindow.ui" line="1442"/> <source>Ctrl+H</source> - <translation type="unfinished">Ctrl+H</translation> + <translation>Ctrl+H</translation> </message> <message> - <location filename="mainwindow.ui" line="1265"/> + <location filename="mainwindow.ui" line="1451"/> <source>Endorse MO</source> - <translation type="unfinished"></translation> + <translation>Avalar MO</translation> </message> <message> - <location filename="mainwindow.ui" line="1268"/> - <location filename="mainwindow.cpp" line="4633"/> + <location filename="mainwindow.ui" line="1454"/> + <location filename="mainwindow.cpp" line="4637"/> <source>Endorse Mod Organizer</source> + <translation>Avalar Mod Organizer</translation> + </message> + <message> + <location filename="mainwindow.ui" line="1459"/> + <source>Copy Log to Clipboard</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="223"/> - <source>Toolbar</source> + <location filename="mainwindow.ui" line="1462"/> + <source>Ctrl+C</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="224"/> + <location filename="mainwindow.cpp" line="244"/> + <source>Toolbar</source> + <translation>Barra de herramientas</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="245"/> <source>Desktop</source> - <translation type="unfinished"></translation> + <translation>Escritorio</translation> </message> <message> - <location filename="mainwindow.cpp" line="225"/> + <location filename="mainwindow.cpp" line="246"/> <source>Start Menu</source> - <translation type="unfinished"></translation> + <translation>Menú de Inicio</translation> </message> <message> - <location filename="mainwindow.cpp" line="505"/> + <location filename="mainwindow.cpp" line="549"/> <source>Problems</source> - <translation type="unfinished"></translation> + <translation>Problemas</translation> </message> <message> - <location filename="mainwindow.cpp" line="506"/> + <location filename="mainwindow.cpp" line="550"/> <source>There are potential problems with your setup</source> - <translation type="unfinished"></translation> + <translation>Hay posibles problemas con su configuración</translation> </message> <message> - <location filename="mainwindow.cpp" line="510"/> + <location filename="mainwindow.cpp" line="562"/> <source>Everything seems to be in order</source> - <translation type="unfinished"></translation> + <translation>Todo parece estar en orden</translation> </message> <message> - <location filename="mainwindow.cpp" line="568"/> + <location filename="mainwindow.cpp" line="619"/> <source>Help on UI</source> - <translation type="unfinished"></translation> + <translation>Ayuda sobre UI</translation> </message> <message> - <location filename="mainwindow.cpp" line="572"/> + <location filename="mainwindow.cpp" line="623"/> <source>Documentation Wiki</source> - <translation type="unfinished"></translation> + <translation>Documentación Wiki</translation> </message> <message> - <location filename="mainwindow.cpp" line="576"/> + <location filename="mainwindow.cpp" line="627"/> <source>Report Issue</source> - <translation type="unfinished"></translation> + <translation>Informar de un Problema</translation> </message> <message> - <location filename="mainwindow.cpp" line="580"/> + <location filename="mainwindow.cpp" line="631"/> <source>Tutorials</source> - <translation type="unfinished"></translation> + <translation>Tutoriales</translation> </message> <message> - <location filename="mainwindow.cpp" line="705"/> - <source>failed to save load order: %1</source> - <translation type="unfinished">Fallo guardando el orden de carga: %1</translation> - </message> - <message> - <location filename="mainwindow.cpp" line="619"/> + <location filename="mainwindow.cpp" line="670"/> <source>About</source> - <translation type="unfinished"></translation> + <translation>Sobre</translation> </message> <message> - <location filename="mainwindow.cpp" line="620"/> + <location filename="mainwindow.cpp" line="671"/> <source>About Qt</source> - <translation type="unfinished"></translation> + <translation>Sobre Qt</translation> + </message> + <message> + <source>failed to save archives order, do you have write access to "%1"?</source> + <translation type="obsolete">Fallo al salvar la orden de archivos, , ¿tiene permiso de escritura en "%1"?</translation> </message> <message> - <location filename="mainwindow.cpp" line="717"/> + <location filename="mainwindow.cpp" line="765"/> + <source>failed to save load order: %1</source> + <translation>Fallo guardando el orden de carga: %1</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="777"/> <source>Name</source> - <translation type="unfinished">Nombre</translation> + <translation>Nombre</translation> </message> <message> - <location filename="mainwindow.cpp" line="718"/> + <location filename="mainwindow.cpp" line="778"/> <source>Please enter a name for the new profile</source> - <translation type="unfinished">Por favor introduzca un nombre para el nuevo perfil</translation> + <translation>Por favor introduzca un nombre para el nuevo perfil</translation> </message> <message> - <location filename="mainwindow.cpp" line="726"/> + <location filename="mainwindow.cpp" line="786"/> <source>failed to create profile: %1</source> - <translation type="unfinished">Fallo al crear el perfil: %1</translation> + <translation>Fallo al crear el perfil: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="769"/> + <location filename="mainwindow.cpp" line="829"/> <source>Show tutorial?</source> - <translation type="unfinished"></translation> + <translation>¿Mostrar tutorial?</translation> </message> <message> - <location filename="mainwindow.cpp" line="770"/> + <location filename="mainwindow.cpp" line="830"/> <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> + <translation>Están comenzando Mod Organizer por primera vez. ¿Quieres mostrar un tutorial de sus características básicas? Si decides que no siempre podras empezar el tutorial desde la "Ayuda" del menú.</translation> </message> <message> - <location filename="mainwindow.cpp" line="801"/> + <location filename="mainwindow.cpp" line="861"/> <source>Downloads in progress</source> - <translation type="unfinished">Descarga en progreso</translation> + <translation>Descarga en progreso</translation> </message> <message> - <location filename="mainwindow.cpp" line="802"/> + <location filename="mainwindow.cpp" line="862"/> <source>There are still downloads in progress, do you really want to quit?</source> - <translation type="unfinished">Aun hay descargas en progreso, estas seguro que quieres salir?</translation> + <translation>Aun hay descargas en progreso, estas seguro que quieres salir?</translation> </message> <message> - <location filename="mainwindow.cpp" line="848"/> + <location filename="mainwindow.cpp" line="916"/> <source>failed to read savegame: %1</source> - <translation type="unfinished">Fallo al leer la partida guardada: %1</translation> + <translation>Fallo al leer la partida guardada: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="972"/> + <location filename="mainwindow.cpp" line="1040"/> <source>Plugin "%1" failed: %2</source> - <translation type="unfinished"></translation> + <translation>Plugin "%1" fallido: %2</translation> </message> <message> - <location filename="mainwindow.cpp" line="1085"/> + <location filename="mainwindow.cpp" line="1042"/> + <source>Plugin "%1" failed</source> + <translation>Plugin "%1" fallido</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1211"/> + <source>failed to init plugin %1: %2</source> + <translation>fallo al iniciar plugin %1: %2</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1249"/> <source>Plugin error</source> - <translation type="unfinished"></translation> + <translation>Error de plugin</translation> </message> <message> - <location filename="mainwindow.cpp" line="1086"/> + <location filename="mainwindow.cpp" line="1250"/> <source>It appears the plugin "%1" failed to load last startup and caused MO to crash. Do you want to disable it? (Please note: If this is the first time you see this message for this plugin you may want to give it another try. The plugin may be able to recover from the problem)</source> - <translation type="unfinished"></translation> + <translation>Parece que el plugin "%1" Fallo al cargar el último inicio y causó que MO se bloqueara. ¿Quieres desactivarlo? +(Nota: Si es la primera vez que ve este mensaje en este plugin es posible que desees intentarlo otra vez. El plugin podria ser capaz de recuperarse del problema.)</translation> </message> <message> - <location filename="mainwindow.cpp" line="1270"/> + <location filename="mainwindow.cpp" line="1309"/> <source>Failed to start "%1"</source> - <translation type="unfinished"></translation> + <translation>Fallo al iniciar plugin %1: %2</translation> </message> <message> - <location filename="mainwindow.cpp" line="1272"/> + <location filename="mainwindow.cpp" line="1311"/> <source>Waiting</source> - <translation type="unfinished"></translation> + <translation>Esperando</translation> </message> <message> - <location filename="mainwindow.cpp" line="1272"/> + <location filename="mainwindow.cpp" line="1311"/> <source>Please press OK once you're logged into steam.</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>"%1" not found</source> - <translation type="obsolete">"%1" no encontrado</translation> + <translation>Por favor, pulsa OK una vez que hayas iniciado sesión en steam.</translation> </message> <message> - <location filename="mainwindow.cpp" line="1298"/> + <location filename="mainwindow.cpp" line="1337"/> <source>Start Steam?</source> - <translation type="unfinished"></translation> + <translation>¿Iniciar Steam?</translation> </message> <message> - <location filename="mainwindow.cpp" line="1299"/> + <location filename="mainwindow.cpp" line="1338"/> <source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source> - <translation type="unfinished"></translation> + <translation>Steam es requerido para iniciar correctamente el juego. ¿Debería MO tratar de iniciar ahora steam?</translation> </message> <message> <location filename="mainwindow.cpp" line="1526"/> <source>Also in: <br></source> - <translation type="unfinished"></translation> + <translation>También en: <br></translation> </message> <message> <location filename="mainwindow.cpp" line="1537"/> <source>No conflict</source> - <translation type="unfinished">Sin conflictos</translation> + <translation>Sin conflictos</translation> </message> <message> - <location filename="mainwindow.cpp" line="1692"/> + <location filename="mainwindow.cpp" line="1706"/> <source><Edit...></source> - <translation type="unfinished"><Editar...></translation> + <translation><Editar...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1929"/> + <location filename="mainwindow.cpp" line="1976"/> <source>This bsa is enabled in the ini file so it may be required!</source> - <translation type="unfinished"></translation> + <translation>Esta bsa está habilitada en el archivo ini, por lo que puede ser necesario</translation> </message> <message> - <location filename="mainwindow.cpp" line="1936"/> <source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source> - <translation type="unfinished"></translation> + <translation type="obsolete">Este archivo se seguirá cargado, ya que hay un plugin con el mismo nombre, pero sus archivos no seguirá el orden de instalación!</translation> </message> <message> - <location filename="mainwindow.cpp" line="1991"/> + <location filename="mainwindow.cpp" line="2038"/> <source>Activating Network Proxy</source> - <translation type="unfinished"></translation> + <translation>Activación de proxy de red</translation> </message> <message> - <location filename="mainwindow.cpp" line="2122"/> - <location filename="mainwindow.cpp" line="4248"/> + <location filename="mainwindow.cpp" line="2269"/> + <location filename="mainwindow.cpp" line="4258"/> <source>Installation successful</source> - <translation type="unfinished">Instalacion completada</translation> + <translation>Instalacion completada</translation> </message> <message> - <location filename="mainwindow.cpp" line="2133"/> - <location filename="mainwindow.cpp" line="4261"/> + <location filename="mainwindow.cpp" line="2280"/> + <location filename="mainwindow.cpp" line="4270"/> <source>Configure Mod</source> - <translation type="unfinished">Configurar Mod</translation> + <translation>Configurar Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2134"/> - <location filename="mainwindow.cpp" line="4262"/> + <location filename="mainwindow.cpp" line="2281"/> + <location filename="mainwindow.cpp" line="4271"/> <source>This mod contains ini tweaks. Do you want to configure them now?</source> - <translation type="unfinished">Este mod contiene modificaciones del Ini. Quieres configurarlas ahora?</translation> + <translation>Este mod contiene ajustes del ini. ¿Quieres configurarlos ahora?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2140"/> - <location filename="mainwindow.cpp" line="4268"/> + <location filename="mainwindow.cpp" line="2288"/> + <location filename="mainwindow.cpp" line="4278"/> <source>mod "%1" not found</source> - <translation type="unfinished"></translation> + <translation>mod "%1" no encontrado</translation> </message> <message> - <location filename="mainwindow.cpp" line="2143"/> - <location filename="mainwindow.cpp" line="4274"/> + <location filename="mainwindow.cpp" line="2291"/> + <location filename="mainwindow.cpp" line="4284"/> <source>Installation cancelled</source> - <translation type="unfinished"></translation> + <translation>Instalación cancelada</translation> </message> <message> - <location filename="mainwindow.cpp" line="2143"/> - <location filename="mainwindow.cpp" line="4274"/> + <location filename="mainwindow.cpp" line="2291"/> + <location filename="mainwindow.cpp" line="4284"/> <source>The mod was not installed completely.</source> - <translation type="unfinished"></translation> + <translation>El mod no fue instalado completamente.</translation> </message> <message> - <location filename="mainwindow.cpp" line="2292"/> + <location filename="mainwindow.cpp" line="2196"/> <source>Some plugins could not be loaded</source> - <translation type="unfinished"></translation> + <translation>Algún plugins no se pudo cargar</translation> </message> <message> - <location filename="mainwindow.cpp" line="2295"/> + <location filename="mainwindow.cpp" line="2199"/> <source>Too many esps and esms enabled</source> - <translation type="unfinished"></translation> + <translation>Demasiados esps y esms habilitado</translation> </message> <message> - <location filename="mainwindow.cpp" line="2298"/> - <location filename="mainwindow.cpp" line="2319"/> + <location filename="mainwindow.cpp" line="2202"/> + <location filename="mainwindow.cpp" line="2223"/> <source>Description missing</source> - <translation type="unfinished"></translation> + <translation>Falta la descripción</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2211"/> + <source>The following plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:</source> + <translation>Los siguientes plugins no se pudieron cargar. La razón puede ser dependencias faltantes (es decir python) o una versión obsoleta:</translation> </message> <message> - <location filename="mainwindow.cpp" line="2315"/> + <location filename="mainwindow.cpp" line="2219"/> <source>The game doesn't allow more than 255 active plugins (including the official ones) to be loaded. You have to disable some unused plugins or merge some plugins into one. You can find a guide here: <a href="http://wiki.step-project.com/Guide:Merging_Plugins">http://wiki.step-project.com/Guide:Merging_Plugins</a></source> - <translation type="unfinished"></translation> + <translation>El juego no permite cargar más de 255 plugins activos (incluidos los oficiales). Tienes que desactivar algunos plugins no utilizados o fusionar algunos plugins en uno solo. Aquí podras encontrar una guía: <a href="http://wiki.step-project.com/Guide:Merging_Plugins">http://wiki.step-project.com/Guide:Merging_Plugins</a></translation> </message> <message> - <location filename="mainwindow.cpp" line="2341"/> + <location filename="mainwindow.cpp" line="2245"/> <source>Choose Mod</source> - <translation type="unfinished">Seleccione Mod</translation> + <translation>Seleccione Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2342"/> + <location filename="mainwindow.cpp" line="2246"/> <source>Mod Archive</source> - <translation type="unfinished">Fichero Mod</translation> + <translation>Archivo Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2495"/> + <location filename="mainwindow.cpp" line="2502"/> <source>Start Tutorial?</source> - <translation type="unfinished"></translation> + <translation>Iniciar tutorial?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2496"/> + <location filename="mainwindow.cpp" line="2503"/> <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> + <translation>Estás a punto de iniciar un tutorial. Por razones técnicas, no es posible terminar el tutorial antes de tiempo. ¿Desea continuar?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2651"/> - <location filename="mainwindow.cpp" line="4171"/> + <location filename="mainwindow.cpp" line="2647"/> + <location filename="mainwindow.cpp" line="4179"/> <source>Download started</source> - <translation type="unfinished">Descarga comenzada</translation> + <translation>Descarga iniciada</translation> </message> <message> - <location filename="mainwindow.cpp" line="2682"/> + <location filename="mainwindow.cpp" line="2708"/> <source>failed to update mod list: %1</source> - <translation type="unfinished">Fallo al actualizar la lista de Mods: %1</translation> + <translation>Fallo al actualizar la lista de Mods: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2711"/> + <location filename="mainwindow.cpp" line="2738"/> <source>failed to spawn notepad.exe: %1</source> - <translation type="unfinished">Fallo al cargar el Bloc de notas: %1</translation> + <translation>Fallo al cargar el Bloc de notas: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2752"/> + <location filename="mainwindow.cpp" line="2775"/> <source>failed to open %1</source> - <translation type="unfinished">Fallo al abrir %1</translation> + <translation>Fallo al abrir %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2830"/> + <location filename="mainwindow.cpp" line="2850"/> <source>failed to change origin name: %1</source> - <translation type="unfinished">fallo al cambiar el nombre original del fichero %1</translation> + <translation>fallo al cambiar el nombre original del fichero %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2860"/> - <source>failed to move "%1" from mod "%2" to "%3": %4</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="1323"/> + <source>Executable "%1" not found</source> + <translation>Ejecutable "%1" no encontrado</translation> </message> <message> - <location filename="mainwindow.cpp" line="2997"/> - <source>Multiple esps activated, please check that they don't conflict.</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="1803"/> + <source>Failed to refresh list of esps: %1</source> + <translation>Fallo al actualizar la lista de esps: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3345"/> - <location filename="mainwindow.cpp" line="3792"/> - <source>Create Mod...</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="2929"/> + <source><Checked></source> + <translation><Marcado></translation> </message> <message> - <location filename="mainwindow.cpp" line="3355"/> - <source>A mod with this name already exists</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="2930"/> + <source><Unchecked></source> + <translation><Desmarcado></translation> </message> <message> - <location filename="mainwindow.cpp" line="3613"/> - <source>Continue?</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="2931"/> + <source><Update></source> + <translation><Actualizacion></translation> </message> <message> - <location filename="mainwindow.cpp" line="3614"/> - <source>The versioning scheme decides which version is considered newer than another. -This function will guess the versioning scheme under the assumption that the installed version is outdated.</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="2934"/> + <source><No category></source> + <translation><No categoría></translation> </message> <message> - <location filename="mainwindow.cpp" line="3634"/> - <location filename="mainwindow.cpp" line="4516"/> - <source>Sorry</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="2935"/> + <source><Conflicted></source> + <translation><En conflicto></translation> </message> <message> - <location filename="mainwindow.cpp" line="3635"/> - <source>I don't know a versioning scheme where %1 is newer than %2.</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="2936"/> + <source><Not Endorsed></source> + <translation><No Avalado></translation> </message> <message> - <location filename="mainwindow.cpp" line="3883"/> - <source><All></source> - <translation type="unfinished"><Todos></translation> + <location filename="mainwindow.cpp" line="2969"/> + <source>failed to rename mod: %1</source> + <translation>fallo al renombrar el mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2909"/> - <source><Checked></source> - <translation type="unfinished"><Marcado></translation> + <location filename="mainwindow.cpp" line="2982"/> + <source>Overwrite?</source> + <translation>¿Sobrescribir?</translation> </message> <message> - <location filename="mainwindow.cpp" line="974"/> - <source>Plugin "%1" failed</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="2983"/> + <source>This will replace the existing mod "%1". Continue?</source> + <translation>Esto reemplazará el vigente mod "%1". ¿Desea continuar?</translation> </message> <message> - <location filename="mainwindow.cpp" line="1047"/> - <source>failed to init plugin %1: %2</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="2986"/> + <source>failed to remove mod "%1"</source> + <translation>Fallo eliminando mod "%1"</translation> </message> <message> - <location filename="mainwindow.cpp" line="2307"/> - <source>The following plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="2990"/> + <location filename="mainwindow.cpp" line="4456"/> + <location filename="mainwindow.cpp" line="4480"/> + <source>failed to rename "%1" to "%2"</source> + <translation>Fallo al renombrar "%1" a "%2"</translation> </message> <message> - <location filename="mainwindow.cpp" line="2910"/> - <source><Unchecked></source> - <translation type="unfinished"><Desmarcado></translation> + <location filename="mainwindow.cpp" line="3015"/> + <source>Multiple esps activated, please check that they don't conflict.</source> + <translation>Múltiples esps activados, por favor verifique que no entren en conflicto.</translation> </message> <message> - <location filename="mainwindow.cpp" line="2911"/> - <source><Update></source> - <translation type="unfinished"><Actualizacion></translation> + <location filename="mainwindow.cpp" line="3043"/> + <location filename="mainwindow.cpp" line="3662"/> + <location filename="mainwindow.cpp" line="3670"/> + <location filename="mainwindow.cpp" line="3890"/> + <source>Confirm</source> + <translation>Confirmar</translation> </message> <message> - <location filename="mainwindow.cpp" line="2912"/> - <source><No category></source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="3044"/> + <source>Remove the following mods?<br><ul>%1</ul></source> + <translation>¿Quitar el siguiente mods?<br><ul>%1</ul></translation> </message> <message> - <location filename="mainwindow.cpp" line="2913"/> - <source><Conflicted></source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="3055"/> + <source>failed to remove mod: %1</source> + <translation>fallo al eliminar mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2914"/> - <source><Not Endorsed></source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="3090"/> + <location filename="mainwindow.cpp" line="3093"/> + <source>Failed</source> + <translation>Fallo</translation> </message> <message> - <location filename="mainwindow.cpp" line="2947"/> - <source>failed to rename mod: %1</source> - <translation type="unfinished">fallo al cambiar el nombre al mod: %1</translation> + <location filename="mainwindow.cpp" line="3090"/> + <source>Installation file no longer exists</source> + <translation>El archivo de instalación ya no existe</translation> </message> <message> - <location filename="mainwindow.cpp" line="2960"/> - <source>Overwrite?</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="3094"/> + <source>Mods installed with old versions of MO can't be reinstalled in this way.</source> + <translation>Mods instalados con las viejas versiones de MO no pueden ser instalados de nuevo de este modo.</translation> </message> <message> - <location filename="mainwindow.cpp" line="2961"/> - <source>This will replace the existing mod "%1". Continue?</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="3125"/> + <location filename="mainwindow.cpp" line="3152"/> + <source>You need to be logged in with Nexus to endorse</source> + <translation>Necesita estar conectado con Nexus para avalar</translation> </message> <message> - <location filename="mainwindow.cpp" line="2964"/> - <source>failed to remove mod "%1"</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="4871"/> + <source>Extract BSA</source> + <translation>Extraer BSA</translation> </message> <message> - <location filename="mainwindow.cpp" line="2968"/> - <location filename="mainwindow.cpp" line="4446"/> - <location filename="mainwindow.cpp" line="4470"/> - <source>failed to rename "%1" to "%2"</source> - <translation type="unfinished"></translation> + <source>This mod contains at least one BSA. Do you want to unpack it? +(This removes the BSA after completion. If you don't know about BSAs, just select no)</source> + <translation type="obsolete">Este mod contiene al menos un BSA. ¿Quieres descomprimirlo? +(Esto elimina la BSA después de su finalización. Si no sabe de BSAS, solamente no lo seleccione)</translation> </message> <message> - <location filename="mainwindow.cpp" line="3024"/> - <location filename="mainwindow.cpp" line="3687"/> - <location filename="mainwindow.cpp" line="3695"/> - <location filename="mainwindow.cpp" line="3902"/> - <source>Confirm</source> - <translation type="unfinished">Confirma</translation> + <location filename="mainwindow.cpp" line="4828"/> + <location filename="mainwindow.cpp" line="4879"/> + <source>failed to read %1: %2</source> + <translation>fallo al leer %1: %2</translation> </message> <message> - <location filename="mainwindow.cpp" line="3025"/> - <source>Remove the following mods?<br><ul>%1</ul></source> + <location filename="mainwindow.cpp" line="4890"/> + <source>This archive contains invalid hashes. Some files may be broken.</source> + <translation>Este archivo contiene hashes no válidos. Algunos archivos pueden estar rotos.</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3298"/> + <source>Nexus ID for this Mod is unknown</source> + <translation>Se desconoce la ID en Nexus para este Mod</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1085"/> + <source>Download?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3036"/> - <source>failed to remove mod: %1</source> + <location filename="mainwindow.cpp" line="1086"/> + <source>A download has been started but no installed page plugin recognizes it. +If you download anyway no information (i.e. version) will be associated with the download. +Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3071"/> - <location filename="mainwindow.cpp" line="3074"/> - <source>Failed</source> + <location filename="mainwindow.cpp" line="1127"/> + <source>Browse Mod Page</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3071"/> - <source>Installation file no longer exists</source> + <location filename="mainwindow.cpp" line="2143"/> + <location filename="mainwindow.cpp" line="2150"/> + <source>Failed to write settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3075"/> - <source>Mods installed with old versions of MO can't be reinstalled in this way.</source> + <location filename="mainwindow.cpp" line="2144"/> + <location filename="mainwindow.cpp" line="2151"/> + <source>An error occured trying to write back MO settings: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3090"/> - <location filename="mainwindow.cpp" line="3117"/> - <source>You need to be logged in with Nexus to endorse</source> + <location filename="mainwindow.cpp" line="2147"/> + <source>File is write protected</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3249"/> - <location filename="mainwindow.cpp" line="4882"/> - <source>Extract BSA</source> + <location filename="mainwindow.cpp" line="2148"/> + <source>Invalid file format (probably a bug)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3250"/> - <source>This mod contains at least one BSA. Do you want to unpack it? -(This removes the BSA after completion. If you don't know about BSAs, just select no)</source> + <location filename="mainwindow.cpp" line="2149"/> + <source>Unknown error %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3259"/> - <location filename="mainwindow.cpp" line="4839"/> - <location filename="mainwindow.cpp" line="4890"/> - <source>failed to read %1: %2</source> + <location filename="mainwindow.cpp" line="2880"/> + <source>failed to move "%1" from mod "%2" to "%3": %4</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3272"/> - <location filename="mainwindow.cpp" line="4901"/> - <source>This archive contains invalid hashes. Some files may be broken.</source> + <location filename="mainwindow.cpp" line="2932"/> + <source><Managed by MO></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3306"/> - <source>Nexus ID for this Mod is unknown</source> + <location filename="mainwindow.cpp" line="2933"/> + <source><Managed outside MO></source> <translation type="unfinished"></translation> </message> <message> - <source>Priority</source> - <translation type="obsolete">Prioridad</translation> + <location filename="mainwindow.cpp" line="3109"/> + <source>You need to be logged in with Nexus to resume a download</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3337"/> + <location filename="mainwindow.cpp" line="3777"/> + <source>Create Mod...</source> + <translation>Crear Mod...</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3338"/> + <source>This will move all files from overwrite into a new, regular mod. +Please enter a name:</source> + <translation>Esto moverá todos los archivos de sobrescritura en un nuevo mod, regular. +Por favor, introduzca un nombre:</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3347"/> + <source>A mod with this name already exists</source> + <translation>Ya existe un mod con este nombre</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3588"/> + <source>Continue?</source> + <translation>¿Continuar?</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3589"/> + <source>The versioning scheme decides which version is considered newer than another. +This function will guess the versioning scheme under the assumption that the installed version is outdated.</source> + <translation>El esquema de versiones decide qué versión es considerada más nueva una que otra. +Esta función adivinará el esquema de versiones bajo el supuesto de que la versión instalada es obsoleta.</translation> </message> <message> - <source>Choose Priority</source> - <translation type="obsolete">Selecciona Prioridad</translation> + <location filename="mainwindow.cpp" line="3609"/> + <location filename="mainwindow.cpp" line="4526"/> + <source>Sorry</source> + <translation>Lo siento</translation> </message> <message> - <location filename="mainwindow.cpp" line="3687"/> + <location filename="mainwindow.cpp" line="3610"/> + <source>I don't know a versioning scheme where %1 is newer than %2.</source> + <translation>Se desconoce un esquema de versiones donde %1 es más reciente que %2.</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3662"/> <source>Really enable all visible mods?</source> - <translation type="unfinished"></translation> + <translation>¿Permitir realmente todos los mods visibles?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3695"/> + <location filename="mainwindow.cpp" line="3670"/> <source>Really disable all visible mods?</source> - <translation type="unfinished"></translation> + <translation>¿Realmente desactivar todos los mods visibles?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3703"/> + <location filename="mainwindow.cpp" line="3678"/> <source>Choose what to export</source> - <translation type="unfinished"></translation> + <translation>Elija un archivo a exportar</translation> </message> <message> - <location filename="mainwindow.cpp" line="3705"/> + <location filename="mainwindow.cpp" line="3680"/> <source>Everything</source> - <translation type="unfinished"></translation> + <translation>Todo</translation> </message> <message> - <location filename="mainwindow.cpp" line="3705"/> + <location filename="mainwindow.cpp" line="3680"/> <source>All installed mods are included in the list</source> - <translation type="unfinished"></translation> + <translation>Todos los mods instalados están incluidos en la lista</translation> </message> <message> - <location filename="mainwindow.cpp" line="3706"/> + <location filename="mainwindow.cpp" line="3681"/> <source>Active Mods</source> - <translation type="unfinished"></translation> + <translation>Mods Activos</translation> </message> <message> - <location filename="mainwindow.cpp" line="3706"/> + <location filename="mainwindow.cpp" line="3681"/> <source>Only active (checked) mods from your current profile are included</source> - <translation type="unfinished"></translation> + <translation>Mods sólo activos (Marcados) es incluido de su perfil actual</translation> </message> <message> - <location filename="mainwindow.cpp" line="3707"/> + <location filename="mainwindow.cpp" line="3682"/> <source>Visible</source> - <translation type="unfinished"></translation> + <translation>Visible</translation> </message> <message> - <location filename="mainwindow.cpp" line="3707"/> + <location filename="mainwindow.cpp" line="3682"/> <source>All mods visible in the mod list are included</source> - <translation type="unfinished"></translation> + <translation>Todo mods visible en la lista de mod son incluidos</translation> </message> <message> - <location filename="mainwindow.cpp" line="3750"/> + <location filename="mainwindow.cpp" line="3725"/> <source>export failed: %1</source> - <translation type="unfinished"></translation> + <translation>Falló al exportar: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3774"/> + <location filename="mainwindow.cpp" line="3742"/> <source>Install Mod...</source> - <translation type="unfinished">Instalar Mod...</translation> + <translation>Instalar Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3776"/> + <location filename="mainwindow.cpp" line="3744"/> <source>Enable all visible</source> - <translation type="unfinished">Activar todos los visibles</translation> + <translation>Activar todos los visibles</translation> </message> <message> - <location filename="mainwindow.cpp" line="3777"/> + <location filename="mainwindow.cpp" line="3745"/> <source>Disable all visible</source> - <translation type="unfinished">Desactivar todos los visibles</translation> + <translation>Desactivar todo lo visible</translation> </message> <message> - <location filename="mainwindow.cpp" line="3779"/> + <location filename="mainwindow.cpp" line="3747"/> <source>Check all for update</source> - <translation type="unfinished">Buscar Actualizaciones</translation> + <translation>Comprobar todo para actualizar</translation> </message> <message> - <location filename="mainwindow.cpp" line="3783"/> + <location filename="mainwindow.cpp" line="3751"/> <source>Export to csv...</source> + <translation>Exportar a CSV...</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3770"/> + <source>All Mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3791"/> + <location filename="mainwindow.cpp" line="3776"/> <source>Sync to Mods...</source> - <translation type="unfinished"></translation> + <translation>Sincronizar con Mods...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3795"/> + <location filename="mainwindow.cpp" line="3780"/> <source>Restore Backup</source> - <translation type="unfinished"></translation> + <translation>Restaurar copia de seguridad</translation> </message> <message> - <location filename="mainwindow.cpp" line="3796"/> + <location filename="mainwindow.cpp" line="3781"/> <source>Remove Backup...</source> - <translation type="unfinished"></translation> + <translation>Eliminar copia de seguridad...</translation> </message> <message> - <source>Set Category</source> - <translation type="obsolete">Definir Categoria</translation> + <location filename="mainwindow.cpp" line="3785"/> + <source>Add/Remove Categories</source> + <translation>Añadir/Quitar Categorías</translation> </message> <message> - <location filename="mainwindow.cpp" line="3808"/> + <location filename="mainwindow.cpp" line="3790"/> + <source>Replace Categories</source> + <translation>Remplazar Categorías</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3795"/> <source>Primary Category</source> - <translation type="unfinished"></translation> + <translation>Categoría Primaria</translation> </message> <message> - <location filename="mainwindow.cpp" line="3815"/> + <location filename="mainwindow.cpp" line="3802"/> <source>Change versioning scheme</source> - <translation type="unfinished"></translation> + <translation>Cambiar esquema de versiones</translation> </message> <message> - <location filename="mainwindow.cpp" line="3819"/> + <location filename="mainwindow.cpp" line="3806"/> <source>Un-ignore update</source> - <translation type="unfinished"></translation> + <translation>No ignorar actualización</translation> </message> <message> - <location filename="mainwindow.cpp" line="3821"/> + <location filename="mainwindow.cpp" line="3808"/> <source>Ignore update</source> - <translation type="unfinished"></translation> + <translation>No Ignorar actualización</translation> </message> <message> - <location filename="mainwindow.cpp" line="3826"/> + <location filename="mainwindow.cpp" line="3813"/> <source>Rename Mod...</source> - <translation type="unfinished">Cambiar nombre...</translation> + <translation>Renombrar Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3827"/> + <location filename="mainwindow.cpp" line="3814"/> <source>Remove Mod...</source> - <translation type="unfinished">Quitar Mod...</translation> + <translation>Quitar Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3828"/> + <location filename="mainwindow.cpp" line="3815"/> <source>Reinstall Mod</source> - <translation type="unfinished"></translation> + <translation>Reinstalar Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="3831"/> + <location filename="mainwindow.cpp" line="3818"/> <source>Un-Endorse</source> - <translation type="unfinished"></translation> + <translation>No Avalado</translation> </message> <message> - <location filename="mainwindow.cpp" line="3834"/> - <location filename="mainwindow.cpp" line="3838"/> + <location filename="mainwindow.cpp" line="3821"/> + <location filename="mainwindow.cpp" line="3825"/> <source>Endorse</source> - <translation type="unfinished"></translation> + <translation>Avalado</translation> </message> <message> - <location filename="mainwindow.cpp" line="3835"/> + <location filename="mainwindow.cpp" line="3822"/> <source>Won't endorse</source> - <translation type="unfinished"></translation> + <translation>No avalar</translation> </message> <message> - <location filename="mainwindow.cpp" line="3841"/> + <location filename="mainwindow.cpp" line="3828"/> <source>Endorsement state unknown</source> - <translation type="unfinished"></translation> + <translation>Estado de avalado desconocido</translation> </message> <message> - <location filename="mainwindow.cpp" line="3848"/> + <location filename="mainwindow.cpp" line="3835"/> <source>Ignore missing data</source> - <translation type="unfinished"></translation> + <translation>Ignorar data desaparecido</translation> </message> <message> - <location filename="mainwindow.cpp" line="3851"/> + <location filename="mainwindow.cpp" line="3838"/> <source>Visit on Nexus</source> - <translation type="unfinished"></translation> + <translation>Visite Nexus</translation> </message> <message> - <location filename="mainwindow.cpp" line="3852"/> + <location filename="mainwindow.cpp" line="3839"/> <source>Open in explorer</source> - <translation type="unfinished"></translation> + <translation>Abrir en explorador</translation> </message> <message> - <location filename="mainwindow.cpp" line="3855"/> + <location filename="mainwindow.cpp" line="3843"/> <source>Information...</source> - <translation type="unfinished">Informacion...</translation> + <translation>Informacion...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3861"/> - <location filename="mainwindow.cpp" line="5086"/> + <location filename="mainwindow.cpp" line="3850"/> + <location filename="mainwindow.cpp" line="5089"/> <source>Exception: </source> - <translation type="unfinished"></translation> + <translation>Excepción:</translation> </message> <message> - <location filename="mainwindow.cpp" line="3863"/> - <location filename="mainwindow.cpp" line="5088"/> + <location filename="mainwindow.cpp" line="3852"/> + <location filename="mainwindow.cpp" line="5091"/> <source>Unknown exception</source> - <translation type="unfinished"></translation> + <translation>Excepción desconocida</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3871"/> + <source><All></source> + <translation><Todo></translation> </message> <message> - <location filename="mainwindow.cpp" line="3885"/> + <location filename="mainwindow.cpp" line="3873"/> <source><Multiple></source> - <translation type="unfinished"></translation> + <translation><Multiple></translation> </message> <message> - <location filename="mainwindow.cpp" line="3902"/> + <location filename="mainwindow.cpp" line="3890"/> <source>Really delete "%1"?</source> - <translation type="unfinished"></translation> + <translation>Realmente desea borrar "%1"?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4013"/> + <location filename="mainwindow.cpp" line="4001"/> <source>Fix Mods...</source> - <translation type="unfinished">Activar Mods faltantes...</translation> + <translation>Fix Mods...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4014"/> + <location filename="mainwindow.cpp" line="4002"/> <source>Delete</source> - <translation type="unfinished"></translation> + <translation>Eliminar</translation> </message> <message> - <location filename="mainwindow.cpp" line="4038"/> - <location filename="mainwindow.cpp" line="4069"/> + <location filename="mainwindow.cpp" line="4027"/> + <location filename="mainwindow.cpp" line="4060"/> <source>failed to remove %1</source> - <translation type="unfinished">Fallo eliminando %1</translation> + <translation>Fallo eliminando %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4053"/> - <location filename="mainwindow.cpp" line="4084"/> + <location filename="mainwindow.cpp" line="4044"/> + <location filename="mainwindow.cpp" line="4076"/> <source>failed to create %1</source> - <translation type="unfinished"></translation> + <translation>Fallo al crear %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4107"/> + <location filename="mainwindow.cpp" line="4100"/> <source>Can't change download directory while downloads are in progress!</source> - <translation type="unfinished"></translation> + <translation>No se puede cambiar el directorio de descarga, mientras que las descargas están en curso</translation> </message> <message> - <location filename="mainwindow.cpp" line="4174"/> + <location filename="mainwindow.cpp" line="4182"/> <source>Download failed</source> - <translation type="unfinished"></translation> + <translation>Descarga fallida</translation> </message> <message> - <location filename="mainwindow.cpp" line="4323"/> + <location filename="mainwindow.cpp" line="4333"/> <source>failed to write to file %1</source> - <translation type="unfinished">Fallo de escritura en el fichero %1</translation> + <translation>Fallo de escritura en el fichero %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4329"/> + <location filename="mainwindow.cpp" line="4339"/> <source>%1 written</source> - <translation type="unfinished">%1 escrito</translation> + <translation>%1 escrito</translation> </message> <message> - <location filename="mainwindow.cpp" line="4368"/> + <location filename="mainwindow.cpp" line="4378"/> <source>Select binary</source> - <translation type="unfinished"></translation> + <translation>Selecciona el binario</translation> </message> <message> - <location filename="mainwindow.cpp" line="4368"/> + <location filename="mainwindow.cpp" line="4378"/> <source>Binary</source> - <translation type="unfinished">Fichero</translation> + <translation>Binario</translation> </message> <message> - <location filename="mainwindow.cpp" line="4394"/> + <location filename="mainwindow.cpp" line="4404"/> <source>Enter Name</source> - <translation type="unfinished"></translation> + <translation>Introducir Nombre</translation> </message> <message> - <location filename="mainwindow.cpp" line="4395"/> + <location filename="mainwindow.cpp" line="4405"/> <source>Please enter a name for the executable</source> - <translation type="unfinished"></translation> + <translation>Por favor, introduce un nombre para el ejecutable</translation> </message> <message> - <location filename="mainwindow.cpp" line="4406"/> + <location filename="mainwindow.cpp" line="4416"/> <source>Not an executable</source> - <translation type="unfinished"></translation> + <translation>No es un ejecutable</translation> </message> <message> - <location filename="mainwindow.cpp" line="4406"/> + <location filename="mainwindow.cpp" line="4416"/> <source>This is not a recognized executable.</source> - <translation type="unfinished"></translation> + <translation>Esto no es un ejecutable reconocido.</translation> </message> <message> - <location filename="mainwindow.cpp" line="4431"/> - <location filename="mainwindow.cpp" line="4456"/> + <location filename="mainwindow.cpp" line="4441"/> + <location filename="mainwindow.cpp" line="4466"/> <source>Replace file?</source> - <translation type="unfinished"></translation> + <translation>¿Reemplazar archivo?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4431"/> + <location filename="mainwindow.cpp" line="4441"/> <source>There already is a hidden version of this file. Replace it?</source> - <translation type="unfinished"></translation> + <translation>Ya existe una versión oculta de este archivo. Reemplazarlo?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4434"/> - <location filename="mainwindow.cpp" line="4459"/> + <location filename="mainwindow.cpp" line="4444"/> + <location filename="mainwindow.cpp" line="4469"/> <source>File operation failed</source> - <translation type="unfinished"></translation> + <translation>La operación del archivo falló</translation> </message> <message> - <location filename="mainwindow.cpp" line="4434"/> - <location filename="mainwindow.cpp" line="4459"/> + <location filename="mainwindow.cpp" line="4444"/> + <location filename="mainwindow.cpp" line="4469"/> <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> - <translation type="unfinished"></translation> + <translation>Fallo al eliminar "%1". ¿Tal vez no tengas los permisos necesarios?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4456"/> + <location filename="mainwindow.cpp" line="4466"/> <source>There already is a visible version of this file. Replace it?</source> - <translation type="unfinished"></translation> + <translation>Ya existe una versión visible de este archivo. ¿Reemplazarlo?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4489"/> + <location filename="mainwindow.cpp" line="4499"/> <source>file not found: %1</source> - <translation type="unfinished">fichero no encontrado: %1</translation> + <translation>archivo no encontrado: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4502"/> + <location filename="mainwindow.cpp" line="4512"/> <source>failed to generate preview for %1</source> - <translation type="unfinished"></translation> + <translation>fallo al generar vista anticipada para %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4516"/> + <location filename="mainwindow.cpp" line="4526"/> <source>Sorry, can't preview anything. This function currently does not support extracting from bsas.</source> - <translation type="unfinished"></translation> + <translation>Lo sentimos, no se puede obtener una vista previa de nada. Esta función no admite la extracción de bsas.</translation> </message> <message> - <location filename="mainwindow.cpp" line="4547"/> + <location filename="mainwindow.cpp" line="4557"/> <source>Update available</source> - <translation type="unfinished">Disponible actualización</translation> + <translation>Actualización disponible</translation> </message> <message> - <location filename="mainwindow.cpp" line="4584"/> + <location filename="mainwindow.cpp" line="4594"/> <source>Open/Execute</source> - <translation type="unfinished"></translation> + <translation>Abrir/Ejecutar</translation> </message> <message> - <location filename="mainwindow.cpp" line="4585"/> + <location filename="mainwindow.cpp" line="4595"/> <source>Add as Executable</source> - <translation type="unfinished"></translation> + <translation>Añadir un ejecutable</translation> </message> <message> - <location filename="mainwindow.cpp" line="4589"/> + <location filename="mainwindow.cpp" line="4599"/> <source>Preview</source> - <translation type="unfinished"></translation> + <translation>Previsualizar</translation> </message> <message> - <location filename="mainwindow.cpp" line="4595"/> + <location filename="mainwindow.cpp" line="4605"/> <source>Un-Hide</source> - <translation type="unfinished"></translation> + <translation>Desocultar</translation> </message> <message> - <location filename="mainwindow.cpp" line="4597"/> + <location filename="mainwindow.cpp" line="4607"/> <source>Hide</source> - <translation type="unfinished"></translation> + <translation>Ocultar</translation> </message> <message> - <location filename="mainwindow.cpp" line="4603"/> + <location filename="mainwindow.cpp" line="4613"/> <source>Write To File...</source> - <translation type="unfinished">Escribir al fichero...</translation> + <translation>Escribir al fichero...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4634"/> + <location filename="mainwindow.cpp" line="4638"/> <source>Do you want to endorse Mod Organizer on %1 now?</source> - <translation type="unfinished"></translation> + <translation>¿Quieres avalar Mod Organizer en %1 ahora?</translation> </message> <message> - <location filename="mainwindow.cpp" line="5047"/> - <source>Remove</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="4757"/> + <source>Request to Nexus failed: %1</source> + <translation>Solicitud de Nexus ha fallado: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="5077"/> - <source>Unlock load order</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="4764"/> + <location filename="mainwindow.cpp" line="4782"/> + <source>login successful</source> + <translation>login correcto</translation> </message> <message> - <location filename="mainwindow.cpp" line="5080"/> - <source>Lock load order</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="4791"/> + <source>login failed: %1. Trying to download anyway</source> + <translation>login fallado: %1. Intentando descarga de todos modos</translation> </message> <message> - <location filename="mainwindow.cpp" line="5149"/> - <source>BOSS working</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="4797"/> + <source>login failed: %1</source> + <translation>Falló el inicio de sesión: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="5157"/> - <source>failed to run boss: %1</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="4807"/> + <source>login failed: %1. You need to log-in with Nexus to update MO.</source> + <translation>login fallido: %1. Necesitas hacer login con Nexus para actualizar MO.</translation> </message> <message> - <location filename="mainwindow.cpp" line="4770"/> - <source>Request to Nexus failed: %1</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="4840"/> + <source>Error</source> + <translation>Error</translation> </message> <message> - <location filename="mainwindow.cpp" line="1284"/> - <source>Executable "%1" not found</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="4840"/> + <source>failed to extract %1 (errorcode %2)</source> + <translation>fallo al extraer %1 (Código de error %2)</translation> </message> <message> - <location filename="mainwindow.cpp" line="1789"/> - <source>Failed to refresh list of esps: %1</source> + <location filename="mainwindow.cpp" line="4935"/> + <source>Extract...</source> + <translation>Extraer...</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4997"/> + <source>Edit Categories...</source> + <translation>Editar Categorías...</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4998"/> + <source>Deselect filter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3346"/> - <source>This will move all files from overwrite into a new, regular mod. -Please enter a name:</source> + <location filename="mainwindow.cpp" line="5049"/> + <source>Remove</source> + <translation>Eliminar</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5060"/> + <source>Enable all</source> + <translation>Activar todo</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5061"/> + <source>Disable all</source> + <translation>Desactivar todos</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5080"/> + <source>Unlock load order</source> + <translation>Desbloquear el orden de carga</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5083"/> + <source>Lock load order</source> + <translation>Orden de carga bloqueado</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5212"/> + <source>depends on missing "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3798"/> - <source>Add/Remove Categories</source> + <location filename="mainwindow.cpp" line="5232"/> + <source>No profile set</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3803"/> - <source>Replace Categories</source> + <location filename="mainwindow.cpp" line="5280"/> + <source>LOOT working</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4777"/> - <location filename="mainwindow.cpp" line="4794"/> - <source>login successful</source> + <location filename="mainwindow.cpp" line="5326"/> + <source>loot failed. Exit code was: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4803"/> - <source>login failed: %1. Trying to download anyway</source> + <location filename="mainwindow.cpp" line="5333"/> + <source>failed to run loot: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4809"/> - <source>login failed: %1</source> + <location filename="mainwindow.cpp" line="5336"/> + <source>Errors occured</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4818"/> - <source>login failed: %1. You need to log-in with Nexus to update MO.</source> + <location filename="mainwindow.cpp" line="5384"/> + <source>Backup of load order created</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4851"/> - <source>Error</source> - <translation type="unfinished">Error</translation> + <location filename="mainwindow.cpp" line="5394"/> + <source>Choose backup to restore</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4851"/> - <source>failed to extract %1 (errorcode %2)</source> + <location filename="mainwindow.cpp" line="5407"/> + <source>No Backups</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4946"/> - <source>Extract...</source> + <location filename="mainwindow.cpp" line="5407"/> + <source>There are no backups to restore</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5002"/> - <source>Edit Categories...</source> + <location filename="mainwindow.cpp" line="5428"/> + <location filename="mainwindow.cpp" line="5449"/> + <source>Restore failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5057"/> - <source>Enable all</source> + <location filename="mainwindow.cpp" line="5429"/> + <location filename="mainwindow.cpp" line="5450"/> + <source>Failed to restore the backup. Errorcode: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5058"/> - <source>Disable all</source> + <location filename="mainwindow.cpp" line="5440"/> + <source>Backup of modlist created</source> <translation type="unfinished"></translation> </message> + <message> + <source>BOSS working</source> + <translation type="obsolete">BOSS trabajando</translation> + </message> + <message> + <source>failed to run boss: %1</source> + <translation type="obsolete">fallo al ejecutar boss: %1</translation> + </message> </context> <context> <name>MessageDialog</name> @@ -2696,22 +2869,18 @@ Please enter a name:</source> <context> <name>ModInfo</name> <message> - <location filename="modinfo.cpp" line="96"/> - <location filename="modinfo.cpp" line="125"/> + <location filename="modinfo.cpp" line="106"/> + <location filename="modinfo.cpp" line="135"/> <source>invalid index %1</source> <translation>indice invalido %1</translation> </message> - <message> - <source>invalid mod id %1</source> - <translation type="obsolete">Mod ID %1 invalido</translation> - </message> </context> <context> <name>ModInfoBackup</name> <message> - <location filename="modinfo.cpp" line="820"/> + <location filename="modinfo.cpp" line="898"/> <source>This is the backup of a mod</source> - <translation type="unfinished"></translation> + <translation>Esta es la copia de seguridad de un mod</translation> </message> </context> <context> @@ -2734,7 +2903,13 @@ Please enter a name:</source> <message> <location filename="modinfodialog.ui" line="45"/> <source>A list of text-files in the mod directory like readmes. </source> - <translation>El listado de ficheros de texto en el directorio del mod como ayudas e informacion.</translation> + <translation>El listado de ficheros de texto en el directorio del mod como ayudas e información.</translation> + </message> + <message> + <location filename="modinfodialog.ui" line="67"/> + <location filename="modinfodialog.ui" line="175"/> + <source>Save</source> + <translation>Guardar</translation> </message> <message> <location filename="modinfodialog.ui" line="77"/> @@ -2742,799 +2917,715 @@ Please enter a name:</source> <translation>Fich. INI</translation> </message> <message> - <location filename="modinfodialog.ui" line="97"/> + <location filename="modinfodialog.ui" line="91"/> + <source>Ini Files</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="104"/> <source>This is a list of .ini files in the mod.</source> <translation>Esta es la lista de ficheros INI que incluye el mod.</translation> </message> <message> - <location filename="modinfodialog.ui" line="100"/> + <location filename="modinfodialog.ui" line="107"/> <source>This is a list of .ini files in the mod. These are usually used to configure the behaviour of mods if there are configurable parameters.</source> <translation>Esta es la lista de ficheros INI que incluye el mod. Normalmente son usados para configurar algunos aspectos o parametros del mod.</translation> </message> <message> - <location filename="modinfodialog.ui" line="149"/> + <location filename="modinfodialog.ui" line="114"/> + <source>Ini Tweaks</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="130"/> + <source>This is a list of ini tweaks (ini modifications that can be toggled).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="133"/> + <source>This is a list of ini tweaks. Ini Tweaks are (usually small) fragments of ini files that are applied over existing settings in skyrim.ini/skyrimprefs.ini. Each tweak can be toggled individually. You should check the description of the mod wether the tweaks are really optional.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="169"/> <source>Save changes to the file.</source> <translation>Grabar cambios al fichero.</translation> </message> <message> - <location filename="modinfodialog.ui" line="152"/> + <location filename="modinfodialog.ui" line="172"/> <source>Save changes to the file. This overwrites the original. There is no automatic backup!</source> <translation>Grabar cambios al fichero. Esto sobreescribe el original. No se realizan backups!</translation> </message> <message> - <location filename="modinfodialog.ui" line="67"/> - <location filename="modinfodialog.ui" line="155"/> - <source>Save</source> - <translation>Guardar</translation> - </message> - <message> - <location filename="modinfodialog.ui" line="165"/> + <location filename="modinfodialog.ui" line="185"/> <source>Images</source> <translation>Imagenes</translation> </message> <message> - <location filename="modinfodialog.ui" line="220"/> + <location filename="modinfodialog.ui" line="240"/> <source>Images located in the mod.</source> <translation>Imagenes incluidas en el mod.</translation> </message> <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</span></p></body></html></source> - <translation type="obsolete">Esto muestra el listado de fotos (jpg y png) incluidas con el Mod, por ejemplo capturas de pantallas. Pulsa para verlas en grande.</translation> + <location filename="modinfodialog.ui" line="243"/> + <source>This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</source> + <translation>Esto muestra todas las imágenes (jpg. y .png) en el directorio mod, como capturas de pantalla. Hacer clic en uno para obtener una vista más grande.</translation> </message> <message> - <location filename="modinfodialog.ui" line="256"/> - <location filename="modinfodialog.ui" line="275"/> + <location filename="modinfodialog.ui" line="276"/> + <location filename="modinfodialog.ui" line="295"/> <source>Optional ESPs</source> <translation>ESPs Opcionales</translation> </message> <message> - <location filename="modinfodialog.ui" line="262"/> + <location filename="modinfodialog.ui" line="282"/> <source>List of esps and esms that can not be loaded by the game.</source> <translation>Listado de ESPs y ESMs que no se cargaran con el juego.</translation> </message> <message> - <source>about:blank</source> - <translation type="obsolete">about:blank</translation> - </message> - <message> - <source>List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main omo-window. -They usually contain optional functionality, see the readme. - -Most mods do not have optional esps, so chances are good you are looking at an empty list.</source> - <translation type="obsolete">Listado de ESPs y ESMs que no se cargaran con el juego. Estos ficheros no apareceran en la lista de mods. -Normalmente son ficheros extras o modificaciones, mira el fich. texto del mod para mas informacion. - -Muchos mods no tienen ESPs extras, en estos casos veras una lista vacia.</translation> - </message> - <message> - <location filename="modinfodialog.ui" line="223"/> - <source>This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="265"/> + <location filename="modinfodialog.ui" line="285"/> <source>List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window. They usually contain optional functionality, see the readme. Most mods do not have optional esps, so chances are good you are looking at an empty list.</source> - <translation type="unfinished"></translation> + <translation>Lista de los esps y esms contenidos en este plugin que actualmente no se pueden cargar en el juego. Ni siquiera van a aparecer en la lista de esp en la ventana principal de MO. +Por lo general, contiene funciones opcionales, consulte el archivo Léame. + +La mayoría de los mods no tienen esps opcionales, por lo que es muy probable que está buscando en una lista vacía.</translation> </message> <message> - <location filename="modinfodialog.ui" line="290"/> + <location filename="modinfodialog.ui" line="310"/> <source>Make the selected mod in the lower list unavailable.</source> <translation>marca este fichero seleccionado en la lista de abajo no disponible.</translation> </message> <message> - <location filename="modinfodialog.ui" line="293"/> + <location filename="modinfodialog.ui" line="313"/> <source>The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become "invisible" to the game. It can then no longer be activated.</source> <translation>El esp seleccionado (en la lista de abajo) es el que sera colocado en el subdirectorio del mod y sera invisible para el juego. Este no podra ser activado.</translation> </message> <message> - <location filename="modinfodialog.ui" line="319"/> + <location filename="modinfodialog.ui" line="339"/> <source>Move a file to the data directory.</source> <translation>Error moviendo fichero al directorio de datos.</translation> </message> <message> - <location filename="modinfodialog.ui" line="322"/> + <location filename="modinfodialog.ui" line="342"/> <source>This moves a esp to the esp directory so it can be enabled in the main window. Please note that the ESP merely becomes "available", it will not necessarily be loaded! That is configured in the main window of omo.</source> <translation>Esto mueve un esp al directorio esp, por lo que se puede habilitar en la ventana principal. Tenga en cuenta que el ESP sólo se convierte en "disponible", no necesariamente se cargará! Está configurado en la ventana principal de omo.</translation> </message> <message> - <location filename="modinfodialog.ui" line="357"/> + <location filename="modinfodialog.ui" line="377"/> <source>ESPs in the data directory and thus visible to the game.</source> <translation>ESPs en el directorio de datos y visibles por el juego.</translation> </message> <message> - <location filename="modinfodialog.ui" line="360"/> + <location filename="modinfodialog.ui" line="380"/> <source>These are the mod files that are in the (virtual) data directory of your game and will thus be selecteable in the esp list in the main window.</source> <translation>Estos son los archivos mod que se encuentran en el directorio de datos (virtual) de su juego y así será selecteable en la lista de esp en la ventana principal.</translation> </message> <message> - <location filename="modinfodialog.ui" line="367"/> + <location filename="modinfodialog.ui" line="387"/> <source>Available ESPs</source> <translation>ESPs Disponibles</translation> </message> <message> - <location filename="modinfodialog.ui" line="375"/> + <location filename="modinfodialog.ui" line="395"/> <source>Conflicts</source> - <translation type="unfinished"></translation> + <translation>Conflictos</translation> </message> <message> - <location filename="modinfodialog.ui" line="383"/> + <location filename="modinfodialog.ui" line="403"/> <source>The following conflicted files are provided by this mod</source> - <translation type="unfinished"></translation> + <translation>Los siguientes archivos en conflicto son proporcionados por este mod</translation> </message> <message> - <location filename="modinfodialog.ui" line="433"/> - <location filename="modinfodialog.ui" line="483"/> + <location filename="modinfodialog.ui" line="453"/> + <location filename="modinfodialog.ui" line="503"/> <source>File</source> - <translation type="unfinished">Fichero</translation> + <translation>Fichero</translation> </message> <message> - <location filename="modinfodialog.ui" line="438"/> + <location filename="modinfodialog.ui" line="458"/> <source>Overwritten Mods</source> - <translation type="unfinished"></translation> + <translation>Mods Sobrescritos </translation> </message> <message> - <location filename="modinfodialog.ui" line="448"/> + <location filename="modinfodialog.ui" line="468"/> <source>The following conflicted files are provided by other mods</source> - <translation type="unfinished"></translation> + <translation>Los siguientes archivos en conflicto son proporcionados por otros mods</translation> </message> <message> - <location filename="modinfodialog.ui" line="488"/> + <location filename="modinfodialog.ui" line="508"/> <source>Providing Mod</source> - <translation type="unfinished"></translation> + <translation>Proporcionar Mod</translation> </message> <message> - <location filename="modinfodialog.ui" line="498"/> + <location filename="modinfodialog.ui" line="518"/> <source>Non-Conflicted files</source> - <translation type="unfinished"></translation> + <translation>Archivos que no estan en conflicto</translation> </message> <message> - <location filename="modinfodialog.ui" line="518"/> + <location filename="modinfodialog.ui" line="538"/> <source>Categories</source> - <translation type="unfinished">Categorias</translation> + <translation>Categorías</translation> </message> <message> - <location filename="modinfodialog.ui" line="541"/> + <location filename="modinfodialog.ui" line="561"/> <source>Primary Category</source> - <translation type="unfinished"></translation> + <translation>Categoría Principal</translation> </message> <message> - <location filename="modinfodialog.ui" line="558"/> + <location filename="modinfodialog.ui" line="578"/> <source>Nexus Info</source> <translation>Inf. Nexus</translation> </message> <message> - <location filename="modinfodialog.ui" line="566"/> + <location filename="modinfodialog.ui" line="586"/> <source>Mod ID</source> <translation>ID del MOD</translation> </message> <message> - <location filename="modinfodialog.ui" line="573"/> + <location filename="modinfodialog.ui" line="593"/> <source>Mod ID for this mod on Nexus.</source> <translation>ID del Mod en Nexus.</translation> </message> <message> - <location filename="modinfodialog.ui" line="576"/> + <location filename="modinfodialog.ui" line="596"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Mod ID for this mod on Nexus. This is filled in automatically if you downloaded and installed the mod from inside MO. Otherwise you can enter it manually. To find the correct id, find the mod on nexus. The URL will look like this: </span><a href=" http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://skyrim.nexusmods.com/downloads/file.php?id=1334</span></a><a href="http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" font-size:8pt; color:#000000;">. In this example, 1334 is the id you're looking for. Besides: The above is the link to Mod Organizer on the Nexus. Why not go there now and endorse?</span></a></p></body></html></source> - <oldsource><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Mod ID for this mod on Nexus. This is filled in automatically if you downloaded and installed the mod from inside MO. Otherwise you can enter it manually. To find the correct id, find the mod on nexus. The URL will look like this: <a href=" http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" text-decoration: underline; color:#0000ff;">http://www.skyrimnexus.com/downloads/file.php?id=1334</span></a><a href="http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" color:#000000;">. In this example, 1334 is the id you're looking for. Besides: The above is the link to Mod Organizer on the Nexus. Why not go there now and endorse?</span></a></p></body></html></oldsource> - <translation type="unfinished"></translation> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Mod ID for this mod on Nexus. Esto se rellena automáticamente si has descargado e instalado el mod desde MO. De lo contrario, puedes introducirlo manualmente. Para encontrar el ID correcto, encontrar el mod en nexo. La dirección URL tendrá este aspecto: </span><a href=" http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://skyrim.nexusmods.com/downloads/file.php?id=1334</span></a><a href="http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" font-size:8pt; color:#000000;">.En este ejemplo, 1334 es el identificador que estás buscando. Además: El anterior es el enlace para Mod Organizer en Nexus. ¿Por qué no vas ahora allí y lo avalas?</span></a></p></body></html></translation> </message> <message> - <location filename="modinfodialog.ui" line="600"/> + <location filename="modinfodialog.ui" line="620"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Installed Version of the Mod. The tooltip will contain the current version available on nexus. The installed version is only set if you installed the mod through MO.</span></p></body></html></source> - <translation type="unfinished"></translation> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Versión instalada del Mod. La descripción contendrá la versión actual disponible en nexo. La versión instalada sólo se establece si has instalado el mod través de MO.</span></p></body></html></translation> </message> <message> - <location filename="modinfodialog.ui" line="607"/> + <location filename="modinfodialog.ui" line="627"/> <source>Version</source> <translation>Version</translation> </message> <message> - <location filename="modinfodialog.ui" line="637"/> + <location filename="modinfodialog.ui" line="657"/> <source>Refresh</source> - <translation type="unfinished">Recargar</translation> + <translation>Recargar</translation> </message> <message> - <location filename="modinfodialog.ui" line="640"/> + <location filename="modinfodialog.ui" line="660"/> <source>Refresh all information from Nexus.</source> - <translation type="unfinished"></translation> + <translation>Recargar toda la información de Nexus.</translation> </message> <message> - <location filename="modinfodialog.ui" line="654"/> + <location filename="modinfodialog.ui" line="674"/> <source>Description</source> <translation>Descripcion</translation> </message> <message> - <location filename="modinfodialog.ui" line="669"/> + <location filename="modinfodialog.ui" line="689"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><br /></p></body></html></source> - <translation type="unfinished"></translation> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><br /></p></body></html></translation> </message> <message> - <location filename="modinfodialog.ui" line="704"/> + <location filename="modinfodialog.ui" line="724"/> <source>Endorse</source> - <translation type="unfinished"></translation> + <translation>Avalar</translation> </message> <message> - <location filename="modinfodialog.ui" line="718"/> + <location filename="modinfodialog.ui" line="738"/> <source>Notes</source> - <translation type="unfinished"></translation> + <translation>Notas</translation> </message> <message> - <source>Full description as reported my nexus.</source> - <translation type="obsolete">Descripcion que ha sido publicada con el mod en Nexus.</translation> - </message> - <message> - <source>Files</source> - <translation type="obsolete">Ficheros</translation> + <location filename="modinfodialog.ui" line="748"/> + <source>Filetree</source> + <translation>Contenido</translation> </message> <message> - <source>List of files currently uploaded on nexus. Double click to download.</source> - <translation type="obsolete">Listado de ficheros actualmente en el servidor Nexus. Dible Click para descargar.</translation> + <location filename="modinfodialog.ui" line="757"/> + <source>A directory view of this mod</source> + <translation>Ficheros que contiene este mod</translation> </message> <message> - <source>Type</source> - <translation type="obsolete">Tipo</translation> + <location filename="modinfodialog.ui" line="760"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a modifiable directory view of the mod directory. You can move around files using drag &amp; drop and rename them (double click).</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Changes happen immediately on disc, so do</span><span style=" font-size:8pt; font-weight:600;"> be careful</span><span style=" font-size:8pt;">.</span></p></body></html></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a modifiable directory view of the mod directory. You can move around files using drag &amp; drop and rename them (double click).</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Los cambios pasan inmediatamente sobre el disco, también hacen</span><span style=" font-size:8pt; font-weight:600;"> ser cuidadoso</span><span style=" font-size:8pt;">.</span></p></body></html></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1221"/> - <source>Name</source> - <translation type="unfinished">Nombre</translation> + <location filename="modinfodialog.ui" line="787"/> + <source>Previous</source> + <translation>Anterior</translation> </message> <message> - <source>Size (kB)</source> - <translation type="obsolete">Tamaño (kB)</translation> + <location filename="modinfodialog.ui" line="794"/> + <source>Next</source> + <translation>Siguiente</translation> </message> <message> - <source>Endorsements are an important motivation for authors. Please don't forget to endorse mods you like.</source> - <translatorcomment>Imposible traducir Endorsements porque en la web de Nexus no existe en español, la traduccion correcta seria: RECONOCIMIENTO. Aunque lo mas correcto seria algo asi como: "Me gusta".</translatorcomment> - <translation type="obsolete">Endorsements es una parte importante de motivacion para los creadores. Por favor no olvides pulsar en "endorse" mods si te gustan.</translation> + <location filename="modinfodialog.ui" line="814"/> + <source>Close</source> + <translation>Cerrar</translation> </message> <message> - <source>Have you endorsed this yet?</source> - <translation type="obsolete">Has votado ya por este mod?</translation> + <location filename="modinfodialog.cpp" line="165"/> + <source>&Delete</source> + <translation>&Delete</translation> </message> <message> - <source>Size</source> - <translation type="obsolete">Tamaño</translation> + <location filename="modinfodialog.cpp" line="166"/> + <source>&Rename</source> + <translation>&Rename</translation> </message> <message> - <location filename="modinfodialog.ui" line="728"/> - <source>Filetree</source> - <translation>Contenido</translation> + <location filename="modinfodialog.cpp" line="167"/> + <source>&Hide</source> + <translation>&Ocultar</translation> </message> <message> - <location filename="modinfodialog.ui" line="737"/> - <source>A directory view of this mod</source> - <translation>Ficheros que contiene este mod</translation> + <location filename="modinfodialog.cpp" line="168"/> + <source>&Unhide</source> + <translation>&Mostrar</translation> </message> <message> - <location filename="modinfodialog.ui" line="740"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a modifiable directory view of the mod directory. You can move around files using drag &amp; drop and rename them (double click).</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Changes happen immediately on disc, so do</span><span style=" font-size:8pt; font-weight:600;"> be careful</span><span style=" font-size:8pt;">.</span></p></body></html></source> - <translation type="unfinished"></translation> + <location filename="modinfodialog.cpp" line="169"/> + <source>&Open</source> + <translation>&Abrir</translation> </message> <message> - <location filename="modinfodialog.ui" line="767"/> - <source>Previous</source> - <translation type="unfinished"></translation> + <location filename="modinfodialog.cpp" line="170"/> + <source>&New Folder</source> + <translation>&Nueva Carpeta</translation> </message> <message> - <location filename="modinfodialog.ui" line="774"/> - <source>Next</source> - <translation type="unfinished"></translation> + <location filename="modinfodialog.cpp" line="416"/> + <location filename="modinfodialog.cpp" line="431"/> + <source>Save changes?</source> + <translation>¿Guardar cambios?</translation> </message> <message> - <location filename="modinfodialog.ui" line="794"/> - <source>Close</source> - <translation>Cerrar</translation> + <location filename="modinfodialog.cpp" line="416"/> + <location filename="modinfodialog.cpp" line="431"/> + <source>Save changes to "%1"?</source> + <translation>¿Guardar cambios a %1?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="612"/> + <location filename="modinfodialog.cpp" line="621"/> <source>File Exists</source> <translation>Existe el fichero</translation> </message> <message> - <location filename="modinfodialog.cpp" line="612"/> + <location filename="modinfodialog.cpp" line="621"/> <source>A file with that name exists, please enter a new one</source> <translation>Un fichero con ese nombre ya existe, por favor selecciona otro nombre</translation> </message> <message> - <location filename="modinfodialog.cpp" line="629"/> + <location filename="modinfodialog.cpp" line="638"/> <source>failed to move file</source> <translation>Error al mover el fichero</translation> </message> <message> - <location filename="modinfodialog.cpp" line="654"/> + <location filename="modinfodialog.cpp" line="663"/> <source>failed to create directory "optional"</source> <translation>Error al crear el directorio "optional"</translation> </message> <message> - <location filename="modinfodialog.cpp" line="692"/> - <location filename="modinfodialog.cpp" line="1198"/> + <location filename="modinfodialog.cpp" line="701"/> + <location filename="modinfodialog.cpp" line="1206"/> <source>Info requested, please wait</source> <translation>Informacion solicitada, por favor espere</translation> </message> <message> - <source>Sorry, no usable data received</source> - <translation type="obsolete">Lo siento, no se han recibido datos validos</translation> - </message> - <message> - <source> -(description incomplete, please visit nexus)</source> - <oldsource> -(description incomplete, please visit nexus)</oldsource> - <translation type="obsolete"> -(descripcion incompleta, por favor visita nexus)</translation> + <location filename="modinfodialog.cpp" line="755"/> + <source>Main</source> + <translation>Principal</translation> </message> <message> - <location filename="modinfodialog.cpp" line="104"/> - <source>&Delete</source> - <translation>&Delete</translation> + <location filename="modinfodialog.cpp" line="756"/> + <source>Update</source> + <translation>Actualizacion</translation> </message> <message> - <location filename="modinfodialog.cpp" line="105"/> - <source>&Rename</source> - <translation>&Rename</translation> + <location filename="modinfodialog.cpp" line="757"/> + <source>Optional</source> + <translation>Opcional</translation> </message> <message> - <location filename="modinfodialog.cpp" line="108"/> - <source>&Open</source> - <translation>&Open</translation> + <location filename="modinfodialog.cpp" line="758"/> + <source>Old</source> + <translation>Antiguo</translation> </message> <message> - <location filename="modinfodialog.cpp" line="109"/> - <source>&New Folder</source> - <translation>&New Folder</translation> + <location filename="modinfodialog.cpp" line="759"/> + <source>Misc</source> + <translation>Misc</translation> </message> <message> - <location filename="modinfodialog.cpp" line="405"/> - <location filename="modinfodialog.cpp" line="420"/> - <source>Save changes?</source> - <translation type="unfinished">Grabar cambios?</translation> + <location filename="modinfodialog.cpp" line="760"/> + <source>Unknown</source> + <translation>Desconocido</translation> </message> <message> - <location filename="modinfodialog.cpp" line="762"/> + <location filename="modinfodialog.cpp" line="771"/> <source>Current Version: %1</source> <translation>Version actual: %1</translation> </message> <message> - <location filename="modinfodialog.cpp" line="766"/> + <location filename="modinfodialog.cpp" line="775"/> <source>No update available</source> <translation>Sin actualizacion</translation> </message> <message> - <location filename="modinfodialog.cpp" line="746"/> - <source>Main</source> - <translation>Principal</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="106"/> - <source>&Hide</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="107"/> - <source>&Unhide</source> - <translation type="unfinished"></translation> + <location filename="modinfodialog.cpp" line="816"/> + <source>(description incomplete, please visit nexus)</source> + <translation>(descripción incompleta, por favor visite nexus)</translation> </message> <message> - <location filename="modinfodialog.cpp" line="405"/> - <location filename="modinfodialog.cpp" line="420"/> - <source>Save changes to "%1"?</source> - <translation type="unfinished"></translation> + <location filename="modinfodialog.cpp" line="831"/> + <source><a href="%1">Visit on Nexus</a></source> + <translation><a href="%1">Visite en Nexus</a></translation> </message> <message> - <location filename="modinfodialog.cpp" line="747"/> - <source>Update</source> - <translation>Actualizacion</translation> + <location filename="modinfodialog.cpp" line="910"/> + <source>Failed to delete %1</source> + <translation>Error borrando %1</translation> </message> <message> - <location filename="modinfodialog.cpp" line="748"/> - <source>Optional</source> - <translation>Opcional</translation> + <location filename="modinfodialog.cpp" line="921"/> + <location filename="modinfodialog.cpp" line="926"/> + <source>Confirm</source> + <translation>Confirma</translation> </message> <message> - <location filename="modinfodialog.cpp" line="749"/> - <source>Old</source> - <translation>Antiguo</translation> + <location filename="modinfodialog.cpp" line="921"/> + <source>Are sure you want to delete "%1"?</source> + <translation>Estas seguro de querer borrar "%1"?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="750"/> - <source>Misc</source> - <translation>Misc</translation> + <location filename="modinfodialog.cpp" line="926"/> + <source>Are sure you want to delete the selected files?</source> + <translation>Etas seguro de querer borrar los ficheros seleccionados?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="751"/> - <source>Unknown</source> - <translation>Desconocido</translation> + <location filename="modinfodialog.cpp" line="1000"/> + <location filename="modinfodialog.cpp" line="1006"/> + <source>New Folder</source> + <translation>Nueva Carpeta</translation> </message> <message> - <location filename="modinfodialog.cpp" line="807"/> - <source>(description incomplete, please visit nexus)</source> - <translation type="unfinished"></translation> + <location filename="modinfodialog.cpp" line="1012"/> + <source>Failed to create "%1"</source> + <translation>Fallo al crear "%1"</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1107"/> - <location filename="modinfodialog.cpp" line="1131"/> + <location filename="modinfodialog.cpp" line="1116"/> + <location filename="modinfodialog.cpp" line="1140"/> <source>Replace file?</source> - <translation type="unfinished"></translation> + <translation>¿Reemplazar archivo?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1107"/> + <location filename="modinfodialog.cpp" line="1116"/> <source>There already is a hidden version of this file. Replace it?</source> - <translation type="unfinished"></translation> + <translation>Ya existe una versión oculta de este archivo. Reemplazarlo?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1110"/> - <location filename="modinfodialog.cpp" line="1134"/> + <location filename="modinfodialog.cpp" line="1119"/> + <location filename="modinfodialog.cpp" line="1143"/> <source>File operation failed</source> - <translation type="unfinished"></translation> + <translation>La operación de archivo falló.</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1110"/> - <location filename="modinfodialog.cpp" line="1134"/> + <location filename="modinfodialog.cpp" line="1119"/> + <location filename="modinfodialog.cpp" line="1143"/> <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> - <translation type="unfinished"></translation> + <translation>Fallo al eliminar "% 1". Tal vez no tienes los permisos necesarios?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1121"/> - <location filename="modinfodialog.cpp" line="1144"/> + <location filename="modinfodialog.cpp" line="1130"/> + <location filename="modinfodialog.cpp" line="1153"/> <source>failed to rename %1 to %2</source> - <translation type="unfinished"></translation> + <translation>Fallo al renombrar %1 a %2</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1131"/> + <location filename="modinfodialog.cpp" line="1140"/> <source>There already is a visible version of this file. Replace it?</source> - <translation type="unfinished"></translation> + <translation>Ya existe una versión visible de este archivo. ¿Reemplazarlo?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1178"/> + <location filename="modinfodialog.cpp" line="1186"/> <source>Un-Hide</source> - <translation type="unfinished"></translation> + <translation>Desocultar</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1180"/> + <location filename="modinfodialog.cpp" line="1188"/> <source>Hide</source> - <translation type="unfinished"></translation> + <translation>Ocultar</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1221"/> + <location filename="modinfodialog.cpp" line="1229"/> + <source>Name</source> + <translation>Nombre</translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1229"/> <source>Please enter a name</source> - <translation type="unfinished"></translation> + <translation>Por favor, introduzca un nombre</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1225"/> - <location filename="modinfodialog.cpp" line="1228"/> + <location filename="modinfodialog.cpp" line="1233"/> + <location filename="modinfodialog.cpp" line="1236"/> <source>Error</source> - <translation type="unfinished">Error</translation> + <translation>Error</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1225"/> + <location filename="modinfodialog.cpp" line="1233"/> <source>Invalid name. Must be a valid file name</source> - <translation type="unfinished"></translation> + <translation>Nombre no válido. Debe ser un nombre de archivo válido</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1228"/> + <location filename="modinfodialog.cpp" line="1236"/> <source>A tweak by that name exists</source> - <translation type="unfinished"></translation> + <translation>Existe un ajuste con ese nombre</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1240"/> + <location filename="modinfodialog.cpp" line="1250"/> <source>Create Tweak</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>request failed</source> - <translation type="obsolete">peticion fallada</translation> + <translation>Crear Ajuste Fino</translation> </message> +</context> +<context> + <name>ModInfoForeign</name> <message> - <location filename="modinfodialog.cpp" line="822"/> - <source><a href="%1">Visit on Nexus</a></source> + <location filename="modinfo.cpp" line="987"/> + <source>This pseudo mod represents content managed outside MO. It isn't modified by MO.</source> <translation type="unfinished"></translation> </message> - <message> - <location filename="modinfodialog.cpp" line="912"/> - <location filename="modinfodialog.cpp" line="917"/> - <source>Confirm</source> - <translation>Confirma</translation> - </message> - <message> - <source>Download "%1"?</source> - <translation type="obsolete">Descargar "%1"?</translation> - </message> - <message> - <source>Download started</source> - <translation type="obsolete">Descarga comenzada</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="901"/> - <source>Failed to delete %1</source> - <translation>Error borrando %1</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="912"/> - <source>Are sure you want to delete "%1"?</source> - <translation>Estas seguro de querer borrar "%1"?</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="917"/> - <source>Are sure you want to delete the selected files?</source> - <translation>Etas seguro de querer borrar los ficheros seleccionados?</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="991"/> - <location filename="modinfodialog.cpp" line="997"/> - <source>New Folder</source> - <translation>Nueva Carpeta</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="1003"/> - <source>Failed to create "%1"</source> - <translation>Fallo al crear "%1"</translation> - </message> </context> <context> <name>ModInfoOverwrite</name> <message> - <location filename="modinfo.cpp" line="866"/> + <location filename="modinfo.cpp" line="943"/> <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source> - <translation type="unfinished"></translation> + <translation>Esta pseudo-mod contiene archivos en el árbol de datos virtual que fue modificado (es decir, mediante el kit de construcción)</translation> </message> </context> <context> <name>ModInfoRegular</name> <message> - <location filename="modinfo.cpp" line="393"/> <source>failed to write %1/meta.ini: %2</source> + <translation type="obsolete">fallo al escribir %1/meta.ini: % 2</translation> + </message> + <message> + <location filename="modinfo.cpp" line="557"/> + <location filename="modinfo.cpp" line="560"/> + <source>failed to write %1/meta.ini: error %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfo.cpp" line="661"/> + <location filename="modinfo.cpp" line="811"/> <source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source> - <translation type="unfinished">%1 no contiene ningun directorio con esp/esm ni externos (textures, meshes, interface, ...)</translation> + <translation>%1 no contiene ningún esp/esm y ningún directorio activo (textures, meshes, interface, ...)</translation> </message> <message> - <location filename="modinfo.cpp" line="665"/> + <location filename="modinfo.cpp" line="815"/> <source>Categories: <br></source> - <translation type="unfinished"></translation> + <translation>Categorias: <br></translation> </message> </context> <context> <name>ModList</name> <message> - <source>mod not found: %1</source> - <translation type="obsolete">mod no encontrado %1</translation> - </message> - <message> - <source>Check for %1 failed</source> - <translation type="obsolete">Comprobacion para %1 erronea</translation> - </message> - <message> - <source>Check finished</source> - <translation type="obsolete">Comprobacion terminada</translation> - </message> - <message> - <source>Check in progress</source> - <translation type="obsolete">Comprobacion en progreso</translation> - </message> - <message> - <source>Check started</source> - <translation type="obsolete">Comprobacion comenzada</translation> - </message> - <message> - <location filename="modlist.cpp" line="776"/> - <source>Confirm</source> - <translation>Confirma</translation> - </message> - <message> - <source>Are you sure you want to remove this mod?</source> - <translation type="obsolete">Estas seguro de que quieres borrar este mod?</translation> - </message> - <message> - <source>invalid row-index %1</source> - <translation type="obsolete">índice de fila no válido %1</translation> - </message> - <message> - <source>min</source> - <translation type="obsolete">min</translation> - </message> - <message> - <source>max</source> - <translation type="obsolete">max</translation> - </message> - <message> - <location filename="modlist.cpp" line="308"/> - <source>installed version: "%1", newest version: "%2"</source> - <oldsource>installed version: %1, newest version: %2</oldsource> - <translation type="unfinished">version instalada: %1, nueva version: %2</translation> - </message> - <message> - <source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source> - <translation type="obsolete">%1 no contiene ningun directorio con esp/esm ni externos (textures, meshes, interface, ...)</translation> - </message> - <message> <location filename="modlist.cpp" line="109"/> <source>This entry contains files that have been created inside the virtual data tree (i.e. by the construction kit)</source> - <translation type="unfinished"></translation> + <translation>Esta entrada contiene los archivos que se han creado en el interior del árbol de datos virtual (es decir, mediante el kit de construcción)</translation> </message> <message> <location filename="modlist.cpp" line="118"/> <source>Backup</source> - <translation type="unfinished"></translation> + <translation>Copia de seguridad</translation> </message> <message> <location filename="modlist.cpp" line="119"/> <source>No valid game data</source> - <translation type="unfinished"></translation> + <translation>No hay datos válidos</translation> </message> <message> <location filename="modlist.cpp" line="120"/> <source>Not endorsed yet</source> - <translation type="unfinished"></translation> + <translation>No avalado aún</translation> </message> <message> <location filename="modlist.cpp" line="122"/> <source>Overwrites files</source> - <translation type="unfinished"></translation> + <translation>Sobrescribe archivos</translation> </message> <message> <location filename="modlist.cpp" line="123"/> <source>Overwritten files</source> - <translation type="unfinished"></translation> + <translation>¿Sobrescribir archivo?</translation> </message> <message> <location filename="modlist.cpp" line="124"/> <source>Overwrites & Overwritten</source> - <translation type="unfinished"></translation> + <translation>Sobrescribe & sobrescrito</translation> </message> <message> <location filename="modlist.cpp" line="125"/> <source>Redundant</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="197"/> - <source>invalid</source> - <translation type="unfinished"></translation> + <translation>Redundante</translation> </message> <message> - <location filename="modlist.cpp" line="310"/> - <source>The newest version on Nexus seems to be older than the one you have installed. This could either mean the version you have has been withdrawn (i.e. due to a bug) or the author uses a non-standard versioning scheme and that newest version is actually newer. Either way you may want to "upgrade".</source> + <location filename="modlist.cpp" line="170"/> + <source>Non-MO</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="318"/> - <source>Categories: <br></source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="201"/> + <source>invalid</source> + <translation>inválido</translation> </message> <message> - <location filename="modlist.cpp" line="347"/> - <source>Invalid name</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="314"/> + <source>installed version: "%1", newest version: "%2"</source> + <oldsource>installed version: %1, newest version: %2</oldsource> + <translation>version instalada: "%1", nueva version: "%2"</translation> </message> <message> - <location filename="modlist.cpp" line="832"/> - <source>Mod Name</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="316"/> + <source>The newest version on Nexus seems to be older than the one you have installed. This could either mean the version you have has been withdrawn (i.e. due to a bug) or the author uses a non-standard versioning scheme and that newest version is actually newer. Either way you may want to "upgrade".</source> + <translation>La nueva versión en Nexus parece ser más antigua que la que has instalado. Esto podría significar, que la versión ha sido retirada (es decir, debido a un error) o el autor utiliza un esquema de control de versiones no estándar y que la versión más reciente es en realidad la más reciente. De cualquier manera si lo deseas, puedes "actualizar".</translation> </message> <message> - <location filename="modlist.cpp" line="837"/> - <source>Installation</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="324"/> + <source>Categories: <br></source> + <translation>Categorias: <br></translation> </message> <message> - <location filename="modlist.cpp" line="850"/> - <source>Category of the mod.</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="353"/> + <source>Invalid name</source> + <translation>Nombre no válido.</translation> </message> <message> - <location filename="modlist.cpp" line="851"/> - <source>Id of the mod as used on Nexus.</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="747"/> + <source>drag&drop failed: %1</source> + <translation>fallo al arrastrar y soltar: %1</translation> </message> <message> - <location filename="modlist.cpp" line="852"/> - <source>Emblemes to highlight things that might require attention.</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="810"/> + <source>Confirm</source> + <translation>Confirma</translation> </message> <message> - <location filename="modlist.cpp" line="853"/> - <source>Time this mod was installed</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="810"/> + <source>Are you sure you want to remove "%1"?</source> + <translation>Estas seguro de querer borrar "%1"?</translation> </message> <message> - <source>Name</source> - <translation type="obsolete">Nombre</translation> + <location filename="modlist.cpp" line="865"/> + <source>Flags</source> + <translation>Banderas</translation> </message> <message> - <source>Names of your mods</source> - <translation type="obsolete">Nombres de los mods</translation> + <location filename="modlist.cpp" line="866"/> + <source>Mod Name</source> + <translation>Nombre del Mod</translation> </message> <message> - <location filename="modlist.cpp" line="833"/> + <location filename="modlist.cpp" line="867"/> <source>Version</source> <translation>Versión</translation> </message> <message> - <location filename="modlist.cpp" line="847"/> - <source>Version of the mod (if available)</source> - <translation>Version del mod (si esta disponible)</translation> - </message> - <message> - <location filename="modlist.cpp" line="834"/> + <location filename="modlist.cpp" line="868"/> <source>Priority</source> <translation>Prioridad</translation> </message> <message> - <location filename="modlist.cpp" line="717"/> - <source>drag&drop failed: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="831"/> - <source>Flags</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="835"/> + <location filename="modlist.cpp" line="869"/> <source>Category</source> - <translation type="unfinished"></translation> + <translation>Categoría</translation> </message> <message> - <location filename="modlist.cpp" line="836"/> + <location filename="modlist.cpp" line="870"/> <source>Nexus ID</source> - <translation type="unfinished"></translation> + <translation>Nexus IDs</translation> + </message> + <message> + <location filename="modlist.cpp" line="871"/> + <source>Installation</source> + <translation>Instalación</translation> </message> <message> - <location filename="modlist.cpp" line="838"/> - <location filename="modlist.cpp" line="854"/> + <location filename="modlist.cpp" line="872"/> + <location filename="modlist.cpp" line="888"/> <source>unknown</source> - <translation type="unfinished"></translation> + <translation>Desconocido</translation> </message> <message> - <location filename="modlist.cpp" line="846"/> + <location filename="modlist.cpp" line="880"/> <source>Name of your mods</source> - <translation type="unfinished"></translation> + <translation>Nombre de tus mods</translation> + </message> + <message> + <location filename="modlist.cpp" line="881"/> + <source>Version of the mod (if available)</source> + <translation>Version del mod (si esta disponible)</translation> </message> <message> - <location filename="modlist.cpp" line="848"/> + <location filename="modlist.cpp" line="882"/> <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source> <translation>Prioridad de instalacion de tu mod. Cuanto mas alto sea pisara los mods con menos prioridad.</translation> </message> <message> - <location filename="modlist.cpp" line="776"/> - <source>Are you sure you want to remove "%1"?</source> - <translation>Estas seguro de querer borrar "%1"?</translation> + <location filename="modlist.cpp" line="884"/> + <source>Category of the mod.</source> + <translation>Categoría del mod.</translation> </message> <message> - <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority</source> - <translation type="obsolete">Prioridad de carga del mod. Cuanto mas alta sea la prioridad sobreescribira los mods con menos prioridad</translation> + <location filename="modlist.cpp" line="885"/> + <source>Id of the mod as used on Nexus.</source> + <translation>Id del mod tal como se utiliza en Nexus.</translation> + </message> + <message> + <location filename="modlist.cpp" line="886"/> + <source>Emblemes to highlight things that might require attention.</source> + <translation>Emblemas para destacar las cosas que podrían requerir atención.</translation> + </message> + <message> + <location filename="modlist.cpp" line="887"/> + <source>Time this mod was installed</source> + <translation>Tiempo que fue instalado el mod</translation> </message> </context> <context> @@ -3542,16 +3633,12 @@ p, li { white-space: pre-wrap; } <message> <location filename="motddialog.ui" line="14"/> <source>Message of the Day</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>about:blank</source> - <translation type="obsolete">about:blank</translation> + <translation>Mensaje del día</translation> </message> <message> <location filename="motddialog.ui" line="42"/> <source>OK</source> - <translation type="unfinished">OK</translation> + <translation>Aceptar</translation> </message> </context> <context> @@ -3559,655 +3646,48 @@ p, li { white-space: pre-wrap; } <message> <location filename="overwriteinfodialog.cpp" line="47"/> <source>Overwrites</source> - <translation type="unfinished"></translation> + <translation>Sobreescribir</translation> </message> <message> <location filename="overwriteinfodialog.cpp" line="59"/> <source>not implemented</source> - <translation type="unfinished"></translation> + <translation>no implementado</translation> </message> </context> <context> <name>NXMAccessManager</name> <message> - <location filename="nxmaccessmanager.cpp" line="130"/> + <location filename="nxmaccessmanager.cpp" line="144"/> <source>Logging into Nexus</source> - <translation type="unfinished"></translation> + <translation>Inicio de sesión en Nexus</translation> </message> <message> - <location filename="nxmaccessmanager.cpp" line="145"/> + <location filename="nxmaccessmanager.cpp" line="159"/> <source>timeout</source> - <translation type="unfinished"></translation> + <translation>Tiempo de espera</translation> </message> <message> - <location filename="nxmaccessmanager.cpp" line="185"/> + <location filename="nxmaccessmanager.cpp" line="200"/> <source>Please check your password</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>NXMUrl</name> - <message> - <source>invalid nxm-link: %1</source> - <translation type="obsolete">enlace nxm erroneo: %1</translation> - </message> -</context> -<context> - <name>NexusDialog</name> - <message> - <source>Nexus</source> - <translation type="obsolete">Nexus</translation> - </message> - <message> - <source>Mod ID</source> - <translation type="obsolete">ID del MOD</translation> - </message> - <message> - <source>new</source> - <translation type="obsolete">nuevo</translation> - </message> - <message> - <source>login timeout</source> - <translation type="obsolete">error fuera de tiempo</translation> - </message> - <message> - <source>login error: %1</source> - <translation type="obsolete">error de incio: %1</translation> - </message> - <message> - <source>login success</source> - <translation type="obsolete">Inicio correcto</translation> - </message> - <message> - <source>login failed, please check your password</source> - <translation type="obsolete">Inicio fallido, por favor comprueba tu contraseña</translation> - </message> - <message> - <source>Download started</source> - <translation type="obsolete">Descarga comenzada</translation> + <translation>Por favor introduzca su contraseña</translation> </message> </context> <context> <name>NexusInterface</name> <message> - <location filename="nexusinterface.cpp" line="218"/> + <location filename="nexusinterface.cpp" line="216"/> <source>Failed to guess mod id for "%1", please pick the correct one</source> - <translation type="unfinished"></translation> + <translation>Fallo adivinar Identificación del mod para "% 1", por favor elegir la correcta</translation> </message> <message> - <location filename="nexusinterface.cpp" line="455"/> + <location filename="nexusinterface.cpp" line="481"/> <source>empty response</source> - <translation type="unfinished"></translation> + <translation>Respuesta vacía</translation> </message> <message> - <location filename="nexusinterface.cpp" line="483"/> + <location filename="nexusinterface.cpp" line="510"/> <source>invalid response</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>OMOWindow</name> - <message> - <source>Profile</source> - <translation type="obsolete">Perfil</translation> - </message> - <message> - <source>Pick a module collection</source> - <translation type="obsolete">Selecciona un perfil para cargarlo</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Create profiles here. Each profile contains its own list of active mods and esps. This way you can quickly switch between setups for different play throughs.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Please note that right now your esp load order is not kept seperate for different profiles.</span></p></body></html></source> - <translation type="obsolete">Crea los perfiles aqui. Cada perfil contiene su propia lista de mos y esps activos. Utilizando este metodo puedes cambiar rapidamente de configuraciones para jugar. -Por favor observa que las prioridades no son guardadas para cada perfil.</translation> - </message> - <message> - <source>Refresh list</source> - <translation type="obsolete">Recargar lista</translation> - </message> - <message> - <source>Refresh list. This is usually not necessary unless you modified data outside the program.</source> - <translation type="obsolete">Recargar lista. Esto es normalmente no necesario, a no ser que hayas modificado algo desde fuera del programa.</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Segoe UI'; font-size:9pt;">List of available mods.</span></p></body></html></source> - <translation type="obsolete">Listado de los Mods disponibles.</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag&amp;drop mods to change their &quot;installation&quot; orders.</span></p></body></html></source> - <translation type="obsolete">Esta es la lista de Mods instalados. Usa las marcas de seleccion para activar o desactivar los mods. Pincha y arrastra un mod para cambiar su prioridad.</translation> - </message> - <message> - <source>Filter</source> - <translation type="obsolete">Filtro</translation> - </message> - <message> - <source>Select a filter to only display mods with the specified category.</source> - <translation type="obsolete">Selecciona un filtro para ver solo los mods que son de esa categoria.</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Select a filter to only display mods with the specified category. You can set the category from the context menu on the mods.</span></p></body></html></source> - <translation type="obsolete">Selecciona un filtro para mostrar solamente los mods que pertenezcan a esa categoria. Puedes seleccionar la categoria de los mods en el menu contextual del mod.</translation> - </message> - <message> - <source>Start</source> - <translation type="obsolete">Iniciar</translation> - </message> - <message> - <source>Pick a program to run.</source> - <translation type="obsolete">Selecciona el programa a iniciar.</translation> - </message> - <message> - <source>Run program</source> - <translation type="obsolete">Iniciar el programa</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Run the selected program with ModOrganizer enabled.</span></p></body></html></source> - <translation type="obsolete">Iniciar el programa seleccionado con ModOrganizer activado.</translation> - </message> - <message> - <source>Run</source> - <translation type="obsolete">Iniciar</translation> - </message> - <message> - <source>Create a shortcut in your start menu to the specified program</source> - <translation type="obsolete">Crear un acceso directo en tu menu de inicio del programa indicado</translation> - </message> - <message> - <source>Menu Shortcut</source> - <translation type="obsolete">Icono en Inicio</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">create a desktop shortcut for the selected program</span></p></body></html></source> - <translation type="obsolete">Crea un acceso directo en el escritorio para el programa seleccionado</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This creates a desktop shortcut that directly starts the selected program with the MO active.</span></p></body></html></source> - <translation type="obsolete">Crea un acceso directo en el escritorio para el programa seleccionado con MO activado en segundo plano.</translation> - </message> - <message> - <source>Desktop Shortcut</source> - <translation type="obsolete">Icono en el escritorio</translation> - </message> - <message> - <source>ESPs</source> - <translation type="obsolete">ESPs</translation> - </message> - <message> - <source>save esp list and load order.</source> - <translation type="obsolete">Guardar la lista de prioridades de carga.</translation> - </message> - <message> - <source>Save</source> - <translation type="obsolete">Guardar</translation> - </message> - <message> - <source>List of available esp/esm files</source> - <translation type="obsolete">Listado de ficheros esp/esm disponibles</translation> - </message> - <message> - <source>Configure the executables that can be started through Mod Organizer</source> - <translation type="obsolete">Configura el ejecutable que sera iniciado desde Mod Orgenizer</translation> - </message> - <message> - <source>Update</source> - <translation type="obsolete">Actualizacion</translation> - </message> - <message> - <source>Mod Organizer is up-to-date</source> - <translation type="obsolete">Mod Organizer esta actualizado</translation> - </message> - <message> - <source>Data</source> - <translation type="obsolete">Datos</translation> - </message> - <message> - <source>Categories</source> - <translation type="obsolete">Categorias</translation> - </message> - <message> - <source>refresh data-directory overview</source> - <translation type="obsolete">refresca la vista del directorio de datos</translation> - </message> - <message> - <source>Refresh the overview. This may take a moment.</source> - <translation type="obsolete">Refresca toda la vista. Esto puede tomar un tiempo.</translation> - </message> - <message> - <source>Refresh</source> - <translation type="obsolete">Recargar</translation> - </message> - <message> - <source>This is an overview of your data directory as visible to the game (and tools). </source> - <translation type="obsolete">Esta es una visión general del directorio de datos como visible para el juego (y herramientas).</translation> - </message> - <message> - <source>File</source> - <translation type="obsolete">Fichero</translation> - </message> - <message> - <source>Mod</source> - <translation type="obsolete">Mod</translation> - </message> - <message> - <source>Filter the above list so that only conflicts are displayed.</source> - <translation type="obsolete">Filrar la lista superior por conflictos.</translation> - </message> - <message> - <source>Show only conflicts</source> - <translation type="obsolete">Monstrar solo los conflictos</translation> - </message> - <message> - <source>Saves</source> - <translation type="obsolete">Part. Guardadas</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a list of all savegames for this game. Hover over a list entry to get detailed information about the save including a list of esps/esms that were used at the time this save was created but aren't active now.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you click &quot;Fix Mods...&quot; in the context menu, omo will try to activate all mods and esps to fix those missing esps. It will not disable anything!</span></p></body></html></source> - <translation type="obsolete">Esta es la lista de Partidas guardadas para este juego. Manten el cursor del raton encima de una partida para informacion de esa partida, incluyendo los ficheros ESPs/ESMs que este utilizando esa partida guardada en cuestion y que no se encuentran cargados o activados. - -Activar Mods faltantes en el menu contextual del raton intentara activar los mods que necesite esa partida guardada para poderse ejecutar sun problemas, pero no se desactivara ningun otro mod que tengas activado.</translation> - </message> - <message> - <source>Downloads</source> - <translation type="obsolete">Descargas</translation> - </message> - <message> - <source>Downloaded mods</source> - <translation type="obsolete">Mods descargados</translation> - </message> - <message> - <source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source> - <translation type="obsolete">Esta es la lista de los mods que has descargado desde Nexus. Doble Click para instalar.</translation> - </message> - <message> - <source>Tool Bar</source> - <translation type="obsolete">Tool Bar</translation> - </message> - <message> - <source>Install Mod</source> - <translation type="obsolete">Instalar Mod</translation> - </message> - <message> - <source>Install &Mod</source> - <translation type="obsolete">Instalar &Mod</translation> - </message> - <message> - <source>Install a new mod from an archive</source> - <translation type="obsolete">Instalar un nuevo Mod desde un archivo</translation> - </message> - <message> - <source>Ctrl+M</source> - <translation type="obsolete">Ctrl+M</translation> - </message> - <message> - <source>Help</source> - <translation type="obsolete">Ayuda</translation> - </message> - <message> - <source>&Help</source> - <translation type="obsolete">&Ayuda</translation> - </message> - <message> - <source>Provides help to almost elements of the UI</source> - <translation type="obsolete">Muestra la ayuda en algunos elementos del programa</translation> - </message> - <message> - <source>Ctrl+H</source> - <translation type="obsolete">Ctrl+H</translation> - </message> - <message> - <source>Profiles</source> - <translation type="obsolete">Perfiles</translation> - </message> - <message> - <source>&Profiles</source> - <translation type="obsolete">&Perfiles</translation> - </message> - <message> - <source>Configure Profiles</source> - <translation type="obsolete">Configurar los perfiles</translation> - </message> - <message> - <source>Ctrl+P</source> - <translation type="obsolete">Ctrl+P</translation> - </message> - <message> - <source>Executables</source> - <translation type="obsolete">Ejecutables</translation> - </message> - <message> - <source>&Executables</source> - <translation type="obsolete">&Ejecutables</translation> - </message> - <message> - <source>Configure the executables that can be started throug Mod Organizer</source> - <translation type="obsolete">Configurar los ejecutables que pueden ser inciados desde Mod Organizer</translation> - </message> - <message> - <source>Ctrl+E</source> - <translation type="obsolete">Ctrl+E</translation> - </message> - <message> - <source>Edit Ini</source> - <translation type="obsolete">Editar Ini</translation> - </message> - <message> - <source>Edit &Ini</source> - <translation type="obsolete">Editar &Ini</translation> - </message> - <message> - <source>Edit the ini file of the current profile</source> - <translation type="obsolete">Editar el fichero Ini del perfil actual</translation> - </message> - <message> - <source>Ctrl+I</source> - <translation type="obsolete">Ctrl+I</translation> - </message> - <message> - <source>Settings</source> - <translation type="obsolete">Configuracion</translation> - </message> - <message> - <source>&Settings</source> - <translation type="obsolete">&Configuracion</translation> - </message> - <message> - <source>Configure settings and workarounds</source> - <translation type="obsolete">Configuraciones y modos</translation> - </message> - <message> - <source>Ctrl+S</source> - <translation type="obsolete">Ctrl+S</translation> - </message> - <message> - <source>Nexus</source> - <translation type="obsolete">Nexus</translation> - </message> - <message> - <source>Search nexus network for more mods</source> - <translation type="obsolete">Buscar en la red de Nexus mas Mods</translation> - </message> - <message> - <source>Ctrl+N</source> - <translation type="obsolete">Ctrl+N</translation> - </message> - <message> - <source><All></source> - <translation type="obsolete"><Todos></translation> - </message> - <message> - <source><Checked></source> - <translation type="obsolete"><Marcado></translation> - </message> - <message> - <source><Unchecked></source> - <translation type="obsolete"><Desmarcado></translation> - </message> - <message> - <source>init failed</source> - <translation type="obsolete">Fallo Init</translation> - </message> - <message> - <source>failed to save load order: %1</source> - <translation type="obsolete">Fallo guardando el orden de carga: %1</translation> - </message> - <message> - <source><Update></source> - <translation type="obsolete"><Actualizacion></translation> - </message> - <message> - <source>Name</source> - <translation type="obsolete">Nombre</translation> - </message> - <message> - <source>Please enter a name for the new profile</source> - <translation type="obsolete">Por favor introduzca un nombre para el nuevo perfil</translation> - </message> - <message> - <source>failed to create profile: %1</source> - <translation type="obsolete">Fallo al crear el perfil: %1</translation> - </message> - <message> - <source>Downloads in progress</source> - <translation type="obsolete">Descarga en progreso</translation> - </message> - <message> - <source>There are still downloads in progress, do you really want to quit?</source> - <translation type="obsolete">Aun hay descargas en progreso, estas seguro que quieres salir?</translation> - </message> - <message> - <source>failed to read savegame: %1</source> - <translation type="obsolete">Fallo al leer la partida guardada: %1</translation> - </message> - <message> - <source><table cellspacing="5"><tr><td>Save Number</td><td>%1</td></tr><tr><td>Character</td><td>%2</td></tr><tr><td>Level</td><td>%3</td></tr><tr><td>Location</td><td>%4</td></tr><tr><td>Date</td><td>%5</td></tr><tr><td>Screenshot</td><td>%6</td></tr><tr><td>Missing ESPs</td><td><h5>%7</h5></td></tr></table></source> - <translation type="obsolete"><table cellspacing="5"><tr><td>Partida Numero</td><td>%1</td></tr><tr><td>Personaje</td><td>%2</td></tr><tr><td>Nivel</td><td>%3</td></tr><tr><td>Localizacion</td><td>%4</td></tr><tr><td>Date</td><td>%5</td></tr><tr><td>Captura</td><td>%6</td></tr><tr><td>Faltantes ESPs</td><td><h5>%7</h5></td></tr></table></translation> - </message> - <message> - <source>Failed to start steam</source> - <translation type="obsolete">Fallo al iniciar Steam</translation> - </message> - <message> - <source>"%1" not found</source> - <translation type="obsolete">"%1" no encontrado</translation> - </message> - <message> - <source>Start steam?</source> - <translation type="obsolete">Iniciar Steam?</translation> - </message> - <message> - <source>Steam is required to be running already to correctly start Mod Organizer. Should MO try to start steam now?</source> - <translation type="obsolete">Se requiere que Steam este ya ejecutandose para que Mod Orgenizer funcione correctamente. Quieres que MO intente ejecutar Steam ahora?</translation> - </message> - <message> - <source>Never</source> - <translation type="obsolete">Nunca</translation> - </message> - <message> - <source>Also in: </source> - <translation type="obsolete">Tambien en:</translation> - </message> - <message> - <source>No conflict</source> - <translation type="obsolete">Sin conflictos</translation> - </message> - <message> - <source><Edit...></source> - <translation type="obsolete"><Editar...></translation> - </message> - <message> - <source>Choose Mod</source> - <translation type="obsolete">Seleccione Mod</translation> - </message> - <message> - <source>Mod Archive (*.zip *.7z *.rar)</source> - <translation type="obsolete">Fichero Mod (*.zip *.7z *.rar)</translation> - </message> - <message> - <source>Installation successful</source> - <translation type="obsolete">Instalacion completada</translation> - </message> - <message> - <source>Configure Mod</source> - <translation type="obsolete">Configurar Mod</translation> - </message> - <message> - <source>This mod contains ini tweaks. Do you want to configure them now?</source> - <translation type="obsolete">Este mod contiene modificaciones del Ini. Quieres configurarlas ahora?</translation> - </message> - <message> - <source>failed to refresh directory structure</source> - <translation type="obsolete">Fallo al recargar la estructura del directorio</translation> - </message> - <message> - <source>Download started</source> - <translation type="obsolete">Descarga comenzada</translation> - </message> - <message> - <source>failed to update mod list: %1</source> - <translation type="obsolete">Fallo al actualizar la lista de Mods: %1</translation> - </message> - <message> - <source>failed to spawn notepad.exe: %1</source> - <translation type="obsolete">Fallo al cargar el Bloc de notas: %1</translation> - </message> - <message> - <source>Ini files are local to the currently selected profile.</source> - <translation type="obsolete">Los ficheros INI son locales para el perfil seleccionado.</translation> - </message> - <message> - <source>failed to open %1</source> - <translation type="obsolete">Fallo al abrir %1</translation> - </message> - <message> - <source>Name not valid</source> - <translation type="obsolete">Nombre no valido</translation> - </message> - <message> - <source>failed to change origin name: %1</source> - <translation type="obsolete">fallo al cambiar el nombre original del fichero %1</translation> - </message> - <message> - <source>New name</source> - <translation type="obsolete">Nuevo nombre</translation> - </message> - <message> - <source>A mod with that name exists already</source> - <translation type="obsolete">Un Mod con este nombre ya existe</translation> - </message> - <message> - <source>failed to rename mod: %1</source> - <translation type="obsolete">fallo al cambiar el nombre al mod: %1</translation> - </message> - <message> - <source>Priority</source> - <translation type="obsolete">Prioridad</translation> - </message> - <message> - <source>Choose Priority</source> - <translation type="obsolete">Selecciona Prioridad</translation> - </message> - <message> - <source>Install Mod...</source> - <translation type="obsolete">Instalar Mod...</translation> - </message> - <message> - <source>Set Priority</source> - <translation type="obsolete">Define Prioridad</translation> - </message> - <message> - <source>Highest</source> - <translation type="obsolete">Muy Alta</translation> - </message> - <message> - <source>Manually...</source> - <translation type="obsolete">Manualmente...</translation> - </message> - <message> - <source>Lowest</source> - <translation type="obsolete">Muy Baja</translation> - </message> - <message> - <source>Rename Mod...</source> - <translation type="obsolete">Cambiar nombre...</translation> - </message> - <message> - <source>Remove Mod...</source> - <translation type="obsolete">Quitar Mod...</translation> - </message> - <message> - <source>Error</source> - <translation type="obsolete">Error</translation> - </message> - <message> - <source>Enable all visible</source> - <translation type="obsolete">Activar todos los visibles</translation> - </message> - <message> - <source>Disable all visible</source> - <translation type="obsolete">Desactivar todos los visibles</translation> - </message> - <message> - <source>Information...</source> - <translation type="obsolete">Informacion...</translation> - </message> - <message> - <source>Set Category</source> - <translation type="obsolete">Definir Categoria</translation> - </message> - <message> - <source>Mod Archive</source> - <translation type="obsolete">Fichero Mod</translation> - </message> - <message> - <source>Check all for update</source> - <translation type="obsolete">Buscar Actualizaciones</translation> - </message> - <message> - <source>Fix Mods...</source> - <translation type="obsolete">Activar Mods faltantes...</translation> - </message> - <message> - <source>failed to remove %1</source> - <translation type="obsolete">Fallo eliminando %1</translation> - </message> - <message> - <source>failed to create %1</source> - <translation type="obsolete">Fallo creando el fichero %1</translation> - </message> - <message> - <source>failed to open archive: %1</source> - <translation type="obsolete">Fallo abriendo el fichero: %1</translation> - </message> - <message> - <source>failed to write to file %1</source> - <translation type="obsolete">Fallo de escritura en el fichero %1</translation> - </message> - <message> - <source>%1 written</source> - <translation type="obsolete">%1 escrito</translation> - </message> - <message> - <source>Update available</source> - <translation type="obsolete">Disponible actualización</translation> - </message> - <message> - <source>Write To File...</source> - <translation type="obsolete">Escribir al fichero...</translation> + <translation>respuesta no válida</translation> </message> </context> <context> @@ -4215,206 +3695,187 @@ Activar Mods faltantes en el menu contextual del raton intentara activar los mod <message> <location filename="overwriteinfodialog.ui" line="14"/> <source>Overwrite</source> - <translation type="unfinished"></translation> + <translation>Sobreescribir</translation> </message> <message> <location filename="overwriteinfodialog.ui" line="39"/> <source>You can use drag&drop to move files and directories to regular mods.</source> - <translation type="unfinished"></translation> + <translation>Puedes utilizar arrastrar y soltar para mover archivos y directorios a mods regulares</translation> </message> <message> <location filename="overwriteinfodialog.cpp" line="90"/> <source>&Delete</source> - <translation type="unfinished">&Delete</translation> + <translation>&Eliminar</translation> </message> <message> <location filename="overwriteinfodialog.cpp" line="91"/> <source>&Rename</source> - <translation type="unfinished">&Rename</translation> + <translation>&Renombrar</translation> </message> <message> <location filename="overwriteinfodialog.cpp" line="92"/> <source>&Open</source> - <translation type="unfinished">&Open</translation> + <translation>&Abrir</translation> </message> <message> <location filename="overwriteinfodialog.cpp" line="93"/> <source>&New Folder</source> - <translation type="unfinished">&New Folder</translation> - </message> - <message> - <source>Failed to delete %1</source> - <translation type="obsolete">Error borrando %1</translation> + <translation>&Nueva Carpeta</translation> </message> <message> <location filename="overwriteinfodialog.cpp" line="136"/> <source>Failed to delete "%1"</source> - <translation type="unfinished"></translation> + <translation>Error al borrar "%1"</translation> </message> <message> <location filename="overwriteinfodialog.cpp" line="147"/> <location filename="overwriteinfodialog.cpp" line="152"/> <source>Confirm</source> - <translation type="unfinished">Confirma</translation> + <translation>Confirmar</translation> </message> <message> <location filename="overwriteinfodialog.cpp" line="147"/> <source>Are sure you want to delete "%1"?</source> - <translation type="unfinished">Estas seguro de querer borrar "%1"?</translation> + <translation>Estas seguro de querer eliminar "%1"?</translation> </message> <message> <location filename="overwriteinfodialog.cpp" line="152"/> <source>Are sure you want to delete the selected files?</source> - <translation type="unfinished">Etas seguro de querer borrar los ficheros seleccionados?</translation> + <translation>¿Estas seguro de querer eliminar los ficheros seleccionados?</translation> </message> <message> <location filename="overwriteinfodialog.cpp" line="202"/> <location filename="overwriteinfodialog.cpp" line="208"/> <source>New Folder</source> - <translation type="unfinished">Nueva Carpeta</translation> + <translation>Nueva Carpeta</translation> </message> <message> <location filename="overwriteinfodialog.cpp" line="214"/> <source>Failed to create "%1"</source> - <translation type="unfinished">Fallo al crear "%1"</translation> + <translation>Fallo al crear "%1"</translation> </message> </context> <context> <name>PluginList</name> <message> - <location filename="pluginlist.cpp" line="111"/> + <location filename="pluginlist.cpp" line="103"/> + <source>Name</source> + <translation>Nombre</translation> + </message> + <message> + <location filename="pluginlist.cpp" line="104"/> + <source>Priority</source> + <translation>Prioridad</translation> + </message> + <message> + <location filename="pluginlist.cpp" line="105"/> <source>Mod Index</source> - <translation type="unfinished"></translation> + <translation>Índice de Mod</translation> </message> <message> - <location filename="pluginlist.cpp" line="112"/> + <location filename="pluginlist.cpp" line="106"/> <source>Flags</source> - <translation type="unfinished"></translation> + <translation>Banderas</translation> </message> <message> - <location filename="pluginlist.cpp" line="113"/> - <location filename="pluginlist.cpp" line="125"/> + <location filename="pluginlist.cpp" line="107"/> + <location filename="pluginlist.cpp" line="119"/> <source>unknown</source> - <translation type="unfinished"></translation> + <translation>Desconocido</translation> </message> <message> - <location filename="pluginlist.cpp" line="121"/> + <location filename="pluginlist.cpp" line="115"/> <source>Name of your mods</source> - <translation type="unfinished"></translation> + <translation>Nombre de tus mods</translation> </message> <message> - <location filename="pluginlist.cpp" line="122"/> + <location filename="pluginlist.cpp" line="116"/> <source>Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority.</source> - <translation type="unfinished"></translation> + <translation>Prioridad de carga de tu mod. Cuanto mayor sea, más "importante" es y por lo tanto sobrescribe los datos del plugins con menor prioridad.</translation> </message> <message> - <location filename="pluginlist.cpp" line="124"/> + <location filename="pluginlist.cpp" line="118"/> <source>The modindex determins the formids of objects originating from this mods.</source> - <translation type="unfinished"></translation> + <translation>El índice de mod determins la forma ids de objetos que provienen de este mods.</translation> </message> <message> - <location filename="pluginlist.cpp" line="165"/> + <location filename="pluginlist.cpp" line="159"/> <source>failed to update esp info for file %1 (source id: %2), error: %3</source> - <translation type="unfinished"></translation> + <translation>fallo al actualizar información del esp del archivo %1 (fuente id: %2), error: %3</translation> </message> <message> - <location filename="pluginlist.cpp" line="233"/> + <location filename="pluginlist.cpp" line="227"/> <source>esp not found: %1</source> <translation>ESP no encontrado: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="240"/> - <location filename="pluginlist.cpp" line="252"/> + <location filename="pluginlist.cpp" line="234"/> + <location filename="pluginlist.cpp" line="246"/> <source>Confirm</source> - <translation type="unfinished">Confirma</translation> + <translation>Confirmar</translation> </message> <message> - <location filename="pluginlist.cpp" line="240"/> + <location filename="pluginlist.cpp" line="234"/> <source>Really enable all plugins?</source> - <translation type="unfinished"></translation> + <translation>¿Realmente habilitar todos los plugins?</translation> </message> <message> - <location filename="pluginlist.cpp" line="252"/> + <location filename="pluginlist.cpp" line="246"/> <source>Really disable all plugins?</source> - <translation type="unfinished"></translation> + <translation>¿Realmente deshabilitar todos los plugins?</translation> </message> <message> - <location filename="pluginlist.cpp" line="380"/> + <location filename="pluginlist.cpp" line="397"/> <source>The file containing locked plugin indices is broken</source> - <translation type="unfinished"></translation> + <translation>El fichero que contiene los índices del plugin están bloqueados o rotos</translation> </message> <message> - <location filename="pluginlist.cpp" line="418"/> + <location filename="pluginlist.cpp" line="438"/> <source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="pluginlist.cpp" line="644"/> - <source>BOSS dll incompatible</source> - <translation type="unfinished"></translation> + <translation>Algunos de los plugins tienen nombres no válidos! Estos plugins no pueden ser cargados por el juego. Por favor, consulte mo_interface.log para ver una lista de plugins afectados y cambiarles el nombre.</translation> </message> <message> - <location filename="pluginlist.cpp" line="987"/> - <source>Missing Masters</source> + <location filename="pluginlist.cpp" line="804"/> + <source><b>Origin</b>: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="993"/> - <source>Enabled Masters</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="pluginlist.cpp" line="1134"/> - <source>failed to restore load order for %1</source> - <translation type="unfinished"></translation> + <location filename="pluginlist.cpp" line="806"/> + <source>Author</source> + <translation type="unfinished">Autor</translation> </message> <message> - <source>min</source> - <translation type="obsolete">min</translation> + <location filename="pluginlist.cpp" line="809"/> + <source>Description</source> + <translation type="unfinished">Descripcion</translation> </message> <message> - <source>max</source> - <translation type="obsolete">max</translation> + <source>BOSS dll incompatible</source> + <translation type="obsolete">BOSS dll incompatible</translation> </message> <message> - <location filename="pluginlist.cpp" line="983"/> + <location filename="pluginlist.cpp" line="802"/> <source>This plugin can't be disabled (enforced by the game)</source> - <translation type="unfinished"></translation> + <translation>Este plugin no se puede desactivar (impuesto por el juego)</translation> </message> <message> - <location filename="pluginlist.cpp" line="985"/> <source>Origin: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="pluginlist.cpp" line="109"/> - <source>Name</source> - <translation>Nombre</translation> + <translation type="obsolete">Origen: %1</translation> </message> <message> - <source>Names of your mods</source> - <translation type="obsolete">Nombres de tus Mods</translation> - </message> - <message> - <location filename="pluginlist.cpp" line="110"/> - <source>Priority</source> - <translation>Prioridad</translation> - </message> - <message> - <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source> - <translation type="obsolete">Prioridad de instalación de tu mod. Cuanto mayor sea, más "importante" es y así sobrescribe archivos de mods con menor prioridad.</translation> - </message> - <message> - <source>This index determines the id of items, spells, ... introduced by the mod. Their id will be "xxyyyyyy" where "xx" is this index which "yyyyyy" is determined by the mod itself.</source> - <translation type="obsolete">Este índice determina el id de elementos, hechizos,... indicado por el MOD. Su identificación será "xxyyyyyy" donde "xx" es este índice y que "yyyyyy" está determinado por el MOD.</translation> + <location filename="pluginlist.cpp" line="812"/> + <source>Missing Masters</source> + <translation>Maestros Desaparecidos</translation> </message> <message> - <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority</source> - <translation type="obsolete">Prioridad de carga de tu Mod. Cuanto mas alto sea el numero mas importante sera y cargara por encima de los mods que tengan menos prioridad</translation> + <location filename="pluginlist.cpp" line="819"/> + <source>Enabled Masters</source> + <translation>Activar Maestros</translation> </message> <message> - <source>ModIndex</source> - <translation type="obsolete">Indice Mod</translation> + <location filename="pluginlist.cpp" line="960"/> + <source>failed to restore load order for %1</source> + <translation>fallo al restaurar el orden de carga 1%</translation> </message> </context> <context> @@ -4422,12 +3883,12 @@ Activar Mods faltantes en el menu contextual del raton intentara activar los mod <message> <location filename="previewdialog.ui" line="14"/> <source>Preview</source> - <translation type="unfinished"></translation> + <translation>Previsualizar</translation> </message> <message> <location filename="previewdialog.ui" line="78"/> <source>Close</source> - <translation type="unfinished">Cerrar</translation> + <translation>Cerrar</translation> </message> </context> <context> @@ -4435,7 +3896,7 @@ Activar Mods faltantes en el menu contextual del raton intentara activar los mod <message> <location filename="problemsdialog.ui" line="14"/> <source>Problems</source> - <translation type="unfinished"></translation> + <translation>Problemas</translation> </message> <message> <location filename="problemsdialog.ui" line="49"/> @@ -4444,105 +3905,105 @@ Activar Mods faltantes en el menu contextual del raton intentara activar los mod p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html></source> - <oldsource><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><br /></p></body></html></oldsource> - <translation type="unfinished"></translation> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html></translation> </message> <message> <location filename="problemsdialog.ui" line="75"/> <source>Close</source> - <translation type="unfinished">Cerrar</translation> + <translation>Cerrar</translation> </message> <message> <location filename="problemsdialog.cpp" line="44"/> <location filename="problemsdialog.cpp" line="45"/> <source>Fix</source> - <translation type="unfinished"></translation> + <translation>Corregir</translation> </message> <message> <location filename="problemsdialog.cpp" line="49"/> <source>No guided fix</source> - <translation type="unfinished"></translation> + <translation>No existe una solución guiada</translation> </message> </context> <context> <name>Profile</name> <message> - <source>failed to apply ini tweaks</source> - <translation type="obsolete">fallo al aplicar las modificaciones al ini</translation> - </message> - <message> <location filename="profile.cpp" line="59"/> <source>invalid profile name %1</source> - <translation type="unfinished"></translation> + <translation>Nombre de perfil no válido %1</translation> </message> <message> <location filename="profile.cpp" line="63"/> <source>failed to create %1</source> - <translation type="unfinished"></translation> + <translation>Fallo al crear %1</translation> </message> <message> - <location filename="profile.cpp" line="182"/> + <location filename="profile.cpp" line="184"/> <source>failed to write mod list: %1</source> - <translation type="unfinished"></translation> + <translation>Fallo al escribir lista de mod:s: %1</translation> </message> <message> - <location filename="profile.cpp" line="193"/> + <location filename="profile.cpp" line="195"/> <source>failed to update tweaked ini file, wrong settings may be used: %1</source> - <translation type="unfinished"></translation> + <translation>fallo al actualizar ajustes fichero ini, puede ser usado: %1</translation> </message> <message> - <location filename="profile.cpp" line="223"/> + <location filename="profile.cpp" line="226"/> <source>failed to create tweaked ini: %1</source> - <translation type="unfinished"></translation> + <translation>fallo al crear ajustes ini: %1</translation> </message> <message> - <location filename="profile.cpp" line="371"/> + <location filename="profile.cpp" line="236"/> + <source>"%1" is missing or inaccessible</source> + <translation type="unfinished">"%1" no encontrado</translation> + </message> + <message> + <location filename="profile.cpp" line="281"/> + <location filename="profile.cpp" line="313"/> + <location filename="profile.cpp" line="415"/> + <location filename="profile.cpp" line="432"/> + <location filename="profile.cpp" line="442"/> + <source>invalid index %1</source> + <translation>fallo al crear ajustes ini: %1</translation> + </message> + <message> + <location filename="profile.cpp" line="396"/> <source>Overwrite directory couldn't be parsed</source> - <translation type="unfinished"></translation> + <translation>Directorio de sobrescritura no se pudo analizar</translation> </message> <message> - <location filename="profile.cpp" line="380"/> + <location filename="profile.cpp" line="405"/> <source>invalid priority %1</source> <translation>prioridad invalida %1</translation> </message> <message> - <location filename="profile.cpp" line="568"/> + <location filename="profile.cpp" line="592"/> <source>failed to parse ini file (%1)</source> - <translation type="unfinished"></translation> + <translation>fallo al analizar fichero ini (%1)</translation> </message> <message> - <location filename="profile.cpp" line="596"/> + <location filename="profile.cpp" line="620"/> <source>failed to parse ini file (%1): %2</source> - <translation type="unfinished"></translation> + <translation>fallo al analizar fichero ini (%1): %2</translation> </message> <message> - <location filename="profile.cpp" line="620"/> - <location filename="profile.cpp" line="657"/> + <location filename="profile.cpp" line="644"/> + <location filename="profile.cpp" line="681"/> <source>failed to modify "%1"</source> - <translation type="unfinished"></translation> + <translation>fallo al modificar "%1"</translation> </message> <message> - <location filename="profile.cpp" line="685"/> + <location filename="profile.cpp" line="709"/> <source>Delete savegames?</source> - <translation type="unfinished"></translation> + <translation>¿Eliminar partidas guardadas?</translation> </message> <message> - <location filename="profile.cpp" line="686"/> + <location filename="profile.cpp" line="710"/> <source>Do you want to delete local savegames? (If you select "No", the save games will show up again if you re-enable local savegames)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profile.cpp" line="276"/> - <location filename="profile.cpp" line="305"/> - <location filename="profile.cpp" line="390"/> - <location filename="profile.cpp" line="408"/> - <location filename="profile.cpp" line="418"/> - <source>invalid index %1</source> - <translation>indice invalido %1</translation> + <translation>¿Quieres borrar partidas locales guardadas? (Si seleccionas "No", los juegos salvados aparecerán de nuevo si vuelves a habilitar las partidas locales guardadas)</translation> </message> </context> <context> @@ -4550,27 +4011,27 @@ p, li { white-space: pre-wrap; } <message> <location filename="profileinputdialog.ui" line="14"/> <source>Dialog</source> - <translation type="unfinished"></translation> + <translation>Diálogo</translation> </message> <message> <location filename="profileinputdialog.ui" line="20"/> <source>Please enter a name for the new profile</source> - <translation type="unfinished">Por favor introduzca un nombre para el nuevo perfil</translation> + <translation>Por favor introduzca un nombre para el nuevo perfil</translation> </message> <message> <location filename="profileinputdialog.ui" line="30"/> <source>If checked, the new profile will use the default game settings.</source> - <translation type="unfinished"></translation> + <translation>Si se marca, el nuevo perfil utilizará la configuración predeterminada de juego.</translation> </message> <message> <location filename="profileinputdialog.ui" line="33"/> <source>If checked, the new profile will use the default game settings instead of the "global" settings. Global settings are the settings you configure when running the game launcher directly, without MO.</source> - <translation type="unfinished"></translation> + <translation>Si se marca, el nuevo perfil utilizará la configuración predeterminada de juego en lugar de los ajustes "globales". La configuración global son los valores que se configuran al ejecutar el lanzador del juego directamente, sin MO.</translation> </message> <message> <location filename="profileinputdialog.ui" line="36"/> <source>Default Game Settings</source> - <translation type="unfinished"></translation> + <translation>Ajustes del Juego por Defecto</translation> </message> </context> <context> @@ -4594,22 +4055,24 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This is the list of profiles. Each Profile contains its own list and installation order of enabled mods (from a shared pool), a configuration of enabled esps/esms, a copy of the games ini-file and an optional savegame filter.</p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Note</span> For technical reasons it's currently not possible to have seperate load-orders for esps. This means you can't load moda.esp before modb.esp in one profile and the other way around in another.</p></body></html></source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Savegame Filter</source> - <translation type="obsolete">Filtro de Part. Guardadas</translation> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Esta es la lista de perfiles. Cada perfil contiene su propia lista y el orden de instalación de mods habilitados (desde un fondo compartido), una configuración de esps/esms una copia de ficheros ini del juego y un filtro de partidas guardadas opcional.</p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Nota</span> Por razones técnicas, en este momento no es posible tener-órdenes de carga separadas para esps. Esto significa que no puede cargar moda.esp antes modb.esp en un perfil y al revés en otro.</p></body></html></translation> </message> <message> <location filename="profilesdialog.ui" line="38"/> <location filename="profilesdialog.ui" line="41"/> <source>If checked, savegames are local to this profile and will not appear when starting with a different profile.</source> - <translation type="unfinished"></translation> + <translation>Si se selecciona, las partidas guardadas como locales de este perfil no aparecerán cuando se parte de un perfil diferente.</translation> </message> <message> <location filename="profilesdialog.ui" line="44"/> <source>Local Savegames</source> - <translation type="unfinished"></translation> + <translation>Partidas guardadas local</translation> </message> <message> <location filename="profilesdialog.ui" line="51"/> @@ -4626,7 +4089,14 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The Mod Organizer uses a workaround called &quot;BSA redirection&quot; (google is your friend) to fix this issue reliably and without further work. Simply activate and forget.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">With Skyrim this bug seems to be fixed to a degree but whether a mod becomes active still depends on file dates. Therefore, it still makes sense to activate this.</span></p></body></html></source> - <translation type="unfinished"></translation> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Los juegos de Oblivion, Fallout 3 y Fallout NV contienen un error que impide que la textura y los sustitutos de la malla (es decir: todas las modificaciones de las mallas y texturas que ya están en el juego) funcionen.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">El Mod Organizer utiliza una solución llamada &quot;BSA redirección&quot; (google es tu amigo) para solucionar este problema de forma fiable y sin más trabajo. Basta con activarlo y olvidarse.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Con Skyrim este error parece corregido, pero si un mod se activa todavía depende de las fechas de archivo. Por lo tanto, todavía tiene sentido activar esto.</span></p></body></html></translation> </message> <message> <location filename="profilesdialog.ui" line="64"/> @@ -4673,18 +4143,18 @@ p, li { white-space: pre-wrap; } <message> <location filename="profilesdialog.ui" line="123"/> <source>Rename</source> - <translation type="unfinished"></translation> + <translation>Renombrar</translation> </message> <message> <location filename="profilesdialog.ui" line="133"/> <location filename="profilesdialog.ui" line="136"/> <source>Transfer save games to the selected profile.</source> - <translation type="unfinished"></translation> + <translation>Transferencia salvar juegos al perfil seleccionado</translation> </message> <message> <location filename="profilesdialog.ui" line="139"/> <source>Transfer Saves</source> - <translation type="unfinished"></translation> + <translation>Transferencia de archivos</translation> </message> <message> <location filename="profilesdialog.ui" line="162"/> @@ -4720,12 +4190,12 @@ p, li { white-space: pre-wrap; } <message> <location filename="profilesdialog.cpp" line="165"/> <source>Invalid name</source> - <translation type="unfinished"></translation> + <translation>Nombre inválido</translation> </message> <message> <location filename="profilesdialog.cpp" line="165"/> <source>Invalid profile name</source> - <translation type="unfinished"></translation> + <translation>Nombre de perfil no válido</translation> </message> <message> <location filename="profilesdialog.cpp" line="172"/> @@ -4735,31 +4205,27 @@ p, li { white-space: pre-wrap; } <message> <location filename="profilesdialog.cpp" line="172"/> <source>Are you sure you want to remove this profile (including local savegames if any)?</source> - <translation type="unfinished"></translation> + <translation>¿Estás seguro que deseas eliminar este perfil (incluyendo partidas locales guardadas si los hay)?</translation> </message> <message> <location filename="profilesdialog.cpp" line="182"/> <source>Profile broken</source> - <translation type="unfinished"></translation> + <translation>Perfil roto</translation> </message> <message> <location filename="profilesdialog.cpp" line="183"/> <source>This profile you're about to delete seems to be broken or the path is invalid. I'm about to delete the following folder: "%1". Proceed?</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Are you sure you want to remove this profile?</source> - <translation type="obsolete">Estas seguro de que quieres borrar este perfil?</translation> + <translation>Este perfil que estás a punto de suprimir parece estar roto o la ruta no es válida. Estoy a punto de suprimir la carpeta siguiente: "%1". ¿Continuar?</translation> </message> <message> <location filename="profilesdialog.cpp" line="215"/> <source>Rename Profile</source> - <translation type="unfinished"></translation> + <translation>Renombrar perfil</translation> </message> <message> <location filename="profilesdialog.cpp" line="215"/> <source>New Name</source> - <translation type="unfinished"></translation> + <translation>Nombre Nuevo</translation> </message> <message> <location filename="profilesdialog.cpp" line="252"/> @@ -4775,84 +4241,78 @@ p, li { white-space: pre-wrap; } <context> <name>QObject</name> <message> - <source>invalid category %1</source> - <translation type="obsolete">categoria invalida %1</translation> - </message> - <message> - <source>None</source> - <translation type="obsolete">Nada</translation> - </message> - <message> - <source>Animations</source> - <translation type="obsolete">Animaciones</translation> - </message> - <message> - <source>Armour</source> - <translation type="obsolete">Armadura</translation> - </message> - <message> - <source>Audio</source> - <translation type="obsolete">Sonido</translation> - </message> - <message> - <source>Cities</source> - <translation type="obsolete">Ciudades</translation> - </message> - <message> - <source>Clothing</source> - <translation type="obsolete">Ropajes</translation> + <location filename="categories.cpp" line="141"/> + <source>Failed to save custom categories</source> + <translation>Error al guardar categorías personalizadas</translation> </message> <message> - <source>Collectables</source> - <translation type="obsolete">Coleccionables</translation> + <location filename="categories.cpp" line="218"/> + <location filename="categories.cpp" line="253"/> + <location filename="categories.cpp" line="263"/> + <location filename="categories.cpp" line="273"/> + <source>invalid index %1</source> + <translation>indice invalido %1</translation> </message> <message> - <source>Creatures</source> - <translation type="obsolete">Creaturas</translation> + <location filename="categories.cpp" line="284"/> + <source>invalid category id %1</source> + <translation>categoría id no válida %1</translation> </message> <message> - <source>Factions</source> - <translation type="obsolete">Facciones</translation> + <location filename="csvbuilder.cpp" line="70"/> + <source>invalid field name "%1"</source> + <translation>nombre de campo no válido "%1"</translation> </message> <message> - <source>Gameplay</source> - <translation type="obsolete">Juego</translation> + <location filename="csvbuilder.cpp" line="76"/> + <source>invalid type for "%1" (should be integer)</source> + <translation>tipo no válido para "%1" (debe ser un número entero)</translation> </message> <message> - <source>Hair</source> - <translation type="obsolete">Pelo</translation> + <location filename="csvbuilder.cpp" line="81"/> + <source>invalid type for "%1" (should be string)</source> + <translation>tipo no válido para "%1" (debe ser string)</translation> </message> <message> - <source>Items</source> - <translation type="obsolete">Objetos</translation> + <location filename="csvbuilder.cpp" line="86"/> + <source>invalid type for "%1" (should be float)</source> + <translation>tipo no válido para "%1" (debe ser float)</translation> </message> <message> - <source>Locations</source> - <translation type="obsolete">Localizaciones</translation> + <location filename="csvbuilder.cpp" line="103"/> + <source>no fields set up yet!</source> + <translation>¡ningún campo creado todavía!</translation> </message> <message> - <source>NPCs</source> - <translation type="obsolete">NPCs</translation> + <location filename="csvbuilder.cpp" line="140"/> + <source>field not set "%1"</source> + <translation>campo no ajustado "%1"</translation> </message> <message> - <source>Patches</source> - <translation type="obsolete">Parches</translation> + <location filename="csvbuilder.cpp" line="237"/> + <source>invalid character in field "%1"</source> + <translation>carácter inválido en el ancho del campo "%1"</translation> </message> <message> - <source>Quests</source> - <translation type="obsolete">Misiones</translation> + <location filename="csvbuilder.cpp" line="240"/> + <source>empty field name</source> + <translation>Nombre del campo vacío</translation> </message> <message> - <source>Races & Classes</source> - <translation type="obsolete">Razas & Clases</translation> + <location filename="gameinfoimpl.cpp" line="41"/> + <source>invalid game type %1</source> + <translation>tipo de juego inválido %1</translation> </message> <message> - <source>Videos</source> - <translation type="obsolete">Videos</translation> + <location filename="helper.cpp" line="53"/> + <source>helper failed</source> + <translation>Fallo el ayudante</translation> </message> <message> - <source>Weapons</source> - <translation type="obsolete">Armas</translation> + <location filename="helper.cpp" line="69"/> + <location filename="helper.cpp" line="90"/> + <source>failed to determine account name</source> + <translation>no se pudo determinar el nombre de la cuenta</translation> </message> <message> <location filename="installationmanager.cpp" line="64"/> @@ -4925,114 +4385,91 @@ p, li { white-space: pre-wrap; } <translation>Fallo al configurar la carga por proxy-dll</translation> </message> <message> - <location filename="profile.cpp" line="96"/> - <source>"%1" is missing</source> - <translation>"%1" no encontrado</translation> - </message> - <message> - <location filename="main.cpp" line="139"/> + <location filename="main.cpp" line="121"/> <source>Permissions required</source> <translation>Se requieren permisos</translation> </message> <message> - <source>The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "mo_helper.exe" with administrative rights).</source> - <translation type="obsolete">La cuenta de usuario actual no tiene los derechos de acceso necesarios para ejecutar el Mod Organizer. Los cambios necesarios pueden hacerse automáticamente (el directorio de MO se harán escritura para la cuenta de usuario actual). Se le pedirá a ejecutar "mo_helper.exe" con derechos de administrador).</translation> + <location filename="main.cpp" line="122"/> + <source>The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights.</source> + <translation>La cuenta de usuario actual no tiene los permisos de acceso requeridos para ejecutar Mod Organizer. Los cambios necesarios se pueden hacer de forma automática (el directorio MO hará escritura para la cuenta de usuario actual). Se le pedirá ejecutar "helper.exe" con derechos administrativos.</translation> </message> <message> - <location filename="main.cpp" line="231"/> - <location filename="main.cpp" line="269"/> + <location filename="main.cpp" line="216"/> + <location filename="main.cpp" line="254"/> <source>Woops</source> - <translation type="unfinished"></translation> + <translation>Woops</translation> </message> <message> - <location filename="main.cpp" line="140"/> - <source>The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="main.cpp" line="232"/> + <location filename="main.cpp" line="217"/> <source>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file (%1) to sherb@gmx.net, the bug is a lot more likely to be fixed. Please include a short description of what you were doing when the crash happened</source> - <translation type="unfinished"></translation> + <translation>¡ModOrganizer se ha estrellado! ¿Se debe crear un archivo de diagnóstico? Si me envía el fichero (%1) a sherb@gmx.net, el error es mucho más probable que se arregle. Por favor, incluya una breve descripción de lo que estaba haciendo cuando ocurrió el accidente</translation> </message> <message> - <location filename="main.cpp" line="270"/> + <location filename="main.cpp" line="255"/> <source>ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1</source> - <translation type="unfinished"></translation> + <translation>¡ModOrganizer se ha estrellado! Lamentablemente no fue capaz de escribir un archivo de diagnóstico: %1</translation> </message> <message> - <location filename="main.cpp" line="332"/> + <location filename="main.cpp" line="376"/> + <location filename="settings.cpp" line="557"/> + <source>Mod Organizer</source> + <translation>Mod Organizer</translation> + </message> + <message> + <location filename="main.cpp" line="376"/> <source>An instance of Mod Organizer is already running</source> <translation>Ya se está ejecutando una instancia de Mod Organizer</translation> </message> <message> - <location filename="main.cpp" line="354"/> + <location filename="main.cpp" line="398"/> <source>No game identified in "%1". The directory is required to contain the game binary and its launcher.</source> - <translation type="unfinished"></translation> + <translation>Juego no identificado en "%1". Se requiere que el directorio contenga el binario del juego y su lanzador.</translation> </message> <message> - <location filename="main.cpp" line="357"/> - <location filename="main.cpp" line="386"/> + <location filename="main.cpp" line="401"/> + <location filename="main.cpp" line="430"/> <source>Please select the game to manage</source> <translation>Por favor seleccione el juego</translation> </message> <message> - <location filename="main.cpp" line="412"/> + <location filename="main.cpp" line="456"/> <source>Please select the game edition you have (MO can't start the game correctly if this is set incorrectly!)</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>invalid profile %1</source> - <translation type="obsolete">perfil invalido %1</translation> + <translation>Por favor selecciona la edición del juego que tienes (MO no puede iniciar el juego correctamente si esto está mal ajustado!)</translation> </message> <message> - <source>"%1" not found</source> - <translation type="obsolete">"%1" no encontrado</translation> + <location filename="main.cpp" line="545"/> + <source>failed to start application: %1</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="782"/> + <location filename="mainwindow.cpp" line="842"/> <source>Please use "Help" from the toolbar to get usage instructions to all elements</source> <translation>Por favor utilice "Ayuda" en la barra superior para obtener informacion sobre todos los elementos</translation> </message> <message> - <source>invalid row %1</source> - <translation type="obsolete">colunma invalida %1</translation> - </message> - <message> - <source>invalid priority %1</source> - <translation type="obsolete">prioridad invalida %1</translation> - </message> - <message> - <location filename="pluginlist.cpp" line="335"/> - <location filename="profile.cpp" line="233"/> - <source>failed to find "%1"</source> - <translation>fallo al encontrar %1</translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1610"/> - <location filename="mainwindow.cpp" line="4216"/> + <location filename="mainwindow.cpp" line="1613"/> + <location filename="mainwindow.cpp" line="4226"/> <source><Manage...></source> <translation><Definir...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1628"/> + <location filename="mainwindow.cpp" line="1631"/> <source>failed to parse profile %1: %2</source> <translation>no se pudo analizar el perfil % 1: %2</translation> </message> <message> - <source>Please Wait</source> - <translation type="obsolete">Por favor, espere</translation> - </message> - <message> - <source>This can take a moment</source> - <translation type="obsolete">Esto tomara un momento</translation> + <location filename="pluginlist.cpp" line="352"/> + <source>failed to find "%1"</source> + <translation>fallo al encontrar %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="491"/> + <location filename="pluginlist.cpp" line="515"/> <source>failed to access %1</source> <translation>Fallo al acceder %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="505"/> + <location filename="pluginlist.cpp" line="529"/> <source>failed to set file time %1</source> <translation>Fallo al definir la hora al fihcero %1</translation> </message> @@ -5042,16 +4479,15 @@ p, li { white-space: pre-wrap; } <translation>Fallo al crear %1</translation> </message> <message> - <source>modlist.txt missing</source> - <translation type="obsolete">No se encuentra modlist.txt</translation> - </message> - <message> - <source>failed to copy "%1" to "%2", this is going to end badly...</source> - <translation type="obsolete">Error al copiar "%1" a "%2", esto va a terminar mal...</translation> + <location filename="profile.cpp" line="96"/> + <source>"%1" is missing or inaccessible</source> + <oldsource>"%1" is missing</oldsource> + <translation type="unfinished">"%1" no encontrado</translation> </message> <message> - <source>Before you can use ModOrganizer, you need to create at least one profile!</source> - <translation type="obsolete">Antes de poder usar ModOrganizer, necesitas crear al menos un perfil!</translation> + <location filename="profilesdialog.cpp" line="80"/> + <source>Before you can use ModOrganizer, you need to create at least one profile. ATTENTION: Run the game at least once before creating a profile!</source> + <translation>Antes de poder utilizar ModOrganizer, es necesario crear al menos un perfil. ATENCIÓN: Ejecutar el juego al menos una vez antes de crear un perfil!</translation> </message> <message> <location filename="report.cpp" line="33"/> @@ -5072,153 +4508,64 @@ p, li { white-space: pre-wrap; } <translation>Fallo al abrir %1</translation> </message> <message> - <source>English</source> - <translation type="obsolete">Ingles</translation> - </message> - <message> - <location filename="main.cpp" line="332"/> - <location filename="settings.cpp" line="542"/> - <source>Mod Organizer</source> - <translation>Mod Organizer</translation> - </message> - <message> - <location filename="settings.cpp" line="549"/> + <location filename="settings.cpp" line="564"/> <source>Script Extender</source> <translation>Script Extender</translation> </message> <message> - <location filename="settings.cpp" line="556"/> + <location filename="settings.cpp" line="571"/> <source>Proxy DLL</source> <translation>Proxy DLL</translation> </message> <message> - <location filename="spawn.cpp" line="106"/> + <location filename="spawn.cpp" line="127"/> <source>failed to spawn "%1"</source> <translation>Fallo al crear "%1"</translation> </message> <message> - <location filename="spawn.cpp" line="113"/> + <location filename="spawn.cpp" line="134"/> <source>Elevation required</source> - <translation type="unfinished"></translation> + <translation>Elevación requerida</translation> </message> <message> - <location filename="spawn.cpp" line="114"/> + <location filename="spawn.cpp" line="135"/> <source>This process requires elevation to run. This is a potential security risk so I highly advice you to investigate if "%1" can be installed to work without elevation. Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe to make changes to the system)</source> - <translation type="unfinished"></translation> + <translation>Este proceso require elevación tal iniciar. +Este es un riesgo potencial para la seguridad, así que aconsejo vivamente investigarlo +"%1" +puede ser instalado para trabajar sin elevación. + +¿Comenzar elevación de todos modos? (se le preguntará si desea permitir a Mod Organizer.exe realizar cambios en el sistema)</translation> </message> <message> - <location filename="spawn.cpp" line="129"/> + <location filename="spawn.cpp" line="150"/> <source>failed to spawn "%1": %2</source> <translation>Fallo al crear "%1": %2</translation> </message> <message> - <location filename="spawn.cpp" line="138"/> + <location filename="spawn.cpp" line="159"/> <source>"%1" doesn't exist</source> <translation>"%1% no existe</translation> </message> <message> - <location filename="spawn.cpp" line="145"/> + <location filename="spawn.cpp" line="166"/> <source>failed to inject dll into "%1": %2</source> <translation>Fallo al injectar la dll en "%1": %2</translation> </message> <message> - <location filename="spawn.cpp" line="153"/> + <location filename="spawn.cpp" line="174"/> <source>failed to run "%1"</source> <translation>Fallo al abrir %1</translation> </message> <message> - <source>removal of "%1" failed: %2</source> - <oldsource>remove %1 failed</oldsource> - <translation type="obsolete">Fallo eliminando %1</translation> - </message> - <message> - <location filename="helper.cpp" line="53"/> - <source>helper failed</source> - <translation>Fallo el ayudante</translation> - </message> - <message> - <location filename="helper.cpp" line="69"/> - <location filename="helper.cpp" line="90"/> - <source>failed to determine account name</source> - <translation>no se pudo determinar el nombre de la cuenta</translation> - </message> - <message> - <location filename="categories.cpp" line="141"/> - <source>Failed to save custom categories</source> - <translation>Error al guardar categorías personalizadas</translation> - </message> - <message> - <location filename="categories.cpp" line="218"/> - <location filename="categories.cpp" line="253"/> - <location filename="categories.cpp" line="263"/> - <location filename="categories.cpp" line="273"/> - <source>invalid index %1</source> - <translation>indice invalido %1</translation> - </message> - <message> - <location filename="categories.cpp" line="284"/> - <source>invalid category id %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="profilesdialog.cpp" line="80"/> - <source>Before you can use ModOrganizer, you need to create at least one profile. ATTENTION: Run the game at least once before creating a profile!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="70"/> - <source>invalid field name "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="76"/> - <source>invalid type for "%1" (should be integer)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="81"/> - <source>invalid type for "%1" (should be string)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="86"/> - <source>invalid type for "%1" (should be float)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="103"/> - <source>no fields set up yet!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="140"/> - <source>field not set "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="237"/> - <source>invalid character in field "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="240"/> - <source>empty field name</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="gameinfoimpl.cpp" line="41"/> - <source>invalid game type %1</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="safewritefile.cpp" line="32"/> <source>failed to open temporary file</source> - <translation type="unfinished"></translation> + <translation>Fallo al abrir el archivo temporal</translation> </message> </context> <context> @@ -5226,37 +4573,37 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="queryoverwritedialog.ui" line="14"/> <source>Mod Exists</source> - <translation type="unfinished"></translation> + <translation>Mod Existente</translation> </message> <message> <location filename="queryoverwritedialog.ui" line="45"/> <source>This mod seems to be installed already. Do you want to add files from this archive (overwriting existing ones) or do you want to completely replace the existing files (old files are deleted)? Alternatively you can install this mod under a different name.</source> - <translation type="unfinished"></translation> + <translation>Este mod parece estar ya instalado. ¿Quieres agregar ficheros de este archivo (sobrescribe los existentes) o quieres sustituir por completo los ficheros existentes (se eliminan los ficheros antiguos)? Alternativamente, puedes instalar este mod con un nombre diferente.</translation> </message> <message> <location filename="queryoverwritedialog.ui" line="63"/> <source>Keep Backup</source> - <translation type="unfinished"></translation> + <translation>Conservar copias de seguridad</translation> </message> <message> <location filename="queryoverwritedialog.ui" line="70"/> <source>Merge</source> - <translation type="unfinished"></translation> + <translation>Combinar</translation> </message> <message> <location filename="queryoverwritedialog.ui" line="77"/> <source>Replace</source> - <translation type="unfinished"></translation> + <translation>Reemplazar</translation> </message> <message> <location filename="queryoverwritedialog.ui" line="84"/> <source>Rename</source> - <translation type="unfinished"></translation> + <translation>Renombrar</translation> </message> <message> <location filename="queryoverwritedialog.ui" line="91"/> <source>Cancel</source> - <translation type="unfinished">Cancelar</translation> + <translation>Cancelar</translation> </message> </context> <context> @@ -5264,27 +4611,27 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="savegameinfowidget.ui" line="39"/> <source>Save #</source> - <translation type="unfinished"></translation> + <translation>Guardar #</translation> </message> <message> <location filename="savegameinfowidget.ui" line="51"/> <source>Character</source> - <translation type="unfinished"></translation> + <translation>Carácter</translation> </message> <message> <location filename="savegameinfowidget.ui" line="63"/> <source>Level</source> - <translation type="unfinished"></translation> + <translation>Nivel</translation> </message> <message> <location filename="savegameinfowidget.ui" line="75"/> <source>Location</source> - <translation type="unfinished"></translation> + <translation>Ubicación</translation> </message> <message> <location filename="savegameinfowidget.ui" line="87"/> <source>Date</source> - <translation type="unfinished"></translation> + <translation>Fecha</translation> </message> </context> <context> @@ -5292,7 +4639,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="savegameinfowidgetgamebryo.cpp" line="41"/> <source>Missing ESPs</source> - <translation type="unfinished"></translation> + <translation>ESP Faltantes</translation> </message> </context> <context> @@ -5300,37 +4647,37 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="savetextasdialog.ui" line="14"/> <source>Dialog</source> - <translation type="unfinished"></translation> + <translation>Diálogo</translation> </message> <message> <location filename="savetextasdialog.ui" line="32"/> <source>Copy To Clipboard</source> - <translation type="unfinished"></translation> + <translation>Copiar al Portapapeles</translation> </message> <message> <location filename="savetextasdialog.ui" line="39"/> <source>Save As...</source> - <translation type="unfinished"></translation> + <translation>Guardar Como…</translation> </message> <message> <location filename="savetextasdialog.ui" line="59"/> <source>Close</source> - <translation type="unfinished">Cerrar</translation> + <translation>Cerrar</translation> </message> <message> <location filename="savetextasdialog.cpp" line="36"/> <source>Save CSV</source> - <translation type="unfinished"></translation> + <translation>Guardar CSV</translation> </message> <message> <location filename="savetextasdialog.cpp" line="36"/> <source>Text Files</source> - <translation type="unfinished"></translation> + <translation>Fich. Texto</translation> </message> <message> <location filename="savetextasdialog.cpp" line="40"/> <source>failed to open "%1" for writing</source> - <translation type="unfinished"></translation> + <translation>Fallo al abrir "%1 para escritura</translation> </message> </context> <context> @@ -5338,29 +4685,25 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="selectiondialog.ui" line="14"/> <source>Select</source> - <translation type="unfinished"></translation> + <translation>Seleccionar</translation> </message> <message> <location filename="selectiondialog.ui" line="23"/> <source>Placeholder</source> - <translation type="unfinished"></translation> + <translation>Marcador de posicion</translation> </message> <message> <location filename="selectiondialog.ui" line="77"/> <source>Cancel</source> - <translation type="unfinished">Cancelar</translation> + <translation>Cancelar</translation> </message> </context> <context> <name>SelfUpdater</name> <message> - <source>mo_archive.dll not loaded: "%1"</source> - <translation type="obsolete">mo_archive.dll no cargado: "%1"</translation> - </message> - <message> <location filename="selfupdater.cpp" line="66"/> <source>archive.dll not loaded: "%1"</source> - <translation type="unfinished"></translation> + <translation>archive.dll no cargado: "%1"</translation> </message> <message> <location filename="selfupdater.cpp" line="116"/> @@ -5383,7 +4726,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="selfupdater.cpp" line="195"/> <source>Download failed: %1</source> - <translation type="unfinished"></translation> + <translation>Fallo en la descarga: %1</translation> </message> <message> <location filename="selfupdater.cpp" line="206"/> @@ -5398,7 +4741,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="selfupdater.cpp" line="250"/> <source>failed to move outdated files: %1. Please update manually.</source> - <translation type="unfinished"></translation> + <translation>Fallo al mover archivos obsoletos: %1. Por favor, actualice manualmente.</translation> </message> <message> <location filename="selfupdater.cpp" line="268"/> @@ -5413,58 +4756,46 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="selfupdater.cpp" line="351"/> <source>Failed to parse response. Please report this as a bug and include the file mo_interface.log.</source> - <translation type="unfinished"></translation> + <translation>No se ha podido analizar la respuesta. Por favor, informa de este error e incluir archivo mo_interface.log.</translation> </message> <message> <location filename="selfupdater.cpp" line="416"/> <source>No incremental update available for this version, the complete package needs to be downloaded (%1 kB)</source> - <translation type="unfinished"></translation> + <translation>Ninguna actualización incremental disponible para esta versión, el paquete completo tiene que ser descargado (%1 kB)</translation> </message> <message> <location filename="selfupdater.cpp" line="425"/> <source>no file for update found. Please update manually.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="selfupdater.cpp" line="460"/> - <source>No download server available. Please try again later.</source> - <translation type="unfinished"></translation> + <translation>ningún archivo de actualización encontrado. Por favor, actualice manualmente.</translation> </message> <message> <location filename="selfupdater.cpp" line="440"/> <source>Failed to retrieve update information: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>No incremental update available for this version, the complete package needs to be installed (%1 kB)</source> - <translation type="obsolete">No hay disponible para esta versión una actualización incremental, el paquete completo debe instalarse (%1 kB)</translation> + <translation>Fallo al recuperar información de actualización: %1</translation> </message> <message> - <source>Failed to retrieve update information</source> - <translation type="obsolete">No se pudo recuperar la información de actualización</translation> + <location filename="selfupdater.cpp" line="460"/> + <source>No download server available. Please try again later.</source> + <translation>No hay ningún servidor de descarga disponible. Por favor, inténtelo de nuevo más tarde.</translation> </message> </context> <context> <name>Settings</name> <message> - <source>Administrative rights required to change this.</source> - <translation type="obsolete">Derechos administrativos necesarios para cambiar esto.</translation> - </message> - <message> - <location filename="settings.cpp" line="320"/> - <location filename="settings.cpp" line="339"/> + <location filename="settings.cpp" line="329"/> + <location filename="settings.cpp" line="348"/> <source>attempt to store setting for unknown plugin "%1"</source> - <translation type="unfinished"></translation> + <translation>tratando de almacenar la configuración para plugin desconocido "%1"</translation> </message> <message> - <location filename="settings.cpp" line="660"/> + <location filename="settings.cpp" line="681"/> <source>Confirm</source> - <translation type="unfinished">Confirma</translation> + <translation>Confirmar</translation> </message> <message> - <location filename="settings.cpp" line="660"/> + <location filename="settings.cpp" line="681"/> <source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed?</source> - <translation type="unfinished"></translation> + <translation>¡Cambiar el directorio mod afecta a todos los perfiles! Mods que no están presentes (o de nombres diferentes) en la nueva ubicación se desactivarán en todos los perfiles. No hay manera de deshacer esto a menos que se realice la copia de seguridad de los perfiles manualmente. ¿Proceder?</translation> </message> </context> <context> @@ -5475,6 +4806,11 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <translation>Configuracion</translation> </message> <message> + <location filename="settingsdialog.ui" line="24"/> + <source>General</source> + <translation>General</translation> + </message> + <message> <location filename="settingsdialog.ui" line="32"/> <source>Language</source> <translation>Idioma</translation> @@ -5485,335 +4821,330 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <translation>El idioma del programa</translation> </message> <message> - <source>The display language. This will only displayed languages for which you have a translation installed.</source> - <translation type="obsolete">El idioma del programa. Esto solo mostrara los idiomas instalados.</translation> - </message> - <message> - <location filename="settingsdialog.ui" line="694"/> - <source>Enforces that inactive ESPs and ESMs are never loaded.</source> - <translation>Se asegura que no se cargan nunca los ESPs y ESMs inactivos.</translation> - </message> - <message> - <location filename="settingsdialog.ui" line="697"/> - <source>It seems that the Games occasionally load ESP or ESM files even if they haven't been activated as plugins. -I don't yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded.</source> - <translation>Parece que los juegos ocasionalmente cargan archivos ESP o ESM, incluso si ellos todavía no se ha activado como plugins. -No, pero sabe cuáles son las circunstancias, pero informes de usuario implican en algunos casos no deseados. Si esto se comprueba, ESPs ESMs no marcadas en la lista son invisibles para el juego y no se pueden cargar.</translation> - </message> - <message> - <location filename="settingsdialog.ui" line="701"/> - <source>Hide inactive ESPs/ESMs</source> - <translation>Ocultar ESPs/ESMs inactivos</translation> - </message> - <message> - <source>Load</source> - <translation type="obsolete">Cargar</translation> - </message> - <message> <location filename="settingsdialog.ui" line="42"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The display language. This will only displaye languages for which you have a translation installed.</span></p></body></html></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="318"/> - <source>Disable automatic internet features</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="321"/> - <source>Disable automatic internet features. This does not affect features that are explicitly invoked by the user (like checking mods for updates, endorsing, opening the web browser)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="324"/> - <source>Offline Mode</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="331"/> - <source>Use a proxy for network connections.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="334"/> - <source>Use a proxy for network connections. This uses the system-wide settings which can be configured in Internet Explorer. Please note that MO will start up a few seconds slower on some systems when using a proxy.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="337"/> - <source>Use HTTP Proxy (Uses System Settings)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="396"/> - <source>Preferred Servers (Drag & Drop)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="547"/> - <source>Workarounds</source> - <translation>Soluciones</translation> - </message> - <message> - <location filename="settingsdialog.ui" line="609"/> - <source>Load Mechanism</source> - <translation>Mecamismo de carga</translation> - </message> - <message> - <location filename="settingsdialog.ui" line="629"/> - <source>Select loading mechanism. See help for details.</source> - <translation>Selecciona la forma de cargar. Mira la ayuda para detalles.</translation> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Idioma de pantalla. Esto sólo displaya idiomas para los que tienen una traducción instalada.</span></p></body></html></translation> </message> <message> - <location filename="settingsdialog.ui" line="555"/> - <source>Steam App ID</source> - <translation>Steam App ID</translation> + <location filename="settingsdialog.ui" line="57"/> + <source>Style</source> + <translation>Estilo</translation> </message> <message> - <location filename="settingsdialog.ui" line="346"/> - <source>Associate with "Download with manager" links</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="64"/> + <source>graphical style</source> + <translation>estilo gráfico</translation> </message> <message> - <location filename="settingsdialog.ui" line="375"/> - <source>Known Servers (updated on download)</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="67"/> + <source>graphical style of the MO user interface</source> + <translation>estilo gráfico de la interfaz de usuario MO</translation> </message> <message> - <location filename="settingsdialog.ui" line="575"/> - <source>The Steam AppID for your game</source> - <translation>El AppID de tu juego</translation> + <location filename="settingsdialog.ui" line="78"/> + <source>Log Level</source> + <translation>Nivel de Log</translation> </message> <message> - <location filename="settingsdialog.ui" line="578"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The Steam App ID is required to directly start some games. For Skyrim, if this is not set or wrong, the &quot;Mod Organizer&quot; load mechanism may not work properly.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The preset for this is the App ID of the &quot;regular&quot; version so in most cases, you should be set.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you think you have a different version (GotY or something), follow these steps to get to the id:</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">1. Navigate to the game library in steam</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">2. right-click on the game you need the id for and choose </span><span style=" font-size:8pt; font-weight:600;">Create desktop shortcut</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">3. right-click on the newly created shortcut on your desktop and select </span><span style=" font-size:8pt; font-weight:600;">Properties</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">4. in the URL-field you should see something like this: </span><span style=" font-size:8pt; font-style:italic;">steam://rungameid/22380</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">22380 is the id you're looking for.</span></p></body></html></source> - <oldsource><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The Steam App ID is in required to directly start some games. For Skyrim, if this is not set or wrong, the &quot;Mod Organizer&quot; load mechanism may not work properly.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The preset for this is the App ID of the &quot;regular&quot; version so in most cases, you should be set.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you think you have a different version (GotY or something), follow these steps to get to the id:</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">1. Navigate to the game library in steam</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">2. right-click on the game you need the id for and choose </span><span style=" font-size:8pt; font-weight:600;">Create desktop shortcut</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">3. right-click on the newly created shortcut on your desktop and select </span><span style=" font-size:8pt; font-weight:600;">Properties</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">4. in the URL-field you should see something like this: </span><span style=" font-size:8pt; font-style:italic;">steam://rungameid/22380</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">22380 is the id you're looking for.</span></p></body></html></oldsource> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="85"/> + <source>Decides the amount of data printed to "ModOrganizer.log"</source> + <translation>Decide la cantidad de datos impresos a "ModOrganizer.log"</translation> </message> <message> - <location filename="settingsdialog.ui" line="251"/> - <source>Allows automatic log-in when the Nexus-Page for the game is clicked.</source> - <translation>Permite el incio automatico en Nexus al seleccionar el juego.</translation> + <location filename="settingsdialog.ui" line="88"/> + <source>Decides the amount of data printed to "ModOrganizer.log". +"Debug" produces very useful information for finding problems. There is usually no noteworthy performance impact but the file may become rather large. If this is a problem you may prefer the "Info" level for regluar use. On the "Error" level the log file usually remains empty.</source> + <translation>Decide la cantidad de datos impresos a "ModOrganizer.log". +"Depurar" produce información muy útil para encontrar problemas. Generalmente, no hay impacto notable en el rendimiento, pero el fichero puede llegar a ser bastante grande. Si esto es un problema que puedes preferir el nivel "Info" para uso regluar. En el nivel "Error" el fichero de registro por lo general permanece vacío.</translation> </message> <message> - <location filename="settingsdialog.ui" line="254"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Allows automatic log-in when the Nexus-Page for the game is clicked. Please note that the obfuscation with which the password is stored in modorganizer.ini is not very strong. If you're worried someone might steal your password, don't store it here.</span></p></body></html></source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="93"/> + <source>Debug</source> + <translation>Depurar</translation> </message> <message> - <location filename="settingsdialog.ui" line="245"/> - <location filename="settingsdialog.ui" line="261"/> - <source>Nexus</source> - <translation>Nexus</translation> + <location filename="settingsdialog.ui" line="98"/> + <source>Info</source> + <translation>Información</translation> </message> <message> - <location filename="settingsdialog.ui" line="24"/> - <source>General</source> - <translation>General</translation> + <location filename="settingsdialog.ui" line="103"/> + <source>Error</source> + <translation>Error</translation> </message> <message> <location filename="settingsdialog.ui" line="113"/> <source>Advanced</source> - <translation type="unfinished"></translation> + <translation>Avanzado</translation> </message> <message> <location filename="settingsdialog.ui" line="125"/> <location filename="settingsdialog.ui" line="128"/> <source>Directory where downloads are stored.</source> - <translation type="unfinished"></translation> + <translation>Directorio donde se guardan las descargas.</translation> </message> <message> <location filename="settingsdialog.ui" line="148"/> <source>Mod Directory</source> - <translation type="unfinished"></translation> + <translation>Directorio Mod</translation> </message> <message> <location filename="settingsdialog.ui" line="155"/> <source>Directory where mods are stored.</source> - <translation type="unfinished"></translation> + <translation>Directorio donde se almacenan los mods.</translation> </message> <message> <location filename="settingsdialog.ui" line="158"/> <source>Directory where mods are stored. Please note that changing this will break all associations of profiles with mods that don't exist in the new location (with the same name).</source> - <translation type="unfinished"></translation> + <translation>Directorio donde se almacenan los mods. Tenga en cuenta que el cambio de esto romperá todas las asociaciones de perfiles con los mods que no existen en la nueva ubicación (con el mismo nombre).</translation> </message> <message> <location filename="settingsdialog.ui" line="172"/> <source>Download Directory</source> - <translation type="unfinished"></translation> + <translation>Directorio de Descargas</translation> </message> <message> <location filename="settingsdialog.ui" line="179"/> <source>Cache Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>...</source> - <translation type="obsolete">Examinar</translation> + <translation>Directorio de Caché</translation> </message> <message> - <location filename="settingsdialog.ui" line="231"/> - <location filename="settingsdialog.ui" line="234"/> - <source>Modify the categories available to arrange your mods.</source> - <translation>Modificar las categorías disponibles para organizar tus mods.</translation> - </message> - <message> - <location filename="settingsdialog.ui" line="57"/> - <source>Style</source> + <location filename="settingsdialog.ui" line="199"/> + <source>User interface</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="64"/> - <source>graphical style</source> + <location filename="settingsdialog.ui" line="205"/> + <source>If checked, the download interface will be more compact.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="67"/> - <source>graphical style of the MO user interface</source> + <location filename="settingsdialog.ui" line="208"/> + <source>Compact Download Interface</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="78"/> - <source>Log Level</source> + <location filename="settingsdialog.ui" line="215"/> + <source>If checked, the download list will display meta information instead of file names.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="85"/> - <source>Decides the amount of data printed to "ModOrganizer.log"</source> + <location filename="settingsdialog.ui" line="218"/> + <source>Download Meta Information</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="88"/> - <source>Decides the amount of data printed to "ModOrganizer.log". -"Debug" produces very useful information for finding problems. There is usually no noteworthy performance impact but the file may become rather large. If this is a problem you may prefer the "Info" level for regluar use. On the "Error" level the log file usually remains empty.</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="234"/> + <source>Reset stored information from dialogs.</source> + <translation>Reiniciar la información almacenada de los diálogos.</translation> </message> <message> - <location filename="settingsdialog.ui" line="93"/> - <source>Debug</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="237"/> + <source>This will make all dialogs show up again where you checked the "Remember selection"-box.</source> + <translation>Esto hará que todos los diálogos se vuelven a mostrar al marcar la opción "Recordar selección"-box.</translation> </message> <message> - <location filename="settingsdialog.ui" line="98"/> - <source>Info</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="240"/> + <source>Reset Dialogs</source> + <translation>Restablecer Diálogos</translation> </message> <message> - <location filename="settingsdialog.ui" line="103"/> - <source>Error</source> - <translation type="unfinished">Error</translation> + <location filename="settingsdialog.ui" line="260"/> + <location filename="settingsdialog.ui" line="263"/> + <source>Modify the categories available to arrange your mods.</source> + <translation>Modificar las categorías disponibles para organizar tus mods.</translation> </message> <message> - <location filename="settingsdialog.ui" line="205"/> - <source>Reset stored information from dialogs.</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="266"/> + <source>Configure Mod Categories</source> + <translation>Configurar categorías Mod</translation> </message> <message> - <location filename="settingsdialog.ui" line="208"/> - <source>This will make all dialogs show up again where you checked the "Remember selection"-box.</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="274"/> + <location filename="settingsdialog.ui" line="290"/> + <source>Nexus</source> + <translation>Nexus</translation> </message> <message> - <location filename="settingsdialog.ui" line="211"/> - <source>Reset Dialogs</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="280"/> + <source>Allows automatic log-in when the Nexus-Page for the game is clicked.</source> + <translation>Permite el incio automatico en Nexus al seleccionar el juego.</translation> </message> <message> - <location filename="settingsdialog.ui" line="237"/> - <source>Configure Mod Categories</source> - <translation>Configurar categorías Mod</translation> + <location filename="settingsdialog.ui" line="283"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Allows automatic log-in when the Nexus-Page for the game is clicked. Please note that the obfuscation with which the password is stored in modorganizer.ini is not very strong. If you're worried someone might steal your password, don't store it here.</span></p></body></html></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Permite registro de entrada automático cuando se hace clic en la Página-Nexus para el juego. Ten en cuenta que la ofuscación con la que la contraseña se almacena en Modorganizer.ini no es muy fuerte. Si te preocupa que alguien pueda robar tu contraseña, no la guardes aquí.</span></p></body></html></translation> </message> <message> - <location filename="settingsdialog.ui" line="270"/> + <location filename="settingsdialog.ui" line="299"/> <source>If checked and if correct credentials are entered below, log-in to Nexus (for browsing and downloading) is automatic.</source> - <translation type="unfinished"></translation> + <translation>Si está activada y si se introducen las credenciales correctas, inicia una sesión en Nexus (para navegar y descargar) es automático.</translation> </message> <message> - <location filename="settingsdialog.ui" line="273"/> + <location filename="settingsdialog.ui" line="302"/> <source>Automatically Log-In to Nexus</source> <translation>Inicio automatico en Nexus</translation> </message> <message> - <location filename="settingsdialog.ui" line="282"/> + <location filename="settingsdialog.ui" line="311"/> <source>Username</source> <translation>Usuario</translation> </message> <message> - <location filename="settingsdialog.ui" line="296"/> + <location filename="settingsdialog.ui" line="325"/> <source>Password</source> <translation>Contraseña</translation> </message> <message> - <source>Handle NXM Links</source> - <translation type="obsolete">Manejar enlaces NXM</translation> + <location filename="settingsdialog.ui" line="347"/> + <source>Disable automatic internet features</source> + <translation>Deshabilitar funciones automáticas de Internet</translation> + </message> + <message> + <location filename="settingsdialog.ui" line="350"/> + <source>Disable automatic internet features. This does not affect features that are explicitly invoked by the user (like checking mods for updates, endorsing, opening the web browser)</source> + <translation>Deshabilita funciones automáticas de Internet. Esto no afecta a las funciones que se invocan explícitamente por el usuario (como el control de mods para las actualizaciones, avalar, abrir el navegador web)</translation> + </message> + <message> + <location filename="settingsdialog.ui" line="353"/> + <source>Offline Mode</source> + <translation>Modo Desconectado</translation> + </message> + <message> + <location filename="settingsdialog.ui" line="360"/> + <source>Use a proxy for network connections.</source> + <translation>Utilizar un proxy para las conexiones de red.</translation> + </message> + <message> + <location filename="settingsdialog.ui" line="363"/> + <source>Use a proxy for network connections. This uses the system-wide settings which can be configured in Internet Explorer. Please note that MO will start up a few seconds slower on some systems when using a proxy.</source> + <translation>Utilizar un proxy para las conexiones de red. Esto utiliza la configuración de todo el sistema que puede configurarse en Internet Explorer. Ten en cuenta que MO se iniciará unos segundos más lento en algunos sistemas cuando se utiliza un proxy.</translation> </message> <message> - <location filename="settingsdialog.ui" line="431"/> + <location filename="settingsdialog.ui" line="366"/> + <source>Use HTTP Proxy (Uses System Settings)</source> + <translation>Usar HTTP Proxy (Usa configuración del sistema)</translation> + </message> + <message> + <location filename="settingsdialog.ui" line="375"/> + <source>Associate with "Download with manager" links</source> + <translation>Asociar con "Download Manager" links</translation> + </message> + <message> + <location filename="settingsdialog.ui" line="404"/> + <source>Known Servers (updated on download)</source> + <translation>Servidores conocidos (descarga actualizada)</translation> + </message> + <message> + <location filename="settingsdialog.ui" line="425"/> + <source>Preferred Servers (Drag & Drop)</source> + <translation>Servidores preferidos (Arrastrar y soltar)</translation> + </message> + <message> + <location filename="settingsdialog.ui" line="460"/> <source>Plugins</source> - <translation type="unfinished"></translation> + <translation>Plugins</translation> </message> <message> - <location filename="settingsdialog.ui" line="453"/> + <location filename="settingsdialog.ui" line="482"/> <source>Author:</source> - <translation type="unfinished"></translation> + <translation>Autor:</translation> </message> <message> - <location filename="settingsdialog.ui" line="467"/> + <location filename="settingsdialog.ui" line="496"/> <source>Version:</source> - <translation type="unfinished"></translation> + <translation>Versión:</translation> </message> <message> - <location filename="settingsdialog.ui" line="481"/> + <location filename="settingsdialog.ui" line="510"/> <source>Description:</source> - <translation type="unfinished"></translation> + <translation>Descripción</translation> </message> <message> - <location filename="settingsdialog.ui" line="519"/> + <location filename="settingsdialog.ui" line="548"/> <source>Key</source> - <translation type="unfinished"></translation> + <translation>Tecla</translation> </message> <message> - <location filename="settingsdialog.ui" line="524"/> + <location filename="settingsdialog.ui" line="553"/> <source>Value</source> - <translation type="unfinished"></translation> + <translation>Valor</translation> </message> <message> - <location filename="settingsdialog.ui" line="536"/> + <location filename="settingsdialog.ui" line="565"/> <source>Blacklisted Plugins (use <del> to remove):</source> - <translation type="unfinished"></translation> + <translation>Lista negra de Plugins (usa <supr> para eliminar):</translation> + </message> + <message> + <location filename="settingsdialog.ui" line="576"/> + <source>Workarounds</source> + <translation>Soluciones</translation> + </message> + <message> + <location filename="settingsdialog.ui" line="584"/> + <source>Steam App ID</source> + <translation>Steam App ID</translation> + </message> + <message> + <location filename="settingsdialog.ui" line="604"/> + <source>The Steam AppID for your game</source> + <translation>El AppID de tu juego</translation> + </message> + <message> + <location filename="settingsdialog.ui" line="607"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The Steam App ID is required to directly start some games. For Skyrim, if this is not set or wrong, the &quot;Mod Organizer&quot; load mechanism may not work properly.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The preset for this is the App ID of the &quot;regular&quot; version so in most cases, you should be set.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you think you have a different version (GotY or something), follow these steps to get to the id:</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">1. Navigate to the game library in steam</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">2. right-click on the game you need the id for and choose </span><span style=" font-size:8pt; font-weight:600;">Create desktop shortcut</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">3. right-click on the newly created shortcut on your desktop and select </span><span style=" font-size:8pt; font-weight:600;">Properties</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">4. in the URL-field you should see something like this: </span><span style=" font-size:8pt; font-style:italic;">steam://rungameid/22380</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">22380 is the id you're looking for.</span></p></body></html></source> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The Steam App ID is required to directly start some games. For Skyrim, if this is not set or wrong, the &quot;Mod Organizer&quot; load mechanism may not work properly.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">El valor predeterminado para esto es el App ID de la &quot;regular &quot; versión por lo que en la mayoría de los casos, debe ser fijado.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Si piensas que tienes una versión diferente (GotY o algo así), sigue estos pasos para llegar a la id:</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">1. Vaya a la biblioteca de juegos en steam</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">2. haz clic derecho en el juego que necesita el id para elegir y en </span><span style=" font-size:8pt; font-weight:600;">Crear acceso directo al escritorio</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">3. haz clic en el acceso directo recién creado en el escritorio y selecciona </span><span style=" font-size:8pt; font-weight:600;">Propiedades</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">4. en el campo URL deberías ver algo como esto: </span><span style=" font-size:8pt; font-style:italic;">steam://rungameid/22380</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">22380 es el ID que estás buscando.</span></p></body></html></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="638"/> + <source>Load Mechanism</source> + <translation>Mecamismo de carga</translation> + </message> + <message> + <location filename="settingsdialog.ui" line="658"/> + <source>Select loading mechanism. See help for details.</source> + <translation>Selecciona la forma de cargar. Mira la ayuda para detalles.</translation> </message> <message> - <location filename="settingsdialog.ui" line="632"/> + <location filename="settingsdialog.ui" line="661"/> <source>Mod Organizer needs a dll to be injected into the game so all mods are visible to it. There are several means to do this: *Mod Organizer* (default) In this mode the Mod Organizer itself injects the dll. The disadvantage is that you always have to start the game through MO or a link created by it. @@ -5821,89 +5152,131 @@ There are several means to do this: *Proxy DLL* In this mode, MO replaces one of the game's dlls with one that loads MO (and the original dll of course). This will ONLY work with Steam games and it has only been tested with Skyrim. Please use this only if the other mechanisms don't work. If you use the Steam version of Oblivion the default will NOT work. In this case, please install obse and use "Script Extender" as the load mechanism. Also you can then not start Oblivion from MO. Instead, use MO only to set up your mods, then quit and start Oblivion through Steam.</source> - <translation type="unfinished"></translation> + <translation>Mod Organizer necesita una dll que se inyecta en el juego para que todos los mods sean visibles a ella. +Hay varios medios de hacer esto: +*Mod Organizer* (Defecto en este modo el propio Mod Organizer inyecta la dll. La desventaja es que siempre tienes que iniciar el juego a través de MO o un enlace creado por. +*Script Extender* En este modo, MO se instala como Script Extender (OBSE, FOSE, NVSE, skse) Plugin. +*Proxy DLL* En este modo, MO sustituye a uno de los archivos DLL del juego con uno que carga MO (y el archivo DLL original, por supuesto). Esto sólo funcionará con los juegos de Steam y sólo se ha probado con Skyrim. Utilice esta opción sólo si los otros mecanismos no funcionan. + +Si utilizas la versión Steam de Oblivion por defecto NO funcionará. En este caso, por favor, instala obse y usa "Script Extender" como mecanismo de carga. También no podras iniciar Oblivion desde MO. En su lugar, usa MO sólo para configurar los mods, a continuación, comenzar Oblivion a través de Steam.</translation> </message> <message> - <location filename="settingsdialog.ui" line="649"/> + <location filename="settingsdialog.ui" line="678"/> <source>NMM Version</source> - <translation type="unfinished"></translation> + <translation>NMM Version</translation> </message> <message> - <location filename="settingsdialog.ui" line="669"/> + <location filename="settingsdialog.ui" line="698"/> <source>The Version of Nexus Mod Manager to impersonate.</source> - <translation type="unfinished"></translation> + <translation>La versión de Nexus Mod Manager para suplantar.</translation> </message> <message> - <location filename="settingsdialog.ui" line="672"/> + <location filename="settingsdialog.ui" line="701"/> <source>Mod Organizer uses an API provided by the Nexus to provide features like checking for updates and downloading files. Unfortunately this API has not been made available officially to third party tools like MO so we have to impersonate the Nexus Mod Manager to be allowed in. On top of this Nexus has used the client identification to lock out outdated versions of NMM to force users to update. This means that MO also needs to impersonate the new version of NMM even if MO doesn't need an update. Therefore you can configure the version to identify as here. Please note that MO does identify itself as MO to the webserver, it's not lying about what it is. It is merely adding a "compatible" NMM version to the user agent. tl;dr-version: If Nexus-features don't work, insert the current version number of NMM here and try again.</source> - <translation type="unfinished"></translation> + <translation>Mod Organizer utiliza una API proporcionada por Nexus para proporcionar características como la comprobación de actualizaciones y descarga de archivos. Por desgracia, esta API no ha sido puesta a disposición oficialmente a terceros, como MO por lo que tenemos que pasar por el Nexus Mod Manager para ser permitido. +En la parte superior de Nexus ha utilizado la identificación de los clientes para bloquear versiones no actualizadas del NMM y obligar a los usuarios a actualizarlo. Esto significa que la OM también tiene que hacerse pasar por la nueva versión de NMM aunque MO no necesita una actualización. Por lo tanto, puedes configurar la versión de identificar como aquí. +Ten en cuenta que MO sí identifica a sí misma como MO al servidor web, no está mintiendo acerca de lo que es. Simplemente es la adición de una versión NMM "compatible" con el agente de usuario. + +tl;dr-version: Si Nexus-features no funciona, introduzca el número de la versión actual de NMM aquí y vuelva a intentarlo.</translation> + </message> + <message> + <location filename="settingsdialog.ui" line="723"/> + <source>Enforces that inactive ESPs and ESMs are never loaded.</source> + <translation>Se asegura que no se cargan nunca los ESPs y ESMs inactivos.</translation> + </message> + <message> + <location filename="settingsdialog.ui" line="726"/> + <source>It seems that the Games occasionally load ESP or ESM files even if they haven't been activated as plugins. +I don't yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded.</source> + <translation>Parece que los juegos ocasionalmente cargan archivos ESP o ESM, incluso si ellos todavía no se ha activado como plugins. +No, pero sabe cuáles son las circunstancias, pero informes de usuario implican en algunos casos no deseados. Si esto se comprueba, ESPs ESMs no marcadas en la lista son invisibles para el juego y no se pueden cargar.</translation> + </message> + <message> + <location filename="settingsdialog.ui" line="730"/> + <source>Hide inactive ESPs/ESMs</source> + <translation>Ocultar ESPs/ESMs inactivos</translation> </message> <message> - <location filename="settingsdialog.ui" line="708"/> + <location filename="settingsdialog.ui" line="737"/> <source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on)</source> - <translation type="unfinished"></translation> + <translation>Si está marcado, los ficheros (es decir, ESP, ESM y bsas) pertenecientes al núcleo del juego no se pueden desactivar en la interfaz de usuario. (por defecto: activado)</translation> </message> <message> - <location filename="settingsdialog.ui" line="711"/> + <location filename="settingsdialog.ui" line="740"/> <source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on) Uncheck this if you want to use Mod Organizer with total conversions (like Nehrim) but be aware that the game will crash if required files are not enabled.</source> - <translation type="unfinished"></translation> + <translation>Si está marcado, los archivos (es decir, esps, esms y bsas) pertenecientes al núcleo del juego no se pueden desactivar en la interfaz de usuario. (por defecto: activado) +Desactiva esta opción si deseas utilizar Mod Organizer con conversiones totales (como Nehrim) pero ten en cuenta que el juego se colgará si algún archivo necesario no están habilitados.</translation> </message> <message> - <location filename="settingsdialog.ui" line="715"/> + <location filename="settingsdialog.ui" line="744"/> <source>Force-enable game files</source> + <translation>Fuerza a habilitar archivos del juego</translation> + </message> + <message> + <location filename="settingsdialog.ui" line="754"/> + <source>Disable this to no longer display mods installed outside MO in the mod list (left pane). Assets from those mods will then be treated as having lowest mod priority together with the original game content.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="757"/> + <source>By default Mod Organizer will display esp+bsa bundles installed with foreign tools as mods (left pane). This allows you to control their priority in relation to other mods. This is particularly useful if you also use Steam Workshop to install mods. +However, if you installed loose file mods outside MO which conflict with BSAs also installed outside MO those conflicts can't be resolved correctly. + +If you disable this feature, MO will only display official DLCs this way. Please note that plugins (esps and esms) displayed in the right pane are completely unaffected by this feature.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="725"/> - <location filename="settingsdialog.ui" line="729"/> + <location filename="settingsdialog.ui" line="763"/> + <source>Display mods installed outside MO</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="773"/> + <location filename="settingsdialog.ui" line="777"/> <source>For Skyrim, this can be used instead of Archive Invalidation. It should make AI redundant for all Profiles. For the other games this is not a sufficient replacement for AI!</source> - <translation type="unfinished">Para Skyrim, puede utilizarse en lugar de invalidación de archivo. Debe despedir AI para todos los perfiles. -Para los otros juegos no es un sustituto suficiente AI!</translation> + <translation>Para Skyrim, esto puede ser usado en lugar del Archivo invalidación. Se debe marcar AI redundante para todos los perfiles. +Para el resto de los juegos no es un sustituto suficiente para AI</translation> </message> <message> - <location filename="settingsdialog.ui" line="733"/> + <location filename="settingsdialog.ui" line="781"/> <source>Back-date BSAs</source> - <translation type="unfinished">Back-date BSAs</translation> + <translation>Fecha Respaldo BSAs</translation> </message> <message> - <location filename="settingsdialog.ui" line="757"/> + <location filename="settingsdialog.ui" line="805"/> <source>These are workarounds for problems with Mod Organizer. Please make sure you read the help text before changing anything here.</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>These are workarounds for problems with Mod Organizer. They are usually not neccessary. Please make sure you read the help text before changing anything here.</source> - <translation type="obsolete">Estas son soluciones para problemas con Mod Organizer. Normalmente no son necesarios. Por favor, asegúrese de leer el texto de ayuda antes de cambiar cualquier cosa aquí.</translation> + <translation>Estas son soluciones para los problemas con Mod Organizer. Por favor, asegúrese de leer el texto de ayuda antes de cambiar nada aquí.</translation> </message> <message> <location filename="settingsdialog.cpp" line="95"/> <source>Select download directory</source> - <translation type="unfinished"></translation> + <translation>Seleccionar directorio de descargas</translation> </message> <message> <location filename="settingsdialog.cpp" line="103"/> <source>Select mod directory</source> - <translation type="unfinished"></translation> + <translation>Seleccionar directorio mod</translation> </message> <message> <location filename="settingsdialog.cpp" line="111"/> <source>Select cache directory</source> - <translation type="unfinished"></translation> + <translation>Seleccione el directorio caché</translation> </message> <message> <location filename="settingsdialog.cpp" line="119"/> <source>Confirm?</source> - <translation type="unfinished"></translation> + <translation>¿Confirmar?</translation> </message> <message> <location filename="settingsdialog.cpp" line="120"/> <source>This will make all dialogs show up again where you checked the "Remember selection"-box. Continue?</source> - <translation type="unfinished"></translation> + <translation>Esto hará que todos los diálogos se vuelven a mostrar cuando marcó la opción "Recordar selección"-box. ¿Desea continuar?</translation> </message> </context> <context> @@ -5949,7 +5322,6 @@ Para los otros juegos no es un sustituto suficiente AI!</translation> </message> <message> <location filename="singleinstance.cpp" line="82"/> - <location filename="singleinstance.cpp" line="88"/> <source>failed to connect to running instance: %1</source> <translation>Error al conectarse a la instancia en ejecución: %1</translation> </message> @@ -5964,63 +5336,32 @@ Para los otros juegos no es un sustituto suficiente AI!</translation> <message> <location filename="syncoverwritedialog.ui" line="14"/> <source>Sync Overwrite</source> - <translation type="unfinished"></translation> + <translation>Sobrescribir Sincronización</translation> </message> <message> <location filename="syncoverwritedialog.ui" line="27"/> <source>Name</source> - <translation type="unfinished">Nombre</translation> + <translation>Nombre</translation> </message> <message> <location filename="syncoverwritedialog.ui" line="32"/> <source>Sync To</source> - <translation type="unfinished"></translation> + <translation>Sincronizar ahora</translation> </message> <message> <location filename="syncoverwritedialog.cpp" line="95"/> <source><don't sync></source> - <translation type="unfinished"></translation> + <translation><No sincronizar></translation> </message> <message> <location filename="syncoverwritedialog.cpp" line="147"/> <source>failed to remove %1</source> - <translation type="unfinished">Fallo eliminando %1</translation> + <translation>Fallo al quitar %1</translation> </message> <message> <location filename="syncoverwritedialog.cpp" line="149"/> <source>failed to move %1 to %2</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>TextViewer</name> - <message> - <source>Log Viewer</source> - <translation type="obsolete">Visor de log</translation> - </message> - <message> - <source>Placeholder</source> - <translation type="obsolete">Marcador de posición</translation> - </message> - <message> - <source>Save changes?</source> - <translation type="obsolete">Grabar cambios?</translation> - </message> - <message> - <source>Do you want to save changes to %1?</source> - <translation type="obsolete">Esta seguro de grabar los cambios en %1?</translation> - </message> - <message> - <source>failed to write to %1</source> - <translation type="obsolete">error de escritura en %1</translation> - </message> - <message> - <source>file not found: %1</source> - <translation type="obsolete">fichero no encontrado: %1</translation> - </message> - <message> - <source>Save</source> - <translation type="obsolete">Grabar</translation> + <translation>Fallo al mover %1 to %2</translation> </message> </context> <context> @@ -6028,17 +5369,17 @@ Para los otros juegos no es un sustituto suficiente AI!</translation> <message> <location filename="transfersavesdialog.ui" line="14"/> <source>Transfer Savegames</source> - <translation type="unfinished"></translation> + <translation>Transferir Partidas Guardadas</translation> </message> <message> <location filename="transfersavesdialog.ui" line="22"/> <source>Global Characters</source> - <translation type="unfinished"></translation> + <translation>Carácteres Globales</translation> </message> <message> <location filename="transfersavesdialog.ui" line="29"/> <source>This is a list of characters in the global location.</source> - <translation type="unfinished"></translation> + <translation>Esto es una lista de carácteres en la posición global.</translation> </message> <message> <location filename="transfersavesdialog.ui" line="32"/> @@ -6050,15 +5391,14 @@ On Windows Vista/Windows 7: On Windows XP: C:\Documents and Settings\[UserName]\My Documents\My Games\Skyrim\Saves </source> - <oldsource>This is a list of characters in the global location. + <translation>Esto es una lista de carácteres en la posición global. On Windows Vista/Windows 7: - C:\Users\[UserName]\Documents\My Games\Skyrim\Saves +C:\Users\[UserName]\Documents\My Games\Skyrim\Saves On Windows XP: - C:\Documents and Settings[UserName]\My Documents\My Games\Skyrim\Saves -</oldsource> - <translation type="unfinished"></translation> +C:\Documents and Settings\[UserName]\My Documents\My Games\Skyrim\Saves +</translation> </message> <message> <location filename="transfersavesdialog.ui" line="46"/> @@ -6071,47 +5411,55 @@ On Windows XP: C:\Documents and Settings[UserName]\My Documents\My Games\Skyrim\Saves </source> - <translation type="unfinished"></translation> + <translation>Esta es una lista de partidas guardadas para el carácter seleccionado en la posición global. + +On Windows Vista/Windows 7: +C:\Users\[UserName]\Documents\My Games\Skyrim\Saves + +On Windows XP: +C:\Documents and Settings[UserName]\My Documents\My Games\Skyrim\Saves + +</translation> </message> <message> <location filename="transfersavesdialog.ui" line="87"/> <source>Move -></source> - <translation type="unfinished"></translation> + <translation>Mover -></translation> </message> <message> <location filename="transfersavesdialog.ui" line="97"/> <source>Copy -></source> - <translation type="unfinished"></translation> + <translation>Copiar -></translation> </message> <message> <location filename="transfersavesdialog.ui" line="123"/> <source><- Move</source> - <translation type="unfinished"></translation> + <translation><- Mover</translation> </message> <message> <location filename="transfersavesdialog.ui" line="133"/> <source><- Copy</source> - <translation type="unfinished"></translation> + <translation><- Copiar</translation> </message> <message> <location filename="transfersavesdialog.ui" line="156"/> <source>Done</source> - <translation type="unfinished"></translation> + <translation>Terminado</translation> </message> <message> <location filename="transfersavesdialog.ui" line="167"/> <source>Profile Characters</source> - <translation type="unfinished"></translation> + <translation>Carácteres de Perfil</translation> </message> <message> <location filename="transfersavesdialog.cpp" line="140"/> <source>Overwrite</source> - <translation type="unfinished"></translation> + <translation>Sobreescribir</translation> </message> <message> <location filename="transfersavesdialog.cpp" line="141"/> <source>Overwrite the file "%1"</source> - <translation type="unfinished"></translation> + <translation>Sobrescribir el fichero "%1"</translation> </message> <message> <location filename="transfersavesdialog.cpp" line="164"/> @@ -6119,23 +5467,23 @@ On Windows XP: <location filename="transfersavesdialog.cpp" line="237"/> <location filename="transfersavesdialog.cpp" line="276"/> <source>Confirm</source> - <translation type="unfinished">Confirma</translation> + <translation>Confirmar</translation> </message> <message> <location filename="transfersavesdialog.cpp" line="165"/> <location filename="transfersavesdialog.cpp" line="203"/> <source>Copy all save games of character "%1" to the profile?</source> - <translation type="unfinished"></translation> + <translation>Copiar todos los caracteres del juego salvado "%1" para el perfil?</translation> </message> <message> <location filename="transfersavesdialog.cpp" line="238"/> <source>Move all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> - <translation type="unfinished"></translation> + <translation>Mover todas las partidas guardadas "%1" para la localización global? Tenga en cuenta que esto se hace un lío con el número consecutivo de juegos salvados.</translation> </message> <message> <location filename="transfersavesdialog.cpp" line="277"/> <source>Copy all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> - <translation type="unfinished"></translation> + <translation>Mover todas las partidas guardadas "%1" para la localización global? Tenga en cuenta que esto se hace un lío con el número consecutivo de juegos salvados.</translation> </message> </context> </TS> diff --git a/src/organizer_fr.ts b/src/organizer_fr.ts index 462e1699..749b4fe3 100644 --- a/src/organizer_fr.ts +++ b/src/organizer_fr.ts @@ -50,7 +50,7 @@ <message> <location filename="activatemodsdialog.ui" line="14"/> <source>Activate Mods</source> - <translation>Activer Mods</translation> + <translation>Activer les Mods</translation> </message> <message> <location filename="activatemodsdialog.ui" line="20"/> @@ -71,10 +71,10 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Ceci est une liste des fichiers esps et esms actifs lors de la création de la sauvegarde.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Pour chaque esp, la colonne de droite contient le ou les mods pouvant être activés afin de rendre les esps/esms manquants disponibles.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Ceci est une liste des fichiers ESPs et ESMs actifs lors de la création de la sauvegarde.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Pour chaque esp, la colonne de droite contient le (ou les) mod(s) pouvant être activé(s) afin de rendre les esps/esms manquants disponibles.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Si vous cliquez OK, tous les mods sélectionnés dans les colonnes de droite et tous les esps manquants qui deviendront disponibles seront activés.</span></p></body></html></translation> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Si vous cliquez le bouton [OK], tous les mods sélectionnés dans les colonnes de droite et tous les esps manquants qui deviendront disponibles seront activés.</span></p></body></html></translation> </message> <message> <location filename="activatemodsdialog.ui" line="37"/> @@ -97,8 +97,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="baincomplexinstallerdialog.ui" line="14"/> <source>BAIN Package Installer</source> - <translatorcomment>I have chosen "paquet" as a translation of package. There doesn't seem to be any elegant translation for package in this context. Alternate would be "paquetage", which seems even worse to my ear.</translatorcomment> - <translation>Installateur de paquet BAIN</translation> + <translation>Installateur de paquet BAIN ("Wrye Bash" et assimilés)</translation> </message> <message> <location filename="baincomplexinstallerdialog.ui" line="22"/> @@ -113,14 +112,14 @@ p, li { white-space: pre-wrap; } <message> <location filename="baincomplexinstallerdialog.ui" line="44"/> <source>Components of this package.</source> - <translation>Composantes de ce paquet.</translation> + <translation>Composants de ce paquet.</translation> </message> <message> <location filename="baincomplexinstallerdialog.ui" line="47"/> <source>Components of this package. If there is a component called "00 Core" it is usually required. Options are ordered by priority as set up by the author.</source> - <translation>Composantes de ce paquet. -Si une composante est nommée "00 Core" elle est habituellement nécessaire. Les options sont classées par priorités, telles que définies par l'auteur.</translation> + <translation>Composants de ce paquet. +Si un composant est nommée "00 Core"; il est habituellement nécessaire. Les options sont classées par priorités, telles que définies par l'auteur.</translation> </message> <message> <location filename="baincomplexinstallerdialog.ui" line="57"/> @@ -137,7 +136,7 @@ Si une composante est nommée "00 Core" elle est habituellement néces <location filename="baincomplexinstallerdialog.ui" line="83"/> <location filename="baincomplexinstallerdialog.ui" line="86"/> <source>Opens a Dialog that allows custom modifications.</source> - <translation>Ouvre une boite de dialogue permettant des modifications personalisées.</translation> + <translation>Ouvre une boite de dialogue permettant des modifications personnalisées.</translation> </message> <message> <location filename="baincomplexinstallerdialog.ui" line="89"/> @@ -147,7 +146,7 @@ Si une composante est nommée "00 Core" elle est habituellement néces <message> <location filename="baincomplexinstallerdialog.ui" line="96"/> <source>Ok</source> - <translation>Ok</translation> + <translation>Correct</translation> </message> <message> <location filename="baincomplexinstallerdialog.ui" line="103"/> @@ -156,6 +155,29 @@ Si une composante est nommée "00 Core" elle est habituellement néces </message> </context> <context> + <name>BrowserDialog</name> + <message> + <location filename="browserdialog.ui" line="14"/> + <source>Some Page</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="browserdialog.ui" line="256"/> + <source>Search</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="browserdialog.cpp" line="91"/> + <source>new</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="browserdialog.cpp" line="204"/> + <source>failed to start download</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> <name>CategoriesDialog</name> <message> <location filename="categoriesdialog.ui" line="14"/> @@ -175,7 +197,7 @@ Si une composante est nommée "00 Core" elle est habituellement néces <message> <location filename="categoriesdialog.ui" line="72"/> <source>Internal ID for the category. The categories a mod belongs to are stored by this ID. It is recommended you use new IDs for categories you add instead of re-using existing ones.</source> - <translation>ID interne de la catégorie. Les catégories auquelles un mod appartient sont stockées grâce à cet ID. Il est recommandé d'utiliser de nouvelles ID pour les catégories que vous ajoutez plutôt que de réutiliser celles déjà existantes.</translation> + <translation>ID interne de la catégorie. Les catégories auxquelles un mod appartient sont stockées grâce à cet ID. Il est recommandé d'utiliser de nouvelles ID pour les catégories que vous ajoutez plutôt que de réutiliser celles déjà existantes.</translation> </message> <message> <location filename="categoriesdialog.ui" line="77"/> @@ -211,7 +233,7 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Vous pouvez assigner une ou plusieurs catégories Nexus à une ID interne. Lorsqu'un mod est téléchargé d'une page Nexus, Mod Organizer tentera de convertir la catégorie définie sur Nexus en une catégorie disponible dans MO.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Vous pouvez assigner une ou plusieurs catégories Nexus à une ID interne. Lorsqu'un mod est téléchargé d'une page Nexus, Mod Organizer (MO) tentera de convertir la catégorie définie sur Nexus en une catégorie disponible dans celui-ci.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Pour connaître les IDs de catégories utilisées sur Nexus, visitez la liste des catégories sur le site et survolez les liens qui s'y trouvent.</span></p></body></html></translation> </message> @@ -246,12 +268,12 @@ p, li { white-space: pre-wrap; } <message> <location filename="credentialsdialog.ui" line="20"/> <source>This feature may not work unless you're logged in with Nexus</source> - <translation>Cette fonction pourrais être inutilisable si vous n'êtes pas connecté à Nexus</translation> + <translation>Cette fonction pourrais être inutilisable à moins que vous soyez connecté à Nexus</translation> </message> <message> <location filename="credentialsdialog.ui" line="32"/> <source>Username</source> - <translation>Nom d'usager</translation> + <translation>Nom d'utilisateur</translation> </message> <message> <location filename="credentialsdialog.ui" line="46"/> @@ -266,19 +288,15 @@ p, li { white-space: pre-wrap; } <message> <location filename="credentialsdialog.ui" line="75"/> <source>Never ask again</source> - <translation>Ne plus demander</translation> + <translation>Ne plus jamais demander</translation> </message> </context> <context> <name>DirectoryRefresher</name> <message> - <source>failed to read %1: %2</source> - <translation type="obsolete">Échec de lecture %1: %2</translation> - </message> - <message> - <location filename="directoryrefresher.cpp" line="99"/> + <location filename="directoryrefresher.cpp" line="146"/> <source>failed to read bsa: %1</source> - <translation type="unfinished"></translation> + <translation>Échec de lecture bsa: %1</translation> </message> </context> <context> @@ -301,7 +319,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="downloadlist.cpp" line="82"/> <source>Information missing, please select "Query Info" from the context menu to re-retrieve.</source> - <translation>Information manquante, veuillez sélectionner "Demander info" dans le menu contextuel pour récupérer.</translation> + <translation>Information manquante; veuillez sélectionner "Demander info" dans le menu contextuel pour les récupérer.</translation> </message> <message> <location filename="downloadlist.cpp" line="89"/> @@ -315,32 +333,32 @@ p, li { white-space: pre-wrap; } <location filename="downloadlistwidget.ui" line="17"/> <location filename="downloadlistwidget.ui" line="61"/> <source>Placeholder</source> - <translation>Signet</translation> + <translation>substitut</translation> </message> <message> <location filename="downloadlistwidget.ui" line="99"/> - <location filename="downloadlistwidget.cpp" line="145"/> - <location filename="downloadlistwidget.cpp" line="147"/> + <location filename="downloadlistwidget.cpp" line="150"/> + <location filename="downloadlistwidget.cpp" line="152"/> <source>Done - Double Click to install</source> <translation>Terminé - Double-cliquer pour installer</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="111"/> - <location filename="downloadlistwidget.cpp" line="113"/> + <location filename="downloadlistwidget.cpp" line="116"/> + <location filename="downloadlistwidget.cpp" line="118"/> <source>Paused - Double Click to resume</source> - <translation type="unfinished"></translation> + <translation>En pause - Double-cliquez pour reprendre</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="131"/> - <location filename="downloadlistwidget.cpp" line="133"/> + <location filename="downloadlistwidget.cpp" line="136"/> + <location filename="downloadlistwidget.cpp" line="138"/> <source>Installed - Double Click to re-install</source> <translation>Installé - Double-cliquer pour réinstaller</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="138"/> - <location filename="downloadlistwidget.cpp" line="140"/> + <location filename="downloadlistwidget.cpp" line="143"/> + <location filename="downloadlistwidget.cpp" line="145"/> <source>Uninstalled - Double Click to re-install</source> - <translation type="unfinished"></translation> + <translation>Désinstallé - Double-cliquer pour réinstaller</translation> </message> </context> <context> @@ -349,7 +367,7 @@ p, li { white-space: pre-wrap; } <location filename="downloadlistwidgetcompact.ui" line="17"/> <location filename="downloadlistwidgetcompact.ui" line="56"/> <source>Placeholder</source> - <translation>Signet</translation> + <translation>*substitut*</translation> </message> <message> <location filename="downloadlistwidgetcompact.ui" line="122"/> @@ -360,392 +378,427 @@ p, li { white-space: pre-wrap; } <context> <name>DownloadListWidgetCompactDelegate</name> <message> - <location filename="downloadlistwidgetcompact.cpp" line="241"/> - <location filename="downloadlistwidgetcompact.cpp" line="250"/> - <location filename="downloadlistwidgetcompact.cpp" line="259"/> - <location filename="downloadlistwidgetcompact.cpp" line="268"/> - <source>Are you sure?</source> - <translation>Êtes-vous certain?</translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="242"/> - <source>This will remove all finished downloads from this list and from disk.</source> - <translation>Ceci supprimera tous les téléchargements complétés de la liste et du disque.</translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="251"/> - <source>This will remove all installed downloads from this list and from disk.</source> - <translation>Ceci supprimera tous les téléchargements installés de cette liste et du disque.</translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="298"/> - <source>Install</source> - <translation>Installer</translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="300"/> - <source>Query Info</source> - <translation>Demander info</translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="312"/> - <source>Remove</source> - <translation>Supprimer</translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="309"/> - <source>Cancel</source> - <translation>Annuler</translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="88"/> + <location filename="downloadlistwidgetcompact.cpp" line="92"/> <source>< mod %1 file %2 ></source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="93"/> + <location filename="downloadlistwidgetcompact.cpp" line="97"/> <source>Pending</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="116"/> + <location filename="downloadlistwidgetcompact.cpp" line="120"/> <source>Paused</source> - <translation type="unfinished"></translation> + <translation type="unfinished">En pause</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="119"/> + <location filename="downloadlistwidgetcompact.cpp" line="123"/> <source>Fetching Info 1</source> - <translation type="unfinished"></translation> + <translation>Récupération des Infos 1</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="121"/> + <location filename="downloadlistwidgetcompact.cpp" line="125"/> <source>Fetching Info 2</source> - <translation type="unfinished"></translation> + <translation>Récupération des infos 2</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="126"/> + <location filename="downloadlistwidgetcompact.cpp" line="130"/> <source>Installed</source> - <translation type="unfinished"></translation> + <translation>Installé</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="129"/> + <location filename="downloadlistwidgetcompact.cpp" line="133"/> <source>Uninstalled</source> - <translation type="unfinished"></translation> + <translation>Désinstallé</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="132"/> + <location filename="downloadlistwidgetcompact.cpp" line="136"/> <source>Done</source> - <translation type="unfinished">Terminé</translation> + <translation>Terminé</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="245"/> + <location filename="downloadlistwidgetcompact.cpp" line="254"/> + <location filename="downloadlistwidgetcompact.cpp" line="263"/> + <location filename="downloadlistwidgetcompact.cpp" line="272"/> + <source>Are you sure?</source> + <translation>Êtes-vous certain?</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="246"/> + <source>This will remove all finished downloads from this list and from disk.</source> + <translation>Ceci supprimera tous les téléchargements complétés de la liste et du disque.</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="255"/> + <source>This will remove all installed downloads from this list and from disk.</source> + <translation>Ceci supprimera tous les téléchargements installés de cette liste et du disque.</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="260"/> + <location filename="downloadlistwidgetcompact.cpp" line="264"/> <source>This will permanently remove all finished downloads from this list (but NOT from disk).</source> - <translation type="unfinished"></translation> + <translation>Ceci supprimera tous les téléchargements terminés de cette liste (mais PAS du disque).</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="269"/> + <location filename="downloadlistwidgetcompact.cpp" line="273"/> <source>This will permanently remove all installed downloads from this list (but NOT from disk).</source> - <translation type="unfinished"></translation> + <translation>Ceci supprimera tous les téléchargements installés de cette liste (mais PAS du disque).</translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="302"/> - <source>Delete</source> - <translation type="unfinished"></translation> + <source>Install</source> + <translation>Installer</translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="304"/> - <source>Un-Hide</source> - <translation type="unfinished"></translation> + <source>Query Info</source> + <translation>Demander info</translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="306"/> - <source>Remove from View</source> + <source>Delete</source> + <translation type="unfinished">Supprimer</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="308"/> + <source>Un-Hide</source> <translation type="unfinished"></translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="310"/> - <source>Pause</source> - <translation>Interrompre</translation> + <source>Remove from View</source> + <translation>Enlever de la liste</translation> </message> <message> <location filename="downloadlistwidgetcompact.cpp" line="313"/> + <source>Cancel</source> + <translation>Annuler</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="314"/> + <source>Pause</source> + <translation>Pause</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="316"/> + <source>Remove</source> + <translation>Supprimer</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="317"/> <source>Resume</source> <translation>Reprendre</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="318"/> + <location filename="downloadlistwidgetcompact.cpp" line="322"/> <source>Delete Installed...</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Supprimer ceux installés...</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="319"/> + <location filename="downloadlistwidgetcompact.cpp" line="323"/> <source>Delete All...</source> - <translation type="unfinished"></translation> + <translation>Tout supprimer</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="322"/> + <location filename="downloadlistwidgetcompact.cpp" line="326"/> <source>Remove Installed...</source> - <translation>Supprimer installé...</translation> + <translation>Supprimer ceux installés...</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="323"/> + <location filename="downloadlistwidgetcompact.cpp" line="327"/> <source>Remove All...</source> - <translation>Supprimer tout...</translation> + <translation>Tout supprimer...</translation> </message> </context> <context> <name>DownloadListWidgetDelegate</name> <message> - <location filename="downloadlistwidget.cpp" line="253"/> - <location filename="downloadlistwidget.cpp" line="262"/> - <location filename="downloadlistwidget.cpp" line="271"/> - <location filename="downloadlistwidget.cpp" line="280"/> + <location filename="downloadlistwidget.cpp" line="93"/> + <source>< mod %1 file %2 ></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="96"/> + <source>Pending</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="123"/> + <source>Fetching Info 1</source> + <translation>Récupération des informations 1</translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="126"/> + <source>Fetching Info 2</source> + <translation>Récupération des informations 2</translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="258"/> + <location filename="downloadlistwidget.cpp" line="267"/> + <location filename="downloadlistwidget.cpp" line="276"/> + <location filename="downloadlistwidget.cpp" line="285"/> <source>Are you sure?</source> <translation>Êtes-vous certain?</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="254"/> + <location filename="downloadlistwidget.cpp" line="259"/> <source>This will remove all finished downloads from this list and from disk.</source> <translation>Ceci supprimera tous les téléchargements complétés de la liste et du disque.</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="263"/> + <location filename="downloadlistwidget.cpp" line="268"/> <source>This will remove all installed downloads from this list and from disk.</source> <translation>Ceci supprimera tous les téléchargements installés de la liste et du disque.</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="272"/> + <location filename="downloadlistwidget.cpp" line="277"/> <source>This will remove all finished downloads from this list (but NOT from disk).</source> - <translation type="unfinished"></translation> + <translation>Ceci supprimera tous les téléchargements complétés de cette liste (mais PAS du disque).</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="281"/> + <location filename="downloadlistwidget.cpp" line="286"/> <source>This will remove all installed downloads from this list (but NOT from disk).</source> - <translation type="unfinished"></translation> + <translation>Ceci supprimera tous les téléchargements installés de cette liste (mais PAS du disque).</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="309"/> + <location filename="downloadlistwidget.cpp" line="314"/> <source>Install</source> <translation>Installer</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="311"/> + <location filename="downloadlistwidget.cpp" line="316"/> <source>Query Info</source> - <translation>Demander info</translation> + <translation>Récupérer info</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="313"/> + <location filename="downloadlistwidget.cpp" line="318"/> <source>Delete</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Supprimer</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="315"/> + <location filename="downloadlistwidget.cpp" line="320"/> <source>Un-Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="317"/> + <location filename="downloadlistwidget.cpp" line="322"/> <source>Remove from View</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="323"/> - <source>Remove</source> - <translation>Supprimer</translation> + <translation>Enlever de la liste</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="320"/> + <location filename="downloadlistwidget.cpp" line="325"/> <source>Cancel</source> <translation>Annuler</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="88"/> - <source>< mod %1 file %2 ></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="91"/> - <source>Pending</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="118"/> - <source>Fetching Info 1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="121"/> - <source>Fetching Info 2</source> - <translation type="unfinished"></translation> + <location filename="downloadlistwidget.cpp" line="326"/> + <source>Pause</source> + <translation>Mettre en pause</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="321"/> - <source>Pause</source> - <translation>Interrompre</translation> + <location filename="downloadlistwidget.cpp" line="328"/> + <source>Remove</source> + <translation>Enlever</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="324"/> + <location filename="downloadlistwidget.cpp" line="329"/> <source>Resume</source> - <translation>Reprendre</translation> + <translation>Continuer</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="329"/> + <location filename="downloadlistwidget.cpp" line="334"/> <source>Delete Installed...</source> - <translation type="unfinished"></translation> + <translation>Supprimer ceux installés...</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="330"/> + <location filename="downloadlistwidget.cpp" line="335"/> <source>Delete All...</source> - <translation type="unfinished"></translation> + <translation>Tout supprimer...</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="333"/> + <location filename="downloadlistwidget.cpp" line="338"/> <source>Remove Installed...</source> - <translation>Supprimer installé...</translation> + <translation>Enlever de la liste ceux installés...</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="334"/> + <location filename="downloadlistwidget.cpp" line="339"/> <source>Remove All...</source> - <translation>Supprimer tout...</translation> + <translation>Enlever tout de la liste...</translation> </message> </context> <context> <name>DownloadManager</name> <message> - <location filename="downloadmanager.cpp" line="132"/> + <location filename="downloadmanager.cpp" line="142"/> <source>failed to rename "%1" to "%2"</source> + <translation>Impossible de renommer "%1" en "%2"</translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="321"/> + <source>Memory allocation error (in refreshing directory).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadmanager.cpp" line="342"/> + <location filename="downloadmanager.cpp" line="369"/> <source>Download again?</source> - <translation type="unfinished"></translation> + <translation>Télécharger à nouveau ?</translation> </message> <message> - <location filename="downloadmanager.cpp" line="342"/> + <location filename="downloadmanager.cpp" line="369"/> <source>A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name.</source> - <translation type="unfinished"></translation> + <translation>Un fichier avec le même nom a déjà été téléchargé. Voulez vous le télécharger à nouveau ? Le nouveau fichier aura un nom différent.</translation> </message> <message> - <location filename="downloadmanager.cpp" line="388"/> + <location filename="downloadmanager.cpp" line="417"/> <source>failed to download %1: could not open output file: %2</source> - <translation>impossible de télécharger %1: impossible d'écrire le fichier %2</translation> + <translation>impossible de télécharger %1: impossible d'écrire le fichier: %2</translation> </message> <message> - <location filename="downloadmanager.cpp" line="421"/> + <location filename="downloadmanager.cpp" line="454"/> <source>Wrong Game</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadmanager.cpp" line="421"/> + <location filename="downloadmanager.cpp" line="454"/> <source>The download link is for a mod for "%1" but this instance of MO has been set up for "%2".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadmanager.cpp" line="457"/> + <location filename="downloadmanager.cpp" line="471"/> + <location filename="downloadmanager.cpp" line="538"/> + <location filename="downloadmanager.cpp" line="726"/> + <location filename="downloadmanager.cpp" line="735"/> + <location filename="downloadmanager.cpp" line="756"/> + <location filename="downloadmanager.cpp" line="773"/> + <location filename="downloadmanager.cpp" line="782"/> + <location filename="downloadmanager.cpp" line="796"/> + <location filename="downloadmanager.cpp" line="806"/> + <location filename="downloadmanager.cpp" line="816"/> + <location filename="downloadmanager.cpp" line="826"/> + <location filename="downloadmanager.cpp" line="841"/> + <location filename="downloadmanager.cpp" line="849"/> + <location filename="downloadmanager.cpp" line="858"/> + <location filename="downloadmanager.cpp" line="868"/> + <location filename="downloadmanager.cpp" line="883"/> + <source>invalid index</source> + <translation>index invalide</translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="489"/> <source>failed to delete %1</source> <translation>impossible de supprimer %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="463"/> + <location filename="downloadmanager.cpp" line="495"/> <source>failed to delete meta file for %1</source> - <translation>impossible de supprimer le méta fichier pour %1</translation> + <translation>impossible de supprimer le méta-fichier pour %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="539"/> - <location filename="downloadmanager.cpp" line="557"/> - <location filename="downloadmanager.cpp" line="570"/> - <location filename="downloadmanager.cpp" line="587"/> - <location filename="downloadmanager.cpp" line="598"/> + <location filename="downloadmanager.cpp" line="571"/> + <location filename="downloadmanager.cpp" line="589"/> + <location filename="downloadmanager.cpp" line="602"/> + <location filename="downloadmanager.cpp" line="622"/> <location filename="downloadmanager.cpp" line="633"/> + <location filename="downloadmanager.cpp" line="673"/> <source>invalid index %1</source> <translation>index invalide %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1042"/> - <source>Information updated</source> - <translation>Information mise à jour</translation> + <location filename="downloadmanager.cpp" line="640"/> + <source>No known download urls. Sorry, this download can't be resumed.</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="downloadmanager.cpp" line="1044"/> - <location filename="downloadmanager.cpp" line="1058"/> - <source>No matching file found on Nexus! Maybe this file is no longer available or it was renamed?</source> - <translation>Aucun fichier correspondant trouvé sur Nexus! Peut-être ce fichier n'est-il plus disponible ou a été renommé?</translation> + <location filename="downloadmanager.cpp" line="695"/> + <source>Please enter the nexus mod id</source> + <translation>Veuillez entre l'ID Nexus du mod</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1046"/> - <source>No file on Nexus matches the selected file by name. Please manually choose the correct one.</source> - <translation>Aucun fichier sur Nexus ne correspond au nom du fichier sélectionné. Veuillez s'il-vous-plaît sélectionner le bon manuellement.</translation> + <location filename="downloadmanager.cpp" line="695"/> + <source>Mod ID:</source> + <translation>ID du mod:</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1180"/> - <source>No download server available. Please try again later.</source> + <location filename="downloadmanager.cpp" line="744"/> + <source>Main</source> + <translation type="unfinished">Principal</translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="745"/> + <source>Update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadmanager.cpp" line="1224"/> - <source>Failed to request file info from nexus: %1</source> - <translation>Impossible de demander l'info du fichier sur Nexus: %1</translation> + <location filename="downloadmanager.cpp" line="746"/> + <source>Optional</source> + <translation type="unfinished">Optionnel</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1249"/> - <source>Download failed. Server reported: %1</source> + <location filename="downloadmanager.cpp" line="747"/> + <source>Old</source> + <translation type="unfinished">Ancien</translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="748"/> + <source>Misc</source> + <translation type="unfinished">Divers</translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="749"/> + <source>Unknown</source> + <translation type="unfinished">Inconnu</translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="999"/> + <source>Memory allocation error (in processing progress event).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadmanager.cpp" line="1251"/> - <source>Download failed: %1 (%2)</source> - <translation>Téléchargement échoué: %1 (%2)</translation> + <location filename="downloadmanager.cpp" line="1012"/> + <source>Memory allocation error (in processing downloaded data).</source> + <translation type="unfinished"></translation> </message> <message> - <source>failed to delete file</source> - <translation type="obsolete">impossible de supprimer le fichier</translation> + <location filename="downloadmanager.cpp" line="1141"/> + <source>Information updated</source> + <translation>Information mise à jour</translation> </message> <message> - <location filename="downloadmanager.cpp" line="439"/> - <location filename="downloadmanager.cpp" line="506"/> - <location filename="downloadmanager.cpp" line="682"/> - <location filename="downloadmanager.cpp" line="691"/> - <location filename="downloadmanager.cpp" line="701"/> - <location filename="downloadmanager.cpp" line="710"/> - <location filename="downloadmanager.cpp" line="724"/> - <location filename="downloadmanager.cpp" line="734"/> - <location filename="downloadmanager.cpp" line="744"/> - <location filename="downloadmanager.cpp" line="754"/> - <location filename="downloadmanager.cpp" line="765"/> - <location filename="downloadmanager.cpp" line="773"/> - <location filename="downloadmanager.cpp" line="782"/> - <location filename="downloadmanager.cpp" line="792"/> - <location filename="downloadmanager.cpp" line="807"/> - <source>invalid index</source> - <translation>index invalide</translation> + <location filename="downloadmanager.cpp" line="1143"/> + <location filename="downloadmanager.cpp" line="1157"/> + <source>No matching file found on Nexus! Maybe this file is no longer available or it was renamed?</source> + <translation>Aucun fichier correspondant trouvé sur Nexus! Peut-être ce fichier n'est-il plus disponible ou a été renommé?</translation> </message> <message> - <location filename="downloadmanager.cpp" line="650"/> - <source>Please enter the nexus mod id</source> - <translation>Veuillez entre l'ID Nexus du mod</translation> + <location filename="downloadmanager.cpp" line="1145"/> + <source>No file on Nexus matches the selected file by name. Please manually choose the correct one.</source> + <translation>Aucun fichier sur Nexus ne correspond au nom du fichier sélectionné. Veuillez s'il-vous-plaît sélectionner le bon manuellement.</translation> </message> <message> - <location filename="downloadmanager.cpp" line="650"/> - <source>Mod ID:</source> - <translation>ID du mod:</translation> + <location filename="downloadmanager.cpp" line="1286"/> + <source>No download server available. Please try again later.</source> + <translation>Aucun serveur de téléchargement disponible. Veuillez réessayer plus tard.</translation> </message> <message> - <source>invalid alphabetical index %1</source> - <translation type="obsolete">index alphabétique invalide %1</translation> + <location filename="downloadmanager.cpp" line="1329"/> + <source>Failed to request file info from nexus: %1</source> + <translation>Impossible de demander l'info du fichier sur Nexus: %1</translation> </message> <message> - <source>Failed to request file info from nexus!</source> - <translation type="obsolete">Impossible de récupérer les informations de fichier sur Nexus!</translation> + <location filename="downloadmanager.cpp" line="1357"/> + <source>Download failed. Server reported: %1</source> + <translation type="unfinished"></translation> </message> <message> - <source>Download failed</source> - <translation type="obsolete">Téléchargement échoué</translation> + <location filename="downloadmanager.cpp" line="1359"/> + <source>Download failed: %1 (%2)</source> + <translation>Téléchargement échoué: %1 (%2)</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1331"/> + <location filename="downloadmanager.cpp" line="1458"/> <source>failed to re-open %1</source> - <translation>impossible d'ouvrir à nouveau %1</translation> + <translation>Échec lors de la tentative de réouverture %1</translation> </message> </context> <context> @@ -753,7 +806,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="editexecutablesdialog.ui" line="14"/> <source>Modify Executables</source> - <translation>Mdifier les programmes</translation> + <translation>Modifier la liste des programmes</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="20"/> @@ -763,7 +816,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="editexecutablesdialog.ui" line="23"/> <source>This is a list of your configured executables. Executables in grey are automatically recognised and can not be modified.</source> - <translation>Ceci est une liste des programmes configurés. Les programmes en gris sont détectés automatiquement et ne peuvent être modifiés.</translation> + <translation>Ceci est la liste des programmes configurés. Ceux en gris sont détectés automatiquement et ne peuvent être modifiés.</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="38"/> @@ -779,23 +832,23 @@ p, li { white-space: pre-wrap; } <message> <location filename="editexecutablesdialog.ui" line="59"/> <source>Binary</source> - <translation>Programme</translation> + <translation>Exécutable (*.exe, *.jar ...)</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="66"/> <location filename="editexecutablesdialog.ui" line="69"/> <source>Binary to run</source> - <translation>Programme à exécuter</translation> + <translation>Exécutable à lancer</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="76"/> <source>Browse filesystem</source> - <translation>Parcourir</translation> + <translation>Parcourir le système de fichier</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="79"/> <source>Browse filesystem for the executable to run.</source> - <translation>Parcourir le système de fichiers pour le programme à exécuter.</translation> + <translation>Parcourir le système de fichiers pour l'exécutable à lancer</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="82"/> @@ -829,24 +882,28 @@ p, li { white-space: pre-wrap; } <source>Allow the Steam AppID to be used for this executable to be changed. Every game/tool distributed through Steam has a unique ID. MO needs to know this ID to start those programs directly, otherwise the program is started by steam and then MO will not work. By default, MO will use the AppID for the game. Right now the only case I know of where this needs to be overwritten is for the Skyrim Creation Kit which has its own AppID. This overwrite is already preconfigured.</source> - <translation type="unfinished"></translation> + <translation>Permet de modifier l'AppID Steam à utiliser pour cet exécutable. +Chaque jeu ou utilitaire distribué à travers Steam possède un identifiant (ID) unique. MO à besoin de connaitre cet ID pour démarrer ces programmes directement, sinon ceux-ci le seront par Steam et MO ne fonctionnera pas. Par défaut, MO utilisera l'AppID du jeu. +Actuellement le seul cas à ma connaissance ou ceci est nécessaire est le Creation Kit pour Skyrim, qui possède sa propre AppID. Cette modification est déjà pré-configurée.</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="143"/> <source>Overwrite Steam AppID</source> - <translation type="unfinished"></translation> + <translation>Réécrire Steam AppID</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="153"/> <source>Steam AppID to use for this executable that differs from the games AppID.</source> - <translation type="unfinished"></translation> + <translation>l'AppID Steam utilisé pour cet exécutable est différent des AppID de jeux.</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="156"/> <source>Steam AppID to use for this executable that differs from the games AppID. Every game/tool distributed through Steam has a unique ID. MO needs to know this ID to start those programs directly, otherwise the program is started by steam and then MO will not work. By default, MO will use the AppID for the game (usually 72850). Right now the only case I know of where this needs to be overwritten is for the Skyrim Creation Kit which has its own AppID (usually 202480). This overwrite is already preconfigured.</source> - <translation type="unfinished"></translation> + <translation>L'AppID Steam à utiliser pour cet exécutable, différente de l'AppID du jeu. +Chaque jeu ou utilitaire distribué à travers Steam possède un identifiant (ID) unique. MO à besoin de connaitre cet ID pour démarrer ces programmes directement, sinon ceux-ci le seront par Steam et MO ne fonctionnera pas. Par défaut, MO utilisera l'AppID du jeu (normalement 72850). +Actuellement le seul cas à ma connaissance ou ceci est nécessaire est le Creation Kit pour Skyrim, qui possède son propre AppID (normalement 202480). Cette modification est déjà pré-configurée.</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="169"/> @@ -876,12 +933,12 @@ Right now the only case I know of where this needs to be overwritten is for the <location filename="editexecutablesdialog.ui" line="199"/> <location filename="editexecutablesdialog.ui" line="202"/> <source>Remove the selected executable</source> - <translation>Supprimer le programme sélectionné</translation> + <translation>Enlever le programme sélectionné de la liste</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="205"/> <source>Remove</source> - <translation>Supprimer</translation> + <translation>Enlever</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="233"/> @@ -891,37 +948,42 @@ Right now the only case I know of where this needs to be overwritten is for the <message> <location filename="editexecutablesdialog.cpp" line="125"/> <source>Select a binary</source> - <translation>Choisir un programme</translation> + <translation>Choisir un exécutable</translation> </message> <message> <location filename="editexecutablesdialog.cpp" line="125"/> <source>Executable (%1)</source> - <translation type="unfinished"></translation> + <translation>Executable (%1)</translation> </message> <message> <location filename="editexecutablesdialog.cpp" line="149"/> <source>Java (32-bit) required</source> - <translation type="unfinished"></translation> + <translation>Java (32-bit) nécessaire</translation> </message> <message> <location filename="editexecutablesdialog.cpp" line="150"/> <source>MO requires 32-bit java to run this application. If you already have it installed, select javaw.exe from that installation as the binary.</source> - <translation type="unfinished"></translation> + <translation>MO nécessite java 32-bit pour fonctionner. Si vous l'avez déjà installé, selectionnez le javaw.exe de son installation comme binaire.</translation> </message> <message> <location filename="editexecutablesdialog.cpp" line="166"/> <source>Select a directory</source> - <translation type="unfinished"></translation> + <translation>Sélectionnez un répertoire</translation> </message> <message> <location filename="editexecutablesdialog.cpp" line="175"/> <source>Confirm</source> - <translation type="unfinished">Confirmer</translation> + <translation>Confirmer</translation> </message> <message> <location filename="editexecutablesdialog.cpp" line="175"/> <source>Really remove "%1" from executables?</source> - <translation type="unfinished"></translation> + <translation>Êtes-vous sûr de vouloir retirer "%1" des programmes ?</translation> + </message> + <message> + <location filename="editexecutablesdialog.cpp" line="200"/> + <source>Modify</source> + <translation>Modifier</translation> </message> <message> <location filename="editexecutablesdialog.cpp" line="230"/> @@ -938,16 +1000,7 @@ Right now the only case I know of where this needs to be overwritten is for the <message> <location filename="editexecutablesdialog.cpp" line="255"/> <source>MO must be kept running or this application will not work correctly.</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Executable (*.exe *.bat)</source> - <translation type="obsolete">Programme (*.exe *.bat)</translation> - </message> - <message> - <location filename="editexecutablesdialog.cpp" line="200"/> - <source>Modify</source> - <translation>Modifier</translation> + <translation>MO doit continuer à fonctionner ou cette application ne fonctionnera pas correctement.</translation> </message> </context> <context> @@ -977,7 +1030,6 @@ Right now the only case I know of where this needs to be overwritten is for the <message> <location filename="finddialog.ui" line="53"/> <source>&Find Next</source> - <translatorcomment>Unable to use F as an accelarator in French. Wsually, windows uses V from sui&vant. Tell me if the translation would support that?</translatorcomment> <translation>Chercher suivant</translation> </message> <message> @@ -993,56 +1045,52 @@ Right now the only case I know of where this needs to be overwritten is for the <message> <location filename="fomodinstallerdialog.ui" line="14"/> <source>FOMOD Installation Dialog</source> - <translation type="unfinished"></translation> + <translation>Boite de dialogue d'installation FOMOD</translation> </message> <message> <location filename="fomodinstallerdialog.ui" line="22"/> <source>Name</source> - <translation type="unfinished">Nom</translation> + <translation>Nom</translation> </message> <message> <location filename="fomodinstallerdialog.ui" line="46"/> <source>Author</source> - <translation type="unfinished"></translation> + <translation>Auteur</translation> </message> <message> <location filename="fomodinstallerdialog.ui" line="60"/> <source>Version</source> - <translation type="unfinished">Version</translation> + <translation>Version</translation> </message> <message> <location filename="fomodinstallerdialog.ui" line="74"/> <source>Website</source> - <translation type="unfinished"></translation> + <translation>Site Web</translation> </message> <message> <location filename="fomodinstallerdialog.ui" line="81"/> <source><a href="#">Link</a></source> - <translation type="unfinished"></translation> + <translation><a href="#">Lien</a></translation> </message> <message> <location filename="fomodinstallerdialog.ui" line="160"/> <source>Manual</source> - <translation type="unfinished">Manuel</translation> + <translation>Manuel</translation> </message> <message> <location filename="fomodinstallerdialog.ui" line="170"/> <source>Back</source> - <translation type="unfinished"></translation> + <translation>Précédent</translation> </message> <message> <location filename="fomodinstallerdialog.ui" line="177"/> <source>Next</source> - <translation type="unfinished"></translation> + <translation>Suivant</translation> </message> <message> <location filename="fomodinstallerdialog.ui" line="184"/> <source>Cancel</source> - <translation type="unfinished">Annuler</translation> - </message> - <message> - <source>Install</source> - <translation type="obsolete">Installer</translation> + <translation>Annuler</translation> </message> </context> <context> @@ -1050,7 +1098,7 @@ Right now the only case I know of where this needs to be overwritten is for the <message> <location filename="installdialog.ui" line="20"/> <source>Install Mods</source> - <translation>Installer Mods</translation> + <translation>installation des Mods</translation> </message> <message> <location filename="installdialog.ui" line="32"/> @@ -1070,7 +1118,7 @@ Right now the only case I know of where this needs to be overwritten is for the <message> <location filename="installdialog.ui" line="56"/> <source>Pick a name for the mod. This is also used as a directory name, so please don't use characters that are illegal in file names.</source> - <translation>Choisissez un nom pour le mod. Ce nom sera aussi utilisé comme nom de dossier, n'utilisez donc pas de caractères invalides dans les noms de fichiers.</translation> + <translation>Choisissez un nom pour le mod. Ce nom sera aussi utilisé comme nom de dossier, n'utilisez donc pas de caractères invalides dans les noms de fichiers s'il-vous-plait.</translation> </message> <message> <location filename="installdialog.ui" line="65"/> @@ -1098,64 +1146,25 @@ p, li { white-space: pre-wrap; } <message> <location filename="installdialog.ui" line="121"/> <source>Placeholder</source> - <translation>Signet</translation> + <translation>*substitut*</translation> </message> <message> <location filename="installdialog.ui" line="141"/> <source>OK</source> - <translation type="unfinished">OK</translation> + <translation>Valider</translation> </message> <message> <location filename="installdialog.ui" line="148"/> <source>Cancel</source> - <translation type="unfinished">Annuler</translation> - </message> - <message> - <source>Looks good</source> - <translation type="obsolete">Tout semble beau</translation> - </message> - <message> - <source>No problem detected</source> - <translation type="obsolete">Aucun problème trouvé</translation> - </message> - <message> - <source>No game data on top level</source> - <translation type="obsolete">Aucunes données de jeu au niveau supérieur</translation> - </message> - <message> - <source>There is no esp/esm file or asset directory (textures, meshes, interface, ...) on the top level.</source> - <translation type="obsolete">Il n'y a aucun esp/esm, ni dossier d'éléments de jeu (textures, meshes, interface, ...) au niveau supérieur.</translation> - </message> - <message> - <source>Enter a directory name</source> - <translation type="obsolete">Tapez un nom de dossier</translation> - </message> - <message> - <source>A directory with that name exists</source> - <translation type="obsolete">Un dossier ainsi nommé existe déjà</translation> - </message> - <message> - <source>Set data directory</source> - <translation type="obsolete">Sélectionner le dossier DATA</translation> - </message> - <message> - <source>Unset data directory</source> - <translation type="obsolete">Déselectionner le dossier DATA</translation> - </message> - <message> - <source>Create directory...</source> - <translation type="obsolete">Créer dossier...</translation> - </message> - <message> - <source>&Open</source> - <translation type="obsolete">&Ouvrir</translation> + <translation>Annuler</translation> </message> </context> <context> <name>InstallationManager</name> <message> - <source>mo_archive.dll not loaded: "%1"</source> - <translation type="obsolete">mo_archive.dll non chargé: "%1"</translation> + <location filename="installationmanager.cpp" line="76"/> + <source>archive.dll not loaded: "%1"</source> + <translation>archive.dll n'est pas chargé: "%1"</translation> </message> <message> <location filename="installationmanager.cpp" line="98"/> @@ -1168,114 +1177,89 @@ p, li { white-space: pre-wrap; } <translation>Mot de passe</translation> </message> <message> - <source>Directory exists</source> - <translation type="obsolete">Dossier existant</translation> - </message> - <message> - <source>The mod seems to be installed already. Do you want to add files from this archive (overwriting existing ones)?</source> - <translation type="obsolete">Ce mod semble déjà installé. Voulez-vous ajouter les fichiers de cette archive (et écraser les fichiers existants)?</translation> - </message> - <message> <location filename="installationmanager.cpp" line="164"/> <location filename="installationmanager.cpp" line="248"/> - <location filename="installationmanager.cpp" line="529"/> + <location filename="installationmanager.cpp" line="530"/> <source>Extracting files</source> <translation>Extraction des fichiers</translation> </message> <message> - <location filename="installationmanager.cpp" line="609"/> - <source>File format "%1" not supported</source> - <translation>Format de fichier "%1" non supporté</translation> - </message> - <message> - <source>failed to open archive "%1"</source> - <translation type="obsolete">impossible d'ouvrir l'archive "%1"</translation> - </message> - <message> - <source>Installation as fomod failed: %1</source> - <translation type="obsolete">impossible d'ouvrir l'archive "%1": %2</translation> - </message> - <message> - <source>Confirm</source> - <translation type="obsolete">Confirmer</translation> - </message> - <message> - <location filename="installationmanager.cpp" line="76"/> - <source>archive.dll not loaded: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="installationmanager.cpp" line="439"/> <source>failed to create backup</source> - <translation type="unfinished"></translation> + <translation>Impossible de créer une sauvegarde</translation> </message> <message> <location filename="installationmanager.cpp" line="448"/> <source>Mod Name</source> - <translation type="unfinished"></translation> + <translation>Nom du mod</translation> </message> <message> <location filename="installationmanager.cpp" line="448"/> <source>Name</source> - <translation type="unfinished">Nom</translation> + <translation>Nom</translation> </message> <message> <location filename="installationmanager.cpp" line="501"/> <source>Invalid name</source> - <translation type="unfinished"></translation> + <translation>Nom incorrect</translation> </message> <message> <location filename="installationmanager.cpp" line="502"/> <source>The name you entered is invalid, please enter a different one.</source> - <translation type="unfinished"></translation> + <translation>Le nom que vous avez entré est invalide, essayez-en un autre SVP.</translation> </message> <message> - <location filename="installationmanager.cpp" line="735"/> + <location filename="installationmanager.cpp" line="610"/> + <source>File format "%1" not supported</source> + <translation>Format de fichier "%1" non supporté</translation> + </message> + <message> + <location filename="installationmanager.cpp" line="743"/> <source>None of the available installer plugins were able to handle that archive</source> - <translation type="unfinished"></translation> + <translation>Aucun des plugins installés n'arrive à traiter cette archive</translation> </message> <message> - <location filename="installationmanager.cpp" line="745"/> + <location filename="installationmanager.cpp" line="753"/> <source>no error</source> <translation>aucune erreur</translation> </message> <message> - <location filename="installationmanager.cpp" line="748"/> + <location filename="installationmanager.cpp" line="756"/> <source>7z.dll not found</source> <translation>7z.dll introuvable</translation> </message> <message> - <location filename="installationmanager.cpp" line="751"/> + <location filename="installationmanager.cpp" line="759"/> <source>7z.dll isn't valid</source> <translation>7z.dll invalide</translation> </message> <message> - <location filename="installationmanager.cpp" line="754"/> + <location filename="installationmanager.cpp" line="762"/> <source>archive not found</source> <translation>archive introuvable</translation> </message> <message> - <location filename="installationmanager.cpp" line="757"/> + <location filename="installationmanager.cpp" line="765"/> <source>failed to open archive</source> <translation>impossible d'ouvrir l'archive</translation> </message> <message> - <location filename="installationmanager.cpp" line="760"/> + <location filename="installationmanager.cpp" line="768"/> <source>unsupported archive type</source> <translation>type d'archive non supporté</translation> </message> <message> - <location filename="installationmanager.cpp" line="763"/> + <location filename="installationmanager.cpp" line="771"/> <source>internal library error</source> <translation>erreur de bibliothèque interne</translation> </message> <message> - <location filename="installationmanager.cpp" line="766"/> + <location filename="installationmanager.cpp" line="774"/> <source>archive invalid</source> <translation>archive invalide</translation> </message> <message> - <location filename="installationmanager.cpp" line="770"/> + <location filename="installationmanager.cpp" line="778"/> <source>unknown archive error</source> <translation>erreur d'archive inconnue</translation> </message> @@ -1285,72 +1269,97 @@ p, li { white-space: pre-wrap; } <message> <location filename="lockeddialog.ui" line="14"/> <source>Locked</source> - <translation>Vérouillé</translation> + <translation>Verrouillé</translation> </message> <message> <location filename="lockeddialog.ui" line="20"/> <source>This dialog should disappear automatically if the application/game is done. Click unlock if it didn't.</source> - <translation>Cette boite de dialogue devrait disparaître automatiquement une fois le programme ou jeu terminé. Sinon, cliquer "Dévérouiller".</translation> + <translation>Cette boite de dialogue devrait disparaître automatiquement une fois le programme ou jeu terminé. Sinon, cliquer "Déverrouiller".</translation> </message> <message> <location filename="lockeddialog.ui" line="23"/> <source>MO is locked while the executable is running.</source> - <translation>MO est vérouillé pendant que le programme s'exécute.</translation> + <translation>MO est verrouillé pendant que le programme s'exécute.</translation> </message> <message> <location filename="lockeddialog.ui" line="54"/> <source>Unlock</source> - <translation>Dévérouiller</translation> + <translation>Déverrouiller</translation> </message> </context> <context> <name>LogBuffer</name> <message> - <location filename="logbuffer.cpp" line="73"/> + <location filename="logbuffer.cpp" line="83"/> <source>failed to write log to %1: %2</source> - <translation type="unfinished"></translation> + <translation>Impossible d'écrire le log %1: %2</translation> </message> </context> <context> <name>MOApplication</name> <message> - <location filename="moapplication.cpp" line="68"/> + <location filename="moapplication.cpp" line="115"/> <source>an error occured: %1</source> - <translation type="unfinished"></translation> + <translation>Une erreur est survenue : %1</translation> </message> <message> - <location filename="moapplication.cpp" line="73"/> + <location filename="moapplication.cpp" line="120"/> <source>an error occured</source> - <translation type="unfinished"></translation> + <translation>une erreur est survenue</translation> </message> </context> <context> <name>MainWindow</name> <message> - <location filename="mainwindow.ui" line="51"/> - <location filename="mainwindow.ui" line="392"/> + <location filename="mainwindow.ui" line="43"/> + <location filename="mainwindow.ui" line="482"/> <source>Categories</source> - <translation type="unfinished">Catégories</translation> + <translation>Catégories</translation> + </message> + <message> + <location filename="mainwindow.ui" line="97"/> + <source>Click blank area to deselect</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="116"/> + <source>If checked, only mods that match all selected categories are displayed.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="119"/> + <source>And</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="129"/> + <source>If checked, all mods that match at least one of the selected categories are displayed.</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="128"/> + <location filename="mainwindow.ui" line="132"/> + <source>Or</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="171"/> <source>Profile</source> - <translation type="unfinished">Profil</translation> + <translation>Profil</translation> </message> <message> - <location filename="mainwindow.ui" line="138"/> + <location filename="mainwindow.ui" line="181"/> <source>Pick a module collection</source> - <translation type="unfinished">Choisissez un profil</translation> + <translation>Choisissez un profil</translation> </message> <message> - <location filename="mainwindow.ui" line="141"/> + <location filename="mainwindow.ui" line="184"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Create profiles here. Each profile contains its own list of active mods and esps. This way you can quickly switch between setups for different play throughs.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Please note that right now your esp load order is not kept seperate for different profiles.</span></p></body></html></source> - <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> @@ -1358,65 +1367,73 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Veuillez noter que pour l'instant, l'ordre de chargement des ESPs est commun à tous les profils.</span></p></body></html></translation> </message> <message> - <location filename="mainwindow.ui" line="159"/> + <location filename="mainwindow.ui" line="215"/> <source>Refresh list</source> <translation type="unfinished">Actualiser la liste</translation> </message> <message> - <location filename="mainwindow.ui" line="162"/> + <location filename="mainwindow.ui" line="218"/> <source>Refresh list. This is usually not necessary unless you modified data outside the program.</source> - <translation type="unfinished">Actualiser la liste. Normalement inutile à moins que vous n'ayez modifié des données à l'extérieur du programme.</translation> + <translation>Actualiser la liste. Normalement inutile à moins que vous n'ayez modifié des données à l'extérieur du programme.</translation> </message> <message> - <location filename="mainwindow.ui" line="278"/> - <source>List of available mods.</source> + <location filename="mainwindow.ui" line="238"/> + <location filename="mainwindow.ui" line="739"/> + <source>Restore Backup...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="281"/> - <source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag & drop mods to change their "installation" orders.</source> + <location filename="mainwindow.ui" line="252"/> + <location filename="mainwindow.ui" line="759"/> + <source>Create Backup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="366"/> + <location filename="mainwindow.ui" line="368"/> + <source>List of available mods.</source> + <translation>Liste des mods disponibles.</translation> + </message> + <message> + <location filename="mainwindow.ui" line="371"/> + <source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag & drop mods to change their "installation" orders.</source> + <translation>Voici la liste des mods installés. Utilisez les cases à cocher pour activer/désactiver les mods ainsi que le glisser & déposer pour modifier leur séquence d' "installation".</translation> + </message> + <message> + <location filename="mainwindow.ui" line="456"/> <source>Filter</source> - <translation type="unfinished">Flitre</translation> + <translation>Filtre</translation> </message> <message> - <location filename="mainwindow.ui" line="387"/> + <location filename="mainwindow.ui" line="477"/> <source>No groups</source> - <translation type="unfinished"></translation> + <translation>Aucun groupe</translation> </message> <message> - <location filename="mainwindow.ui" line="397"/> + <location filename="mainwindow.ui" line="487"/> <source>Nexus IDs</source> - <translation type="unfinished">IDs Nexus</translation> + <translation>IDs Nexus</translation> </message> <message> - <location filename="mainwindow.ui" line="405"/> - <location filename="mainwindow.ui" line="724"/> - <location filename="mainwindow.ui" line="1046"/> + <location filename="mainwindow.ui" line="495"/> + <location filename="mainwindow.ui" line="876"/> + <location filename="mainwindow.ui" line="1214"/> <source>Namefilter</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Start</source> - <translation type="obsolete">Lancement</translation> + <translation>Filtre de nom</translation> </message> <message> - <location filename="mainwindow.ui" line="440"/> + <location filename="mainwindow.ui" line="530"/> <source>Pick a program to run.</source> - <translation type="unfinished">Choisissez un programme à lancer.</translation> + <translation>Choisissez un programme à lancer.</translation> </message> <message> - <location filename="mainwindow.ui" line="443"/> + <location filename="mainwindow.ui" line="533"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Choose the program to run. Once you start using ModOrganizer, you should always run your game and tools from here or through shortcuts created here, otherwise mods installed through MO will not be visible.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">You can add new Tools to this list, but I can't promise tools I haven't tested will work.</span></p></body></html></source> - <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> @@ -1424,96 +1441,101 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Vous pouvez ajouter d'autres outils à la liste, mais je ne peut garantir que les outils que je n'ai pas testé fonctionneront.</span></p></body></html></translation> </message> <message> - <location filename="mainwindow.ui" line="491"/> + <location filename="mainwindow.ui" line="581"/> <source>Run program</source> - <translation type="unfinished">Lancer le programme</translation> + <translation>Lancer le programme</translation> </message> <message> - <location filename="mainwindow.ui" line="494"/> + <location filename="mainwindow.ui" line="584"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Run the selected program with ModOrganizer enabled.</span></p></body></html></source> - <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Exécuter le programme sélectionné avec ModOrganizer actif.</span></p></body></html></translation> </message> <message> - <location filename="mainwindow.ui" line="504"/> + <location filename="mainwindow.ui" line="594"/> <source>Run</source> - <translation type="unfinished">Lancer</translation> + <translation>Lancer</translation> </message> <message> - <location filename="mainwindow.ui" line="545"/> + <location filename="mainwindow.ui" line="635"/> <source>Create a shortcut in your start menu or on the desktop to the specified program</source> - <translation type="unfinished"></translation> + <translation>Crée un raccourci dans votre menu démarrer, ou sur le bureau, pour le programme spécifié</translation> </message> <message> - <location filename="mainwindow.ui" line="548"/> + <location filename="mainwindow.ui" line="638"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This creates a start menu shortcut that directly starts the selected program with the MO active.</span></p></body></html></source> - <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Crée un raccourci dans le menu Démarrer qui lance directement le programme sélectionné avec MO actif.</span></p></body></html></translation> </message> <message> - <location filename="mainwindow.ui" line="555"/> + <location filename="mainwindow.ui" line="645"/> <source>Shortcut</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>save esp list and load order.</source> - <translation type="obsolete">Enregistre la liste d'ESPs et l'ordre de chargement.</translation> + <translation>Raccourci</translation> </message> <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Save the list of active mods and load order. This automatically happens if you close MO or start a program.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Enregistrer la liste des mods actifs et l'ordre de chargement. L'enregistrement est automatique lorsque vous fermez MO ou exécutez un programme.</span></p></body></html></translation> + <location filename="mainwindow.ui" line="695"/> + <source>Plugins</source> + <translation type="unfinished"></translation> </message> <message> - <source>Save</source> - <translation type="obsolete">Enregistrer</translation> + <location filename="mainwindow.ui" line="715"/> + <source>Sort</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="669"/> + <location filename="mainwindow.ui" line="821"/> <source>List of available esp/esm files</source> - <translation type="unfinished">Liste des fichiers ESP/ESM disponibles</translation> + <translation>Liste des fichiers ESP/ESM disponibles</translation> </message> <message> - <location filename="mainwindow.ui" line="672"/> + <location filename="mainwindow.ui" line="824"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This list contains the esps and esms contained in the active mods. These require their own load order. Use drag&amp;drop to modify this load order. Please note that MO will only save the load order for mods that are active/checked.<br />There is a great tool named &quot;BOSS&quot; to automatically sort these files.</span></p></body></html></source> - <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Cette liste contient tous les ESPs et ESMs contenus dans les mods actifs. Ceux-ci requièrent leur propre ordre de chargement. Utilisez le glisser-déposer pour modifier cet ordre. Veuillez noter que MO enregistre l'ordre de chargement seulement pour les mods actif/cochés.<br />Il y a un excellent outil nommé &quot;BOSS&quot; qui classe automatiquement ces fichiers.</span></p></body></html></translation> </message> <message> - <location filename="mainwindow.ui" line="762"/> + <location filename="mainwindow.ui" line="886"/> + <source>Archives</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="916"/> + <source><html><head/><body><p>BSAs are bundles of game assets (textures, scripts, ...). By default, the engine loads these bundles in a separate step from loose files. MO can manage those archives to align their load order with that of loose files:</p><p>If archives are <span style=" font-weight:600;">managed</span>, their load order is specified by the priority of the corresponding mod (left pane), the same as the loose files. You can manually enable any BSA that has no corresponding plugin active.<br/></p><p>If archives are <span style=" font-weight:600;">not managed</span> their load order is specified by the priority of the corresponding plugin (right pane, plugins tab). You can then not manually enable BSAs where the plugin isn't active.</p><p>In either case you can not disable archives if there is a matching plugin, the game will load them no matter what.</p></body></html></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="919"/> + <source><html><head/><body><p>Have MO manage archives (<a href="#"><span style=" text-decoration: underline; color:#0000ff;">read more</span></a>)</p></body></html></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="934"/> <source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="765"/> + <location filename="mainwindow.ui" line="937"/> <source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" with loose files in your data directory over which is loaded. By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored! @@ -1521,81 +1543,71 @@ BSAs checked here are loaded in such a way that your installation order is obeye <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="811"/> - <location filename="mainwindow.ui" line="880"/> + <location filename="mainwindow.ui" line="983"/> + <location filename="mainwindow.ui" line="1042"/> <source>File</source> <translation type="unfinished">Fichier</translation> </message> <message> - <location filename="mainwindow.ui" line="819"/> - <source><html><head/><body><p>Marked Archives (<img src=":/MO/gui/warning_16"/>) are still loaded on Skyrim but the <a href="http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/"><span style=" text-decoration: underline; color:#0000ff;">regular file override</span></a> mechanism will apply: Loose files override BSAs, no matter the mod/plugin priority.</p></body></html></source> + <location filename="mainwindow.ui" line="1459"/> + <source>Copy Log to Clipboard</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="885"/> - <source>Mod</source> - <translation type="unfinished">Mod</translation> + <location filename="mainwindow.ui" line="1462"/> + <source>Ctrl+C</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="830"/> + <location filename="mainwindow.ui" line="992"/> <source>Data</source> <translation type="unfinished">DATA</translation> </message> <message> - <location filename="mainwindow.ui" line="605"/> - <source>Plugins</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="731"/> - <source>Sort</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="741"/> - <source>Archives</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="848"/> + <location filename="mainwindow.ui" line="1010"/> <source>refresh data-directory overview</source> <translation type="unfinished">Actualiser la vue d'ensemble du dossier DATA</translation> </message> <message> - <location filename="mainwindow.ui" line="851"/> + <location filename="mainwindow.ui" line="1013"/> <source>Refresh the overview. This may take a moment.</source> <translation type="unfinished">Actualiser la vue d'ensemble. Ceci peut demander un moment.</translation> </message> <message> - <location filename="mainwindow.ui" line="854"/> - <location filename="mainwindow.cpp" line="3781"/> - <location filename="mainwindow.cpp" line="4604"/> + <location filename="mainwindow.ui" line="1016"/> + <location filename="mainwindow.cpp" line="3749"/> + <location filename="mainwindow.cpp" line="4614"/> <source>Refresh</source> <translation type="unfinished">Actualiser</translation> </message> <message> - <location filename="mainwindow.ui" line="870"/> + <location filename="mainwindow.ui" line="1032"/> <source>This is an overview of your data directory as visible to the game (and tools). </source> <translation type="unfinished">Ceci est une vue d'ensemble du dossier DATA tel qu'il apparaît pour le jeu (et les outils).</translation> </message> <message> - <location filename="mainwindow.ui" line="895"/> - <location filename="mainwindow.ui" line="898"/> + <location filename="mainwindow.ui" line="1047"/> + <source>Mod</source> + <translation type="unfinished">Mod</translation> + </message> + <message> + <location filename="mainwindow.ui" line="1057"/> + <location filename="mainwindow.ui" line="1060"/> <source>Filter the above list so that only conflicts are displayed.</source> <translation type="unfinished">Filtrer la liste ci-dessus pour afficher seulement les conflits.</translation> </message> <message> - <location filename="mainwindow.ui" line="901"/> + <location filename="mainwindow.ui" line="1063"/> <source>Show only conflicts</source> <translation type="unfinished">Afficher seulement les conflits</translation> </message> <message> - <location filename="mainwindow.ui" line="909"/> + <location filename="mainwindow.ui" line="1071"/> <source>Saves</source> <translation type="unfinished">Sauvegardes</translation> </message> <message> - <location filename="mainwindow.ui" line="933"/> + <location filename="mainwindow.ui" line="1095"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1612,160 +1624,155 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Si vous cliquez &quot;Réparer Mods...&quot; dans le menu contextuel, MO tentera d'activer tous les mods, ESPs et ESMs nécessaires pour résoudre le problème. Rien ne sera désactivé!</span></p></body></html></translation> </message> <message> - <location filename="mainwindow.ui" line="947"/> + <location filename="mainwindow.ui" line="1109"/> <source>Downloads</source> <translation type="unfinished">Téléchargements</translation> </message> <message> - <location filename="mainwindow.ui" line="979"/> + <location filename="mainwindow.ui" line="1141"/> <source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source> <translation type="unfinished">Ceci est une liste de mods que vous avez téléchargé de Nexus. Double-cliquez en un pour l'installer.</translation> </message> <message> - <location filename="mainwindow.ui" line="1032"/> - <source>Compact</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="1039"/> + <location filename="mainwindow.ui" line="1194"/> <source>Show Hidden</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1070"/> + <location filename="mainwindow.ui" line="1256"/> <source>Tool Bar</source> <translation type="unfinished">Barre d'outils</translation> </message> <message> - <location filename="mainwindow.ui" line="1112"/> + <location filename="mainwindow.ui" line="1298"/> <source>Install Mod</source> <translation type="unfinished">Installer mod</translation> </message> <message> - <location filename="mainwindow.ui" line="1115"/> + <location filename="mainwindow.ui" line="1301"/> <source>Install &Mod</source> <translation type="unfinished">Installer &mod</translation> </message> <message> - <location filename="mainwindow.ui" line="1118"/> + <location filename="mainwindow.ui" line="1304"/> <source>Install a new mod from an archive</source> <translation type="unfinished">Installer un nouveau mod à partir d'une archive</translation> </message> <message> - <location filename="mainwindow.ui" line="1121"/> + <location filename="mainwindow.ui" line="1307"/> <source>Ctrl+M</source> <translation type="unfinished">Ctrl+M</translation> </message> <message> - <location filename="mainwindow.ui" line="1130"/> + <location filename="mainwindow.ui" line="1316"/> <source>Profiles</source> <translation type="unfinished">Profils</translation> </message> <message> - <location filename="mainwindow.ui" line="1133"/> + <location filename="mainwindow.ui" line="1319"/> <source>&Profiles</source> <translation type="unfinished">&Profils</translation> </message> <message> - <location filename="mainwindow.ui" line="1136"/> + <location filename="mainwindow.ui" line="1322"/> <source>Configure Profiles</source> <translation type="unfinished">Configurer les profils</translation> </message> <message> - <location filename="mainwindow.ui" line="1139"/> + <location filename="mainwindow.ui" line="1325"/> <source>Ctrl+P</source> <translation type="unfinished">Ctrl+P</translation> </message> <message> - <location filename="mainwindow.ui" line="1148"/> + <location filename="mainwindow.ui" line="1334"/> <source>Executables</source> <translation type="unfinished">Programmes</translation> </message> <message> - <location filename="mainwindow.ui" line="1151"/> + <location filename="mainwindow.ui" line="1337"/> <source>&Executables</source> <translation type="unfinished">Programm&es</translation> </message> <message> - <location filename="mainwindow.ui" line="1154"/> + <location filename="mainwindow.ui" line="1340"/> <source>Configure the executables that can be started through Mod Organizer</source> <translation type="unfinished">Configure les programmes pouvant être lancés via Mod Organizer</translation> </message> <message> - <location filename="mainwindow.ui" line="1157"/> + <location filename="mainwindow.ui" line="1343"/> <source>Ctrl+E</source> <translation type="unfinished">Ctrl+E</translation> </message> <message> - <location filename="mainwindow.ui" line="1166"/> - <location filename="mainwindow.ui" line="1172"/> + <location filename="mainwindow.ui" line="1352"/> + <location filename="mainwindow.ui" line="1358"/> <source>Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1169"/> + <location filename="mainwindow.ui" line="1355"/> <source>&Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1175"/> + <location filename="mainwindow.ui" line="1361"/> <source>Ctrl+I</source> <translation type="unfinished">Ctrl+H</translation> </message> <message> - <location filename="mainwindow.ui" line="1184"/> + <location filename="mainwindow.ui" line="1370"/> <source>Settings</source> <translation type="unfinished">Réglages</translation> </message> <message> - <location filename="mainwindow.ui" line="1187"/> + <location filename="mainwindow.ui" line="1373"/> <source>&Settings</source> <translation type="unfinished">Réglage&s</translation> </message> <message> - <location filename="mainwindow.ui" line="1190"/> + <location filename="mainwindow.ui" line="1376"/> <source>Configure settings and workarounds</source> <translation type="unfinished">Configurer les réglages et solutions de rechange</translation> </message> <message> - <location filename="mainwindow.ui" line="1193"/> + <location filename="mainwindow.ui" line="1379"/> <source>Ctrl+S</source> <translation type="unfinished">Ctrl+S</translation> </message> <message> - <location filename="mainwindow.ui" line="1202"/> + <location filename="mainwindow.ui" line="1388"/> <source>Nexus</source> <translation type="unfinished">Nexus</translation> </message> <message> - <location filename="mainwindow.ui" line="1205"/> + <location filename="mainwindow.ui" line="1391"/> <source>Search nexus network for more mods</source> <translation type="unfinished">Effectuer une recherche sur Nexus pour plus de mods</translation> </message> <message> - <location filename="mainwindow.ui" line="1208"/> + <location filename="mainwindow.ui" line="1394"/> <source>Ctrl+N</source> <translation type="unfinished">Ctrl+N</translation> </message> <message> - <location filename="mainwindow.ui" line="1220"/> - <location filename="mainwindow.cpp" line="4545"/> + <location filename="mainwindow.ui" line="1406"/> + <location filename="mainwindow.cpp" line="4555"/> <source>Update</source> - <translation type="unfinished"></translation> + <translation>Mise-à-jour</translation> </message> <message> - <location filename="mainwindow.ui" line="1223"/> + <location filename="mainwindow.ui" line="1409"/> <source>Mod Organizer is up-to-date</source> <translation type="unfinished">Mod Organizer est à jour</translation> </message> <message> - <location filename="mainwindow.ui" line="1235"/> - <location filename="mainwindow.cpp" line="509"/> + <location filename="mainwindow.ui" line="1421"/> + <location filename="mainwindow.cpp" line="561"/> <source>No Problems</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1238"/> + <location filename="mainwindow.ui" line="1424"/> <source>This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them. !Work in progress! @@ -1773,160 +1780,160 @@ Right now this has very limited functionality</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1250"/> - <location filename="mainwindow.ui" line="1253"/> + <location filename="mainwindow.ui" line="1436"/> + <location filename="mainwindow.ui" line="1439"/> <source>Help</source> <translation type="unfinished">Aide</translation> </message> <message> - <location filename="mainwindow.ui" line="1256"/> + <location filename="mainwindow.ui" line="1442"/> <source>Ctrl+H</source> <translation type="unfinished">Ctrl+H</translation> </message> <message> - <location filename="mainwindow.ui" line="1265"/> + <location filename="mainwindow.ui" line="1451"/> <source>Endorse MO</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1268"/> - <location filename="mainwindow.cpp" line="4633"/> + <location filename="mainwindow.ui" line="1454"/> + <location filename="mainwindow.cpp" line="4637"/> <source>Endorse Mod Organizer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="223"/> + <location filename="mainwindow.cpp" line="244"/> <source>Toolbar</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Barre d'outils</translation> </message> <message> - <location filename="mainwindow.cpp" line="224"/> + <location filename="mainwindow.cpp" line="245"/> <source>Desktop</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="225"/> + <location filename="mainwindow.cpp" line="246"/> <source>Start Menu</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="505"/> + <location filename="mainwindow.cpp" line="549"/> <source>Problems</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="506"/> + <location filename="mainwindow.cpp" line="550"/> <source>There are potential problems with your setup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="510"/> + <location filename="mainwindow.cpp" line="562"/> <source>Everything seems to be in order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="568"/> + <location filename="mainwindow.cpp" line="619"/> <source>Help on UI</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="572"/> + <location filename="mainwindow.cpp" line="623"/> <source>Documentation Wiki</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="576"/> + <location filename="mainwindow.cpp" line="627"/> <source>Report Issue</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="580"/> + <location filename="mainwindow.cpp" line="631"/> <source>Tutorials</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="705"/> + <location filename="mainwindow.cpp" line="765"/> <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="619"/> - <source>About</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="620"/> - <source>About Qt</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="717"/> + <location filename="mainwindow.cpp" line="777"/> <source>Name</source> <translation type="unfinished">Nom</translation> </message> <message> - <location filename="mainwindow.cpp" line="718"/> + <location filename="mainwindow.cpp" line="778"/> <source>Please enter a name for the new profile</source> <translation type="unfinished">Veuillez inscrire un nom pour le nouveau profil</translation> </message> <message> - <location filename="mainwindow.cpp" line="726"/> + <location filename="mainwindow.cpp" line="786"/> <source>failed to create profile: %1</source> <translation type="unfinished">impossible de créer le profil: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="769"/> + <location filename="mainwindow.cpp" line="829"/> <source>Show tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="770"/> + <location filename="mainwindow.cpp" line="830"/> <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="801"/> + <location filename="mainwindow.cpp" line="861"/> <source>Downloads in progress</source> <translation type="unfinished">Téléchargements en cours</translation> </message> <message> - <location filename="mainwindow.cpp" line="802"/> + <location filename="mainwindow.cpp" line="862"/> <source>There are still downloads in progress, do you really want to quit?</source> <translation type="unfinished">Il encore des téléchargements en cours, voulez-vous vraiment quitter?</translation> </message> <message> - <location filename="mainwindow.cpp" line="848"/> + <location filename="mainwindow.cpp" line="916"/> <source>failed to read savegame: %1</source> <translation type="unfinished">impossible de lire la sauvegarde: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="972"/> + <location filename="mainwindow.cpp" line="1040"/> <source>Plugin "%1" failed: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1085"/> + <location filename="mainwindow.cpp" line="1042"/> + <source>Plugin "%1" failed</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1211"/> + <source>failed to init plugin %1: %2</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1249"/> <source>Plugin error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1086"/> + <location filename="mainwindow.cpp" line="1250"/> <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="1270"/> + <location filename="mainwindow.cpp" line="1309"/> <source>Failed to start "%1"</source> - <translation type="unfinished"></translation> + <translation type="unfinished">impossible de lancer "%1"</translation> </message> <message> - <location filename="mainwindow.cpp" line="1272"/> + <location filename="mainwindow.cpp" line="1311"/> <source>Waiting</source> <translation type="unfinished">Attente</translation> </message> <message> - <location filename="mainwindow.cpp" line="1272"/> + <location filename="mainwindow.cpp" line="1311"/> <source>Please press OK once you're logged into steam.</source> <translation type="unfinished">Veuillez cliquer OK une fois connecté à steam.</translation> </message> @@ -1935,12 +1942,12 @@ Right now this has very limited functionality</source> <translation type="obsolete">"%1" introuvable</translation> </message> <message> - <location filename="mainwindow.cpp" line="1298"/> + <location filename="mainwindow.cpp" line="1337"/> <source>Start Steam?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1299"/> + <location filename="mainwindow.cpp" line="1338"/> <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> @@ -1955,778 +1962,878 @@ Right now this has very limited functionality</source> <translation type="unfinished">Aucun conflit</translation> </message> <message> - <location filename="mainwindow.cpp" line="1692"/> + <location filename="mainwindow.cpp" line="1706"/> <source><Edit...></source> <translation type="unfinished"><Modifier...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1929"/> + <location filename="mainwindow.cpp" line="1976"/> <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="1936"/> - <source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1991"/> + <location filename="mainwindow.cpp" line="2038"/> <source>Activating Network Proxy</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2122"/> - <location filename="mainwindow.cpp" line="4248"/> + <location filename="mainwindow.cpp" line="2269"/> + <location filename="mainwindow.cpp" line="4258"/> <source>Installation successful</source> <translation type="unfinished">Installation réussie</translation> </message> <message> - <location filename="mainwindow.cpp" line="2133"/> - <location filename="mainwindow.cpp" line="4261"/> + <location filename="mainwindow.cpp" line="2280"/> + <location filename="mainwindow.cpp" line="4270"/> <source>Configure Mod</source> <translation type="unfinished">Configurer mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2134"/> - <location filename="mainwindow.cpp" line="4262"/> + <location filename="mainwindow.cpp" line="2281"/> + <location filename="mainwindow.cpp" line="4271"/> <source>This mod contains ini tweaks. Do you want to configure them now?</source> <translation type="unfinished">Ce mod contient des ajustement pour les fichiers ini. Désirez-vous les configurer maintenant?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2140"/> - <location filename="mainwindow.cpp" line="4268"/> + <location filename="mainwindow.cpp" line="2288"/> + <location filename="mainwindow.cpp" line="4278"/> <source>mod "%1" not found</source> - <translation type="unfinished"></translation> + <translation type="unfinished">"%1" introuvable</translation> </message> <message> - <location filename="mainwindow.cpp" line="2143"/> - <location filename="mainwindow.cpp" line="4274"/> + <location filename="mainwindow.cpp" line="2291"/> + <location filename="mainwindow.cpp" line="4284"/> <source>Installation cancelled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2143"/> - <location filename="mainwindow.cpp" line="4274"/> + <location filename="mainwindow.cpp" line="2291"/> + <location filename="mainwindow.cpp" line="4284"/> <source>The mod was not installed completely.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2292"/> + <location filename="mainwindow.cpp" line="2196"/> <source>Some plugins could not be loaded</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2295"/> + <location filename="mainwindow.cpp" line="2199"/> <source>Too many esps and esms enabled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2298"/> - <location filename="mainwindow.cpp" line="2319"/> + <location filename="mainwindow.cpp" line="2202"/> + <location filename="mainwindow.cpp" line="2223"/> <source>Description missing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2315"/> + <location filename="mainwindow.cpp" line="2211"/> + <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="2219"/> <source>The game doesn't allow more than 255 active plugins (including the official ones) to be loaded. You have to disable some unused plugins or merge some plugins into one. You can find a guide here: <a href="http://wiki.step-project.com/Guide:Merging_Plugins">http://wiki.step-project.com/Guide:Merging_Plugins</a></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2341"/> + <location filename="mainwindow.cpp" line="2245"/> <source>Choose Mod</source> <translation type="unfinished">Choisir mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2342"/> + <location filename="mainwindow.cpp" line="2246"/> <source>Mod Archive</source> <translation type="unfinished">Archive de mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2495"/> + <location filename="mainwindow.cpp" line="2502"/> <source>Start Tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2496"/> + <location filename="mainwindow.cpp" line="2503"/> <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="2651"/> - <location filename="mainwindow.cpp" line="4171"/> + <location filename="mainwindow.cpp" line="2647"/> + <location filename="mainwindow.cpp" line="4179"/> <source>Download started</source> <translation type="unfinished">Téléchargement commencé</translation> </message> <message> - <location filename="mainwindow.cpp" line="2682"/> + <location filename="mainwindow.cpp" line="2708"/> <source>failed to update mod list: %1</source> <translation type="unfinished">impossible de mettre à jour la liste de mods: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2711"/> + <location filename="mainwindow.cpp" line="2738"/> <source>failed to spawn notepad.exe: %1</source> <translation type="unfinished">impossible de lancer notepad.exe: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2752"/> + <location filename="mainwindow.cpp" line="2775"/> <source>failed to open %1</source> <translation type="unfinished">impossible d'ouvrir %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2830"/> + <location filename="mainwindow.cpp" line="2850"/> <source>failed to change origin name: %1</source> <translation type="unfinished">impossible de changer le nom d'origine: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2860"/> - <source>failed to move "%1" from mod "%2" to "%3": %4</source> + <location filename="mainwindow.cpp" line="2929"/> + <source><Checked></source> + <translation type="unfinished"><Cochés></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2930"/> + <source><Unchecked></source> + <translation type="unfinished"><Décochés></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2931"/> + <source><Update></source> + <translation type="unfinished"><Rafraichir></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2934"/> + <source><No category></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2997"/> - <source>Multiple esps activated, please check that they don't conflict.</source> + <location filename="mainwindow.cpp" line="2935"/> + <source><Conflicted></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3345"/> - <location filename="mainwindow.cpp" line="3792"/> - <source>Create Mod...</source> + <location filename="mainwindow.cpp" line="2936"/> + <source><Not Endorsed></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3355"/> - <source>A mod with this name already exists</source> + <location filename="mainwindow.cpp" line="2969"/> + <source>failed to rename mod: %1</source> + <translation type="unfinished">impossible de renommer le mod: %1</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2982"/> + <source>Overwrite?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3613"/> - <source>Continue?</source> + <location filename="mainwindow.cpp" line="2983"/> + <source>This will replace the existing mod "%1". Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3614"/> - <source>The versioning scheme decides which version is considered newer than another. -This function will guess the versioning scheme under the assumption that the installed version is outdated.</source> + <location filename="mainwindow.cpp" line="2986"/> + <source>failed to remove mod "%1"</source> + <translation type="unfinished">Impossible de supprimer %1</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2990"/> + <location filename="mainwindow.cpp" line="4456"/> + <location filename="mainwindow.cpp" line="4480"/> + <source>failed to rename "%1" to "%2"</source> + <translation type="unfinished">Impossible de renommer %1 en %2</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3015"/> + <source>Multiple esps activated, please check that they don't conflict.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3634"/> - <location filename="mainwindow.cpp" line="4516"/> - <source>Sorry</source> + <location filename="mainwindow.cpp" line="3043"/> + <location filename="mainwindow.cpp" line="3662"/> + <location filename="mainwindow.cpp" line="3670"/> + <location filename="mainwindow.cpp" line="3890"/> + <source>Confirm</source> + <translation type="unfinished">Confirmer</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3044"/> + <source>Remove the following mods?<br><ul>%1</ul></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3635"/> - <source>I don't know a versioning scheme where %1 is newer than %2.</source> + <location filename="mainwindow.cpp" line="3055"/> + <source>failed to remove mod: %1</source> + <translation type="unfinished">impossible de renommer le mod: %1</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3090"/> + <location filename="mainwindow.cpp" line="3093"/> + <source>Failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3883"/> - <source><All></source> - <translation type="unfinished"><Tous></translation> + <location filename="mainwindow.cpp" line="3090"/> + <source>Installation file no longer exists</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2909"/> - <source><Checked></source> - <translation type="unfinished"><Cochés></translation> + <location filename="mainwindow.cpp" line="3094"/> + <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="974"/> - <source>Plugin "%1" failed</source> + <location filename="mainwindow.cpp" line="3125"/> + <location filename="mainwindow.cpp" line="3152"/> + <source>You need to be logged in with Nexus to endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1047"/> - <source>failed to init plugin %1: %2</source> + <location filename="mainwindow.cpp" line="4871"/> + <source>Extract BSA</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2307"/> - <source>The following plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:</source> + <location filename="mainwindow.cpp" line="4828"/> + <location filename="mainwindow.cpp" line="4879"/> + <source>failed to read %1: %2</source> + <translation type="unfinished">Échec de lecture %1: %2</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4890"/> + <source>This archive contains invalid hashes. Some files may be broken.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2910"/> - <source><Unchecked></source> - <translation type="unfinished"><Décochés></translation> + <location filename="mainwindow.cpp" line="3298"/> + <source>Nexus ID for this Mod is unknown</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2911"/> - <source><Update></source> - <translation type="unfinished"><Rafraichir></translation> + <location filename="mainwindow.cpp" line="670"/> + <source>About</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2912"/> - <source><No category></source> + <location filename="mainwindow.cpp" line="671"/> + <source>About Qt</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2913"/> - <source><Conflicted></source> + <location filename="mainwindow.cpp" line="1085"/> + <source>Download?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2914"/> - <source><Not Endorsed></source> + <location filename="mainwindow.cpp" line="1086"/> + <source>A download has been started but no installed page plugin recognizes it. +If you download anyway no information (i.e. version) will be associated with the download. +Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2947"/> - <source>failed to rename mod: %1</source> - <translation type="unfinished">impossible de renommer le mod: %1</translation> + <location filename="mainwindow.cpp" line="1127"/> + <source>Browse Mod Page</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2960"/> - <source>Overwrite?</source> + <location filename="mainwindow.cpp" line="1323"/> + <source>Executable "%1" not found</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2961"/> - <source>This will replace the existing mod "%1". Continue?</source> + <location filename="mainwindow.cpp" line="1803"/> + <source>Failed to refresh list of esps: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2964"/> - <source>failed to remove mod "%1"</source> + <location filename="mainwindow.cpp" line="2143"/> + <location filename="mainwindow.cpp" line="2150"/> + <source>Failed to write settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2968"/> - <location filename="mainwindow.cpp" line="4446"/> - <location filename="mainwindow.cpp" line="4470"/> - <source>failed to rename "%1" to "%2"</source> + <location filename="mainwindow.cpp" line="2144"/> + <location filename="mainwindow.cpp" line="2151"/> + <source>An error occured trying to write back MO settings: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3024"/> - <location filename="mainwindow.cpp" line="3687"/> - <location filename="mainwindow.cpp" line="3695"/> - <location filename="mainwindow.cpp" line="3902"/> - <source>Confirm</source> - <translation type="unfinished">Confirmer</translation> + <location filename="mainwindow.cpp" line="2147"/> + <source>File is write protected</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3025"/> - <source>Remove the following mods?<br><ul>%1</ul></source> + <location filename="mainwindow.cpp" line="2148"/> + <source>Invalid file format (probably a bug)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3036"/> - <source>failed to remove mod: %1</source> + <location filename="mainwindow.cpp" line="2149"/> + <source>Unknown error %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3071"/> - <location filename="mainwindow.cpp" line="3074"/> - <source>Failed</source> + <location filename="mainwindow.cpp" line="2880"/> + <source>failed to move "%1" from mod "%2" to "%3": %4</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3071"/> - <source>Installation file no longer exists</source> + <location filename="mainwindow.cpp" line="2932"/> + <source><Managed by MO></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3075"/> - <source>Mods installed with old versions of MO can't be reinstalled in this way.</source> + <location filename="mainwindow.cpp" line="2933"/> + <source><Managed outside MO></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3090"/> - <location filename="mainwindow.cpp" line="3117"/> - <source>You need to be logged in with Nexus to endorse</source> + <location filename="mainwindow.cpp" line="3109"/> + <source>You need to be logged in with Nexus to resume a download</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3249"/> - <location filename="mainwindow.cpp" line="4882"/> - <source>Extract BSA</source> + <location filename="mainwindow.cpp" line="3337"/> + <location filename="mainwindow.cpp" line="3777"/> + <source>Create Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3250"/> - <source>This mod contains at least one BSA. Do you want to unpack it? -(This removes the BSA after completion. If you don't know about BSAs, just select no)</source> + <location filename="mainwindow.cpp" line="3338"/> + <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="3259"/> - <location filename="mainwindow.cpp" line="4839"/> - <location filename="mainwindow.cpp" line="4890"/> - <source>failed to read %1: %2</source> - <translation type="unfinished">Échec de lecture %1: %2</translation> + <location filename="mainwindow.cpp" line="3347"/> + <source>A mod with this name already exists</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3272"/> - <location filename="mainwindow.cpp" line="4901"/> - <source>This archive contains invalid hashes. Some files may be broken.</source> + <location filename="mainwindow.cpp" line="3588"/> + <source>Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3306"/> - <source>Nexus ID for this Mod is unknown</source> + <location filename="mainwindow.cpp" line="3589"/> + <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> - <source>Priority</source> - <translation type="obsolete">Priorité</translation> + <location filename="mainwindow.cpp" line="3609"/> + <location filename="mainwindow.cpp" line="4526"/> + <source>Sorry</source> + <translation type="unfinished"></translation> </message> <message> - <source>Choose Priority</source> - <translation type="obsolete">Choisir priorité</translation> + <location filename="mainwindow.cpp" line="3610"/> + <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="3687"/> + <location filename="mainwindow.cpp" line="3662"/> <source>Really enable all visible mods?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3695"/> + <location filename="mainwindow.cpp" line="3670"/> <source>Really disable all visible mods?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3703"/> + <location filename="mainwindow.cpp" line="3678"/> <source>Choose what to export</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3705"/> + <location filename="mainwindow.cpp" line="3680"/> <source>Everything</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3705"/> + <location filename="mainwindow.cpp" line="3680"/> <source>All installed mods are included in the list</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3706"/> + <location filename="mainwindow.cpp" line="3681"/> <source>Active Mods</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Activer Mods</translation> </message> <message> - <location filename="mainwindow.cpp" line="3706"/> + <location filename="mainwindow.cpp" line="3681"/> <source>Only active (checked) mods from your current profile are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3707"/> + <location filename="mainwindow.cpp" line="3682"/> <source>Visible</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3707"/> + <location filename="mainwindow.cpp" line="3682"/> <source>All mods visible in the mod list are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3750"/> + <location filename="mainwindow.cpp" line="3725"/> <source>export failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3774"/> + <location filename="mainwindow.cpp" line="3742"/> <source>Install Mod...</source> <translation type="unfinished">Installer mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3776"/> + <location filename="mainwindow.cpp" line="3744"/> <source>Enable all visible</source> <translation type="unfinished">Activer tous les mods visibles</translation> </message> <message> - <location filename="mainwindow.cpp" line="3777"/> + <location filename="mainwindow.cpp" line="3745"/> <source>Disable all visible</source> <translation type="unfinished">Désactiver tous les mods visibles</translation> </message> <message> - <location filename="mainwindow.cpp" line="3779"/> + <location filename="mainwindow.cpp" line="3747"/> <source>Check all for update</source> <translation type="unfinished">Vérifier toutes les mises à jour</translation> </message> <message> - <location filename="mainwindow.cpp" line="3783"/> + <location filename="mainwindow.cpp" line="3751"/> <source>Export to csv...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3791"/> + <location filename="mainwindow.cpp" line="3770"/> + <source>All Mods</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3776"/> <source>Sync to Mods...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3795"/> + <location filename="mainwindow.cpp" line="3780"/> <source>Restore Backup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3796"/> + <location filename="mainwindow.cpp" line="3781"/> <source>Remove Backup...</source> <translation type="unfinished"></translation> </message> <message> - <source>Set Category</source> - <translation type="obsolete">Assigner catégorie</translation> + <location filename="mainwindow.cpp" line="3785"/> + <source>Add/Remove Categories</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3808"/> + <location filename="mainwindow.cpp" line="3790"/> + <source>Replace Categories</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3795"/> <source>Primary Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3815"/> + <location filename="mainwindow.cpp" line="3802"/> <source>Change versioning scheme</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3819"/> + <location filename="mainwindow.cpp" line="3806"/> <source>Un-ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3821"/> + <location filename="mainwindow.cpp" line="3808"/> <source>Ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3826"/> + <location filename="mainwindow.cpp" line="3813"/> <source>Rename Mod...</source> <translation type="unfinished">Renommer mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3827"/> + <location filename="mainwindow.cpp" line="3814"/> <source>Remove Mod...</source> <translation type="unfinished">Supprimer mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3828"/> + <location filename="mainwindow.cpp" line="3815"/> <source>Reinstall Mod</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Installer mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="3831"/> + <location filename="mainwindow.cpp" line="3818"/> <source>Un-Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3834"/> - <location filename="mainwindow.cpp" line="3838"/> + <location filename="mainwindow.cpp" line="3821"/> + <location filename="mainwindow.cpp" line="3825"/> <source>Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3835"/> + <location filename="mainwindow.cpp" line="3822"/> <source>Won't endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3841"/> + <location filename="mainwindow.cpp" line="3828"/> <source>Endorsement state unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3848"/> + <location filename="mainwindow.cpp" line="3835"/> <source>Ignore missing data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3851"/> + <location filename="mainwindow.cpp" line="3838"/> <source>Visit on Nexus</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3852"/> + <location filename="mainwindow.cpp" line="3839"/> <source>Open in explorer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3855"/> + <location filename="mainwindow.cpp" line="3843"/> <source>Information...</source> <translation type="unfinished">Information...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3861"/> - <location filename="mainwindow.cpp" line="5086"/> + <location filename="mainwindow.cpp" line="3850"/> + <location filename="mainwindow.cpp" line="5089"/> <source>Exception: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3863"/> - <location filename="mainwindow.cpp" line="5088"/> + <location filename="mainwindow.cpp" line="3852"/> + <location filename="mainwindow.cpp" line="5091"/> <source>Unknown exception</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3885"/> + <location filename="mainwindow.cpp" line="3871"/> + <source><All></source> + <translation type="unfinished"><Tous></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3873"/> <source><Multiple></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3902"/> + <location filename="mainwindow.cpp" line="3890"/> <source>Really delete "%1"?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4013"/> + <location filename="mainwindow.cpp" line="4001"/> <source>Fix Mods...</source> <translation type="unfinished">Réparer mods...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4014"/> + <location filename="mainwindow.cpp" line="4002"/> <source>Delete</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Supprimer</translation> </message> <message> - <location filename="mainwindow.cpp" line="4038"/> - <location filename="mainwindow.cpp" line="4069"/> + <location filename="mainwindow.cpp" line="4027"/> + <location filename="mainwindow.cpp" line="4060"/> <source>failed to remove %1</source> <translation type="unfinished">Impossible de supprimer %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4053"/> - <location filename="mainwindow.cpp" line="4084"/> + <location filename="mainwindow.cpp" line="4044"/> + <location filename="mainwindow.cpp" line="4076"/> <source>failed to create %1</source> <translation type="unfinished">impossible de créer %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4107"/> + <location filename="mainwindow.cpp" line="4100"/> <source>Can't change download directory while downloads are in progress!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4174"/> + <location filename="mainwindow.cpp" line="4182"/> <source>Download failed</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Téléchargement commencé</translation> </message> <message> - <location filename="mainwindow.cpp" line="4323"/> + <location filename="mainwindow.cpp" line="4333"/> <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="4329"/> + <location filename="mainwindow.cpp" line="4339"/> <source>%1 written</source> <translation type="unfinished">%1 écrit</translation> </message> <message> - <location filename="mainwindow.cpp" line="4368"/> + <location filename="mainwindow.cpp" line="4378"/> <source>Select binary</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Choisir un programme</translation> </message> <message> - <location filename="mainwindow.cpp" line="4368"/> + <location filename="mainwindow.cpp" line="4378"/> <source>Binary</source> <translation type="unfinished">Programme</translation> </message> <message> - <location filename="mainwindow.cpp" line="4394"/> + <location filename="mainwindow.cpp" line="4404"/> <source>Enter Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4395"/> + <location filename="mainwindow.cpp" line="4405"/> <source>Please enter a name for the executable</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Veuillez inscrire un nom pour le nouveau profil</translation> </message> <message> - <location filename="mainwindow.cpp" line="4406"/> + <location filename="mainwindow.cpp" line="4416"/> <source>Not an executable</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Ajouter un programme</translation> </message> <message> - <location filename="mainwindow.cpp" line="4406"/> + <location filename="mainwindow.cpp" line="4416"/> <source>This is not a recognized executable.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4431"/> - <location filename="mainwindow.cpp" line="4456"/> + <location filename="mainwindow.cpp" line="4441"/> + <location filename="mainwindow.cpp" line="4466"/> <source>Replace file?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4431"/> + <location filename="mainwindow.cpp" line="4441"/> <source>There already is a hidden version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4434"/> - <location filename="mainwindow.cpp" line="4459"/> + <location filename="mainwindow.cpp" line="4444"/> + <location filename="mainwindow.cpp" line="4469"/> <source>File operation failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4434"/> - <location filename="mainwindow.cpp" line="4459"/> + <location filename="mainwindow.cpp" line="4444"/> + <location filename="mainwindow.cpp" line="4469"/> <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4456"/> + <location filename="mainwindow.cpp" line="4466"/> <source>There already is a visible version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4489"/> + <location filename="mainwindow.cpp" line="4499"/> <source>file not found: %1</source> - <translation type="unfinished">fichier introuvable: %1</translation> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4502"/> + <location filename="mainwindow.cpp" line="4512"/> <source>failed to generate preview for %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4516"/> + <location filename="mainwindow.cpp" line="4526"/> <source>Sorry, can't preview anything. This function currently does not support extracting from bsas.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4547"/> + <location filename="mainwindow.cpp" line="4557"/> <source>Update available</source> <translation type="unfinished">Mise à jour disponible</translation> </message> <message> - <location filename="mainwindow.cpp" line="4584"/> + <location filename="mainwindow.cpp" line="4594"/> <source>Open/Execute</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4585"/> + <location filename="mainwindow.cpp" line="4595"/> <source>Add as Executable</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Ajouter un programme</translation> </message> <message> - <location filename="mainwindow.cpp" line="4589"/> + <location filename="mainwindow.cpp" line="4599"/> <source>Preview</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4595"/> + <location filename="mainwindow.cpp" line="4605"/> <source>Un-Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4597"/> + <location filename="mainwindow.cpp" line="4607"/> <source>Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4603"/> + <location filename="mainwindow.cpp" line="4613"/> <source>Write To File...</source> <translation type="unfinished">Écriture du fichier...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4634"/> + <location filename="mainwindow.cpp" line="4638"/> <source>Do you want to endorse Mod Organizer on %1 now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5047"/> - <source>Remove</source> - <translation type="unfinished">Supprimer</translation> + <location filename="mainwindow.cpp" line="4757"/> + <source>Request to Nexus failed: %1</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5077"/> - <source>Unlock load order</source> + <location filename="mainwindow.cpp" line="4764"/> + <location filename="mainwindow.cpp" line="4782"/> + <source>login successful</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5080"/> - <source>Lock load order</source> + <location filename="mainwindow.cpp" line="4791"/> + <source>login failed: %1. Trying to download anyway</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5149"/> - <source>BOSS working</source> + <location filename="mainwindow.cpp" line="4797"/> + <source>login failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5157"/> - <source>failed to run boss: %1</source> + <location filename="mainwindow.cpp" line="4807"/> + <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="4770"/> - <source>Request to Nexus failed: %1</source> + <location filename="mainwindow.cpp" line="4840"/> + <source>Error</source> + <translation type="unfinished">Erreur</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4840"/> + <source>failed to extract %1 (errorcode %2)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1284"/> - <source>Executable "%1" not found</source> + <location filename="mainwindow.cpp" line="4935"/> + <source>Extract...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1789"/> - <source>Failed to refresh list of esps: %1</source> + <location filename="mainwindow.cpp" line="4997"/> + <source>Edit Categories...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3346"/> - <source>This will move all files from overwrite into a new, regular mod. -Please enter a name:</source> + <location filename="mainwindow.cpp" line="4998"/> + <source>Deselect filter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3798"/> - <source>Add/Remove Categories</source> + <location filename="mainwindow.cpp" line="5049"/> + <source>Remove</source> + <translation>Supprimer</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5060"/> + <source>Enable all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3803"/> - <source>Replace Categories</source> + <location filename="mainwindow.cpp" line="5061"/> + <source>Disable all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4777"/> - <location filename="mainwindow.cpp" line="4794"/> - <source>login successful</source> + <location filename="mainwindow.cpp" line="5080"/> + <source>Unlock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4803"/> - <source>login failed: %1. Trying to download anyway</source> + <location filename="mainwindow.cpp" line="5083"/> + <source>Lock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4809"/> - <source>login failed: %1</source> + <location filename="mainwindow.cpp" line="5212"/> + <source>depends on missing "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4818"/> - <source>login failed: %1. You need to log-in with Nexus to update MO.</source> + <location filename="mainwindow.cpp" line="5232"/> + <source>No profile set</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4851"/> - <source>Error</source> - <translation type="unfinished">Erreur</translation> + <location filename="mainwindow.cpp" line="5280"/> + <source>LOOT working</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4851"/> - <source>failed to extract %1 (errorcode %2)</source> + <location filename="mainwindow.cpp" line="5326"/> + <source>loot failed. Exit code was: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4946"/> - <source>Extract...</source> + <location filename="mainwindow.cpp" line="5333"/> + <source>failed to run loot: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5002"/> - <source>Edit Categories...</source> + <location filename="mainwindow.cpp" line="5336"/> + <source>Errors occured</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5057"/> - <source>Enable all</source> + <location filename="mainwindow.cpp" line="5384"/> + <source>Backup of load order created</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5058"/> - <source>Disable all</source> + <location filename="mainwindow.cpp" line="5394"/> + <source>Choose backup to restore</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5407"/> + <source>No Backups</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5407"/> + <source>There are no backups to restore</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5428"/> + <location filename="mainwindow.cpp" line="5449"/> + <source>Restore failed</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5429"/> + <location filename="mainwindow.cpp" line="5450"/> + <source>Failed to restore the backup. Errorcode: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5440"/> + <source>Backup of modlist created</source> <translation type="unfinished"></translation> </message> </context> @@ -2742,20 +2849,16 @@ Please enter a name:</source> <context> <name>ModInfo</name> <message> - <location filename="modinfo.cpp" line="96"/> - <location filename="modinfo.cpp" line="125"/> + <location filename="modinfo.cpp" line="106"/> + <location filename="modinfo.cpp" line="135"/> <source>invalid index %1</source> <translation>index invalide %1</translation> </message> - <message> - <source>invalid mod id %1</source> - <translation type="obsolete">id mod invalide %1</translation> - </message> </context> <context> <name>ModInfoBackup</name> <message> - <location filename="modinfo.cpp" line="820"/> + <location filename="modinfo.cpp" line="898"/> <source>This is the backup of a mod</source> <translation type="unfinished"></translation> </message> @@ -2783,94 +2886,84 @@ Please enter a name:</source> <translation>Une liste des fichiers texte de ce mod, comme les lisez-moi.</translation> </message> <message> + <location filename="modinfodialog.ui" line="67"/> + <location filename="modinfodialog.ui" line="175"/> + <source>Save</source> + <translation>Enregistrer</translation> + </message> + <message> <location filename="modinfodialog.ui" line="77"/> <source>INI-Files</source> <translation>Fichiers INI</translation> </message> <message> - <location filename="modinfodialog.ui" line="97"/> + <location filename="modinfodialog.ui" line="91"/> + <source>Ini Files</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="104"/> <source>This is a list of .ini files in the mod.</source> <translation>Ceci est une liste des fichiers .ini présents dans le mod.</translation> </message> <message> - <location filename="modinfodialog.ui" line="100"/> + <location filename="modinfodialog.ui" line="107"/> <source>This is a list of .ini files in the mod. These are usually used to configure the behaviour of mods if there are configurable parameters.</source> <translation>Ceci est une liste des fichiers .ini présents dans le mod. Ils sont généralement utilisés pour configurer le comportement du mod lorsqu'il y a des paramètres configurables.</translation> </message> <message> - <location filename="modinfodialog.ui" line="149"/> + <location filename="modinfodialog.ui" line="114"/> + <source>Ini Tweaks</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="130"/> + <source>This is a list of ini tweaks (ini modifications that can be toggled).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="133"/> + <source>This is a list of ini tweaks. Ini Tweaks are (usually small) fragments of ini files that are applied over existing settings in skyrim.ini/skyrimprefs.ini. Each tweak can be toggled individually. You should check the description of the mod wether the tweaks are really optional.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="169"/> <source>Save changes to the file.</source> <translation>Enregistre les changements au fichier.</translation> </message> <message> - <location filename="modinfodialog.ui" line="152"/> + <location filename="modinfodialog.ui" line="172"/> <source>Save changes to the file. This overwrites the original. There is no automatic backup!</source> <translation>Enregistrer les changements au fichier. Ceci écrase l'original. Il n'y a pas de copie de sauvegarde automatique!</translation> </message> <message> - <location filename="modinfodialog.ui" line="67"/> - <location filename="modinfodialog.ui" line="155"/> - <source>Save</source> - <translation>Enregistrer</translation> - </message> - <message> - <location filename="modinfodialog.ui" line="165"/> + <location filename="modinfodialog.ui" line="185"/> <source>Images</source> <translation>Images</translation> </message> <message> - <location filename="modinfodialog.ui" line="220"/> + <location filename="modinfodialog.ui" line="240"/> <source>Images located in the mod.</source> <translation>Images présentes dans le mod.</translation> </message> <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Ceci est la liste de toutes les images (.jpg et .png) présentes dans le dossier du mod, telles captures d'écran et autres. Cliquez-en une pour une vue aggrandie.</span></p></body></html></translation> + <location filename="modinfodialog.ui" line="243"/> + <source>This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="256"/> - <location filename="modinfodialog.ui" line="275"/> + <location filename="modinfodialog.ui" line="276"/> + <location filename="modinfodialog.ui" line="295"/> <source>Optional ESPs</source> <translation>ESPs optionnels</translation> </message> <message> - <location filename="modinfodialog.ui" line="262"/> + <location filename="modinfodialog.ui" line="282"/> <source>List of esps and esms that can not be loaded by the game.</source> <translation>Liste des esps et esms ne pouvant pas être chargés par le jeu.</translation> </message> <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">They usually contain optional functionality, see the readme.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Most mods do not have optional esps, so chances are good you are looking at an empty list.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Liste des esps et esms présents dans le mod mais présentement non disponibles dans le jeu. Ils n'apparaîtront même pas dans la liste des esps de la fenêtre principale.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Ils contiennent habituellement des fonctionnalités optionelles, référez-vous à la documentation du mod.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">La plupart des mods ne contenant pas d'esps optionnels, il est très probable que cette liste soit vide.</span></p></body></html></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="223"/> - <source>This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="265"/> + <location filename="modinfodialog.ui" line="285"/> <source>List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window. They usually contain optional functionality, see the readme. @@ -2878,113 +2971,108 @@ Most mods do not have optional esps, so chances are good you are looking at an e <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="290"/> + <location filename="modinfodialog.ui" line="310"/> <source>Make the selected mod in the lower list unavailable.</source> <translation>Rendre le mod sélectionné dans la liste du bas non-disponible.</translation> </message> <message> - <location filename="modinfodialog.ui" line="293"/> + <location filename="modinfodialog.ui" line="313"/> <source>The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become "invisible" to the game. It can then no longer be activated.</source> <translation>L'ESP sélectionné (dans la liste inférieure) sera poussé dans un sous-dossier du mod et deviendra ainsi "invisible" pour le jeu. Il ne pourra alors plus être activé.</translation> </message> <message> - <location filename="modinfodialog.ui" line="319"/> + <location filename="modinfodialog.ui" line="339"/> <source>Move a file to the data directory.</source> <translation>Déplacer un fichier vers le dossier DATA.</translation> </message> <message> - <location filename="modinfodialog.ui" line="322"/> + <location filename="modinfodialog.ui" line="342"/> <source>This moves a esp to the esp directory so it can be enabled in the main window. Please note that the ESP merely becomes "available", it will not necessarily be loaded! That is configured in the main window of omo.</source> <translation>Ceci déplace un ESP vers le répertoire DATA afin qu'il puisse être activé dans la fenêtre principale. Veuillez noter que l'ESP devient simplement "disponible", il ne sera pas nécessairement chargé. Celà doit être configuré dans la fenêtre principale de MO.</translation> </message> <message> - <location filename="modinfodialog.ui" line="357"/> + <location filename="modinfodialog.ui" line="377"/> <source>ESPs in the data directory and thus visible to the game.</source> <translation>ESPs dans le dossier DATA et donc visibles par le jeu.</translation> </message> <message> - <location filename="modinfodialog.ui" line="360"/> + <location filename="modinfodialog.ui" line="380"/> <source>These are the mod files that are in the (virtual) data directory of your game and will thus be selecteable in the esp list in the main window.</source> <translation>Ce sont les mods qui se trouvent dans le répertoire DATA (virtuel) de votre jeu et qu'il sera donc possible de sélectionner dans la fenêtre principale.</translation> </message> <message> - <location filename="modinfodialog.ui" line="367"/> + <location filename="modinfodialog.ui" line="387"/> <source>Available ESPs</source> <translation>ESPs disponibles</translation> </message> <message> - <location filename="modinfodialog.ui" line="375"/> + <location filename="modinfodialog.ui" line="395"/> <source>Conflicts</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="383"/> + <location filename="modinfodialog.ui" line="403"/> <source>The following conflicted files are provided by this mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="433"/> - <location filename="modinfodialog.ui" line="483"/> + <location filename="modinfodialog.ui" line="453"/> + <location filename="modinfodialog.ui" line="503"/> <source>File</source> <translation type="unfinished">Fichier</translation> </message> <message> - <location filename="modinfodialog.ui" line="438"/> + <location filename="modinfodialog.ui" line="458"/> <source>Overwritten Mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="448"/> + <location filename="modinfodialog.ui" line="468"/> <source>The following conflicted files are provided by other mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="488"/> + <location filename="modinfodialog.ui" line="508"/> <source>Providing Mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="498"/> + <location filename="modinfodialog.ui" line="518"/> <source>Non-Conflicted files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="518"/> + <location filename="modinfodialog.ui" line="538"/> <source>Categories</source> <translation type="unfinished">Catégories</translation> </message> <message> - <location filename="modinfodialog.ui" line="541"/> + <location filename="modinfodialog.ui" line="561"/> <source>Primary Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="558"/> + <location filename="modinfodialog.ui" line="578"/> <source>Nexus Info</source> <translation>Info de Nexus</translation> </message> <message> - <location filename="modinfodialog.ui" line="566"/> + <location filename="modinfodialog.ui" line="586"/> <source>Mod ID</source> <translation>ID du mod</translation> </message> <message> - <location filename="modinfodialog.ui" line="573"/> + <location filename="modinfodialog.ui" line="593"/> <source>Mod ID for this mod on Nexus.</source> <translation>ID de ce mod sur Nexus.</translation> </message> <message> - <location filename="modinfodialog.ui" line="576"/> + <location filename="modinfodialog.ui" line="596"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Mod ID for this mod on Nexus. This is filled in automatically if you downloaded and installed the mod from inside MO. Otherwise you can enter it manually. To find the correct id, find the mod on nexus. The URL will look like this: </span><a href=" http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://skyrim.nexusmods.com/downloads/file.php?id=1334</span></a><a href="http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" font-size:8pt; color:#000000;">. In this example, 1334 is the id you're looking for. Besides: The above is the link to Mod Organizer on the Nexus. Why not go there now and endorse?</span></a></p></body></html></source> - <oldsource><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Mod ID for this mod on Nexus. This is filled in automatically if you downloaded and installed the mod from inside MO. Otherwise you can enter it manually. To find the correct id, find the mod on nexus. The URL will look like this: <a href=" http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" text-decoration: underline; color:#0000ff;">http://www.skyrimnexus.com/downloads/file.php?id=1334</span></a><a href="http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" color:#000000;">. In this example, 1334 is the id you're looking for. Besides: The above is the link to Mod Organizer on the Nexus. Why not go there now and endorse?</span></a></p></body></html></oldsource> <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -2992,7 +3080,7 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">ID de ce mod sur Nexus. Rempli automatiquement si vous téléchargez et installez un mod à partir de MO. Sinon, vous pouvez l'inscrire manuellement. Pour connaître le bon ID, trouvez le mod sur Nexus. L'URL ressemblera à ceci: <a href=" http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" text-decoration: underline; color:#0000ff;">http://www.skyrimnexus.com/downloads/file.php?id=1334</span></a><a href="http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" color:#000000;">. Dans cet example, 1334 est l'ID que vous cherchez. En passant: Ce lien est celui de Mod Organizer sur le Nexus. Pourquoi ne pas le visiter et lui donner votre aval?</span></a></p></body></html></translation> </message> <message> - <location filename="modinfodialog.ui" line="600"/> + <location filename="modinfodialog.ui" line="620"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -3005,27 +3093,27 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Version du mod installée La bulle contient la version courrante disponible sur Nexus. La version installé n'est réglée que si vous installez le mod avec MO.</span></p></body></html></translation> </message> <message> - <location filename="modinfodialog.ui" line="607"/> + <location filename="modinfodialog.ui" line="627"/> <source>Version</source> <translation>Version</translation> </message> <message> - <location filename="modinfodialog.ui" line="637"/> + <location filename="modinfodialog.ui" line="657"/> <source>Refresh</source> <translation type="unfinished">Actualiser</translation> </message> <message> - <location filename="modinfodialog.ui" line="640"/> + <location filename="modinfodialog.ui" line="660"/> <source>Refresh all information from Nexus.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="654"/> + <location filename="modinfodialog.ui" line="674"/> <source>Description</source> <translation>Description</translation> </message> <message> - <location filename="modinfodialog.ui" line="669"/> + <location filename="modinfodialog.ui" line="689"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -3034,60 +3122,27 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <source>about:blank</source> - <translation type="obsolete">à propos:vide</translation> - </message> - <message> - <source>Files</source> - <translation type="obsolete">Fichiers</translation> - </message> - <message> - <source>List of files currently uploaded on nexus. Double click to download.</source> - <translation type="obsolete">Liste des fichiers actuellement présents sur Nexus. Double-cliquer pour télécharger.</translation> - </message> - <message> - <source>Type</source> - <translation type="obsolete">Type</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="1221"/> - <source>Name</source> - <translation type="unfinished">Nom</translation> - </message> - <message> - <source>Size (kB)</source> - <translation type="obsolete">Taille (kB)</translation> - </message> - <message> - <location filename="modinfodialog.ui" line="704"/> + <location filename="modinfodialog.ui" line="724"/> <source>Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="718"/> + <location filename="modinfodialog.ui" line="738"/> <source>Notes</source> <translation type="unfinished"></translation> </message> <message> - <source>Endorsements are an important motivation for authors. Please don't forget to endorse mods you like.</source> - <translation type="obsolete">Votre aval constitue une motivation importante pour les auteurs. Svp, n'oubliez pas de donner votre aval aux mods que vous aimez.</translation> - </message> - <message> - <source>Have you endorsed this yet?</source> - <translation type="obsolete">Avez-vous donné votre aval à ce mod?</translation> - </message> - <message> - <location filename="modinfodialog.ui" line="728"/> + <location filename="modinfodialog.ui" line="748"/> <source>Filetree</source> <translation>Arborescence</translation> </message> <message> - <location filename="modinfodialog.ui" line="737"/> + <location filename="modinfodialog.ui" line="757"/> <source>A directory view of this mod</source> <translation>Une vue du dossier de ce mod</translation> </message> <message> - <location filename="modinfodialog.ui" line="740"/> + <location filename="modinfodialog.ui" line="760"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -3102,263 +3157,258 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Les changements sont immédiatement appliqués sur le disque, alors</span><span style=" font-size:8pt; font-weight:600;"> soyez prudent</span><span style=" font-size:8pt;">.</span></p></body></html></translation> </message> <message> - <location filename="modinfodialog.ui" line="767"/> + <location filename="modinfodialog.ui" line="787"/> <source>Previous</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="774"/> + <location filename="modinfodialog.ui" line="794"/> <source>Next</source> - <translation type="unfinished"></translation> + <translation>Suivant</translation> </message> <message> - <location filename="modinfodialog.ui" line="794"/> + <location filename="modinfodialog.ui" line="814"/> <source>Close</source> <translation>Fermer</translation> </message> <message> - <location filename="modinfodialog.cpp" line="104"/> + <location filename="modinfodialog.cpp" line="165"/> <source>&Delete</source> - <translatorcomment>Again, english accelerator not applicable. French would use S&upprimer for this one.</translatorcomment> <translation>Supprimer</translation> </message> <message> - <location filename="modinfodialog.cpp" line="105"/> + <location filename="modinfodialog.cpp" line="166"/> <source>&Rename</source> <translation>&Renommer</translation> </message> <message> - <location filename="modinfodialog.cpp" line="108"/> + <location filename="modinfodialog.cpp" line="167"/> + <source>&Hide</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="168"/> + <source>&Unhide</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="169"/> <source>&Open</source> <translation>&Ouvrir</translation> </message> <message> - <location filename="modinfodialog.cpp" line="109"/> + <location filename="modinfodialog.cpp" line="170"/> <source>&New Folder</source> <translation>&Nouveau dossier</translation> </message> <message> - <location filename="modinfodialog.cpp" line="405"/> - <location filename="modinfodialog.cpp" line="420"/> + <location filename="modinfodialog.cpp" line="416"/> + <location filename="modinfodialog.cpp" line="431"/> <source>Save changes?</source> <translation type="unfinished">Enregistrer les changements?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="612"/> + <location filename="modinfodialog.cpp" line="416"/> + <location filename="modinfodialog.cpp" line="431"/> + <source>Save changes to "%1"?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="621"/> <source>File Exists</source> <translation>Un fichier du même nom existe</translation> </message> <message> - <location filename="modinfodialog.cpp" line="612"/> + <location filename="modinfodialog.cpp" line="621"/> <source>A file with that name exists, please enter a new one</source> <translation>Un fichier ainsi nommé existe déjà, veuillez entrer un nouveau nom</translation> </message> <message> - <location filename="modinfodialog.cpp" line="629"/> + <location filename="modinfodialog.cpp" line="638"/> <source>failed to move file</source> <translation>impossible de déplacer le fchier</translation> </message> <message> - <location filename="modinfodialog.cpp" line="654"/> + <location filename="modinfodialog.cpp" line="663"/> <source>failed to create directory "optional"</source> <translation>Impossible de créer le dossier "optional"</translation> </message> <message> - <location filename="modinfodialog.cpp" line="692"/> - <location filename="modinfodialog.cpp" line="1198"/> + <location filename="modinfodialog.cpp" line="701"/> + <location filename="modinfodialog.cpp" line="1206"/> <source>Info requested, please wait</source> <translation>Info demandée, veuillez patienter</translation> </message> <message> - <source> -(description incomplete, please visit nexus)</source> - <translation type="obsolete">(description incomplète, veuillez vérifier sur Nexus)</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="762"/> - <source>Current Version: %1</source> - <translation>Version courante: %1</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="766"/> - <source>No update available</source> - <translation>Aucune mise-à-jour disponible</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="746"/> + <location filename="modinfodialog.cpp" line="755"/> <source>Main</source> <translation>Principal</translation> </message> <message> - <location filename="modinfodialog.cpp" line="106"/> - <source>&Hide</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="107"/> - <source>&Unhide</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="405"/> - <location filename="modinfodialog.cpp" line="420"/> - <source>Save changes to "%1"?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="747"/> + <location filename="modinfodialog.cpp" line="756"/> <source>Update</source> <translation>Mise-à-jour</translation> </message> <message> - <location filename="modinfodialog.cpp" line="748"/> + <location filename="modinfodialog.cpp" line="757"/> <source>Optional</source> <translation>Optionnel</translation> </message> <message> - <location filename="modinfodialog.cpp" line="749"/> + <location filename="modinfodialog.cpp" line="758"/> <source>Old</source> <translation>Ancien</translation> </message> <message> - <location filename="modinfodialog.cpp" line="750"/> + <location filename="modinfodialog.cpp" line="759"/> <source>Misc</source> <translation>Divers</translation> </message> <message> - <location filename="modinfodialog.cpp" line="751"/> + <location filename="modinfodialog.cpp" line="760"/> <source>Unknown</source> <translation>Inconnu</translation> </message> <message> - <location filename="modinfodialog.cpp" line="807"/> + <location filename="modinfodialog.cpp" line="771"/> + <source>Current Version: %1</source> + <translation>Version courante: %1</translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="775"/> + <source>No update available</source> + <translation>Aucune mise-à-jour disponible</translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="816"/> <source>(description incomplete, please visit nexus)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1107"/> - <location filename="modinfodialog.cpp" line="1131"/> + <location filename="modinfodialog.cpp" line="831"/> + <source><a href="%1">Visit on Nexus</a></source> + <translation><a href="%1">Visiter sur Nexus</a></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="910"/> + <source>Failed to delete %1</source> + <translation>impossible d'effacer %1</translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="921"/> + <location filename="modinfodialog.cpp" line="926"/> + <source>Confirm</source> + <translation>Confirmer</translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="921"/> + <source>Are sure you want to delete "%1"?</source> + <translation>Voulez-vous vraiment supprimer "%1"?</translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="926"/> + <source>Are sure you want to delete the selected files?</source> + <translation>Voulez-vous vraiment supprimer les fichiers sélectionnés?</translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1000"/> + <location filename="modinfodialog.cpp" line="1006"/> + <source>New Folder</source> + <translation>Nouveau dossier</translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1012"/> + <source>Failed to create "%1"</source> + <translation>Impossible de créer "%1"</translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1116"/> + <location filename="modinfodialog.cpp" line="1140"/> <source>Replace file?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1107"/> + <location filename="modinfodialog.cpp" line="1116"/> <source>There already is a hidden version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1110"/> - <location filename="modinfodialog.cpp" line="1134"/> + <location filename="modinfodialog.cpp" line="1119"/> + <location filename="modinfodialog.cpp" line="1143"/> <source>File operation failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1110"/> - <location filename="modinfodialog.cpp" line="1134"/> + <location filename="modinfodialog.cpp" line="1119"/> + <location filename="modinfodialog.cpp" line="1143"/> <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1121"/> - <location filename="modinfodialog.cpp" line="1144"/> + <location filename="modinfodialog.cpp" line="1130"/> + <location filename="modinfodialog.cpp" line="1153"/> <source>failed to rename %1 to %2</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Impossible de renommer %1 en %2</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1131"/> + <location filename="modinfodialog.cpp" line="1140"/> <source>There already is a visible version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1178"/> + <location filename="modinfodialog.cpp" line="1186"/> <source>Un-Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1180"/> + <location filename="modinfodialog.cpp" line="1188"/> <source>Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1221"/> + <location filename="modinfodialog.cpp" line="1229"/> + <source>Name</source> + <translation>Nom</translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1229"/> <source>Please enter a name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1225"/> - <location filename="modinfodialog.cpp" line="1228"/> + <location filename="modinfodialog.cpp" line="1233"/> + <location filename="modinfodialog.cpp" line="1236"/> <source>Error</source> <translation type="unfinished">Erreur</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1225"/> + <location filename="modinfodialog.cpp" line="1233"/> <source>Invalid name. Must be a valid file name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1228"/> + <location filename="modinfodialog.cpp" line="1236"/> <source>A tweak by that name exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1240"/> + <location filename="modinfodialog.cpp" line="1250"/> <source>Create Tweak</source> <translation type="unfinished"></translation> </message> +</context> +<context> + <name>ModInfoForeign</name> <message> - <source>request failed</source> - <translation type="obsolete">la requête à échouée</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="822"/> - <source><a href="%1">Visit on Nexus</a></source> - <translation><a href="%1">Visiter sur Nexus</a></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="912"/> - <location filename="modinfodialog.cpp" line="917"/> - <source>Confirm</source> - <translation>Confirmer</translation> - </message> - <message> - <source>Download "%1"?</source> - <translation type="obsolete">Télécharger "%1"?</translation> - </message> - <message> - <source>Download started</source> - <translation type="obsolete">Téléchargement commencé</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="901"/> - <source>Failed to delete %1</source> - <translation>impossible d'effacer %1</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="912"/> - <source>Are sure you want to delete "%1"?</source> - <translation>Voulez-vous vraiment supprimer "%1"?</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="917"/> - <source>Are sure you want to delete the selected files?</source> - <translation>Voulez-vous vraiment supprimer les fichiers sélectionnés?</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="991"/> - <location filename="modinfodialog.cpp" line="997"/> - <source>New Folder</source> - <translation>Nouveau dossier</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="1003"/> - <source>Failed to create "%1"</source> - <translation>Impossible de créer "%1"</translation> + <location filename="modinfo.cpp" line="987"/> + <source>This pseudo mod represents content managed outside MO. It isn't modified by MO.</source> + <translation type="unfinished"></translation> </message> </context> <context> <name>ModInfoOverwrite</name> <message> - <location filename="modinfo.cpp" line="866"/> + <location filename="modinfo.cpp" line="943"/> <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source> <translation type="unfinished"></translation> </message> @@ -3366,17 +3416,18 @@ p, li { white-space: pre-wrap; } <context> <name>ModInfoRegular</name> <message> - <location filename="modinfo.cpp" line="393"/> - <source>failed to write %1/meta.ini: %2</source> + <location filename="modinfo.cpp" line="557"/> + <location filename="modinfo.cpp" line="560"/> + <source>failed to write %1/meta.ini: error %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfo.cpp" line="661"/> + <location filename="modinfo.cpp" line="811"/> <source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source> <translation type="unfinished">%1 ne contient ni esp/esm, ni dossier d'éléments de jeu (textures, meshes, interface, ...)</translation> </message> <message> - <location filename="modinfo.cpp" line="665"/> + <location filename="modinfo.cpp" line="815"/> <source>Categories: <br></source> <translation type="unfinished"></translation> </message> @@ -3384,28 +3435,6 @@ p, li { white-space: pre-wrap; } <context> <name>ModList</name> <message> - <source>invalid row-index %1</source> - <translation type="obsolete">index de ligne invalide %1</translation> - </message> - <message> - <source>min</source> - <translation type="obsolete">min</translation> - </message> - <message> - <source>max</source> - <translation type="obsolete">max</translation> - </message> - <message> - <location filename="modlist.cpp" line="308"/> - <source>installed version: "%1", newest version: "%2"</source> - <oldsource>installed version: %1, newest version: %2</oldsource> - <translation type="unfinished">Version installée: %1, dernière version: %2</translation> - </message> - <message> - <source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source> - <translation type="obsolete">%1 ne contient ni esp/esm, ni dossier d'éléments de jeu (textures, meshes, interface, ...)</translation> - </message> - <message> <location filename="modlist.cpp" line="109"/> <source>This entry contains files that have been created inside the virtual data tree (i.e. by the construction kit)</source> <translation type="unfinished"></translation> @@ -3446,123 +3475,129 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="197"/> - <source>invalid</source> + <location filename="modlist.cpp" line="170"/> + <source>Non-MO</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="310"/> - <source>The newest version on Nexus seems to be older than the one you have installed. This could either mean the version you have has been withdrawn (i.e. due to a bug) or the author uses a non-standard versioning scheme and that newest version is actually newer. Either way you may want to "upgrade".</source> + <location filename="modlist.cpp" line="201"/> + <source>invalid</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="318"/> - <source>Categories: <br></source> - <translation type="unfinished"></translation> + <source>installed version: %1, newest version: %2</source> + <translation type="obsolete">Version installée: %1, dernière version: %2</translation> </message> <message> - <location filename="modlist.cpp" line="347"/> - <source>Invalid name</source> + <location filename="modlist.cpp" line="314"/> + <source>installed version: "%1", newest version: "%2"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="832"/> - <source>Mod Name</source> + <location filename="modlist.cpp" line="316"/> + <source>The newest version on Nexus seems to be older than the one you have installed. This could either mean the version you have has been withdrawn (i.e. due to a bug) or the author uses a non-standard versioning scheme and that newest version is actually newer. Either way you may want to "upgrade".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="837"/> - <source>Installation</source> + <location filename="modlist.cpp" line="324"/> + <source>Categories: <br></source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="850"/> - <source>Category of the mod.</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="353"/> + <source>Invalid name</source> + <translation>Nom incorrect</translation> </message> <message> - <location filename="modlist.cpp" line="851"/> - <source>Id of the mod as used on Nexus.</source> + <location filename="modlist.cpp" line="747"/> + <source>drag&drop failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="852"/> - <source>Emblemes to highlight things that might require attention.</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="810"/> + <source>Confirm</source> + <translation>Confirmer</translation> </message> <message> - <location filename="modlist.cpp" line="853"/> - <source>Time this mod was installed</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="810"/> + <source>Are you sure you want to remove "%1"?</source> + <translation>Voulez-vous vraiment supprimer "%1"?</translation> </message> <message> - <source>Name</source> - <translation type="obsolete">Nom</translation> + <location filename="modlist.cpp" line="865"/> + <source>Flags</source> + <translation type="unfinished"></translation> </message> <message> - <source>Names of your mods</source> - <translation type="obsolete">Les noms de vos mods</translation> + <location filename="modlist.cpp" line="866"/> + <source>Mod Name</source> + <translation>Nom du mod</translation> </message> <message> - <location filename="modlist.cpp" line="833"/> + <location filename="modlist.cpp" line="867"/> <source>Version</source> <translation>Version</translation> </message> <message> - <location filename="modlist.cpp" line="847"/> - <source>Version of the mod (if available)</source> - <translation>Version du mod (si disponible)</translation> - </message> - <message> - <location filename="modlist.cpp" line="834"/> + <location filename="modlist.cpp" line="868"/> <source>Priority</source> <translation>Priorité</translation> </message> <message> - <location filename="modlist.cpp" line="717"/> - <source>drag&drop failed: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="831"/> - <source>Flags</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="835"/> + <location filename="modlist.cpp" line="869"/> <source>Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="836"/> + <location filename="modlist.cpp" line="870"/> <source>Nexus ID</source> + <translation type="unfinished">IDs Nexus</translation> + </message> + <message> + <location filename="modlist.cpp" line="871"/> + <source>Installation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="838"/> - <location filename="modlist.cpp" line="854"/> + <location filename="modlist.cpp" line="872"/> + <location filename="modlist.cpp" line="888"/> <source>unknown</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Inconnu</translation> </message> <message> - <location filename="modlist.cpp" line="846"/> + <location filename="modlist.cpp" line="880"/> <source>Name of your mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="848"/> + <location filename="modlist.cpp" line="881"/> + <source>Version of the mod (if available)</source> + <translation>Version du mod (si disponible)</translation> + </message> + <message> + <location filename="modlist.cpp" line="882"/> <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source> <translation>Priorité d'installation de vos mods. Plus elle est ellevée, plus le mod est "important" et écrasera les fichiers des mods de priorité inférieure.</translation> </message> <message> - <location filename="modlist.cpp" line="776"/> - <source>Confirm</source> - <translation>Confirmer</translation> + <location filename="modlist.cpp" line="884"/> + <source>Category of the mod.</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="776"/> - <source>Are you sure you want to remove "%1"?</source> - <translation>Voulez-vous vraiment supprimer "%1"?</translation> + <location filename="modlist.cpp" line="885"/> + <source>Id of the mod as used on Nexus.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modlist.cpp" line="886"/> + <source>Emblemes to highlight things that might require attention.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modlist.cpp" line="887"/> + <source>Time this mod was installed</source> + <translation type="unfinished"></translation> </message> </context> <context> @@ -3573,10 +3608,6 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <source>about:blank</source> - <translation type="obsolete">à propos:vide</translation> - </message> - <message> <location filename="motddialog.ui" line="42"/> <source>OK</source> <translation type="unfinished">OK</translation> @@ -3598,742 +3629,40 @@ p, li { white-space: pre-wrap; } <context> <name>NXMAccessManager</name> <message> - <location filename="nxmaccessmanager.cpp" line="130"/> + <location filename="nxmaccessmanager.cpp" line="144"/> <source>Logging into Nexus</source> <translation type="unfinished"></translation> </message> <message> - <location filename="nxmaccessmanager.cpp" line="145"/> + <location filename="nxmaccessmanager.cpp" line="159"/> <source>timeout</source> <translation type="unfinished"></translation> </message> <message> - <location filename="nxmaccessmanager.cpp" line="185"/> + <location filename="nxmaccessmanager.cpp" line="200"/> <source>Please check your password</source> <translation type="unfinished"></translation> </message> </context> <context> - <name>NXMUrl</name> - <message> - <source>invalid nxm-link: %1</source> - <translation type="obsolete">Lien nxm invalide: %1</translation> - </message> -</context> -<context> - <name>NexusDialog</name> - <message> - <source>Nexus</source> - <translation type="obsolete">Nexus</translation> - </message> - <message> - <source>Mod ID</source> - <translation type="obsolete">ID du mod</translation> - </message> - <message> - <source>new</source> - <translation type="obsolete">Nouveau</translation> - </message> - <message> - <source>login timeout</source> - <translation type="obsolete">Délai de connexion expiré</translation> - </message> - <message> - <source>login error: %1</source> - <translation type="obsolete">Erreur de connexion: %1</translation> - </message> - <message> - <source>login success</source> - <translation type="obsolete">Connexion réussie</translation> - </message> - <message> - <source>login failed, please check your password</source> - <translation type="obsolete">La connexion a échouée, veuillez vérifier votre mot de passe</translation> - </message> - <message> - <source>Download started</source> - <translation type="obsolete">Téléchargement commencé</translation> - </message> - <message> - <source>Please enter the ID</source> - <translation type="obsolete">Veuillez inscrire l'ID</translation> - </message> - <message> - <source>ModID</source> - <translation type="obsolete">ID du Mod</translation> - </message> - <message> - <source>Open by mod id...</source> - <translation type="obsolete">Ouvrir par l'ID du mod...</translation> - </message> -</context> -<context> <name>NexusInterface</name> <message> - <location filename="nexusinterface.cpp" line="218"/> + <location filename="nexusinterface.cpp" line="216"/> <source>Failed to guess mod id for "%1", please pick the correct one</source> <translation type="unfinished"></translation> </message> <message> - <location filename="nexusinterface.cpp" line="455"/> + <location filename="nexusinterface.cpp" line="481"/> <source>empty response</source> <translation type="unfinished"></translation> </message> <message> - <location filename="nexusinterface.cpp" line="483"/> + <location filename="nexusinterface.cpp" line="510"/> <source>invalid response</source> <translation type="unfinished"></translation> </message> </context> <context> - <name>OMOWindow</name> - <message> - <source>Profile</source> - <translation type="obsolete">Profil</translation> - </message> - <message> - <source>Pick a module collection</source> - <translation type="obsolete">Choisissez un profil</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Create profiles here. Each profile contains its own list of active mods and esps. This way you can quickly switch between setups for different play throughs.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Please note that right now your esp load order is not kept seperate for different profiles.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Créez les profils ici. Chaque profil contient sa propre liste de mods et d'ESPs activés. Vous pouvez ainsi basculer rapidement entre les configurations pour différentes parties.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Veuillez noter que pour l'instant, l'ordre de chargement des ESPs est commun à tous les profils.</span></p></body></html></translation> - </message> - <message> - <source>Refresh list</source> - <translation type="obsolete">Actualiser la liste</translation> - </message> - <message> - <source>Refresh list. This is usually not necessary unless you modified data outside the program.</source> - <translation type="obsolete">Actualiser la liste. Normalement inutile à moins que vous n'ayez modifié des données à l'extérieur du programme.</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Segoe UI'; font-size:9pt;">List of available mods.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Segoe UI'; font-size:9pt;">Liste des mods disponibles.</span></p></body></html></translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag&amp;drop mods to change their &quot;installation&quot; orders.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Ceci est une liste de tous les mods installés. Utilisez les cases à cocher pour activer ou désactiver les mods et le glisser-déposer pour changer leur ordre d'&quot;installation&quot;.</span></p></body></html></translation> - </message> - <message> - <source>Filter</source> - <translation type="obsolete">Flitre</translation> - </message> - <message> - <source>Select a filter to only display mods with the specified category.</source> - <translation type="obsolete">Choisir un filtre pour afficher seulement les mods correspondants.</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Select a filter to only display mods with the specified category. You can set the category from the context menu on the mods.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Sélectionnez un filtre pour afficher seulement les mods correspondants. Vous pouvez assigner les catégories à partir du menu contextuel du mod.</span></p></body></html></translation> - </message> - <message> - <source>Start</source> - <translation type="obsolete">Lancement</translation> - </message> - <message> - <source>Pick a program to run.</source> - <translation type="obsolete">Choisissez un programme à lancer.</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Choose the program to run. Once you start using ModOrganizer, you should always run your game and tools from here or through shortcuts created here, otherwise mods installed through MO will not be visible.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">You can add new Tools to this list, but I can't promise tools I haven't tested will work.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Choisissez le programme à exécuter. Une fois que vous utilisez Mod Organizer, vous devriez exécuter votre jeu et tous les outils reliés à partir d'ici ou via un raccourci créé par MO, sinon les mods installés par MO risquent de ne pas être visibles.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Vous pouvez ajouter d'autres outils à la liste, mais je ne peut garantir que les outils que je n'ai pas testé fonctionneront.</span></p></body></html></translation> - </message> - <message> - <source>Run program</source> - <translation type="obsolete">Lancer le programme</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Run the selected program with ModOrganizer enabled.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Exécuter le programme sélectionné avec ModOrganizer actif.</span></p></body></html></translation> - </message> - <message> - <source>Run</source> - <translation type="obsolete">Lancer</translation> - </message> - <message> - <source>Create a shortcut in your start menu to the specified program</source> - <translation type="obsolete">Crée un raccourci dans le menu Démarrer pour le programme spécifié</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This creates a start menu shortcut that directly starts the selected program with the MO active.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Crée un raccourci dans le menu Démarrer qui lance directement le programme sélectionné avec MO actif.</span></p></body></html></translation> - </message> - <message> - <source>Menu Shortcut</source> - <translation type="obsolete">Raccourci menu</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">create a desktop shortcut for the selected program</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">créer un raccourci sur le bureau pour le programme sélectionné.</span></p></body></html></translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This creates a desktop shortcut that directly starts the selected program with the MO active.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Crée un raccourci sur le bureau qui lance directement le programme sélectionné avec MO actif.</span></p></body></html></translation> - </message> - <message> - <source>Desktop Shortcut</source> - <translation type="obsolete">Raccourci bureau</translation> - </message> - <message> - <source>ESPs</source> - <translation type="obsolete">ESPs</translation> - </message> - <message> - <source>save esp list and load order.</source> - <translation type="obsolete">Enregistre la liste d'ESPs et l'ordre de chargement.</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Save the list of active mods and load order. This automatically happens if you close MO or start a program.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Enregistrer la liste des mods actifs et l'ordre de chargement. L'enregistrement est automatique lorsque vous fermez MO ou exécutez un programme.</span></p></body></html></translation> - </message> - <message> - <source>Save</source> - <translation type="obsolete">Enregistrer</translation> - </message> - <message> - <source>List of available esp/esm files</source> - <translation type="obsolete">Liste des fichiers ESP/ESM disponibles</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This list contains the esps and esms contained in the active mods. These require their own load order. Use drag&amp;drop to modify this load order. Please note that MO will only save the load order for mods that are active/checked.<br />There is a great tool named &quot;BOSS&quot; to automatically sort these files.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Cette liste contient tous les ESPs et ESMs contenus dans les mods actifs. Ceux-ci requièrent leur propre ordre de chargement. Utilisez le glisser-déposer pour modifier cet ordre. Veuillez noter que MO enregistre l'ordre de chargement seulement pour les mods actif/cochés.<br />Il y a un excellent outil nommé &quot;BOSS&quot; qui classe automatiquement ces fichiers.</span></p></body></html></translation> - </message> - <message> - <source>Data</source> - <translation type="obsolete">DATA</translation> - </message> - <message> - <source>refresh data-directory overview</source> - <translation type="obsolete">Actualiser la vue d'ensemble du dossier DATA</translation> - </message> - <message> - <source>Refresh the overview. This may take a moment.</source> - <translation type="obsolete">Actualiser la vue d'ensemble. Ceci peut demander un moment.</translation> - </message> - <message> - <source>Refresh</source> - <translation type="obsolete">Actualiser</translation> - </message> - <message> - <source>This is an overview of your data directory as visible to the game (and tools). </source> - <translation type="obsolete">Ceci est une vue d'ensemble du dossier DATA tel qu'il apparaît pour le jeu (et les outils).</translation> - </message> - <message> - <source>File</source> - <translation type="obsolete">Fichier</translation> - </message> - <message> - <source>Categories</source> - <translation type="obsolete">Catégories</translation> - </message> - <message> - <source>Mod</source> - <translation type="obsolete">Mod</translation> - </message> - <message> - <source>Filter the above list so that only conflicts are displayed.</source> - <translation type="obsolete">Filtrer la liste ci-dessus pour afficher seulement les conflits.</translation> - </message> - <message> - <source>Show only conflicts</source> - <translation type="obsolete">Afficher seulement les conflits</translation> - </message> - <message> - <source>Saves</source> - <translation type="obsolete">Sauvegardes</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a list of all savegames for this game. Hover over a list entry to get detailed information about the save including a list of esps/esms that were used at the time this save was created but aren't active now.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you click &quot;Fix Mods...&quot; in the context menu, MO will try to activate all mods and esps to fix those missing esps. It will not disable anything!</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Ceci est une liste de toutes les parties sauvegardées pour ce jeu. Survolez une entrée de la liste pour obtenir des informations détaillées sur la sauvegarde, incluant une liste de tous les ESPs/EMSs utilisés lors de la sauvegarde mais actuellement désactivés ou absents.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Si vous cliquez &quot;Réparer Mods...&quot; dans le menu contextuel, MO tentera d'activer tous les mods, ESPs et ESMs nécessaires pour résoudre le problème. Rien ne sera désactivé!</span></p></body></html></translation> - </message> - <message> - <source>Downloads</source> - <translation type="obsolete">Téléchargements</translation> - </message> - <message> - <source>Downloaded mods</source> - <translation type="obsolete">Mods téléchargés</translation> - </message> - <message> - <source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source> - <translation type="obsolete">Ceci est une liste de mods que vous avez téléchargé de Nexus. Double-cliquez en un pour l'installer.</translation> - </message> - <message> - <source>Tool Bar</source> - <translation type="obsolete">Barre d'outils</translation> - </message> - <message> - <source>Install Mod</source> - <translation type="obsolete">Installer mod</translation> - </message> - <message> - <source>Install &Mod</source> - <translation type="obsolete">Installer &mod</translation> - </message> - <message> - <source>Install a new mod from an archive</source> - <translation type="obsolete">Installer un nouveau mod à partir d'une archive</translation> - </message> - <message> - <source>Ctrl+M</source> - <translation type="obsolete">Ctrl+M</translation> - </message> - <message> - <source>Help</source> - <translation type="obsolete">Aide</translation> - </message> - <message> - <source>&Help</source> - <translatorcomment>No idea for this accelerator.</translatorcomment> - <translation type="obsolete">Aide</translation> - </message> - <message> - <source>Provides help to almost elements of the UI</source> - <translation type="obsolete">Fournis de l'aide sur la plupart des éléments de l'interface</translation> - </message> - <message> - <source>Ctrl+H</source> - <translation type="obsolete">Ctrl+H</translation> - </message> - <message> - <source>Profiles</source> - <translation type="obsolete">Profils</translation> - </message> - <message> - <source>&Profiles</source> - <translation type="obsolete">&Profils</translation> - </message> - <message> - <source>Configure Profiles</source> - <translation type="obsolete">Configurer les profils</translation> - </message> - <message> - <source>Ctrl+P</source> - <translation type="obsolete">Ctrl+P</translation> - </message> - <message> - <source>Executables</source> - <translation type="obsolete">Programmes</translation> - </message> - <message> - <source>&Executables</source> - <translation type="obsolete">Programm&es</translation> - </message> - <message> - <source>Configure the executables that can be started through Mod Organizer</source> - <translation type="obsolete">Configure les programmes pouvant être lancés via Mod Organizer</translation> - </message> - <message> - <source>Ctrl+E</source> - <translation type="obsolete">Ctrl+E</translation> - </message> - <message> - <source>Edit Ini</source> - <translation type="obsolete">Modifier Ini</translation> - </message> - <message> - <source>Edit &Ini</source> - <translation type="obsolete">Modifier &Ini</translation> - </message> - <message> - <source>Edit the ini file of the current profile</source> - <translation type="obsolete">Modifier les fichiers inis du profil actif</translation> - </message> - <message> - <source>Ctrl+I</source> - <translation type="obsolete">Ctrl+H</translation> - </message> - <message> - <source>Settings</source> - <translation type="obsolete">Réglages</translation> - </message> - <message> - <source>&Settings</source> - <translation type="obsolete">Réglage&s</translation> - </message> - <message> - <source>Configure settings and workarounds</source> - <translation type="obsolete">Configurer les réglages et solutions de rechange</translation> - </message> - <message> - <source>Ctrl+S</source> - <translation type="obsolete">Ctrl+S</translation> - </message> - <message> - <source>Nexus</source> - <translation type="obsolete">Nexus</translation> - </message> - <message> - <source>Search nexus network for more mods</source> - <translation type="obsolete">Effectuer une recherche sur Nexus pour plus de mods</translation> - </message> - <message> - <source>Ctrl+N</source> - <translation type="obsolete">Ctrl+N</translation> - </message> - <message> - <source>Update</source> - <translation type="obsolete">Mise à jour</translation> - </message> - <message> - <source>Mod Organizer is up-to-date</source> - <translation type="obsolete">Mod Organizer est à jour</translation> - </message> - <message> - <source>failed to save load order: %1</source> - <translation type="obsolete">impossible d'enregistrer l'ordre de chargement: %1</translation> - </message> - <message> - <source>Name</source> - <translation type="obsolete">Nom</translation> - </message> - <message> - <source>Please enter a name for the new profile</source> - <translation type="obsolete">Veuillez inscrire un nom pour le nouveau profil</translation> - </message> - <message> - <source>failed to create profile: %1</source> - <translation type="obsolete">impossible de créer le profil: %1</translation> - </message> - <message> - <source>Downloads in progress</source> - <translation type="obsolete">Téléchargements en cours</translation> - </message> - <message> - <source>There are still downloads in progress, do you really want to quit?</source> - <translation type="obsolete">Il encore des téléchargements en cours, voulez-vous vraiment quitter?</translation> - </message> - <message> - <source>init failed</source> - <translation type="obsolete">échec de l'initialisation</translation> - </message> - <message> - <source>failed to read savegame: %1</source> - <translation type="obsolete">impossible de lire la sauvegarde: %1</translation> - </message> - <message> - <source><table cellspacing="5"><tr><td>Save Number</td><td>%1</td></tr><tr><td>Character</td><td>%2</td></tr><tr><td>Level</td><td>%3</td></tr><tr><td>Location</td><td>%4</td></tr><tr><td>Date</td><td>%5</td></tr><tr><td>Screenshot</td><td>%6</td></tr><tr><td>Missing ESPs</td><td><h5>%7</h5></td></tr></table></source> - <translation type="obsolete"><table cellspacing="5"><tr><td>Partie</td><td>%1</td></tr><tr><td>Personnage</td><td>%2</td></tr><tr><td>Niveau</td><td>%3</td></tr><tr><td>Lieu</td><td>%4</td></tr><tr><td>Date</td><td>%5</td></tr><tr><td>Capture écran</td><td>%6</td></tr><tr><td>ESPs manquants</td><td><h5>%7</h5></td></tr></table></translation> - </message> - <message> - <source>Failed to start steam</source> - <translation type="obsolete">impossible de lancer steam</translation> - </message> - <message> - <source>Waiting</source> - <translation type="obsolete">Attente</translation> - </message> - <message> - <source>Please press OK once you're logged into steam.</source> - <translation type="obsolete">Veuillez cliquer OK une fois connecté à steam.</translation> - </message> - <message> - <source>"%1" not found</source> - <translation type="obsolete">"%1" introuvable</translation> - </message> - <message> - <source>Start steam?</source> - <translation type="obsolete">Lancer steam?</translation> - </message> - <message> - <source>Steam is required to be running already to correctly start Mod Organizer. Should MO try to start steam now?</source> - <translation type="obsolete">Steam doit déjà être en fonction pour lancer correctement Mod Organizer. MO doit-il lancer steam maintenant?</translation> - </message> - <message> - <source>Never</source> - <translation type="obsolete">Jamais</translation> - </message> - <message> - <source>Also in: </source> - <translation type="obsolete">Aussi dans: </translation> - </message> - <message> - <source>No conflict</source> - <translation type="obsolete">Aucun conflit</translation> - </message> - <message> - <source><Edit...></source> - <translation type="obsolete"><Modifier...></translation> - </message> - <message> - <source>Choose Mod</source> - <translation type="obsolete">Choisir mod</translation> - </message> - <message> - <source>Mod Archive</source> - <translation type="obsolete">Archive de mod</translation> - </message> - <message> - <source>Installation successful</source> - <translation type="obsolete">Installation réussie</translation> - </message> - <message> - <source>Configure Mod</source> - <translation type="obsolete">Configurer mod</translation> - </message> - <message> - <source>This mod contains ini tweaks. Do you want to configure them now?</source> - <translation type="obsolete">Ce mod contient des ajustement pour les fichiers ini. Désirez-vous les configurer maintenant?</translation> - </message> - <message> - <source>failed to refresh directory structure</source> - <translation type="obsolete">impossible d'actualiser l'arborescence</translation> - </message> - <message> - <source>Download started</source> - <translation type="obsolete">Téléchargement commencé</translation> - </message> - <message> - <source>failed to update mod list: %1</source> - <translation type="obsolete">impossible de mettre à jour la liste de mods: %1</translation> - </message> - <message> - <source>failed to spawn notepad.exe: %1</source> - <translation type="obsolete">impossible de lancer notepad.exe: %1</translation> - </message> - <message> - <source>Ini files are local to the currently selected profile.</source> - <translation type="obsolete">Les fichiers ini sont spécifiques au profil actif.</translation> - </message> - <message> - <source>failed to open %1</source> - <translation type="obsolete">impossible d'ouvrir %1</translation> - </message> - <message> - <source>Name not valid</source> - <translation type="obsolete">Nom invalide</translation> - </message> - <message> - <source>failed to change origin name: %1</source> - <translation type="obsolete">impossible de changer le nom d'origine: %1</translation> - </message> - <message> - <source><All></source> - <translation type="obsolete"><Tous></translation> - </message> - <message> - <source><Checked></source> - <translation type="obsolete"><Cochés></translation> - </message> - <message> - <source><Unchecked></source> - <translation type="obsolete"><Décochés></translation> - </message> - <message> - <source><Update></source> - <translation type="obsolete"><Rafraichir></translation> - </message> - <message> - <source>New name</source> - <translation type="obsolete">Nouveau nom</translation> - </message> - <message> - <source>A mod with that name exists already</source> - <translation type="obsolete">Un mod ainsi nommé existe déja</translation> - </message> - <message> - <source>failed to rename mod: %1</source> - <translation type="obsolete">impossible de renommer le mod: %1</translation> - </message> - <message> - <source>Priority</source> - <translation type="obsolete">Priorité</translation> - </message> - <message> - <source>Choose Priority</source> - <translation type="obsolete">Choisir priorité</translation> - </message> - <message> - <source>Install Mod...</source> - <translation type="obsolete">Installer mod...</translation> - </message> - <message> - <source>Enable all visible</source> - <translation type="obsolete">Activer tous les mods visibles</translation> - </message> - <message> - <source>Disable all visible</source> - <translation type="obsolete">Désactiver tous les mods visibles</translation> - </message> - <message> - <source>Check all for update</source> - <translation type="obsolete">Vérifier toutes les mises à jour</translation> - </message> - <message> - <source>Set Priority</source> - <translation type="obsolete">Assigner priorité</translation> - </message> - <message> - <source>Highest</source> - <translation type="obsolete">La plus haute</translation> - </message> - <message> - <source>Manually...</source> - <translation type="obsolete">Manuellement...</translation> - </message> - <message> - <source>Lowest</source> - <translation type="obsolete">La plus basse</translation> - </message> - <message> - <source>Set Category</source> - <translation type="obsolete">Assigner catégorie</translation> - </message> - <message> - <source>Rename Mod...</source> - <translation type="obsolete">Renommer mod...</translation> - </message> - <message> - <source>Remove Mod...</source> - <translation type="obsolete">Supprimer mod...</translation> - </message> - <message> - <source>Information...</source> - <translation type="obsolete">Information...</translation> - </message> - <message> - <source>Fix Mods...</source> - <translation type="obsolete">Réparer mods...</translation> - </message> - <message> - <source>failed to remove %1</source> - <translation type="obsolete">Impossible de supprimer %1</translation> - </message> - <message> - <source>failed to create %1</source> - <translation type="obsolete">impossible de créer %1</translation> - </message> - <message> - <source>Error</source> - <translation type="obsolete">Erreur</translation> - </message> - <message> - <source>failed to open archive: %1</source> - <translation type="obsolete">impossible d'ouvrir l'archive: %1</translation> - </message> - <message> - <source>failed to write to file %1</source> - <translation type="obsolete">impossible d'écrire dans le fichier %1</translation> - </message> - <message> - <source>%1 written</source> - <translation type="obsolete">%1 écrit</translation> - </message> - <message> - <source>Update available</source> - <translation type="obsolete">Mise à jour disponible</translation> - </message> - <message> - <source>Write To File...</source> - <translation type="obsolete">Écriture du fichier...</translation> - </message> -</context> -<context> <name>OverwriteInfoDialog</name> <message> <location filename="overwriteinfodialog.ui" line="14"/> @@ -4368,7 +3697,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="overwriteinfodialog.cpp" line="136"/> <source>Failed to delete "%1"</source> - <translation type="unfinished"></translation> + <translation type="unfinished">impossible d'effacer %1</translation> </message> <message> <location filename="overwriteinfodialog.cpp" line="147"/> @@ -4401,135 +3730,116 @@ p, li { white-space: pre-wrap; } <context> <name>PluginList</name> <message> - <location filename="pluginlist.cpp" line="111"/> + <location filename="pluginlist.cpp" line="103"/> + <source>Name</source> + <translation>Nom</translation> + </message> + <message> + <location filename="pluginlist.cpp" line="104"/> + <source>Priority</source> + <translation>Priorité</translation> + </message> + <message> + <location filename="pluginlist.cpp" line="105"/> <source>Mod Index</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="112"/> + <location filename="pluginlist.cpp" line="106"/> <source>Flags</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="113"/> - <location filename="pluginlist.cpp" line="125"/> + <location filename="pluginlist.cpp" line="107"/> + <location filename="pluginlist.cpp" line="119"/> <source>unknown</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Inconnu</translation> </message> <message> - <location filename="pluginlist.cpp" line="121"/> + <location filename="pluginlist.cpp" line="115"/> <source>Name of your mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="122"/> + <location filename="pluginlist.cpp" line="116"/> <source>Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="124"/> + <location filename="pluginlist.cpp" line="118"/> <source>The modindex determins the formids of objects originating from this mods.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="165"/> + <location filename="pluginlist.cpp" line="159"/> <source>failed to update esp info for file %1 (source id: %2), error: %3</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="233"/> + <location filename="pluginlist.cpp" line="227"/> <source>esp not found: %1</source> <translation>ESP introuvable: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="240"/> - <location filename="pluginlist.cpp" line="252"/> + <location filename="pluginlist.cpp" line="234"/> + <location filename="pluginlist.cpp" line="246"/> <source>Confirm</source> - <translation type="unfinished">Confirmer</translation> + <translation>Confirmer</translation> </message> <message> - <location filename="pluginlist.cpp" line="240"/> + <location filename="pluginlist.cpp" line="234"/> <source>Really enable all plugins?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="252"/> + <location filename="pluginlist.cpp" line="246"/> <source>Really disable all plugins?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="380"/> + <location filename="pluginlist.cpp" line="397"/> <source>The file containing locked plugin indices is broken</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="418"/> - <source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source> + <location filename="pluginlist.cpp" line="804"/> + <source><b>Origin</b>: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="644"/> - <source>BOSS dll incompatible</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="pluginlist.cpp" line="987"/> - <source>Missing Masters</source> - <translation type="unfinished"></translation> + <location filename="pluginlist.cpp" line="806"/> + <source>Author</source> + <translation type="unfinished">Auteur</translation> </message> <message> - <location filename="pluginlist.cpp" line="993"/> - <source>Enabled Masters</source> - <translation type="unfinished"></translation> + <location filename="pluginlist.cpp" line="809"/> + <source>Description</source> + <translation type="unfinished">Description</translation> </message> <message> - <location filename="pluginlist.cpp" line="1134"/> - <source>failed to restore load order for %1</source> + <location filename="pluginlist.cpp" line="438"/> + <source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source> <translation type="unfinished"></translation> </message> <message> - <source>min</source> - <translation type="obsolete">min</translation> - </message> - <message> - <source>max</source> - <translation type="obsolete">max</translation> - </message> - <message> - <location filename="pluginlist.cpp" line="983"/> + <location filename="pluginlist.cpp" line="802"/> <source>This plugin can't be disabled (enforced by the game)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="985"/> - <source>Origin: %1</source> + <location filename="pluginlist.cpp" line="812"/> + <source>Missing Masters</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="109"/> - <source>Name</source> - <translation>Nom</translation> - </message> - <message> - <source>Names of your mods</source> - <translation type="obsolete">Les noms de vos mods</translation> - </message> - <message> - <location filename="pluginlist.cpp" line="110"/> - <source>Priority</source> - <translation>Priorité</translation> - </message> - <message> - <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source> - <translation type="obsolete">Priorité d'installation de votre mod. Plus elle est haute, plus le mod est "important" et écrasera ainsi les fichiers des mods de priorité inférieure.</translation> - </message> - <message> - <source>ModIndex</source> - <translation type="obsolete">Index du mod</translation> + <location filename="pluginlist.cpp" line="819"/> + <source>Enabled Masters</source> + <translation type="unfinished"></translation> </message> <message> - <source>This index determines the id of items, spells, ... introduced by the mod. Their id will be "xxyyyyyy" where "xx" is this index which "yyyyyy" is determined by the mod itself.</source> - <translation type="obsolete">Cet index détermine l'ID des items, sorts, ... introduits par le mod. Leur ID sera "xxyyyyyy", où "xx" est cet index et "yyyyyy" est déterminé par le mod lui-même.</translation> + <location filename="pluginlist.cpp" line="960"/> + <source>failed to restore load order for %1</source> + <translation type="unfinished"></translation> </message> </context> <context> @@ -4559,17 +3869,12 @@ p, li { white-space: pre-wrap; } p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html></source> - <oldsource><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><br /></p></body></html></oldsource> <translation type="unfinished"></translation> </message> <message> <location filename="problemsdialog.ui" line="75"/> <source>Close</source> - <translation type="unfinished">Fermer</translation> + <translation>Fermer</translation> </message> <message> <location filename="problemsdialog.cpp" line="44"/> @@ -4586,10 +3891,6 @@ p, li { white-space: pre-wrap; } <context> <name>Profile</name> <message> - <source>failed to apply ini tweaks</source> - <translation type="obsolete">impossible d'appliquer les ajustements aux fichiers ini</translation> - </message> - <message> <location filename="profile.cpp" line="59"/> <source>invalid profile name %1</source> <translation type="unfinished"></translation> @@ -4600,65 +3901,70 @@ p, li { white-space: pre-wrap; } <translation type="unfinished">impossible de créer %1</translation> </message> <message> - <location filename="profile.cpp" line="182"/> + <location filename="profile.cpp" line="184"/> <source>failed to write mod list: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished">impossible de mettre à jour la liste de mods: %1</translation> </message> <message> - <location filename="profile.cpp" line="193"/> + <location filename="profile.cpp" line="195"/> <source>failed to update tweaked ini file, wrong settings may be used: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="223"/> + <location filename="profile.cpp" line="226"/> <source>failed to create tweaked ini: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="371"/> + <location filename="profile.cpp" line="236"/> + <source>"%1" is missing or inaccessible</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profile.cpp" line="281"/> + <location filename="profile.cpp" line="313"/> + <location filename="profile.cpp" line="415"/> + <location filename="profile.cpp" line="432"/> + <location filename="profile.cpp" line="442"/> + <source>invalid index %1</source> + <translation>index invalide %1</translation> + </message> + <message> + <location filename="profile.cpp" line="396"/> <source>Overwrite directory couldn't be parsed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="380"/> + <location filename="profile.cpp" line="405"/> <source>invalid priority %1</source> <translation>priorité invalide %1</translation> </message> <message> - <location filename="profile.cpp" line="568"/> + <location filename="profile.cpp" line="592"/> <source>failed to parse ini file (%1)</source> - <translation type="unfinished"></translation> + <translation>impossible de traiter le fichier ini (%1)</translation> </message> <message> - <location filename="profile.cpp" line="596"/> + <location filename="profile.cpp" line="620"/> <source>failed to parse ini file (%1): %2</source> - <translation type="unfinished"></translation> + <translation type="unfinished">impossible d'analyser le profil %1: %2</translation> </message> <message> - <location filename="profile.cpp" line="620"/> - <location filename="profile.cpp" line="657"/> + <location filename="profile.cpp" line="644"/> + <location filename="profile.cpp" line="681"/> <source>failed to modify "%1"</source> - <translation type="unfinished"></translation> + <translation type="unfinished">impossible de trouver "%1"</translation> </message> <message> - <location filename="profile.cpp" line="685"/> + <location filename="profile.cpp" line="709"/> <source>Delete savegames?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="686"/> + <location filename="profile.cpp" line="710"/> <source>Do you want to delete local savegames? (If you select "No", the save games will show up again if you re-enable local savegames)</source> <translation type="unfinished"></translation> </message> - <message> - <location filename="profile.cpp" line="276"/> - <location filename="profile.cpp" line="305"/> - <location filename="profile.cpp" line="390"/> - <location filename="profile.cpp" line="408"/> - <location filename="profile.cpp" line="418"/> - <source>invalid index %1</source> - <translation>index invalide %1</translation> - </message> </context> <context> <name>ProfileInputDialog</name> @@ -4718,40 +4024,6 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Notez</span> Pour des raisons techniques, il est impossible de modifier l'ordre de chargement des ESPs/ESMs entre les profils. Ainsi, si moda.esp vient avant modb.esp dans un profil, il n'est pas possible de faire l'inverse dans un autre profil.</p></body></html></translation> </message> <message> - <source>Savegame Filter</source> - <translation type="obsolete">Filtre de sauvegardes</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Experimental</span><span style=" font-size:8pt;"> Enter a charactername to hide all save games from other characters in the game.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Expérimental</span><span style=" font-size:8pt;">Inscrire le nom d'un personnage afin que toutes les autres sauvegardes soient invisibles dans le jeu.</span></p></body></html></translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Experimental</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Here you can enter a character name to filter the save games displayed inside the game. This makes it easy to have concurrent walkthroughs with different characters.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Note</span> however that autosave and quicksave are always displayed and overwritten even if they belong to a different character.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Note</span> also this may confuse the savegame counter which is why this feature is marked experimental.</p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Expérimental</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Vou s pouvez inscrire ici le nom d'un personnage afin que seules les sauvegardes correspondantes soient visibles dans le jeu. Ceci permet de simplifier grandement l'utilisation de plusieurs personnages..</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Notez</span> que les sauvegardes automatiques et les sauvegardes rapides sont toujours visibles et seront écrasées même si elles appartiennent à d'autres personnages.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Notez</span> aussi que ceci peut dérégler le compteur de sauvegardes, raison pour laquelle cette fonction est marqué comme expérimentale.</p></body></html></translation> - </message> - <message> <location filename="profilesdialog.ui" line="38"/> <location filename="profilesdialog.ui" line="41"/> <source>If checked, savegames are local to this profile and will not appear when starting with a different profile.</source> @@ -4831,7 +4103,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="profilesdialog.ui" line="123"/> <source>Rename</source> - <translation type="unfinished"></translation> + <translation type="unfinished">&Renommer</translation> </message> <message> <location filename="profilesdialog.ui" line="133"/> @@ -4878,7 +4150,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="profilesdialog.cpp" line="165"/> <source>Invalid name</source> - <translation type="unfinished"></translation> + <translation>Nom incorrect</translation> </message> <message> <location filename="profilesdialog.cpp" line="165"/> @@ -4906,10 +4178,6 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <source>Are you sure you want to remove this profile?</source> - <translation type="obsolete">Voulez-vous vraiment supprimer ce profil?</translation> - </message> - <message> <location filename="profilesdialog.cpp" line="215"/> <source>Rename Profile</source> <translation type="unfinished"></translation> @@ -4951,6 +4219,51 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> + <location filename="csvbuilder.cpp" line="70"/> + <source>invalid field name "%1"</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="csvbuilder.cpp" line="76"/> + <source>invalid type for "%1" (should be integer)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="csvbuilder.cpp" line="81"/> + <source>invalid type for "%1" (should be string)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="csvbuilder.cpp" line="86"/> + <source>invalid type for "%1" (should be float)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="csvbuilder.cpp" line="103"/> + <source>no fields set up yet!</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="csvbuilder.cpp" line="140"/> + <source>field not set "%1"</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="csvbuilder.cpp" line="237"/> + <source>invalid character in field "%1"</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="csvbuilder.cpp" line="240"/> + <source>empty field name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="gameinfoimpl.cpp" line="41"/> + <source>invalid game type %1</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="helper.cpp" line="53"/> <source>helper failed</source> <translation>Échec de l'assistant</translation> @@ -5032,100 +4345,91 @@ p, li { white-space: pre-wrap; } <translation>Impossible de mettre en place le chargement via DLL par procuration</translation> </message> <message> - <location filename="profile.cpp" line="96"/> - <source>"%1" is missing</source> - <translation>"%1" manquant</translation> - </message> - <message> - <location filename="main.cpp" line="139"/> + <location filename="main.cpp" line="121"/> <source>Permissions required</source> <translation>Permissions requises</translation> </message> <message> - <source>The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "mo_helper.exe" with administrative rights).</source> - <translation type="obsolete">Le compte d'usager actuel n'a pas les accès requis pour lancer Mod Organizer. Les changements nécessaires peuvent être effectués automatiquement (le dossier de MO sera rendu inscriptible pour le compte d'usager actuel). Vous devrez accepter que "mo_helper.exe" soit lancé avec les permissions administrateur.</translation> - </message> - <message> - <location filename="main.cpp" line="231"/> - <location filename="main.cpp" line="269"/> - <source>Woops</source> + <location filename="main.cpp" line="122"/> + <source>The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="main.cpp" line="140"/> - <source>The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights.</source> + <location filename="main.cpp" line="216"/> + <location filename="main.cpp" line="254"/> + <source>Woops</source> <translation type="unfinished"></translation> </message> <message> - <location filename="main.cpp" line="232"/> + <location filename="main.cpp" line="217"/> <source>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file (%1) to sherb@gmx.net, the bug is a lot more likely to be fixed. Please include a short description of what you were doing when the crash happened</source> <translation type="unfinished"></translation> </message> <message> - <location filename="main.cpp" line="270"/> + <location filename="main.cpp" line="255"/> <source>ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="main.cpp" line="332"/> - <location filename="settings.cpp" line="542"/> + <location filename="main.cpp" line="376"/> + <location filename="settings.cpp" line="557"/> <source>Mod Organizer</source> <translation>Mod Organizer</translation> </message> <message> - <location filename="main.cpp" line="332"/> + <location filename="main.cpp" line="376"/> <source>An instance of Mod Organizer is already running</source> <translation>Une copie du Mod Organizer tourne déjà</translation> </message> <message> - <location filename="main.cpp" line="354"/> + <location filename="main.cpp" line="398"/> <source>No game identified in "%1". The directory is required to contain the game binary and its launcher.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="main.cpp" line="357"/> - <location filename="main.cpp" line="386"/> + <location filename="main.cpp" line="401"/> + <location filename="main.cpp" line="430"/> <source>Please select the game to manage</source> <translation>Veuillez choisir le jeu à gérer</translation> </message> <message> - <location filename="main.cpp" line="412"/> + <location filename="main.cpp" line="456"/> <source>Please select the game edition you have (MO can't start the game correctly if this is set incorrectly!)</source> <translation type="unfinished"></translation> </message> <message> - <source>"%1" not found</source> - <translation type="obsolete">"%1" introuvable</translation> + <location filename="main.cpp" line="545"/> + <source>failed to start application: %1</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="782"/> + <location filename="mainwindow.cpp" line="842"/> <source>Please use "Help" from the toolbar to get usage instructions to all elements</source> <translation>Veuillez utiliser l'aide dans la barre d'outil pour obtenir des instructions à propos de tous les éléments</translation> </message> <message> - <location filename="mainwindow.cpp" line="1610"/> - <location filename="mainwindow.cpp" line="4216"/> + <location filename="mainwindow.cpp" line="1613"/> + <location filename="mainwindow.cpp" line="4226"/> <source><Manage...></source> <translation><Gérer...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1628"/> + <location filename="mainwindow.cpp" line="1631"/> <source>failed to parse profile %1: %2</source> <translation>impossible d'analyser le profil %1: %2</translation> </message> <message> - <location filename="pluginlist.cpp" line="335"/> - <location filename="profile.cpp" line="233"/> + <location filename="pluginlist.cpp" line="352"/> <source>failed to find "%1"</source> <translation>impossible de trouver "%1"</translation> </message> <message> - <location filename="pluginlist.cpp" line="491"/> + <location filename="pluginlist.cpp" line="515"/> <source>failed to access %1</source> <translation>impossible d'accéder à %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="505"/> + <location filename="pluginlist.cpp" line="529"/> <source>failed to set file time %1</source> <translation>impossible de changer la date du fichier %1</translation> </message> @@ -5135,16 +4439,18 @@ p, li { white-space: pre-wrap; } <translation>impossible de créer %1</translation> </message> <message> - <source>modlist.txt missing</source> - <translation type="obsolete">modlist.txt manquant</translation> + <location filename="profile.cpp" line="96"/> + <source>"%1" is missing or inaccessible</source> + <translation type="unfinished"></translation> </message> <message> - <source>failed to copy "%1" to "%2", this is going to end badly...</source> - <translation type="obsolete">impossible de copier "%1" vers "%2", ça va mal finir...</translation> + <source>"%1" is missing</source> + <translation type="obsolete">"%1" manquant</translation> </message> <message> - <source>Before you can use ModOrganizer, you need to create at least one profile!</source> - <translation type="obsolete">Avant d'utiliser ModOrganizer, vous devez créer au moins un profil!</translation> + <location filename="profilesdialog.cpp" line="80"/> + <source>Before you can use ModOrganizer, you need to create at least one profile. ATTENTION: Run the game at least once before creating a profile!</source> + <translation type="unfinished"></translation> </message> <message> <location filename="report.cpp" line="33"/> @@ -5165,31 +4471,27 @@ p, li { white-space: pre-wrap; } <translation>impossible d'ouvrir %1</translation> </message> <message> - <source>English</source> - <translation type="obsolete">Français</translation> - </message> - <message> - <location filename="settings.cpp" line="549"/> + <location filename="settings.cpp" line="564"/> <source>Script Extender</source> <translation>Extenseur de script</translation> </message> <message> - <location filename="settings.cpp" line="556"/> + <location filename="settings.cpp" line="571"/> <source>Proxy DLL</source> <translation>DLL par procuration</translation> </message> <message> - <location filename="spawn.cpp" line="106"/> + <location filename="spawn.cpp" line="127"/> <source>failed to spawn "%1"</source> <translation>impossible de lancer "%1"</translation> </message> <message> - <location filename="spawn.cpp" line="113"/> + <location filename="spawn.cpp" line="134"/> <source>Elevation required</source> <translation type="unfinished"></translation> </message> <message> - <location filename="spawn.cpp" line="114"/> + <location filename="spawn.cpp" line="135"/> <source>This process requires elevation to run. This is a potential security risk so I highly advice you to investigate if "%1" @@ -5199,81 +4501,26 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <translation type="unfinished"></translation> </message> <message> - <location filename="spawn.cpp" line="129"/> + <location filename="spawn.cpp" line="150"/> <source>failed to spawn "%1": %2</source> <translation>impossible de lancer "%1": %2</translation> </message> <message> - <location filename="spawn.cpp" line="138"/> + <location filename="spawn.cpp" line="159"/> <source>"%1" doesn't exist</source> <translation>"%1" inexistant</translation> </message> <message> - <location filename="spawn.cpp" line="145"/> + <location filename="spawn.cpp" line="166"/> <source>failed to inject dll into "%1": %2</source> <translation>impossible d'injecter le DLL dans "%1": %2</translation> </message> <message> - <location filename="spawn.cpp" line="153"/> + <location filename="spawn.cpp" line="174"/> <source>failed to run "%1"</source> <translation>impossible de lancer "%1"</translation> </message> <message> - <source>removal of "%1" failed: %2</source> - <oldsource>remove %1 failed</oldsource> - <translation type="obsolete">impossible de supprimer %1</translation> - </message> - <message> - <location filename="profilesdialog.cpp" line="80"/> - <source>Before you can use ModOrganizer, you need to create at least one profile. ATTENTION: Run the game at least once before creating a profile!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="70"/> - <source>invalid field name "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="76"/> - <source>invalid type for "%1" (should be integer)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="81"/> - <source>invalid type for "%1" (should be string)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="86"/> - <source>invalid type for "%1" (should be float)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="103"/> - <source>no fields set up yet!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="140"/> - <source>field not set "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="237"/> - <source>invalid character in field "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="240"/> - <source>empty field name</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="gameinfoimpl.cpp" line="41"/> - <source>invalid game type %1</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="safewritefile.cpp" line="32"/> <source>failed to open temporary file</source> <translation type="unfinished"></translation> @@ -5309,7 +4556,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="queryoverwritedialog.ui" line="84"/> <source>Rename</source> - <translation type="unfinished"></translation> + <translation type="unfinished">&Renommer</translation> </message> <message> <location filename="queryoverwritedialog.ui" line="91"/> @@ -5342,7 +4589,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="savegameinfowidget.ui" line="87"/> <source>Date</source> - <translation type="unfinished"></translation> + <translation type="unfinished">DATA</translation> </message> </context> <context> @@ -5350,7 +4597,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="savegameinfowidgetgamebryo.cpp" line="41"/> <source>Missing ESPs</source> - <translation type="unfinished"></translation> + <translation type="unfinished">ESP manquant</translation> </message> </context> <context> @@ -5383,7 +4630,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="savetextasdialog.cpp" line="36"/> <source>Text Files</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Fichiers texte</translation> </message> <message> <location filename="savetextasdialog.cpp" line="40"/> @@ -5412,8 +4659,9 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <context> <name>SelfUpdater</name> <message> - <source>mo_archive.dll not loaded: "%1"</source> - <translation type="obsolete">mo_archive.dll n'est pas chargé: "%1"</translation> + <location filename="selfupdater.cpp" line="66"/> + <source>archive.dll not loaded: "%1"</source> + <translation>archive.dll n'est pas chargé: "%1"</translation> </message> <message> <location filename="selfupdater.cpp" line="116"/> @@ -5434,18 +4682,9 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <translation>Téléchargement en cours</translation> </message> <message> - <source>Download failed</source> - <translation type="obsolete">Échec du téléchargement</translation> - </message> - <message> - <location filename="selfupdater.cpp" line="66"/> - <source>archive.dll not loaded: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="selfupdater.cpp" line="195"/> <source>Download failed: %1</source> - <translation type="unfinished"></translation> + <translation>Téléchargement échoué: %1</translation> </message> <message> <location filename="selfupdater.cpp" line="206"/> @@ -5488,43 +4727,31 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <translation type="unfinished"></translation> </message> <message> - <location filename="selfupdater.cpp" line="460"/> - <source>No download server available. Please try again later.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="selfupdater.cpp" line="440"/> <source>Failed to retrieve update information: %1</source> <translation type="unfinished"></translation> </message> <message> - <source>No incremental update available for this version, the complete package needs to be installed (%1 kB)</source> - <translation type="obsolete">Aucune mise à jour incrémentielle n'est disponible, le logiciel complet doit être réinstallé (%1 kB)</translation> - </message> - <message> - <source>Failed to retrieve update information</source> - <translation type="obsolete">Impossible de récupérer les informations de mise à jour</translation> + <location filename="selfupdater.cpp" line="460"/> + <source>No download server available. Please try again later.</source> + <translation>Aucun serveur de téléchargement disponible. Veuillez s'il-vous-plait réessayer plus tard.</translation> </message> </context> <context> <name>Settings</name> <message> - <source>Administrative rights required to change this.</source> - <translation type="obsolete">Les droits administrateur sont requis pour changer ceci.</translation> - </message> - <message> - <location filename="settings.cpp" line="320"/> - <location filename="settings.cpp" line="339"/> + <location filename="settings.cpp" line="329"/> + <location filename="settings.cpp" line="348"/> <source>attempt to store setting for unknown plugin "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settings.cpp" line="660"/> + <location filename="settings.cpp" line="681"/> <source>Confirm</source> <translation type="unfinished">Confirmer</translation> </message> <message> - <location filename="settings.cpp" line="660"/> + <location filename="settings.cpp" line="681"/> <source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed?</source> <translation type="unfinished"></translation> </message> @@ -5565,52 +4792,6 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">La langue d'affichage. Seules les langues pour lesquelles une traduction est installée seront affichées.</span></p></body></html></translation> </message> <message> - <location filename="settingsdialog.ui" line="113"/> - <source>Advanced</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="125"/> - <location filename="settingsdialog.ui" line="128"/> - <source>Directory where downloads are stored.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="148"/> - <source>Mod Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="155"/> - <source>Directory where mods are stored.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="158"/> - <source>Directory where mods are stored. Please note that changing this will break all associations of profiles with mods that don't exist in the new location (with the same name).</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="172"/> - <source>Download Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="179"/> - <source>Cache Directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>...</source> - <translation type="obsolete">...</translation> - </message> - <message> - <location filename="settingsdialog.ui" line="231"/> - <location filename="settingsdialog.ui" line="234"/> - <source>Modify the categories available to arrange your mods.</source> - <translation>Modifier les catégories disponibles pour classer vos mods.</translation> - </message> - <message> <location filename="settingsdialog.ui" line="57"/> <source>Style</source> <translation type="unfinished"></translation> @@ -5657,99 +4838,105 @@ p, li { white-space: pre-wrap; } <translation type="unfinished">Erreur</translation> </message> <message> - <location filename="settingsdialog.ui" line="205"/> - <source>Reset stored information from dialogs.</source> + <location filename="settingsdialog.ui" line="113"/> + <source>Advanced</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="208"/> - <source>This will make all dialogs show up again where you checked the "Remember selection"-box.</source> + <location filename="settingsdialog.ui" line="125"/> + <location filename="settingsdialog.ui" line="128"/> + <source>Directory where downloads are stored.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="211"/> - <source>Reset Dialogs</source> + <location filename="settingsdialog.ui" line="148"/> + <source>Mod Directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="237"/> - <source>Configure Mod Categories</source> - <translation>Configurer les catégories de mod</translation> + <location filename="settingsdialog.ui" line="155"/> + <source>Directory where mods are stored.</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="318"/> - <source>Disable automatic internet features</source> + <location filename="settingsdialog.ui" line="158"/> + <source>Directory where mods are stored. Please note that changing this will break all associations of profiles with mods that don't exist in the new location (with the same name).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="321"/> - <source>Disable automatic internet features. This does not affect features that are explicitly invoked by the user (like checking mods for updates, endorsing, opening the web browser)</source> + <location filename="settingsdialog.ui" line="172"/> + <source>Download Directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="324"/> - <source>Offline Mode</source> + <location filename="settingsdialog.ui" line="179"/> + <source>Cache Directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="331"/> - <source>Use a proxy for network connections.</source> + <location filename="settingsdialog.ui" line="199"/> + <source>User interface</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="334"/> - <source>Use a proxy for network connections. This uses the system-wide settings which can be configured in Internet Explorer. Please note that MO will start up a few seconds slower on some systems when using a proxy.</source> + <location filename="settingsdialog.ui" line="205"/> + <source>If checked, the download interface will be more compact.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="337"/> - <source>Use HTTP Proxy (Uses System Settings)</source> + <location filename="settingsdialog.ui" line="208"/> + <source>Compact Download Interface</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="346"/> - <source>Associate with "Download with manager" links</source> + <location filename="settingsdialog.ui" line="215"/> + <source>If checked, the download list will display meta information instead of file names.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="375"/> - <source>Known Servers (updated on download)</source> + <location filename="settingsdialog.ui" line="218"/> + <source>Download Meta Information</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="396"/> - <source>Preferred Servers (Drag & Drop)</source> + <location filename="settingsdialog.ui" line="234"/> + <source>Reset stored information from dialogs.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="536"/> - <source>Blacklisted Plugins (use <del> to remove):</source> + <location filename="settingsdialog.ui" line="237"/> + <source>This will make all dialogs show up again where you checked the "Remember selection"-box.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="632"/> - <source>Mod Organizer needs a dll to be injected into the game so all mods are visible to it. -There are several means to do this: -*Mod Organizer* (default) In this mode the Mod Organizer itself injects the dll. The disadvantage is that you always have to start the game through MO or a link created by it. -*Script Extender* In this mode, MO is installed as a Script Extender (obse, fose, nvse, skse) plugin. -*Proxy DLL* In this mode, MO replaces one of the game's dlls with one that loads MO (and the original dll of course). This will ONLY work with Steam games and it has only been tested with Skyrim. Please use this only if the other mechanisms don't work. - -If you use the Steam version of Oblivion the default will NOT work. In this case, please install obse and use "Script Extender" as the load mechanism. Also you can then not start Oblivion from MO. Instead, use MO only to set up your mods, then quit and start Oblivion through Steam.</source> + <location filename="settingsdialog.ui" line="240"/> + <source>Reset Dialogs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="245"/> - <location filename="settingsdialog.ui" line="261"/> + <location filename="settingsdialog.ui" line="260"/> + <location filename="settingsdialog.ui" line="263"/> + <source>Modify the categories available to arrange your mods.</source> + <translation>Modifier les catégories disponibles pour classer vos mods.</translation> + </message> + <message> + <location filename="settingsdialog.ui" line="266"/> + <source>Configure Mod Categories</source> + <translation>Configurer les catégories de mod</translation> + </message> + <message> + <location filename="settingsdialog.ui" line="274"/> + <location filename="settingsdialog.ui" line="290"/> <source>Nexus</source> <translation>Nexus</translation> </message> <message> - <location filename="settingsdialog.ui" line="251"/> + <location filename="settingsdialog.ui" line="280"/> <source>Allows automatic log-in when the Nexus-Page for the game is clicked.</source> <translation>Permettre la connexion automatique lorsque la page Nexus du jeu est ouverte.</translation> </message> <message> - <location filename="settingsdialog.ui" line="254"/> + <location filename="settingsdialog.ui" line="283"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -5762,76 +4949,122 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Permet la connexion automatique au site Nexus lorsqu'une page est ouverte. Veuillez noter que l'encodage utilisé pour stocker le mot de passe dans le fichier modorganizer.ini n'est pas très robuste. Si vous craignez que quelqu'un puisse voler votre mot de passe, ne l'enregistrez pas ici.</span></p></body></html></translation> </message> <message> - <location filename="settingsdialog.ui" line="270"/> + <location filename="settingsdialog.ui" line="299"/> <source>If checked and if correct credentials are entered below, log-in to Nexus (for browsing and downloading) is automatic.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="273"/> + <location filename="settingsdialog.ui" line="302"/> <source>Automatically Log-In to Nexus</source> <translation>Connexion automatique à Nexus</translation> </message> <message> - <location filename="settingsdialog.ui" line="282"/> + <location filename="settingsdialog.ui" line="311"/> <source>Username</source> <translation>Nom d'usager</translation> </message> <message> - <location filename="settingsdialog.ui" line="296"/> + <location filename="settingsdialog.ui" line="325"/> <source>Password</source> <translation>Mot de passe</translation> </message> <message> - <source>Handle NXM Links</source> - <translation type="obsolete">Gérer les liens NXM</translation> + <location filename="settingsdialog.ui" line="347"/> + <source>Disable automatic internet features</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="350"/> + <source>Disable automatic internet features. This does not affect features that are explicitly invoked by the user (like checking mods for updates, endorsing, opening the web browser)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="353"/> + <source>Offline Mode</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="360"/> + <source>Use a proxy for network connections.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="363"/> + <source>Use a proxy for network connections. This uses the system-wide settings which can be configured in Internet Explorer. Please note that MO will start up a few seconds slower on some systems when using a proxy.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="366"/> + <source>Use HTTP Proxy (Uses System Settings)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="375"/> + <source>Associate with "Download with manager" links</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="404"/> + <source>Known Servers (updated on download)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="425"/> + <source>Preferred Servers (Drag & Drop)</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="431"/> + <location filename="settingsdialog.ui" line="460"/> <source>Plugins</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="453"/> + <location filename="settingsdialog.ui" line="482"/> <source>Author:</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Auteur</translation> </message> <message> - <location filename="settingsdialog.ui" line="467"/> + <location filename="settingsdialog.ui" line="496"/> <source>Version:</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Version</translation> </message> <message> - <location filename="settingsdialog.ui" line="481"/> + <location filename="settingsdialog.ui" line="510"/> <source>Description:</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Description</translation> </message> <message> - <location filename="settingsdialog.ui" line="519"/> + <location filename="settingsdialog.ui" line="548"/> <source>Key</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="524"/> + <location filename="settingsdialog.ui" line="553"/> <source>Value</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="547"/> + <location filename="settingsdialog.ui" line="565"/> + <source>Blacklisted Plugins (use <del> to remove):</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="576"/> <source>Workarounds</source> <translation>Solutions alternatives</translation> </message> <message> - <location filename="settingsdialog.ui" line="555"/> + <location filename="settingsdialog.ui" line="584"/> <source>Steam App ID</source> <translation>ID d'application Steam</translation> </message> <message> - <location filename="settingsdialog.ui" line="575"/> + <location filename="settingsdialog.ui" line="604"/> <source>The Steam AppID for your game</source> <translation>L'AppID Steam de votre jeu</translation> </message> <message> - <location filename="settingsdialog.ui" line="578"/> + <location filename="settingsdialog.ui" line="607"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -5858,47 +5091,38 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">22380 est l'App ID que vous cherchez.</span></p></body></html></translation> </message> <message> - <location filename="settingsdialog.ui" line="609"/> + <location filename="settingsdialog.ui" line="638"/> <source>Load Mechanism</source> <translation>Chargement MO</translation> </message> <message> - <location filename="settingsdialog.ui" line="629"/> + <location filename="settingsdialog.ui" line="658"/> <source>Select loading mechanism. See help for details.</source> <translation>Choisir la méthode de chargement. Voir l'aide pour les détails.</translation> </message> <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Mod Organizer needs a dll to be injected into the game so all mods are visible to it.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">There are several means to do this:</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Mod Organizer</span><span style=" font-size:8pt;"> (default) In this mode the Mod Organizer itself injects the dll. The disadvantage is that you always have to start the game through MO or a link created by it. This does not work for the Steam version of Oblivion!</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Script Extender</span><span style=" font-size:8pt;"> In this mode, MO is installed as a Script Extender (obse, fose, nvse, skse) plugin. (recommended if you have a script extender installed)</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Proxy DLL</span><span style=" font-size:8pt;"> In this mode, MO replaces one of the game's dlls with one that loads MO (and the original dll of course). This will ONLY work with Steam games and it has only been tested with Skyrim. Please use this only if the other mechanisms don't work.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Mod Organizer nécessite l'injection d'un DLL dans le jeu afin que tous les mods lui soient visibles.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Il y a plusieurs méthodes pour ce faire:</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Mod Organizer</span><span style=" font-size:8pt;"> (par défaut) Dans ce mode, Mod Organizer injecte le DLL par lui-même. Le désavantage est que le jeu doit toujours être lancé par Mod Organizer ou par un raccourci créé par celui-ci. Cette méthode ne fonctionne pas pour la version Steam d'Oblivion!</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Extenseur de script</span><span style=" font-size:8pt;"> Dans ce mode, MO est installé comme une extension de l'extenseur de script (obse, fose, nvse, skse). (recommandé si vous utilisez un extenseur de script)</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">DLL par procuration</span><span style=" font-size:8pt;"> Dans ce mode, MO remplace l'un des DLL du jeu par une version qui charge MO (ainsi que le DLL orginal, bien sur). Ceci fonctionnera SEULEMENT avec les jeux STEAM et n'a été testé qu'avec Skyrim. N'utilisez cette méthode que si les autres ne fonctionnent pas.</span></p></body></html></translation> + <location filename="settingsdialog.ui" line="661"/> + <source>Mod Organizer needs a dll to be injected into the game so all mods are visible to it. +There are several means to do this: +*Mod Organizer* (default) In this mode the Mod Organizer itself injects the dll. The disadvantage is that you always have to start the game through MO or a link created by it. +*Script Extender* In this mode, MO is installed as a Script Extender (obse, fose, nvse, skse) plugin. +*Proxy DLL* In this mode, MO replaces one of the game's dlls with one that loads MO (and the original dll of course). This will ONLY work with Steam games and it has only been tested with Skyrim. Please use this only if the other mechanisms don't work. + +If you use the Steam version of Oblivion the default will NOT work. In this case, please install obse and use "Script Extender" as the load mechanism. Also you can then not start Oblivion from MO. Instead, use MO only to set up your mods, then quit and start Oblivion through Steam.</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="649"/> + <location filename="settingsdialog.ui" line="678"/> <source>NMM Version</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="669"/> + <location filename="settingsdialog.ui" line="698"/> <source>The Version of Nexus Mod Manager to impersonate.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="672"/> + <location filename="settingsdialog.ui" line="701"/> <source>Mod Organizer uses an API provided by the Nexus to provide features like checking for updates and downloading files. Unfortunately this API has not been made available officially to third party tools like MO so we have to impersonate the Nexus Mod Manager to be allowed in. On top of this Nexus has used the client identification to lock out outdated versions of NMM to force users to update. This means that MO also needs to impersonate the new version of NMM even if MO doesn't need an update. Therefore you can configure the version to identify as here. Please note that MO does identify itself as MO to the webserver, it's not lying about what it is. It is merely adding a "compatible" NMM version to the user agent. @@ -5907,79 +5131,93 @@ tl;dr-version: If Nexus-features don't work, insert the current version num <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="694"/> + <location filename="settingsdialog.ui" line="723"/> <source>Enforces that inactive ESPs and ESMs are never loaded.</source> <translation>Garantie que les ESPs et ESMs inactifs ne soient jamais chargés.</translation> </message> <message> - <location filename="settingsdialog.ui" line="697"/> + <location filename="settingsdialog.ui" line="726"/> <source>It seems that the Games occasionally load ESP or ESM files even if they haven't been activated as plugins. I don't yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded.</source> <translation>Il semble que les jeux chargent parfois des fichiers ESP ou ESM même s'ils ne sont pas activés. Je n'en connais pas encore les circonstances, mais les rapports des usagers impliquent que dans certains cas, ce comportement est indésirable. Si vous cochez ceci, les ESPs et ESMs qui ne sotn pas cochés seront invisible pour le jeu et ne pourront pas être chargés.</translation> </message> <message> - <location filename="settingsdialog.ui" line="701"/> + <location filename="settingsdialog.ui" line="730"/> <source>Hide inactive ESPs/ESMs</source> <translation>Cacher les ESPs et ESMs inactifs</translation> </message> <message> - <location filename="settingsdialog.ui" line="708"/> + <location filename="settingsdialog.ui" line="737"/> <source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="711"/> + <location filename="settingsdialog.ui" line="740"/> <source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on) Uncheck this if you want to use Mod Organizer with total conversions (like Nehrim) but be aware that the game will crash if required files are not enabled.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="715"/> + <location filename="settingsdialog.ui" line="744"/> <source>Force-enable game files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="725"/> - <location filename="settingsdialog.ui" line="729"/> + <location filename="settingsdialog.ui" line="754"/> + <source>Disable this to no longer display mods installed outside MO in the mod list (left pane). Assets from those mods will then be treated as having lowest mod priority together with the original game content.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="757"/> + <source>By default Mod Organizer will display esp+bsa bundles installed with foreign tools as mods (left pane). This allows you to control their priority in relation to other mods. This is particularly useful if you also use Steam Workshop to install mods. +However, if you installed loose file mods outside MO which conflict with BSAs also installed outside MO those conflicts can't be resolved correctly. + +If you disable this feature, MO will only display official DLCs this way. Please note that plugins (esps and esms) displayed in the right pane are completely unaffected by this feature.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="763"/> + <source>Display mods installed outside MO</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="773"/> + <location filename="settingsdialog.ui" line="777"/> <source>For Skyrim, this can be used instead of Archive Invalidation. It should make AI redundant for all Profiles. For the other games this is not a sufficient replacement for AI!</source> <translation>Pour Skyrim, ceci peut être utilisé au lieu de l'invalidation des archives. Ça devrait rendre l'invalidation redondante pour tous les profils. Pour les autres jeux, ceci ne suffit pas à remplacer l'invalidation des archives!</translation> </message> <message> - <location filename="settingsdialog.ui" line="733"/> + <location filename="settingsdialog.ui" line="781"/> <source>Back-date BSAs</source> <translation>Antidater les BSAs</translation> </message> <message> - <location filename="settingsdialog.ui" line="757"/> + <location filename="settingsdialog.ui" line="805"/> <source>These are workarounds for problems with Mod Organizer. Please make sure you read the help text before changing anything here.</source> <translation type="unfinished"></translation> </message> <message> - <source>These are workarounds for problems with Mod Organizer. They are usually not neccessary. Please make sure you read the help text before changing anything here.</source> - <translation type="obsolete">Ici se trouvent des solutions alternatives à certains problèmes rencontrés avec Mod Organizer. Elles ne sont normalement pas nécessaires. Soyez sûr d'avoir lu le texte d'aide avant de modifier quoi que ce soit sur cette page.</translation> - </message> - <message> <location filename="settingsdialog.cpp" line="95"/> <source>Select download directory</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Sélectionnez un répertoire</translation> </message> <message> <location filename="settingsdialog.cpp" line="103"/> <source>Select mod directory</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Sélectionnez un répertoire</translation> </message> <message> <location filename="settingsdialog.cpp" line="111"/> <source>Select cache directory</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Sélectionnez un répertoire</translation> </message> <message> <location filename="settingsdialog.cpp" line="119"/> <source>Confirm?</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Confirmer</translation> </message> <message> <location filename="settingsdialog.cpp" line="120"/> @@ -6030,7 +5268,6 @@ Pour les autres jeux, ceci ne suffit pas à remplacer l'invalidation des ar </message> <message> <location filename="singleinstance.cpp" line="82"/> - <location filename="singleinstance.cpp" line="88"/> <source>failed to connect to running instance: %1</source> <translation>Échec de connection à l'instance active: %1</translation> </message> @@ -6070,38 +5307,7 @@ Pour les autres jeux, ceci ne suffit pas à remplacer l'invalidation des ar <message> <location filename="syncoverwritedialog.cpp" line="149"/> <source>failed to move %1 to %2</source> - <translation type="unfinished"></translation> - </message> -</context> -<context> - <name>TextViewer</name> - <message> - <source>Log Viewer</source> - <translation type="obsolete">Visualisateur de journal</translation> - </message> - <message> - <source>Placeholder</source> - <translation type="obsolete">Signet</translation> - </message> - <message> - <source>Save changes?</source> - <translation type="obsolete">Enregistrer les changements?</translation> - </message> - <message> - <source>Do you want to save changes to %1?</source> - <translation type="obsolete">Voulez-vous enregistrer les changements dans %1?</translation> - </message> - <message> - <source>failed to write to %1</source> - <translation type="obsolete">impossible d'écrire vers %1</translation> - </message> - <message> - <source>file not found: %1</source> - <translation type="obsolete">fichier introuvable: %1</translation> - </message> - <message> - <source>Save</source> - <translation type="obsolete">Enregistrer</translation> + <translation type="unfinished">impossible de copier %1 vers %2</translation> </message> </context> <context> @@ -6131,14 +5337,6 @@ On Windows Vista/Windows 7: On Windows XP: C:\Documents and Settings\[UserName]\My Documents\My Games\Skyrim\Saves </source> - <oldsource>This is a list of characters in the global location. - -On Windows Vista/Windows 7: - C:\Users\[UserName]\Documents\My Games\Skyrim\Saves - -On Windows XP: - C:\Documents and Settings[UserName]\My Documents\My Games\Skyrim\Saves -</oldsource> <translation type="unfinished"></translation> </message> <message> diff --git a/src/organizer_ru.ts b/src/organizer_ru.ts index 0fc6ecea..52a91039 100644 --- a/src/organizer_ru.ts +++ b/src/organizer_ru.ts @@ -7,42 +7,42 @@ <location filename="aboutdialog.ui" line="14"/> <location filename="aboutdialog.ui" line="53"/> <source>About</source> - <translation type="unfinished"></translation> + <translation>О программе</translation> </message> <message> <location filename="aboutdialog.ui" line="66"/> <source>Revision:</source> - <translation type="unfinished"></translation> + <translation>Версия:</translation> </message> <message> <location filename="aboutdialog.ui" line="104"/> <source>Used Software</source> - <translation type="unfinished"></translation> + <translation>Использованные программы</translation> </message> <message> <location filename="aboutdialog.ui" line="117"/> <source>Credits</source> - <translation type="unfinished"></translation> + <translation>Благодарности</translation> </message> <message> <location filename="aboutdialog.ui" line="123"/> <source>Translators</source> - <translation type="unfinished"></translation> + <translation>Переводчики</translation> </message> <message> <location filename="aboutdialog.ui" line="189"/> <source>Others</source> - <translation type="unfinished"></translation> + <translation>Другие</translation> </message> <message> <location filename="aboutdialog.ui" line="266"/> <source>Close</source> - <translation type="unfinished">Закрыть</translation> + <translation>Закрыть</translation> </message> <message> <location filename="aboutdialog.cpp" line="81"/> <source>No license</source> - <translation type="unfinished"></translation> + <translation>Лицензия отсутствует</translation> </message> </context> <context> @@ -50,7 +50,7 @@ <message> <location filename="activatemodsdialog.ui" line="14"/> <source>Activate Mods</source> - <translation>Активировать моды</translation> + <translation>Включить моды</translation> </message> <message> <location filename="activatemodsdialog.ui" line="20"/> @@ -71,15 +71,15 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Это список ESP и ESM, которые были активны, когда сейв был создан..</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Для каждого ESP, правый столбец содержит мод (или моды), которые могут быть включены, чтобы неактивные ESP / ESM стали активными.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Это список esp и esm, которые были активны, когда сохранение было создано.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Для каждого esp, правый столбец содержит мод (или моды), которые могут быть включены, чтобы неактивные esp/esm стали активными.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Если вы нажмете ОК, все моды, выбранные в правой колонке будут активированы..</span></p></body></html></translation> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Если вы нажмете ОК, все моды, выбранные в правой колонке будут активированы.</span></p></body></html></translation> </message> <message> <location filename="activatemodsdialog.ui" line="37"/> <source>Missing ESP</source> - <translation>Отсутствует ESP</translation> + <translation>Отсутствющий ESP</translation> </message> <message> <location filename="activatemodsdialog.ui" line="42"/> @@ -89,7 +89,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="activatemodsdialog.cpp" line="49"/> <source>not found</source> - <translation>не найдено</translation> + <translation>не найден</translation> </message> </context> <context> @@ -97,7 +97,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="baincomplexinstallerdialog.ui" line="14"/> <source>BAIN Package Installer</source> - <translation>BAIN установочного пакета</translation> + <translation>Установщик пакетов BAIN</translation> </message> <message> <location filename="baincomplexinstallerdialog.ui" line="22"/> @@ -107,7 +107,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="baincomplexinstallerdialog.ui" line="34"/> <source>This looks like a Package prepared for Installation through BAIN. You can select options from the list below. If there is a package.txt file, it should contain detailed information about the options.</source> - <translation>Это пакет подготовленный для установки через BAIN. Вы можете выбрать опции из приведенного ниже списка. Если есть package.txt файл, то он содержит подробные сведения о параметрах.</translation> + <translation>Похоже, что пакет готов для установки через BAIN. Вы можете выбрать доступные варианты из приведенного ниже списка. Если присутствует файл package.txt, то он должен содержать подробные сведения о вариантах выбора.</translation> </message> <message> <location filename="baincomplexinstallerdialog.ui" line="44"/> @@ -119,13 +119,13 @@ p, li { white-space: pre-wrap; } <source>Components of this package. If there is a component called "00 Core" it is usually required. Options are ordered by priority as set up by the author.</source> <translation>Компоненты этого пакета. -Если есть компонент, называемый "00 Core", то это обычно необходимо. Опции упорядочены по приоритету, установленному автором.</translation> +Если присутствует компонент с именем "00 Core", то он обычно является обязательным. Доступные варианты упорядочены по приоритету, установленному автором.</translation> </message> <message> <location filename="baincomplexinstallerdialog.ui" line="57"/> <location filename="baincomplexinstallerdialog.ui" line="60"/> <source>The package.txt is often part of BAIN packages and contains details about the options available.</source> - <translation>Package.txt часто является частью пакета BAIN и содержит информацию о доступных вариантах.</translation> + <translation>Package.txt часто является частью пакетов BAIN и содержит информацию о доступных для выбора вариантах.</translation> </message> <message> <location filename="baincomplexinstallerdialog.ui" line="63"/> @@ -141,7 +141,7 @@ If there is a component called "00 Core" it is usually required. Optio <message> <location filename="baincomplexinstallerdialog.ui" line="89"/> <source>Manual</source> - <translation>Руководство</translation> + <translation>Вручную</translation> </message> <message> <location filename="baincomplexinstallerdialog.ui" line="96"/> @@ -155,6 +155,29 @@ If there is a component called "00 Core" it is usually required. Optio </message> </context> <context> + <name>BrowserDialog</name> + <message> + <location filename="browserdialog.ui" line="14"/> + <source>Some Page</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="browserdialog.ui" line="256"/> + <source>Search</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="browserdialog.cpp" line="91"/> + <source>new</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="browserdialog.cpp" line="204"/> + <source>failed to start download</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> <name>CategoriesDialog</name> <message> <location filename="categoriesdialog.ui" line="14"/> @@ -190,7 +213,7 @@ If there is a component called "00 Core" it is usually required. Optio <message> <location filename="categoriesdialog.ui" line="88"/> <source>Nexus IDs</source> - <translation>Nexus IDs</translation> + <translation>Nexus ID</translation> </message> <message> <location filename="categoriesdialog.ui" line="91"/> @@ -271,7 +294,7 @@ p, li { white-space: pre-wrap; } <context> <name>DirectoryRefresher</name> <message> - <location filename="directoryrefresher.cpp" line="99"/> + <location filename="directoryrefresher.cpp" line="146"/> <source>failed to read bsa: %1</source> <translation>не удалось прочитать bsa: %1</translation> </message> @@ -286,7 +309,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="downloadlist.cpp" line="65"/> <source>Filetime</source> - <translation>Дата модификации</translation> + <translation>Время</translation> </message> <message> <location filename="downloadlist.cpp" line="66"/> @@ -296,12 +319,12 @@ p, li { white-space: pre-wrap; } <message> <location filename="downloadlist.cpp" line="82"/> <source>Information missing, please select "Query Info" from the context menu to re-retrieve.</source> - <translation>Информация отсутствует, пожалуйста, выберите пункт "Справочная информация" из контекстного меню.</translation> + <translation>Информация отсутствует, для её запроса выберите в контекстном меню пункт "Запросить информацию".</translation> </message> <message> <location filename="downloadlist.cpp" line="89"/> <source>pending download</source> - <translation type="unfinished"></translation> + <translation>ожидающая загрузка</translation> </message> </context> <context> @@ -314,26 +337,26 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="downloadlistwidget.ui" line="99"/> - <location filename="downloadlistwidget.cpp" line="145"/> - <location filename="downloadlistwidget.cpp" line="147"/> + <location filename="downloadlistwidget.cpp" line="150"/> + <location filename="downloadlistwidget.cpp" line="152"/> <source>Done - Double Click to install</source> <translation>Готово - двойной щелчок для установки.</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="111"/> - <location filename="downloadlistwidget.cpp" line="113"/> + <location filename="downloadlistwidget.cpp" line="116"/> + <location filename="downloadlistwidget.cpp" line="118"/> <source>Paused - Double Click to resume</source> <translation>Пауза - двойной клик для продолжения</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="131"/> - <location filename="downloadlistwidget.cpp" line="133"/> + <location filename="downloadlistwidget.cpp" line="136"/> + <location filename="downloadlistwidget.cpp" line="138"/> <source>Installed - Double Click to re-install</source> <translation>Установлено - двойной клик для переустановки</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="138"/> - <location filename="downloadlistwidget.cpp" line="140"/> + <location filename="downloadlistwidget.cpp" line="143"/> + <location filename="downloadlistwidget.cpp" line="145"/> <source>Uninstalled - Double Click to re-install</source> <translation>Удалено - двойной клик для переустановки</translation> </message> @@ -355,374 +378,425 @@ p, li { white-space: pre-wrap; } <context> <name>DownloadListWidgetCompactDelegate</name> <message> - <location filename="downloadlistwidgetcompact.cpp" line="88"/> + <location filename="downloadlistwidgetcompact.cpp" line="92"/> <source>< mod %1 file %2 ></source> - <translation type="unfinished"></translation> + <translation>< мод %1 файл %2 ></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="93"/> + <location filename="downloadlistwidgetcompact.cpp" line="97"/> <source>Pending</source> - <translation type="unfinished"></translation> + <translation>Ожидание</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="116"/> + <location filename="downloadlistwidgetcompact.cpp" line="120"/> <source>Paused</source> <translation>Приостановлено</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="119"/> + <location filename="downloadlistwidgetcompact.cpp" line="123"/> <source>Fetching Info 1</source> - <translation>Извлечение информации 1</translation> + <translation>Получение информации 1</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="121"/> + <location filename="downloadlistwidgetcompact.cpp" line="125"/> <source>Fetching Info 2</source> - <translation>Извлечение информации 2</translation> + <translation>Получение информации 2</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="126"/> + <location filename="downloadlistwidgetcompact.cpp" line="130"/> <source>Installed</source> <translation>Установлено</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="129"/> + <location filename="downloadlistwidgetcompact.cpp" line="133"/> <source>Uninstalled</source> <translation>Удалено</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="132"/> + <location filename="downloadlistwidgetcompact.cpp" line="136"/> <source>Done</source> <translation>Готово</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="241"/> - <location filename="downloadlistwidgetcompact.cpp" line="250"/> - <location filename="downloadlistwidgetcompact.cpp" line="259"/> - <location filename="downloadlistwidgetcompact.cpp" line="268"/> + <location filename="downloadlistwidgetcompact.cpp" line="245"/> + <location filename="downloadlistwidgetcompact.cpp" line="254"/> + <location filename="downloadlistwidgetcompact.cpp" line="263"/> + <location filename="downloadlistwidgetcompact.cpp" line="272"/> <source>Are you sure?</source> <translation>Вы уверены?</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="242"/> + <location filename="downloadlistwidgetcompact.cpp" line="246"/> <source>This will remove all finished downloads from this list and from disk.</source> <translation>Это удалит все готовые загрузки из этого списка и с диска.</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="251"/> + <location filename="downloadlistwidgetcompact.cpp" line="255"/> <source>This will remove all installed downloads from this list and from disk.</source> <translation>Это удалит все установленные загрузки из этого списка и с диска.</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="260"/> + <location filename="downloadlistwidgetcompact.cpp" line="264"/> <source>This will permanently remove all finished downloads from this list (but NOT from disk).</source> <translation>Это полностью удалит все завершенные загрузки из этого списка (но НЕ с диска).</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="269"/> + <location filename="downloadlistwidgetcompact.cpp" line="273"/> <source>This will permanently remove all installed downloads from this list (but NOT from disk).</source> <translation>Это полностью удалит все установленные загрузки из этого списка (но НЕ с диска).</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="298"/> + <location filename="downloadlistwidgetcompact.cpp" line="302"/> <source>Install</source> - <translation>Установка</translation> + <translation>Установить</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="300"/> + <location filename="downloadlistwidgetcompact.cpp" line="304"/> <source>Query Info</source> - <translation>Справочная информация</translation> + <translation>Запросить информацию</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="302"/> + <location filename="downloadlistwidgetcompact.cpp" line="306"/> <source>Delete</source> <translation>Удалить</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="304"/> + <location filename="downloadlistwidgetcompact.cpp" line="308"/> <source>Un-Hide</source> - <translation type="unfinished">Показать</translation> + <translation>Показать</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="306"/> + <location filename="downloadlistwidgetcompact.cpp" line="310"/> <source>Remove from View</source> <translation>Скрыть от просмотра</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="309"/> + <location filename="downloadlistwidgetcompact.cpp" line="313"/> <source>Cancel</source> <translation>Отмена</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="310"/> + <location filename="downloadlistwidgetcompact.cpp" line="314"/> <source>Pause</source> <translation>Пауза</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="312"/> + <location filename="downloadlistwidgetcompact.cpp" line="316"/> <source>Remove</source> <translation>Удаление</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="313"/> + <location filename="downloadlistwidgetcompact.cpp" line="317"/> <source>Resume</source> <translation>Возобновить</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="318"/> + <location filename="downloadlistwidgetcompact.cpp" line="322"/> <source>Delete Installed...</source> - <translation>Удалить установленное...</translation> + <translation>Удалить установленные...</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="319"/> + <location filename="downloadlistwidgetcompact.cpp" line="323"/> <source>Delete All...</source> <translation>Удалить все...</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="322"/> + <location filename="downloadlistwidgetcompact.cpp" line="326"/> <source>Remove Installed...</source> - <translation>Отменить установку</translation> + <translation>Очистить от установленных...</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="323"/> + <location filename="downloadlistwidgetcompact.cpp" line="327"/> <source>Remove All...</source> - <translation>Удалить все</translation> + <translation>Очистить от всех...</translation> </message> </context> <context> <name>DownloadListWidgetDelegate</name> <message> - <location filename="downloadlistwidget.cpp" line="88"/> + <location filename="downloadlistwidget.cpp" line="93"/> <source>< mod %1 file %2 ></source> - <translation type="unfinished"></translation> + <translation>< мод %1 файл %2 ></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="91"/> + <location filename="downloadlistwidget.cpp" line="96"/> <source>Pending</source> - <translation type="unfinished"></translation> + <translation>Ожидание</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="118"/> + <location filename="downloadlistwidget.cpp" line="123"/> <source>Fetching Info 1</source> - <translation>Извлечение информации 1</translation> + <translation>Получение информации 1</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="121"/> + <location filename="downloadlistwidget.cpp" line="126"/> <source>Fetching Info 2</source> - <translation>Извлечение информации 2</translation> + <translation>Получение информации 2</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="253"/> - <location filename="downloadlistwidget.cpp" line="262"/> - <location filename="downloadlistwidget.cpp" line="271"/> - <location filename="downloadlistwidget.cpp" line="280"/> + <location filename="downloadlistwidget.cpp" line="258"/> + <location filename="downloadlistwidget.cpp" line="267"/> + <location filename="downloadlistwidget.cpp" line="276"/> + <location filename="downloadlistwidget.cpp" line="285"/> <source>Are you sure?</source> <translation>Вы уверены?</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="254"/> + <location filename="downloadlistwidget.cpp" line="259"/> <source>This will remove all finished downloads from this list and from disk.</source> <translation>Это удалит все готовые загрузки из этого списка и с диска.</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="263"/> + <location filename="downloadlistwidget.cpp" line="268"/> <source>This will remove all installed downloads from this list and from disk.</source> <translation>Это удалит все установленные загрузки из этого листа и с диска.</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="272"/> + <location filename="downloadlistwidget.cpp" line="277"/> <source>This will remove all finished downloads from this list (but NOT from disk).</source> <translation>Это удалит все готовые загрузки из этого списка (но НЕ с диска).</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="281"/> + <location filename="downloadlistwidget.cpp" line="286"/> <source>This will remove all installed downloads from this list (but NOT from disk).</source> <translation>Это удалит все установленные загрузки из этого списка (но НЕ с диска).</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="309"/> + <location filename="downloadlistwidget.cpp" line="314"/> <source>Install</source> <translation>Установить</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="311"/> + <location filename="downloadlistwidget.cpp" line="316"/> <source>Query Info</source> - <translation>Справочная информация</translation> + <translation>Запросить информацию</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="313"/> + <location filename="downloadlistwidget.cpp" line="318"/> <source>Delete</source> <translation>Удалить</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="315"/> + <location filename="downloadlistwidget.cpp" line="320"/> <source>Un-Hide</source> - <translation type="unfinished">Показать</translation> + <translation>Показать</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="317"/> + <location filename="downloadlistwidget.cpp" line="322"/> <source>Remove from View</source> <translation>Скрыть от просмотра</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="320"/> + <location filename="downloadlistwidget.cpp" line="325"/> <source>Cancel</source> <translation>Отмена</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="321"/> + <location filename="downloadlistwidget.cpp" line="326"/> <source>Pause</source> <translation>Пауза</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="323"/> + <location filename="downloadlistwidget.cpp" line="328"/> <source>Remove</source> <translation>Удалить</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="324"/> + <location filename="downloadlistwidget.cpp" line="329"/> <source>Resume</source> <translation>Возобновить</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="329"/> + <location filename="downloadlistwidget.cpp" line="334"/> <source>Delete Installed...</source> - <translation>Удалить установленное...</translation> + <translation>Удалить установленные...</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="330"/> + <location filename="downloadlistwidget.cpp" line="335"/> <source>Delete All...</source> <translation>Удалить все...</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="333"/> + <location filename="downloadlistwidget.cpp" line="338"/> <source>Remove Installed...</source> - <translation>Удалить установленные</translation> + <translation>Очистить от установленных...</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="334"/> + <location filename="downloadlistwidget.cpp" line="339"/> <source>Remove All...</source> - <translation>Удалить все</translation> + <translation>Очистить от всех...</translation> </message> </context> <context> <name>DownloadManager</name> <message> - <location filename="downloadmanager.cpp" line="132"/> + <location filename="downloadmanager.cpp" line="142"/> <source>failed to rename "%1" to "%2"</source> - <translation>не удалось переименовать "%1" в "%2"</translation> + <translation>не удалось переименовать "%1" в "%2"</translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="321"/> + <source>Memory allocation error (in refreshing directory).</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="downloadmanager.cpp" line="342"/> + <location filename="downloadmanager.cpp" line="369"/> <source>Download again?</source> - <translation>Скачать снова</translation> + <translation>Загрузить заново?</translation> </message> <message> - <location filename="downloadmanager.cpp" line="342"/> + <location filename="downloadmanager.cpp" line="369"/> <source>A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name.</source> - <translation>Файл с таким именем загружен. Вы хотите загрузить его снова? У него будет другое имя.</translation> + <translation>Файл с таким именем уже был загружен. Вы хотите загрузить его снова? Новый файл получит другое имя.</translation> </message> <message> - <location filename="downloadmanager.cpp" line="388"/> + <location filename="downloadmanager.cpp" line="417"/> <source>failed to download %1: could not open output file: %2</source> <translation>не удалось загрузить %1: не удалось открыть выходной файл: %2</translation> </message> <message> - <location filename="downloadmanager.cpp" line="421"/> + <location filename="downloadmanager.cpp" line="454"/> <source>Wrong Game</source> - <translation type="unfinished"></translation> + <translation>Неверная игра</translation> </message> <message> - <location filename="downloadmanager.cpp" line="421"/> + <location filename="downloadmanager.cpp" line="454"/> <source>The download link is for a mod for "%1" but this instance of MO has been set up for "%2".</source> - <translation type="unfinished"></translation> + <translation>Ссылка для загрузки мода для игры "%1", но этот экземпляр MO был установлен для "%2".</translation> </message> <message> - <location filename="downloadmanager.cpp" line="439"/> - <location filename="downloadmanager.cpp" line="506"/> - <location filename="downloadmanager.cpp" line="682"/> - <location filename="downloadmanager.cpp" line="691"/> - <location filename="downloadmanager.cpp" line="701"/> - <location filename="downloadmanager.cpp" line="710"/> - <location filename="downloadmanager.cpp" line="724"/> - <location filename="downloadmanager.cpp" line="734"/> - <location filename="downloadmanager.cpp" line="744"/> - <location filename="downloadmanager.cpp" line="754"/> - <location filename="downloadmanager.cpp" line="765"/> + <location filename="downloadmanager.cpp" line="471"/> + <location filename="downloadmanager.cpp" line="538"/> + <location filename="downloadmanager.cpp" line="726"/> + <location filename="downloadmanager.cpp" line="735"/> + <location filename="downloadmanager.cpp" line="756"/> <location filename="downloadmanager.cpp" line="773"/> <location filename="downloadmanager.cpp" line="782"/> - <location filename="downloadmanager.cpp" line="792"/> - <location filename="downloadmanager.cpp" line="807"/> + <location filename="downloadmanager.cpp" line="796"/> + <location filename="downloadmanager.cpp" line="806"/> + <location filename="downloadmanager.cpp" line="816"/> + <location filename="downloadmanager.cpp" line="826"/> + <location filename="downloadmanager.cpp" line="841"/> + <location filename="downloadmanager.cpp" line="849"/> + <location filename="downloadmanager.cpp" line="858"/> + <location filename="downloadmanager.cpp" line="868"/> + <location filename="downloadmanager.cpp" line="883"/> <source>invalid index</source> <translation>неверный индекс</translation> </message> <message> - <location filename="downloadmanager.cpp" line="457"/> + <location filename="downloadmanager.cpp" line="489"/> <source>failed to delete %1</source> <translation>не удалось удалить %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="463"/> + <location filename="downloadmanager.cpp" line="495"/> <source>failed to delete meta file for %1</source> <translation>не удалось удалить мета-файл %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="539"/> - <location filename="downloadmanager.cpp" line="557"/> - <location filename="downloadmanager.cpp" line="570"/> - <location filename="downloadmanager.cpp" line="587"/> - <location filename="downloadmanager.cpp" line="598"/> + <location filename="downloadmanager.cpp" line="571"/> + <location filename="downloadmanager.cpp" line="589"/> + <location filename="downloadmanager.cpp" line="602"/> + <location filename="downloadmanager.cpp" line="622"/> <location filename="downloadmanager.cpp" line="633"/> + <location filename="downloadmanager.cpp" line="673"/> <source>invalid index %1</source> <translation>неверный индекс %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="650"/> + <location filename="downloadmanager.cpp" line="640"/> + <source>No known download urls. Sorry, this download can't be resumed.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="695"/> <source>Please enter the nexus mod id</source> <translation>Пожалуйста, введите ID мода на Nexus</translation> </message> <message> - <location filename="downloadmanager.cpp" line="650"/> + <location filename="downloadmanager.cpp" line="695"/> <source>Mod ID:</source> <translation>ID мода:</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1042"/> + <location filename="downloadmanager.cpp" line="744"/> + <source>Main</source> + <translation type="unfinished">Главное</translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="745"/> + <source>Update</source> + <translation type="unfinished">Обновление</translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="746"/> + <source>Optional</source> + <translation type="unfinished">Опционально</translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="747"/> + <source>Old</source> + <translation type="unfinished">Старые</translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="748"/> + <source>Misc</source> + <translation type="unfinished">Разное</translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="749"/> + <source>Unknown</source> + <translation type="unfinished">Неизвестно</translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="999"/> + <source>Memory allocation error (in processing progress event).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="1012"/> + <source>Memory allocation error (in processing downloaded data).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="1141"/> <source>Information updated</source> <translation>Информация обновлена</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1044"/> - <location filename="downloadmanager.cpp" line="1058"/> + <location filename="downloadmanager.cpp" line="1143"/> + <location filename="downloadmanager.cpp" line="1157"/> <source>No matching file found on Nexus! Maybe this file is no longer available or it was renamed?</source> <translation>Нет соответствующих модов на Nexus! Возможно фал был удален или переименован?</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1046"/> + <location filename="downloadmanager.cpp" line="1145"/> <source>No file on Nexus matches the selected file by name. Please manually choose the correct one.</source> <translation>Нет соответствующих фалов на Nexus. Выберите файл вручную.</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1180"/> + <location filename="downloadmanager.cpp" line="1286"/> <source>No download server available. Please try again later.</source> - <translation>Сервер недоступен. Попробуйте позже.</translation> + <translation>Нет доступных серверов для загрузки. Попробуйте позже.</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1224"/> + <location filename="downloadmanager.cpp" line="1329"/> <source>Failed to request file info from nexus: %1</source> <translation>Не удалось получить информацию о файле: %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1249"/> + <location filename="downloadmanager.cpp" line="1357"/> <source>Download failed. Server reported: %1</source> - <translation type="unfinished"></translation> + <translation>Загрузка не удалась. Сервер сообщил: %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1251"/> + <location filename="downloadmanager.cpp" line="1359"/> <source>Download failed: %1 (%2)</source> <translation>Загрузка не удалась: %1 (%2)</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1331"/> + <location filename="downloadmanager.cpp" line="1458"/> <source>failed to re-open %1</source> <translation>не удалось повторно открыть %1</translation> </message> @@ -732,7 +806,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="editexecutablesdialog.ui" line="14"/> <source>Modify Executables</source> - <translation>Изменить исполняемые</translation> + <translation>Настройка программ</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="20"/> @@ -742,7 +816,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="editexecutablesdialog.ui" line="23"/> <source>This is a list of your configured executables. Executables in grey are automatically recognised and can not be modified.</source> - <translation>Это список ваших настроенных исполняемых файлов. Выделенные серым разпознаются автоматически и не могут быть изменены.</translation> + <translation>Это список ваших настроенных программ. Выделенные серым определены автоматически и не могут быть изменены.</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="38"/> @@ -758,23 +832,23 @@ p, li { white-space: pre-wrap; } <message> <location filename="editexecutablesdialog.ui" line="59"/> <source>Binary</source> - <translation>Двоичный</translation> + <translation>Исполняемый файл</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="66"/> <location filename="editexecutablesdialog.ui" line="69"/> <source>Binary to run</source> - <translation>Двоичный для запука</translation> + <translation>Программа для запуска</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="76"/> <source>Browse filesystem</source> - <translation>Укажите файловую систему</translation> + <translation>Просмотр файлов</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="79"/> <source>Browse filesystem for the executable to run.</source> - <translation>Укажите файловую систему для выполнения</translation> + <translation>Выбор исполняемого файла программы.</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="82"/> @@ -790,13 +864,13 @@ p, li { white-space: pre-wrap; } <message> <location filename="editexecutablesdialog.ui" line="114"/> <source>Arguments</source> - <translation>Аргументация</translation> + <translation>Параметры</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="121"/> <location filename="editexecutablesdialog.ui" line="124"/> <source>Arguments to pass to the application</source> - <translation>Аргументация перехода к приложению</translation> + <translation>Параметры запуска приложения</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="135"/> @@ -841,13 +915,13 @@ Right now the only case I know of where this needs to be overwritten is for the <message> <location filename="editexecutablesdialog.ui" line="175"/> <source>Close MO when started</source> - <translation>Закрыть MO после старта.</translation> + <translation>Закрыть MO после запуска</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="182"/> <location filename="editexecutablesdialog.ui" line="185"/> <source>Add an executable</source> - <translation>Добавить исполняемый</translation> + <translation>Добавить программу</translation> </message> <message> <location filename="editexecutablesdialog.ui" line="188"/> @@ -869,12 +943,12 @@ Right now the only case I know of where this needs to be overwritten is for the <message> <location filename="editexecutablesdialog.ui" line="233"/> <source>Close</source> - <translation type="unfinished">Закрыть</translation> + <translation>Закрыть</translation> </message> <message> <location filename="editexecutablesdialog.cpp" line="125"/> <source>Select a binary</source> - <translation>Указать двоичный</translation> + <translation>Выбор исполняемого файла</translation> </message> <message> <location filename="editexecutablesdialog.cpp" line="125"/> @@ -915,13 +989,13 @@ Right now the only case I know of where this needs to be overwritten is for the <location filename="editexecutablesdialog.cpp" line="230"/> <location filename="editexecutablesdialog.cpp" line="278"/> <source>Save Changes?</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Сохранить изменения?</translation> </message> <message> <location filename="editexecutablesdialog.cpp" line="231"/> <location filename="editexecutablesdialog.cpp" line="279"/> <source>You made changes to the current executable, do you want to save them?</source> - <translation type="unfinished"></translation> + <translation>Вами были сделаны изменения для текущей программы, вы хотите сохранить их?</translation> </message> <message> <location filename="editexecutablesdialog.cpp" line="255"/> @@ -1039,7 +1113,7 @@ Right now the only case I know of where this needs to be overwritten is for the <message> <location filename="installdialog.ui" line="53"/> <source>Pick a name for the mod</source> - <translation>Выбирите имя для мода</translation> + <translation>Выберете имя для мода</translation> </message> <message> <location filename="installdialog.ui" line="56"/> @@ -1054,7 +1128,7 @@ Right now the only case I know of where this needs to be overwritten is for the <message> <location filename="installdialog.ui" line="75"/> <source>Content of the archive. You can change the directory structure by using drag&drop. Hint: Also try right clicking...</source> - <translation>Содержимое архива. Вы можете изменить структуру каталога с помощью drag&drop. Подсказка: правой кнопкой мыши ...</translation> + <translation>Содержимое архива. Вы можете изменить структуру каталога при помощи перетаскивания. Подсказка: Также попробуйте правую кнопку мыши...</translation> </message> <message> <location filename="installdialog.ui" line="78"/> @@ -1067,7 +1141,7 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Отображает содержимое архива. &lt;data&gt; представляет базовый каталог, данные в котором будут сопоставлены с данными каталога игры. Вы можете изменить базовый каталог нажатием правой кнопки мыши, через контекстное меню, а также можете перемещаться по файлам с помощью drag&amp;drop</span></p></body></html></translation> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Отображает содержимое архива. &lt;data&gt; представляет базовый каталог, данные в котором будут сопоставлены с данными каталога игры. Вы можете изменить базовый каталог нажатием правой кнопки мыши, через контекстное меню, а также можете перемещаться по файлам при помощи перетаскивания.</span></p></body></html></translation> </message> <message> <location filename="installdialog.ui" line="121"/> @@ -1105,7 +1179,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="installationmanager.cpp" line="164"/> <location filename="installationmanager.cpp" line="248"/> - <location filename="installationmanager.cpp" line="529"/> + <location filename="installationmanager.cpp" line="530"/> <source>Extracting files</source> <translation>Извлечение файлов</translation> </message> @@ -1135,57 +1209,57 @@ p, li { white-space: pre-wrap; } <translation>Введенное вами имя недопустимо, пожалуйста введите другое.</translation> </message> <message> - <location filename="installationmanager.cpp" line="609"/> + <location filename="installationmanager.cpp" line="610"/> <source>File format "%1" not supported</source> <translation>Формат файла "%1" не поддерживается</translation> </message> <message> - <location filename="installationmanager.cpp" line="735"/> + <location filename="installationmanager.cpp" line="743"/> <source>None of the available installer plugins were able to handle that archive</source> <translation>Не один из доступных плагинов-установщиков не смог просмотреть этот архив</translation> </message> <message> - <location filename="installationmanager.cpp" line="745"/> + <location filename="installationmanager.cpp" line="753"/> <source>no error</source> <translation>ошибки отсутствуют</translation> </message> <message> - <location filename="installationmanager.cpp" line="748"/> + <location filename="installationmanager.cpp" line="756"/> <source>7z.dll not found</source> <translation>7z.dll не найден</translation> </message> <message> - <location filename="installationmanager.cpp" line="751"/> + <location filename="installationmanager.cpp" line="759"/> <source>7z.dll isn't valid</source> <translation>7z.dll поврежден</translation> </message> <message> - <location filename="installationmanager.cpp" line="754"/> + <location filename="installationmanager.cpp" line="762"/> <source>archive not found</source> <translation>архив не найден</translation> </message> <message> - <location filename="installationmanager.cpp" line="757"/> + <location filename="installationmanager.cpp" line="765"/> <source>failed to open archive</source> <translation>не удалось открыть архив</translation> </message> <message> - <location filename="installationmanager.cpp" line="760"/> + <location filename="installationmanager.cpp" line="768"/> <source>unsupported archive type</source> <translation>не поддерживаемый тип архива</translation> </message> <message> - <location filename="installationmanager.cpp" line="763"/> + <location filename="installationmanager.cpp" line="771"/> <source>internal library error</source> <translation>внутренняя ошибка библиотеки</translation> </message> <message> - <location filename="installationmanager.cpp" line="766"/> + <location filename="installationmanager.cpp" line="774"/> <source>archive invalid</source> <translation>архив поврежден</translation> </message> <message> - <location filename="installationmanager.cpp" line="770"/> + <location filename="installationmanager.cpp" line="778"/> <source>unknown archive error</source> <translation>неизвестная ошибка архива</translation> </message> @@ -1216,7 +1290,7 @@ p, li { white-space: pre-wrap; } <context> <name>LogBuffer</name> <message> - <location filename="logbuffer.cpp" line="73"/> + <location filename="logbuffer.cpp" line="83"/> <source>failed to write log to %1: %2</source> <translation>не удалось произвести запись в журнал %1: %2</translation> </message> @@ -1224,12 +1298,12 @@ p, li { white-space: pre-wrap; } <context> <name>MOApplication</name> <message> - <location filename="moapplication.cpp" line="68"/> + <location filename="moapplication.cpp" line="115"/> <source>an error occured: %1</source> <translation>произошла ошибка: %1</translation> </message> <message> - <location filename="moapplication.cpp" line="73"/> + <location filename="moapplication.cpp" line="120"/> <source>an error occured</source> <translation>произошла ошибка</translation> </message> @@ -1237,23 +1311,48 @@ p, li { white-space: pre-wrap; } <context> <name>MainWindow</name> <message> - <location filename="mainwindow.ui" line="51"/> - <location filename="mainwindow.ui" line="392"/> + <location filename="mainwindow.ui" line="43"/> + <location filename="mainwindow.ui" line="482"/> <source>Categories</source> <translation type="unfinished">Категории</translation> </message> <message> - <location filename="mainwindow.ui" line="128"/> + <location filename="mainwindow.ui" line="97"/> + <source>Click blank area to deselect</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="116"/> + <source>If checked, only mods that match all selected categories are displayed.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="119"/> + <source>And</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="129"/> + <source>If checked, all mods that match at least one of the selected categories are displayed.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="132"/> + <source>Or</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="171"/> <source>Profile</source> <translation>Профиль</translation> </message> <message> - <location filename="mainwindow.ui" line="138"/> + <location filename="mainwindow.ui" line="181"/> <source>Pick a module collection</source> <translation>Выберете набор модулей</translation> </message> <message> - <location filename="mainwindow.ui" line="141"/> + <location filename="mainwindow.ui" line="184"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1268,54 +1367,66 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Обратите внимание, что порядок загрузки esp одинаков для всех профилей.</span></p></body></html></translation> </message> <message> - <location filename="mainwindow.ui" line="159"/> + <location filename="mainwindow.ui" line="215"/> <source>Refresh list</source> <translation>Обновить список</translation> </message> <message> - <location filename="mainwindow.ui" line="162"/> + <location filename="mainwindow.ui" line="218"/> <source>Refresh list. This is usually not necessary unless you modified data outside the program.</source> <translation>Обновить список. Обычно в этом нет необходимости, пока вы не измените данные вне программы.</translation> </message> <message> - <location filename="mainwindow.ui" line="278"/> + <location filename="mainwindow.ui" line="238"/> + <location filename="mainwindow.ui" line="739"/> + <source>Restore Backup...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="252"/> + <location filename="mainwindow.ui" line="759"/> + <source>Create Backup</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="368"/> <source>List of available mods.</source> <translation>Список доступных модов.</translation> </message> <message> - <location filename="mainwindow.ui" line="281"/> + <location filename="mainwindow.ui" line="371"/> <source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag & drop mods to change their "installation" orders.</source> <translation>Это список установленных модов. Используйте флажки, для включения/отключения модов и перетаскивание модов, для изменения их порядка установки.</translation> </message> <message> - <location filename="mainwindow.ui" line="366"/> + <location filename="mainwindow.ui" line="456"/> <source>Filter</source> <translation>Фильтр</translation> </message> <message> - <location filename="mainwindow.ui" line="387"/> + <location filename="mainwindow.ui" line="477"/> <source>No groups</source> <translation>Без группировки</translation> </message> <message> - <location filename="mainwindow.ui" line="397"/> + <location filename="mainwindow.ui" line="487"/> <source>Nexus IDs</source> <translation>Nexus IDs</translation> </message> <message> - <location filename="mainwindow.ui" line="405"/> - <location filename="mainwindow.ui" line="724"/> - <location filename="mainwindow.ui" line="1046"/> + <location filename="mainwindow.ui" line="495"/> + <location filename="mainwindow.ui" line="876"/> + <location filename="mainwindow.ui" line="1214"/> <source>Namefilter</source> <translation>Фильтр по имени</translation> </message> <message> - <location filename="mainwindow.ui" line="440"/> + <location filename="mainwindow.ui" line="530"/> <source>Pick a program to run.</source> <translation>Выберете программу для запуска.</translation> </message> <message> - <location filename="mainwindow.ui" line="443"/> + <location filename="mainwindow.ui" line="533"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1330,12 +1441,12 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Вы можете добавить новые инструменты в этот список, но работоспособность их всех не гарантированна.</span></p></body></html></translation> </message> <message> - <location filename="mainwindow.ui" line="491"/> + <location filename="mainwindow.ui" line="581"/> <source>Run program</source> <translation>Запустить программу</translation> </message> <message> - <location filename="mainwindow.ui" line="494"/> + <location filename="mainwindow.ui" line="584"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1348,17 +1459,17 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Запустить выбранную программу с поддержкой ModOrganizer.</span></p></body></html></translation> </message> <message> - <location filename="mainwindow.ui" line="504"/> + <location filename="mainwindow.ui" line="594"/> <source>Run</source> <translation>Запустить</translation> </message> <message> - <location filename="mainwindow.ui" line="545"/> + <location filename="mainwindow.ui" line="635"/> <source>Create a shortcut in your start menu or on the desktop to the specified program</source> <translation>Создать ярлык для выбранной программы, в меню Пуск или на рабочем столе.</translation> </message> <message> - <location filename="mainwindow.ui" line="548"/> + <location filename="mainwindow.ui" line="638"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1371,22 +1482,22 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Создает ярлык в меню Пуск, который запускает выбранную программу с активным MO.</span></p></body></html></translation> </message> <message> - <location filename="mainwindow.ui" line="555"/> + <location filename="mainwindow.ui" line="645"/> <source>Shortcut</source> <translation>Ярлык</translation> </message> <message> - <location filename="mainwindow.ui" line="605"/> + <location filename="mainwindow.ui" line="695"/> <source>Plugins</source> - <translation type="unfinished">Плагины</translation> + <translation>Плагины</translation> </message> <message> - <location filename="mainwindow.ui" line="669"/> + <location filename="mainwindow.ui" line="821"/> <source>List of available esp/esm files</source> <translation>Список доступных esp/esm файлов</translation> </message> <message> - <location filename="mainwindow.ui" line="672"/> + <location filename="mainwindow.ui" line="824"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1399,22 +1510,32 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Этот список содержит esp и esm файлы активных модов. Для них требуется определенный порядок загрузки. Используйте перетаскивание для изменения порядка загрузки. Обратите внимание, что MO сохранит порядок загрузки только для активными/проверенных модов.<br />Существует замечательная утилита, называющаяся &quot;BOSS&quot; , которая автоматически сортирует эти файлы.</span></p></body></html></translation> </message> <message> - <location filename="mainwindow.ui" line="731"/> + <location filename="mainwindow.ui" line="715"/> <source>Sort</source> - <translation type="unfinished"></translation> + <translation>Сортировать</translation> </message> <message> - <location filename="mainwindow.ui" line="741"/> + <location filename="mainwindow.ui" line="886"/> <source>Archives</source> + <translation>Архивы</translation> + </message> + <message> + <location filename="mainwindow.ui" line="916"/> + <source><html><head/><body><p>BSAs are bundles of game assets (textures, scripts, ...). By default, the engine loads these bundles in a separate step from loose files. MO can manage those archives to align their load order with that of loose files:</p><p>If archives are <span style=" font-weight:600;">managed</span>, their load order is specified by the priority of the corresponding mod (left pane), the same as the loose files. You can manually enable any BSA that has no corresponding plugin active.<br/></p><p>If archives are <span style=" font-weight:600;">not managed</span> their load order is specified by the priority of the corresponding plugin (right pane, plugins tab). You can then not manually enable BSAs where the plugin isn't active.</p><p>In either case you can not disable archives if there is a matching plugin, the game will load them no matter what.</p></body></html></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="762"/> + <location filename="mainwindow.ui" line="919"/> + <source><html><head/><body><p>Have MO manage archives (<a href="#"><span style=" text-decoration: underline; color:#0000ff;">read more</span></a>)</p></body></html></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="934"/> <source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source> <translation>Список доступных BSA. Они не отмечены здесь, не управляются с помощью MO и игнорируют порядок установки.</translation> </message> <message> - <location filename="mainwindow.ui" line="765"/> + <location filename="mainwindow.ui" line="937"/> <source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" with loose files in your data directory over which is loaded. By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored! @@ -1425,70 +1546,65 @@ BSAs checked here are loaded in such a way that your installation order is obeye BSA, отмеченные здесь, загружаются так, чтобы порядок установки соблюдался должным образом.</translation> </message> <message> - <location filename="mainwindow.ui" line="811"/> - <location filename="mainwindow.ui" line="880"/> + <location filename="mainwindow.ui" line="983"/> + <location filename="mainwindow.ui" line="1042"/> <source>File</source> <translation type="unfinished">Файл</translation> </message> <message> - <location filename="mainwindow.ui" line="819"/> <source><html><head/><body><p>Marked Archives (<img src=":/MO/gui/warning_16"/>) are still loaded on Skyrim but the <a href="http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/"><span style=" text-decoration: underline; color:#0000ff;">regular file override</span></a> mechanism will apply: Loose files override BSAs, no matter the mod/plugin priority.</p></body></html></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="885"/> - <source>Mod</source> - <translation type="unfinished">Мод</translation> + <translation type="obsolete"><html><head/><body><p>Помеченные архивы (<img src=":/MO/gui/warning_16"/>) всё ещё загружаются в Skyrim, но был применён<a href="http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/"><span style=" text-decoration: underline; color:#0000ff;">стандартный механизм перезаписи файлов</span></a>: отдельные файлы перезаписывают файлы в BSA, вне зависимости от приоритета мода/плагина.</p></body></html></translation> </message> <message> - <source><html><head/><body><p>Marked Archives (<img src=":/MO/gui/resources/dialog-warning_16.png"/>) are still loaded on Skyrim but the <a href="http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/"><span style=" text-decoration: underline; color:#0000ff;">regular file override</span></a> mechanism will apply: Loose files override BSAs, no matter the mod/plugin priority.</p></body></html></source> - <translation type="obsolete"><html><head/><body><p>Помеченые архивы (<img src=":/MO/gui/resources/dialog-warning_16.png"/>) все еще загружаются в Skyrim, но <a href="http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/"><span style=" text-decoration: underline; color:#0000ff;">применяется обычный</span></a> механизм: Отдельные файлы перезаписывают BSAs, вне зависимости от приоритета мода/плагина.</p></body></html></translation> - </message> - <message> - <location filename="mainwindow.ui" line="830"/> + <location filename="mainwindow.ui" line="992"/> <source>Data</source> <translation>Данные</translation> </message> <message> - <location filename="mainwindow.ui" line="848"/> + <location filename="mainwindow.ui" line="1010"/> <source>refresh data-directory overview</source> <translation>обновить обзор каталога Data</translation> </message> <message> - <location filename="mainwindow.ui" line="851"/> + <location filename="mainwindow.ui" line="1013"/> <source>Refresh the overview. This may take a moment.</source> <translation>Обновление обзора. Это может занять некоторое время.</translation> </message> <message> - <location filename="mainwindow.ui" line="854"/> - <location filename="mainwindow.cpp" line="3781"/> - <location filename="mainwindow.cpp" line="4604"/> + <location filename="mainwindow.ui" line="1016"/> + <location filename="mainwindow.cpp" line="3749"/> + <location filename="mainwindow.cpp" line="4614"/> <source>Refresh</source> <translation>Обновить</translation> </message> <message> - <location filename="mainwindow.ui" line="870"/> + <location filename="mainwindow.ui" line="1032"/> <source>This is an overview of your data directory as visible to the game (and tools). </source> - <translation>Это обзор вашего каталога данных так, как он будет видим игре (и инструментам).</translation> + <translation>Это обзор вашего каталога данных так, как он будет видим игре (и инструментам). </translation> </message> <message> - <location filename="mainwindow.ui" line="895"/> - <location filename="mainwindow.ui" line="898"/> + <location filename="mainwindow.ui" line="1047"/> + <source>Mod</source> + <translation type="unfinished">Мод</translation> + </message> + <message> + <location filename="mainwindow.ui" line="1057"/> + <location filename="mainwindow.ui" line="1060"/> <source>Filter the above list so that only conflicts are displayed.</source> <translation>Отфильтровать вышеприведенный список так, чтобы отображались только конфликты.</translation> </message> <message> - <location filename="mainwindow.ui" line="901"/> + <location filename="mainwindow.ui" line="1063"/> <source>Show only conflicts</source> <translation>Показать только конфликты</translation> </message> <message> - <location filename="mainwindow.ui" line="909"/> + <location filename="mainwindow.ui" line="1071"/> <source>Saves</source> <translation>Сохранения</translation> </message> <message> - <location filename="mainwindow.ui" line="933"/> + <location filename="mainwindow.ui" line="1095"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1505,160 +1621,159 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Если вы выберете в контекстном меню пункт &quot;Исправить моды...&quot;, MO попытается подключить все моды и esp, чтобы исправить эти отсутствующие esp. Это ничего не отключит!</span></p></body></html></translation> </message> <message> - <location filename="mainwindow.ui" line="947"/> + <location filename="mainwindow.ui" line="1109"/> <source>Downloads</source> <translation>Загрузки</translation> </message> <message> - <location filename="mainwindow.ui" line="979"/> + <location filename="mainwindow.ui" line="1141"/> <source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source> <translation>Список модов, загруженных с Nexus. Двойной клик для установки.</translation> </message> <message> - <location filename="mainwindow.ui" line="1032"/> <source>Compact</source> - <translation>Упаковать</translation> + <translation type="obsolete">Компактно</translation> </message> <message> - <location filename="mainwindow.ui" line="1039"/> + <location filename="mainwindow.ui" line="1194"/> <source>Show Hidden</source> - <translation type="unfinished"></translation> + <translation>Показывать скрытые</translation> </message> <message> - <location filename="mainwindow.ui" line="1070"/> + <location filename="mainwindow.ui" line="1256"/> <source>Tool Bar</source> <translation>Панель инструментов</translation> </message> <message> - <location filename="mainwindow.ui" line="1112"/> + <location filename="mainwindow.ui" line="1298"/> <source>Install Mod</source> <translation>Установить мод</translation> </message> <message> - <location filename="mainwindow.ui" line="1115"/> + <location filename="mainwindow.ui" line="1301"/> <source>Install &Mod</source> <translation>Установить &мод</translation> </message> <message> - <location filename="mainwindow.ui" line="1118"/> + <location filename="mainwindow.ui" line="1304"/> <source>Install a new mod from an archive</source> <translation>Установить новый мод из архива</translation> </message> <message> - <location filename="mainwindow.ui" line="1121"/> + <location filename="mainwindow.ui" line="1307"/> <source>Ctrl+M</source> <translation>Ctrl+M</translation> </message> <message> - <location filename="mainwindow.ui" line="1130"/> + <location filename="mainwindow.ui" line="1316"/> <source>Profiles</source> <translation>Профили</translation> </message> <message> - <location filename="mainwindow.ui" line="1133"/> + <location filename="mainwindow.ui" line="1319"/> <source>&Profiles</source> <translation>&Профили</translation> </message> <message> - <location filename="mainwindow.ui" line="1136"/> + <location filename="mainwindow.ui" line="1322"/> <source>Configure Profiles</source> <translation>Настройка профилей</translation> </message> <message> - <location filename="mainwindow.ui" line="1139"/> + <location filename="mainwindow.ui" line="1325"/> <source>Ctrl+P</source> <translation>Ctrl+P</translation> </message> <message> - <location filename="mainwindow.ui" line="1148"/> + <location filename="mainwindow.ui" line="1334"/> <source>Executables</source> <translation>Программы</translation> </message> <message> - <location filename="mainwindow.ui" line="1151"/> + <location filename="mainwindow.ui" line="1337"/> <source>&Executables</source> <translation>&Программы</translation> </message> <message> - <location filename="mainwindow.ui" line="1154"/> + <location filename="mainwindow.ui" line="1340"/> <source>Configure the executables that can be started through Mod Organizer</source> <translation>Настройка программ, которые могут быть запущены через Mod Organizer</translation> </message> <message> - <location filename="mainwindow.ui" line="1157"/> + <location filename="mainwindow.ui" line="1343"/> <source>Ctrl+E</source> <translation>Ctrl+E</translation> </message> <message> - <location filename="mainwindow.ui" line="1166"/> - <location filename="mainwindow.ui" line="1172"/> + <location filename="mainwindow.ui" line="1352"/> + <location filename="mainwindow.ui" line="1358"/> <source>Tools</source> <translation>Инструменты</translation> </message> <message> - <location filename="mainwindow.ui" line="1169"/> + <location filename="mainwindow.ui" line="1355"/> <source>&Tools</source> <translation>&Инструменты</translation> </message> <message> - <location filename="mainwindow.ui" line="1175"/> + <location filename="mainwindow.ui" line="1361"/> <source>Ctrl+I</source> <translation>Ctrl+I</translation> </message> <message> - <location filename="mainwindow.ui" line="1184"/> + <location filename="mainwindow.ui" line="1370"/> <source>Settings</source> <translation>Настройки</translation> </message> <message> - <location filename="mainwindow.ui" line="1187"/> + <location filename="mainwindow.ui" line="1373"/> <source>&Settings</source> <translation>&Настройки</translation> </message> <message> - <location filename="mainwindow.ui" line="1190"/> + <location filename="mainwindow.ui" line="1376"/> <source>Configure settings and workarounds</source> <translation>Настройка параметров и способов обхода</translation> </message> <message> - <location filename="mainwindow.ui" line="1193"/> + <location filename="mainwindow.ui" line="1379"/> <source>Ctrl+S</source> <translation>Ctrl+S</translation> </message> <message> - <location filename="mainwindow.ui" line="1202"/> + <location filename="mainwindow.ui" line="1388"/> <source>Nexus</source> <translation>Nexus</translation> </message> <message> - <location filename="mainwindow.ui" line="1205"/> + <location filename="mainwindow.ui" line="1391"/> <source>Search nexus network for more mods</source> <translation>Поиск дополнительных модов на Nexus</translation> </message> <message> - <location filename="mainwindow.ui" line="1208"/> + <location filename="mainwindow.ui" line="1394"/> <source>Ctrl+N</source> <translation>Ctrl+N</translation> </message> <message> - <location filename="mainwindow.ui" line="1220"/> - <location filename="mainwindow.cpp" line="4545"/> + <location filename="mainwindow.ui" line="1406"/> + <location filename="mainwindow.cpp" line="4555"/> <source>Update</source> <translation>Обновление</translation> </message> <message> - <location filename="mainwindow.ui" line="1223"/> + <location filename="mainwindow.ui" line="1409"/> <source>Mod Organizer is up-to-date</source> <translation>Mod Organizer обновлен</translation> </message> <message> - <location filename="mainwindow.ui" line="1235"/> - <location filename="mainwindow.cpp" line="509"/> + <location filename="mainwindow.ui" line="1421"/> + <location filename="mainwindow.cpp" line="561"/> <source>No Problems</source> <translation>Проблем не обнаружено</translation> </message> <message> - <location filename="mainwindow.ui" line="1238"/> + <location filename="mainwindow.ui" line="1424"/> <source>This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them. !Work in progress! @@ -1669,188 +1784,191 @@ Right now this has very limited functionality</source> Прямо сейчас этот функционал сильно ограничен</translation> </message> <message> - <location filename="mainwindow.ui" line="1250"/> - <location filename="mainwindow.ui" line="1253"/> + <location filename="mainwindow.ui" line="1436"/> + <location filename="mainwindow.ui" line="1439"/> <source>Help</source> <translation>Справка</translation> </message> <message> - <location filename="mainwindow.ui" line="1256"/> + <location filename="mainwindow.ui" line="1442"/> <source>Ctrl+H</source> <translation>Ctrl+H</translation> </message> <message> - <location filename="mainwindow.ui" line="1265"/> + <location filename="mainwindow.ui" line="1451"/> <source>Endorse MO</source> <translation>Одобрить MO</translation> </message> <message> - <location filename="mainwindow.ui" line="1268"/> - <location filename="mainwindow.cpp" line="4633"/> + <location filename="mainwindow.ui" line="1454"/> + <location filename="mainwindow.cpp" line="4637"/> <source>Endorse Mod Organizer</source> <translation>Одобрить Mod Organizer</translation> </message> <message> - <location filename="mainwindow.cpp" line="223"/> + <location filename="mainwindow.ui" line="1459"/> + <source>Copy Log to Clipboard</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="1462"/> + <source>Ctrl+C</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="244"/> <source>Toolbar</source> <translation>Панель инструментов</translation> </message> <message> - <location filename="mainwindow.cpp" line="224"/> + <location filename="mainwindow.cpp" line="245"/> <source>Desktop</source> <translation>Рабочий стол</translation> </message> <message> - <location filename="mainwindow.cpp" line="225"/> + <location filename="mainwindow.cpp" line="246"/> <source>Start Menu</source> <translation>Меню Пуск</translation> </message> <message> - <location filename="mainwindow.cpp" line="505"/> + <location filename="mainwindow.cpp" line="549"/> <source>Problems</source> <translation>Проблемы</translation> </message> <message> - <location filename="mainwindow.cpp" line="506"/> + <location filename="mainwindow.cpp" line="550"/> <source>There are potential problems with your setup</source> <translation>Есть возможные проблемы с вашей установкой</translation> </message> <message> - <location filename="mainwindow.cpp" line="510"/> + <location filename="mainwindow.cpp" line="562"/> <source>Everything seems to be in order</source> <translation>Кажется всё в порядке</translation> </message> <message> - <location filename="mainwindow.cpp" line="568"/> + <location filename="mainwindow.cpp" line="619"/> <source>Help on UI</source> <translation>Справка по интерфейсу</translation> </message> <message> - <location filename="mainwindow.cpp" line="572"/> + <location filename="mainwindow.cpp" line="623"/> <source>Documentation Wiki</source> <translation>Wiki-документация</translation> </message> <message> - <location filename="mainwindow.cpp" line="576"/> + <location filename="mainwindow.cpp" line="627"/> <source>Report Issue</source> <translation>Сообщить о проблеме</translation> </message> <message> - <location filename="mainwindow.cpp" line="580"/> + <location filename="mainwindow.cpp" line="631"/> <source>Tutorials</source> <translation>Уроки</translation> </message> <message> - <location filename="mainwindow.cpp" line="619"/> + <location filename="mainwindow.cpp" line="670"/> <source>About</source> - <translation type="unfinished"></translation> + <translation>О программе</translation> </message> <message> - <location filename="mainwindow.cpp" line="620"/> + <location filename="mainwindow.cpp" line="671"/> <source>About Qt</source> - <translation type="unfinished"></translation> + <translation>О библиотеке Qt</translation> </message> <message> - <source>failed to save archives order, do you have write access to "%1"?</source> - <translation type="obsolete">не удалось сохранить порядок архивов, у вас имеется доступ на запись к "%1"?</translation> - </message> - <message> - <location filename="mainwindow.cpp" line="705"/> + <location filename="mainwindow.cpp" line="765"/> <source>failed to save load order: %1</source> <translation>не удалось сохранить порядок загрузки: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="717"/> + <location filename="mainwindow.cpp" line="777"/> <source>Name</source> <translation type="unfinished">Имя</translation> </message> <message> - <location filename="mainwindow.cpp" line="718"/> + <location filename="mainwindow.cpp" line="778"/> <source>Please enter a name for the new profile</source> <translation>Введите имя нового профиля</translation> </message> <message> - <location filename="mainwindow.cpp" line="726"/> + <location filename="mainwindow.cpp" line="786"/> <source>failed to create profile: %1</source> <translation>не удалось создать профиль: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="769"/> + <location filename="mainwindow.cpp" line="829"/> <source>Show tutorial?</source> <translation>Показать урок?</translation> </message> <message> - <location filename="mainwindow.cpp" line="770"/> + <location filename="mainwindow.cpp" line="830"/> <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> + <translation>Вы запустили Mod Organizer в первый раз. Вы хотите просмотреть уроки по основным возможностям? В случае отказа вы всегда можете открыть уроки из меню "Помощь".</translation> </message> <message> - <location filename="mainwindow.cpp" line="801"/> + <location filename="mainwindow.cpp" line="861"/> <source>Downloads in progress</source> <translation>Загрузки в процессе</translation> </message> <message> - <location filename="mainwindow.cpp" line="802"/> + <location filename="mainwindow.cpp" line="862"/> <source>There are still downloads in progress, do you really want to quit?</source> <translation>Загрузки всё ещё в процессе, вы правда хотите выйти?</translation> </message> <message> - <location filename="mainwindow.cpp" line="848"/> + <location filename="mainwindow.cpp" line="916"/> <source>failed to read savegame: %1</source> <translation>не удалось прочесть сохранение: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="972"/> + <location filename="mainwindow.cpp" line="1040"/> <source>Plugin "%1" failed: %2</source> <translation>Плагин "%1" не удалось: %2</translation> </message> <message> - <location filename="mainwindow.cpp" line="974"/> + <location filename="mainwindow.cpp" line="1042"/> <source>Plugin "%1" failed</source> <translation>Плагин "%1" не удалось</translation> </message> <message> - <location filename="mainwindow.cpp" line="1047"/> + <location filename="mainwindow.cpp" line="1211"/> <source>failed to init plugin %1: %2</source> <translation>не удалось инициализировать плагин %1: %2</translation> </message> <message> - <location filename="mainwindow.cpp" line="1085"/> + <location filename="mainwindow.cpp" line="1249"/> <source>Plugin error</source> - <translation type="unfinished"></translation> + <translation>Ошибка плагина</translation> </message> <message> - <location filename="mainwindow.cpp" line="1086"/> + <location filename="mainwindow.cpp" line="1250"/> <source>It appears the plugin "%1" failed to load last startup and caused MO to crash. Do you want to disable it? (Please note: If this is the first time you see this message for this plugin you may want to give it another try. The plugin may be able to recover from the problem)</source> - <translation type="unfinished"></translation> + <translation>Кажется, что при последнем запуске не удалось загрузить плагин "%1" и это привело к падению MO. Вы хотите отключить его? +(Замечание: Если это первый раз, когда вы видите такое сообщение для этого плагина, вероятно вы захотите сделать ещё одну попытка. Плагин может восстановиться после проблемы)</translation> </message> <message> - <location filename="mainwindow.cpp" line="1270"/> + <location filename="mainwindow.cpp" line="1309"/> <source>Failed to start "%1"</source> <translation>Не удалось запустить "%1"</translation> </message> <message> - <location filename="mainwindow.cpp" line="1272"/> + <location filename="mainwindow.cpp" line="1311"/> <source>Waiting</source> <translation>Ожидание</translation> </message> <message> - <location filename="mainwindow.cpp" line="1272"/> + <location filename="mainwindow.cpp" line="1311"/> <source>Please press OK once you're logged into steam.</source> <translation>Нажмите OK как только вы войдете в Steam.</translation> </message> <message> - <source>"%1" not found</source> - <translation type="obsolete">"%1" не найден</translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1298"/> + <location filename="mainwindow.cpp" line="1337"/> <source>Start Steam?</source> <translation>Запустить Steam?</translation> </message> <message> - <location filename="mainwindow.cpp" line="1299"/> + <location filename="mainwindow.cpp" line="1338"/> <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> @@ -1865,773 +1983,890 @@ Right now this has very limited functionality</source> <translation>Конфликтов нет</translation> </message> <message> - <location filename="mainwindow.cpp" line="1692"/> + <location filename="mainwindow.cpp" line="1706"/> <source><Edit...></source> <translation><Правка...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1929"/> + <location filename="mainwindow.cpp" line="1976"/> <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="1936"/> <source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source> - <translation>Этот архив все равно будет загружен, так как есть плагин с одноименным названием, но его файлы не будут следовать порядку установки!</translation> + <translation type="obsolete">Этот архив все равно будет загружен, так как есть плагин с одноименным названием, но его файлы не будут следовать порядку установки!</translation> </message> <message> - <location filename="mainwindow.cpp" line="1991"/> + <location filename="mainwindow.cpp" line="2038"/> <source>Activating Network Proxy</source> <translation>Подключение сетевого прокси</translation> </message> <message> - <location filename="mainwindow.cpp" line="2122"/> - <location filename="mainwindow.cpp" line="4248"/> + <location filename="mainwindow.cpp" line="2269"/> + <location filename="mainwindow.cpp" line="4258"/> <source>Installation successful</source> <translation>Установка завершена</translation> </message> <message> - <location filename="mainwindow.cpp" line="2133"/> - <location filename="mainwindow.cpp" line="4261"/> + <location filename="mainwindow.cpp" line="2280"/> + <location filename="mainwindow.cpp" line="4270"/> <source>Configure Mod</source> <translation>Настройка мода</translation> </message> <message> - <location filename="mainwindow.cpp" line="2134"/> - <location filename="mainwindow.cpp" line="4262"/> + <location filename="mainwindow.cpp" line="2281"/> + <location filename="mainwindow.cpp" line="4271"/> <source>This mod contains ini tweaks. Do you want to configure them now?</source> <translation>Этот мод включает настройки ini. Вы хотите настроить их сейчас?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2140"/> - <location filename="mainwindow.cpp" line="4268"/> + <location filename="mainwindow.cpp" line="2288"/> + <location filename="mainwindow.cpp" line="4278"/> <source>mod "%1" not found</source> <translation>мод "%1" не найден</translation> </message> <message> - <location filename="mainwindow.cpp" line="2143"/> - <location filename="mainwindow.cpp" line="4274"/> + <location filename="mainwindow.cpp" line="2291"/> + <location filename="mainwindow.cpp" line="4284"/> <source>Installation cancelled</source> <translation>Установка отменена</translation> </message> <message> - <location filename="mainwindow.cpp" line="2143"/> - <location filename="mainwindow.cpp" line="4274"/> + <location filename="mainwindow.cpp" line="2291"/> + <location filename="mainwindow.cpp" line="4284"/> <source>The mod was not installed completely.</source> <translation>Мод не был установлен полностью.</translation> </message> <message> - <location filename="mainwindow.cpp" line="2292"/> + <location filename="mainwindow.cpp" line="2196"/> <source>Some plugins could not be loaded</source> <translation>Некоторые плагины не могут быть загружены</translation> </message> <message> - <source>The following Plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:<ul></source> - <translation type="obsolete">Следующие плагины не могут быть загружены. Причина может быть в отсутствующих зависимостях (таких как python) или в устаревшей версии:<ul></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2295"/> + <location filename="mainwindow.cpp" line="2199"/> <source>Too many esps and esms enabled</source> - <translation type="unfinished"></translation> + <translation>Подключено слишком много esp и esm</translation> </message> <message> - <location filename="mainwindow.cpp" line="2298"/> - <location filename="mainwindow.cpp" line="2319"/> + <location filename="mainwindow.cpp" line="2202"/> + <location filename="mainwindow.cpp" line="2223"/> <source>Description missing</source> - <translation type="unfinished"></translation> + <translation>Описание отсутствует</translation> </message> <message> - <location filename="mainwindow.cpp" line="2307"/> + <location filename="mainwindow.cpp" line="2211"/> <source>The following plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:</source> - <translation type="unfinished"></translation> + <translation>Следующие плагины не могут быть загружены. Причина возможно в отсутствующих зависимостях (таких как python) или в устаревшей версии:</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2219"/> + <source>The game doesn't allow more than 255 active plugins (including the official ones) to be loaded. You have to disable some unused plugins or merge some plugins into one. You can find a guide here: <a href="http://wiki.step-project.com/Guide:Merging_Plugins">http://wiki.step-project.com/Guide:Merging_Plugins</a></source> + <translation>Игра не позволяет загрузить больше 255 активных плагинов (включая официальные). Вам нужно отключить некоторые ненужные плагины или объединить несколько небольших плагинов в один. Инструкция может быть найдена здесь: <a href="http://wiki.step-project.com/Guide:Merging_Plugins">http://wiki.step-project.com/Guide:Merging_Plugins</a></translation> </message> <message> - <location filename="mainwindow.cpp" line="2341"/> + <location filename="mainwindow.cpp" line="2245"/> <source>Choose Mod</source> <translation>Выберете мод</translation> </message> <message> - <location filename="mainwindow.cpp" line="2342"/> + <location filename="mainwindow.cpp" line="2246"/> <source>Mod Archive</source> <translation>Архив мода</translation> </message> <message> - <location filename="mainwindow.cpp" line="2495"/> + <location filename="mainwindow.cpp" line="2502"/> <source>Start Tutorial?</source> - <translation>Начать обучение?</translation> + <translation>Начать урок?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2496"/> + <location filename="mainwindow.cpp" line="2503"/> <source>You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue?</source> - <translation>Вы собираетесь открыть обучение. По техническим причинам будет невозможно досрочно закончить обучение. Продолжить?</translation> + <translation>Вы собираетесь открыть урок. По техническим причинам будет невозможно закончить его досрочно. Продолжить?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2651"/> - <location filename="mainwindow.cpp" line="4171"/> + <location filename="mainwindow.cpp" line="2647"/> + <location filename="mainwindow.cpp" line="4179"/> <source>Download started</source> <translation>Загрузка начата</translation> </message> <message> - <location filename="mainwindow.cpp" line="2682"/> + <location filename="mainwindow.cpp" line="2708"/> <source>failed to update mod list: %1</source> <translation>не удалось обновить список модов: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2711"/> + <location filename="mainwindow.cpp" line="2738"/> <source>failed to spawn notepad.exe: %1</source> <translation>не удалось вызвать notepad.exe: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2752"/> + <location filename="mainwindow.cpp" line="2775"/> <source>failed to open %1</source> <translation>не удалось открыть %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2830"/> + <location filename="mainwindow.cpp" line="2850"/> <source>failed to change origin name: %1</source> <translation>не удалось изменить оригинальное имя: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2909"/> + <location filename="mainwindow.cpp" line="1323"/> + <source>Executable "%1" not found</source> + <translation>Исполняемый файл "%1" не найден</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1803"/> + <source>Failed to refresh list of esps: %1</source> + <translation>Не удалось обновить список esp: %1</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2880"/> + <source>failed to move "%1" from mod "%2" to "%3": %4</source> + <translation>не удалось переместить "%1" из мода "%2" в "%3": %4</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2929"/> <source><Checked></source> <translation><Подключен></translation> </message> <message> - <location filename="mainwindow.cpp" line="2910"/> + <location filename="mainwindow.cpp" line="2930"/> <source><Unchecked></source> <translation><Отключен></translation> </message> <message> - <location filename="mainwindow.cpp" line="2911"/> + <location filename="mainwindow.cpp" line="2931"/> <source><Update></source> <translation><Обновлен></translation> </message> <message> - <location filename="mainwindow.cpp" line="2912"/> + <location filename="mainwindow.cpp" line="2934"/> <source><No category></source> <translation><Без категории></translation> </message> <message> - <location filename="mainwindow.cpp" line="2913"/> + <location filename="mainwindow.cpp" line="2935"/> <source><Conflicted></source> <translation><Конфликтует></translation> </message> <message> - <location filename="mainwindow.cpp" line="2914"/> + <location filename="mainwindow.cpp" line="2936"/> <source><Not Endorsed></source> - <translation type="unfinished"></translation> + <translation><Не одобрено></translation> </message> <message> - <location filename="mainwindow.cpp" line="2947"/> + <location filename="mainwindow.cpp" line="2969"/> <source>failed to rename mod: %1</source> <translation>не удалось переименовать мод: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2960"/> + <location filename="mainwindow.cpp" line="2982"/> <source>Overwrite?</source> <translation>Перезаписать?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2961"/> + <location filename="mainwindow.cpp" line="2983"/> <source>This will replace the existing mod "%1". Continue?</source> <translation>Это заменит существующий мод "%1". Продолжить?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2964"/> + <location filename="mainwindow.cpp" line="2986"/> <source>failed to remove mod "%1"</source> <translation>не удалось удалить мод "%1"</translation> </message> <message> - <location filename="mainwindow.cpp" line="2968"/> - <location filename="mainwindow.cpp" line="4446"/> - <location filename="mainwindow.cpp" line="4470"/> + <location filename="mainwindow.cpp" line="2990"/> + <location filename="mainwindow.cpp" line="4456"/> + <location filename="mainwindow.cpp" line="4480"/> <source>failed to rename "%1" to "%2"</source> <translation>не удалось переименовать "%1" в "%2"</translation> </message> <message> - <location filename="mainwindow.cpp" line="2997"/> + <location filename="mainwindow.cpp" line="3015"/> <source>Multiple esps activated, please check that they don't conflict.</source> <translation>Подключено несколько esp, выберете из них не конфликтующие.</translation> </message> <message> - <location filename="mainwindow.cpp" line="3024"/> - <location filename="mainwindow.cpp" line="3687"/> - <location filename="mainwindow.cpp" line="3695"/> - <location filename="mainwindow.cpp" line="3902"/> + <location filename="mainwindow.cpp" line="3043"/> + <location filename="mainwindow.cpp" line="3662"/> + <location filename="mainwindow.cpp" line="3670"/> + <location filename="mainwindow.cpp" line="3890"/> <source>Confirm</source> <translation>Подтверждение</translation> </message> <message> - <location filename="mainwindow.cpp" line="3025"/> + <location filename="mainwindow.cpp" line="3044"/> <source>Remove the following mods?<br><ul>%1</ul></source> <translation>Удалить следующие моды?<br><ul>%1</ul></translation> </message> <message> - <location filename="mainwindow.cpp" line="3036"/> + <location filename="mainwindow.cpp" line="3055"/> <source>failed to remove mod: %1</source> <translation>не удалось удалить мод: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3071"/> - <location filename="mainwindow.cpp" line="3074"/> + <location filename="mainwindow.cpp" line="3090"/> + <location filename="mainwindow.cpp" line="3093"/> <source>Failed</source> <translation>Неудача</translation> </message> <message> - <location filename="mainwindow.cpp" line="3071"/> + <location filename="mainwindow.cpp" line="3090"/> <source>Installation file no longer exists</source> <translation>Установочный файл больше не существует</translation> </message> <message> - <location filename="mainwindow.cpp" line="3075"/> + <location filename="mainwindow.cpp" line="3094"/> <source>Mods installed with old versions of MO can't be reinstalled in this way.</source> - <translation>Моды, установленные с использованием старых версий MO не могут быть перестановленны таким образом.</translation> + <translation>Моды, установленные с использованием старых версий MO не могут быть переустановленны таким образом.</translation> </message> <message> - <location filename="mainwindow.cpp" line="3090"/> - <location filename="mainwindow.cpp" line="3117"/> + <location filename="mainwindow.cpp" line="3125"/> + <location filename="mainwindow.cpp" line="3152"/> <source>You need to be logged in with Nexus to endorse</source> <translation>Вы должны быть авторизированы на Nexus, чтобы одобрять.</translation> </message> <message> - <location filename="mainwindow.cpp" line="3249"/> - <location filename="mainwindow.cpp" line="4882"/> + <location filename="mainwindow.cpp" line="4871"/> <source>Extract BSA</source> - <translation>Извлечь BSA</translation> + <translation>Распаковать BSA</translation> </message> <message> - <location filename="mainwindow.cpp" line="3250"/> <source>This mod contains at least one BSA. Do you want to unpack it? (This removes the BSA after completion. If you don't know about BSAs, just select no)</source> - <translation>Этот мод включает как минимум один BSA. Вы хотите распаковать их? + <translation type="obsolete">Этот мод включает как минимум один BSA. Вы хотите распаковать их? (Это удалит BSA после завершения. Если вы не знаете ничего о BSAs, просто откажитесь)</translation> </message> <message> - <location filename="mainwindow.cpp" line="3259"/> - <location filename="mainwindow.cpp" line="4839"/> - <location filename="mainwindow.cpp" line="4890"/> + <location filename="mainwindow.cpp" line="4828"/> + <location filename="mainwindow.cpp" line="4879"/> <source>failed to read %1: %2</source> <translation>не удалось прочесть %1: %2</translation> </message> <message> - <location filename="mainwindow.cpp" line="3272"/> - <location filename="mainwindow.cpp" line="4901"/> + <location filename="mainwindow.cpp" line="4890"/> <source>This archive contains invalid hashes. Some files may be broken.</source> - <translation>Архив содержит неверные хеши. Некоторые файлы могут быть испорчены.</translation> + <translation>Архив содержит неверные хеш-суммы. Некоторые файлы могут быть испорчены.</translation> </message> <message> - <location filename="mainwindow.cpp" line="3306"/> + <location filename="mainwindow.cpp" line="3298"/> <source>Nexus ID for this Mod is unknown</source> <translation>Nexus ID для этого мода неизвестен</translation> </message> <message> - <location filename="mainwindow.cpp" line="3345"/> - <location filename="mainwindow.cpp" line="3792"/> + <location filename="mainwindow.cpp" line="1085"/> + <source>Download?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1086"/> + <source>A download has been started but no installed page plugin recognizes it. +If you download anyway no information (i.e. version) will be associated with the download. +Continue?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1127"/> + <source>Browse Mod Page</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2143"/> + <location filename="mainwindow.cpp" line="2150"/> + <source>Failed to write settings</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2144"/> + <location filename="mainwindow.cpp" line="2151"/> + <source>An error occured trying to write back MO settings: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2147"/> + <source>File is write protected</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2148"/> + <source>Invalid file format (probably a bug)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2149"/> + <source>Unknown error %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2932"/> + <source><Managed by MO></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2933"/> + <source><Managed outside MO></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3109"/> + <source>You need to be logged in with Nexus to resume a download</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3337"/> + <location filename="mainwindow.cpp" line="3777"/> <source>Create Mod...</source> <translation>Создать мод...</translation> </message> <message> + <location filename="mainwindow.cpp" line="3338"/> <source>This will move all files from overwrite into a new, regular mod. -Please enter a name: </source> - <translation type="obsolete">Это переместит все файлы от перезаписи в новый, отдельный мод. -Пожалуйста, введите имя: </translation> +Please enter a name:</source> + <translation>Это переместит все файлы из перезаписи в новый, стандартный мод. +Пожалуйста введите имя:</translation> </message> <message> - <location filename="mainwindow.cpp" line="3355"/> + <location filename="mainwindow.cpp" line="3347"/> <source>A mod with this name already exists</source> <translation>Мод с таким именем уже существует</translation> </message> <message> - <location filename="mainwindow.cpp" line="3613"/> + <location filename="mainwindow.cpp" line="3588"/> <source>Continue?</source> - <translation type="unfinished"></translation> + <translation>Продолжить?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3614"/> + <location filename="mainwindow.cpp" line="3589"/> <source>The versioning scheme decides which version is considered newer than another. This function will guess the versioning scheme under the assumption that the installed version is outdated.</source> - <translation type="unfinished"></translation> + <translation>Схема управления версиями принимает решение, какая версия считается новее другой. +Функция может попробовать угадать схему управления версиями, при условии, что установленная версия является устаревшей.</translation> </message> <message> - <location filename="mainwindow.cpp" line="3634"/> - <location filename="mainwindow.cpp" line="4516"/> + <location filename="mainwindow.cpp" line="3609"/> + <location filename="mainwindow.cpp" line="4526"/> <source>Sorry</source> - <translation type="unfinished"></translation> + <translation>Извините</translation> </message> <message> - <location filename="mainwindow.cpp" line="3635"/> + <location filename="mainwindow.cpp" line="3610"/> <source>I don't know a versioning scheme where %1 is newer than %2.</source> - <translation type="unfinished"></translation> + <translation>Мне неизвестна схема управления версиями, где %1 новее %2.</translation> </message> <message> - <location filename="mainwindow.cpp" line="3687"/> + <location filename="mainwindow.cpp" line="3662"/> <source>Really enable all visible mods?</source> <translation>Действительно подключить все видимые моды?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3695"/> + <location filename="mainwindow.cpp" line="3670"/> <source>Really disable all visible mods?</source> <translation>Действительно отключить все видимые моды?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3703"/> + <location filename="mainwindow.cpp" line="3678"/> <source>Choose what to export</source> <translation>Выберете, что экспортировать</translation> </message> <message> - <location filename="mainwindow.cpp" line="3705"/> + <location filename="mainwindow.cpp" line="3680"/> <source>Everything</source> <translation>Всё</translation> </message> <message> - <location filename="mainwindow.cpp" line="3705"/> + <location filename="mainwindow.cpp" line="3680"/> <source>All installed mods are included in the list</source> <translation>Все установленные моды, включенные в список</translation> </message> <message> - <location filename="mainwindow.cpp" line="3706"/> + <location filename="mainwindow.cpp" line="3681"/> <source>Active Mods</source> <translation>Активные моды</translation> </message> <message> - <location filename="mainwindow.cpp" line="3706"/> + <location filename="mainwindow.cpp" line="3681"/> <source>Only active (checked) mods from your current profile are included</source> <translation>Включены все активные (подключенные) моды вашего текущего профиля</translation> </message> <message> - <location filename="mainwindow.cpp" line="3707"/> + <location filename="mainwindow.cpp" line="3682"/> <source>Visible</source> <translation>Видимые</translation> </message> <message> - <location filename="mainwindow.cpp" line="3707"/> + <location filename="mainwindow.cpp" line="3682"/> <source>All mods visible in the mod list are included</source> <translation>Включены все моды, видимые в списке модов</translation> </message> <message> - <location filename="mainwindow.cpp" line="3750"/> + <location filename="mainwindow.cpp" line="3725"/> <source>export failed: %1</source> <translation>экспорт не удался: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3774"/> + <location filename="mainwindow.cpp" line="3742"/> <source>Install Mod...</source> <translation>Установить мод...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3776"/> + <location filename="mainwindow.cpp" line="3744"/> <source>Enable all visible</source> <translation>Включить все видимые</translation> </message> <message> - <location filename="mainwindow.cpp" line="3777"/> + <location filename="mainwindow.cpp" line="3745"/> <source>Disable all visible</source> <translation>Отключить все видимые</translation> </message> <message> - <location filename="mainwindow.cpp" line="3779"/> + <location filename="mainwindow.cpp" line="3747"/> <source>Check all for update</source> <translation>Проверить все на обновления</translation> </message> <message> - <location filename="mainwindow.cpp" line="3783"/> + <location filename="mainwindow.cpp" line="3751"/> <source>Export to csv...</source> <translation>Экспорт в csv...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3791"/> + <location filename="mainwindow.cpp" line="3770"/> + <source>All Mods</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3776"/> <source>Sync to Mods...</source> <translation>Синхронизировать с модами...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3795"/> + <location filename="mainwindow.cpp" line="3780"/> <source>Restore Backup</source> <translation>Восстановить из резервной копии</translation> </message> <message> - <location filename="mainwindow.cpp" line="3796"/> + <location filename="mainwindow.cpp" line="3781"/> <source>Remove Backup...</source> <translation>Удалить резервную копию...</translation> </message> <message> - <source>Set Category</source> - <translation type="obsolete">Задать категорию</translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1284"/> - <source>Executable "%1" not found</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1789"/> - <source>Failed to refresh list of esps: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2315"/> - <source>The game doesn't allow more than 255 active plugins (including the official ones) to be loaded. You have to disable some unused plugins or merge some plugins into one. You can find a guide here: <a href="http://wiki.step-project.com/Guide:Merging_Plugins">http://wiki.step-project.com/Guide:Merging_Plugins</a></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2860"/> - <source>failed to move "%1" from mod "%2" to "%3": %4</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3346"/> - <source>This will move all files from overwrite into a new, regular mod. -Please enter a name:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3798"/> + <location filename="mainwindow.cpp" line="3785"/> <source>Add/Remove Categories</source> - <translation type="unfinished"></translation> + <translation>Добавить/Удалить категории</translation> </message> <message> - <location filename="mainwindow.cpp" line="3803"/> + <location filename="mainwindow.cpp" line="3790"/> <source>Replace Categories</source> - <translation type="unfinished"></translation> + <translation>Заменить категории</translation> </message> <message> - <location filename="mainwindow.cpp" line="3808"/> + <location filename="mainwindow.cpp" line="3795"/> <source>Primary Category</source> <translation>Основная категория</translation> </message> <message> - <location filename="mainwindow.cpp" line="3815"/> + <location filename="mainwindow.cpp" line="3802"/> <source>Change versioning scheme</source> - <translation type="unfinished"></translation> + <translation>Изменить схему управления версиями</translation> </message> <message> - <location filename="mainwindow.cpp" line="3819"/> + <location filename="mainwindow.cpp" line="3806"/> <source>Un-ignore update</source> - <translation type="unfinished"></translation> + <translation>Снять игнорирование обновления</translation> </message> <message> - <location filename="mainwindow.cpp" line="3821"/> + <location filename="mainwindow.cpp" line="3808"/> <source>Ignore update</source> - <translation type="unfinished"></translation> + <translation>Игнорировать обновление</translation> </message> <message> - <location filename="mainwindow.cpp" line="3826"/> + <location filename="mainwindow.cpp" line="3813"/> <source>Rename Mod...</source> <translation>Переименовать мод...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3827"/> + <location filename="mainwindow.cpp" line="3814"/> <source>Remove Mod...</source> <translation>Удалить мод...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3828"/> + <location filename="mainwindow.cpp" line="3815"/> <source>Reinstall Mod</source> <translation>Переустановить мод</translation> </message> <message> - <location filename="mainwindow.cpp" line="3831"/> + <location filename="mainwindow.cpp" line="3818"/> <source>Un-Endorse</source> <translation>Отменить одобрение</translation> </message> <message> - <location filename="mainwindow.cpp" line="3834"/> - <location filename="mainwindow.cpp" line="3838"/> + <location filename="mainwindow.cpp" line="3821"/> + <location filename="mainwindow.cpp" line="3825"/> <source>Endorse</source> <translation>Одобрить</translation> </message> <message> - <location filename="mainwindow.cpp" line="3835"/> + <location filename="mainwindow.cpp" line="3822"/> <source>Won't endorse</source> <translation>Не одобрять</translation> </message> <message> - <location filename="mainwindow.cpp" line="3841"/> + <location filename="mainwindow.cpp" line="3828"/> <source>Endorsement state unknown</source> <translation>Статус одобрения неизвестен</translation> </message> <message> - <location filename="mainwindow.cpp" line="3848"/> + <location filename="mainwindow.cpp" line="3835"/> <source>Ignore missing data</source> <translation>Игнорировать отсутствующие данные</translation> </message> <message> - <location filename="mainwindow.cpp" line="3851"/> + <location filename="mainwindow.cpp" line="3838"/> <source>Visit on Nexus</source> <translation>Перейти на Nexus</translation> </message> <message> - <location filename="mainwindow.cpp" line="3852"/> + <location filename="mainwindow.cpp" line="3839"/> <source>Open in explorer</source> <translation>Открыть в проводнике</translation> </message> <message> - <location filename="mainwindow.cpp" line="3855"/> + <location filename="mainwindow.cpp" line="3843"/> <source>Information...</source> <translation>Информация...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3861"/> - <location filename="mainwindow.cpp" line="5086"/> + <location filename="mainwindow.cpp" line="3850"/> + <location filename="mainwindow.cpp" line="5089"/> <source>Exception: </source> <translation>Исключение: </translation> </message> <message> - <location filename="mainwindow.cpp" line="3863"/> - <location filename="mainwindow.cpp" line="5088"/> + <location filename="mainwindow.cpp" line="3852"/> + <location filename="mainwindow.cpp" line="5091"/> <source>Unknown exception</source> <translation>Неизвестное исключение</translation> </message> <message> - <location filename="mainwindow.cpp" line="3883"/> + <location filename="mainwindow.cpp" line="3871"/> <source><All></source> <translation><Все></translation> </message> <message> - <location filename="mainwindow.cpp" line="3885"/> + <location filename="mainwindow.cpp" line="3873"/> <source><Multiple></source> <translation><Несколько></translation> </message> <message> - <location filename="mainwindow.cpp" line="3902"/> + <location filename="mainwindow.cpp" line="3890"/> <source>Really delete "%1"?</source> - <translation type="unfinished"></translation> + <translation>Действительно удалить "%1"?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4013"/> + <location filename="mainwindow.cpp" line="4001"/> <source>Fix Mods...</source> <translation>Исправить моды...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4014"/> + <location filename="mainwindow.cpp" line="4002"/> <source>Delete</source> - <translation type="unfinished">Удалить</translation> + <translation>Удалить</translation> </message> <message> - <location filename="mainwindow.cpp" line="4038"/> - <location filename="mainwindow.cpp" line="4069"/> + <location filename="mainwindow.cpp" line="4027"/> + <location filename="mainwindow.cpp" line="4060"/> <source>failed to remove %1</source> <translation>не удалось удалить %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4053"/> - <location filename="mainwindow.cpp" line="4084"/> + <location filename="mainwindow.cpp" line="4044"/> + <location filename="mainwindow.cpp" line="4076"/> <source>failed to create %1</source> <translation>не удалось создать %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4107"/> + <location filename="mainwindow.cpp" line="4100"/> <source>Can't change download directory while downloads are in progress!</source> <translation>Нельзя изменить каталог для загрузок, когда загрузки ещё не завершены!</translation> </message> <message> - <location filename="mainwindow.cpp" line="4174"/> + <location filename="mainwindow.cpp" line="4182"/> <source>Download failed</source> <translation>Загрузка не удалась</translation> </message> <message> - <location filename="mainwindow.cpp" line="4323"/> + <location filename="mainwindow.cpp" line="4333"/> <source>failed to write to file %1</source> <translation>ошибка записи в файл %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4329"/> + <location filename="mainwindow.cpp" line="4339"/> <source>%1 written</source> <translation>%1 записан</translation> </message> <message> - <location filename="mainwindow.cpp" line="4368"/> + <location filename="mainwindow.cpp" line="4378"/> <source>Select binary</source> - <translation>Выбрать исполняемый файл</translation> + <translation>Выберете исполняемый файл</translation> </message> <message> - <location filename="mainwindow.cpp" line="4368"/> + <location filename="mainwindow.cpp" line="4378"/> <source>Binary</source> <translation>Исполняемый файл</translation> </message> <message> - <location filename="mainwindow.cpp" line="4394"/> + <location filename="mainwindow.cpp" line="4404"/> <source>Enter Name</source> <translation>Введите имя</translation> </message> <message> - <location filename="mainwindow.cpp" line="4395"/> + <location filename="mainwindow.cpp" line="4405"/> <source>Please enter a name for the executable</source> <translation>Введите название для программы</translation> </message> <message> - <location filename="mainwindow.cpp" line="4406"/> + <location filename="mainwindow.cpp" line="4416"/> <source>Not an executable</source> <translation>Не является исполняемым</translation> </message> <message> - <location filename="mainwindow.cpp" line="4406"/> + <location filename="mainwindow.cpp" line="4416"/> <source>This is not a recognized executable.</source> <translation>Это неверный исполняемый файл.</translation> </message> <message> - <location filename="mainwindow.cpp" line="4431"/> - <location filename="mainwindow.cpp" line="4456"/> + <location filename="mainwindow.cpp" line="4441"/> + <location filename="mainwindow.cpp" line="4466"/> <source>Replace file?</source> <translation>Заменить файл?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4431"/> + <location filename="mainwindow.cpp" line="4441"/> <source>There already is a hidden version of this file. Replace it?</source> <translation>Уже существует скрытая версия этого файла. Заменить?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4434"/> - <location filename="mainwindow.cpp" line="4459"/> + <location filename="mainwindow.cpp" line="4444"/> + <location filename="mainwindow.cpp" line="4469"/> <source>File operation failed</source> <translation>Операция с файлом не удалась</translation> </message> <message> - <location filename="mainwindow.cpp" line="4434"/> - <location filename="mainwindow.cpp" line="4459"/> + <location filename="mainwindow.cpp" line="4444"/> + <location filename="mainwindow.cpp" line="4469"/> <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> <translation>Не удалось удалить "%1". Может быть, вам не хватает необходимых прав доступа к файлу?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4456"/> + <location filename="mainwindow.cpp" line="4466"/> <source>There already is a visible version of this file. Replace it?</source> <translation>Видимая версия этого файла уже существует. Заменить?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4489"/> + <location filename="mainwindow.cpp" line="4499"/> <source>file not found: %1</source> - <translation type="unfinished"></translation> + <translation>файл не найден: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4502"/> + <location filename="mainwindow.cpp" line="4512"/> <source>failed to generate preview for %1</source> - <translation type="unfinished"></translation> + <translation>не удалось получить предосмотр для %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4516"/> + <location filename="mainwindow.cpp" line="4526"/> <source>Sorry, can't preview anything. This function currently does not support extracting from bsas.</source> - <translation type="unfinished"></translation> + <translation>Невозможно получить предосмотр чего-либо. Функция на данный момент не поддерживает извлечение из bsa.</translation> </message> <message> - <location filename="mainwindow.cpp" line="4547"/> + <location filename="mainwindow.cpp" line="4557"/> <source>Update available</source> <translation>Доступно обновление</translation> </message> <message> - <location filename="mainwindow.cpp" line="4584"/> + <location filename="mainwindow.cpp" line="4594"/> <source>Open/Execute</source> <translation>Открыть/Выполнить</translation> </message> <message> - <location filename="mainwindow.cpp" line="4585"/> + <location filename="mainwindow.cpp" line="4595"/> <source>Add as Executable</source> <translation>Добавить как исполняемый</translation> </message> <message> - <location filename="mainwindow.cpp" line="4589"/> + <location filename="mainwindow.cpp" line="4599"/> <source>Preview</source> - <translation type="unfinished"></translation> + <translation>Предосмотр</translation> </message> <message> - <location filename="mainwindow.cpp" line="4595"/> + <location filename="mainwindow.cpp" line="4605"/> <source>Un-Hide</source> <translation>Показать</translation> </message> <message> - <location filename="mainwindow.cpp" line="4597"/> + <location filename="mainwindow.cpp" line="4607"/> <source>Hide</source> <translation>Скрыть</translation> </message> <message> - <location filename="mainwindow.cpp" line="4603"/> + <location filename="mainwindow.cpp" line="4613"/> <source>Write To File...</source> <translation>Записать в файл...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4634"/> + <location filename="mainwindow.cpp" line="4638"/> <source>Do you want to endorse Mod Organizer on %1 now?</source> <translation>Вы хотите одобрить Mod Organizer на %1 сейчас?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4770"/> + <location filename="mainwindow.cpp" line="4757"/> <source>Request to Nexus failed: %1</source> <translation>Запрос на Nexus не удался: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4777"/> - <location filename="mainwindow.cpp" line="4794"/> + <location filename="mainwindow.cpp" line="4764"/> + <location filename="mainwindow.cpp" line="4782"/> <source>login successful</source> <translation>успешный вход</translation> </message> <message> - <location filename="mainwindow.cpp" line="4803"/> + <location filename="mainwindow.cpp" line="4791"/> <source>login failed: %1. Trying to download anyway</source> <translation>вход не удался: %1. Пытаюсь загрузить всё равно</translation> </message> <message> - <location filename="mainwindow.cpp" line="4809"/> + <location filename="mainwindow.cpp" line="4797"/> <source>login failed: %1</source> <translation>войти не удалось: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4818"/> + <location filename="mainwindow.cpp" line="4807"/> <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="4851"/> + <location filename="mainwindow.cpp" line="4840"/> <source>Error</source> <translation>Ошибка</translation> </message> <message> - <location filename="mainwindow.cpp" line="4851"/> + <location filename="mainwindow.cpp" line="4840"/> <source>failed to extract %1 (errorcode %2)</source> - <translation>не удалось извлечь %1 (код ошибки %2)</translation> + <translation>не удалось распаковать %1 (код ошибки %2)</translation> </message> <message> - <location filename="mainwindow.cpp" line="4946"/> + <location filename="mainwindow.cpp" line="4935"/> <source>Extract...</source> - <translation>Распаковка...</translation> + <translation>Распаковать...</translation> </message> <message> - <location filename="mainwindow.cpp" line="5002"/> + <location filename="mainwindow.cpp" line="4997"/> <source>Edit Categories...</source> <translation>Изменить категории...</translation> </message> <message> - <location filename="mainwindow.cpp" line="5047"/> - <source>Remove</source> + <location filename="mainwindow.cpp" line="4998"/> + <source>Deselect filter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5057"/> + <location filename="mainwindow.cpp" line="5049"/> + <source>Remove</source> + <translation>Удалить</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5060"/> <source>Enable all</source> <translation>Включить все</translation> </message> <message> - <location filename="mainwindow.cpp" line="5058"/> + <location filename="mainwindow.cpp" line="5061"/> <source>Disable all</source> <translation>Отключить все</translation> </message> <message> - <location filename="mainwindow.cpp" line="5077"/> + <location filename="mainwindow.cpp" line="5080"/> <source>Unlock load order</source> - <translation>Разблокировать порядок загрузки</translation> + <translation>Снять фиксацию порядка загрузки</translation> </message> <message> - <location filename="mainwindow.cpp" line="5080"/> + <location filename="mainwindow.cpp" line="5083"/> <source>Lock load order</source> - <translation>Заблокировать порядок загрузки</translation> + <translation>Зафиксировать порядок загрузки</translation> </message> <message> - <location filename="mainwindow.cpp" line="5149"/> - <source>BOSS working</source> + <location filename="mainwindow.cpp" line="5212"/> + <source>depends on missing "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5157"/> - <source>failed to run boss: %1</source> + <location filename="mainwindow.cpp" line="5232"/> + <source>No profile set</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="mainwindow.cpp" line="5280"/> + <source>LOOT working</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5326"/> + <source>loot failed. Exit code was: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5333"/> + <source>failed to run loot: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5336"/> + <source>Errors occured</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5384"/> + <source>Backup of load order created</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5394"/> + <source>Choose backup to restore</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5407"/> + <source>No Backups</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5407"/> + <source>There are no backups to restore</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5428"/> + <location filename="mainwindow.cpp" line="5449"/> + <source>Restore failed</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5429"/> + <location filename="mainwindow.cpp" line="5450"/> + <source>Failed to restore the backup. Errorcode: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5440"/> + <source>Backup of modlist created</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>BOSS working</source> + <translation type="obsolete">BOSS: работает</translation> + </message> + <message> + <source>failed to run boss: %1</source> + <translation type="obsolete">не удалось запустить BOSS: %1</translation> + </message> </context> <context> <name>MessageDialog</name> @@ -2645,8 +2880,8 @@ Please enter a name:</source> <context> <name>ModInfo</name> <message> - <location filename="modinfo.cpp" line="96"/> - <location filename="modinfo.cpp" line="125"/> + <location filename="modinfo.cpp" line="106"/> + <location filename="modinfo.cpp" line="135"/> <source>invalid index %1</source> <translation>неверный индекс %1</translation> </message> @@ -2654,7 +2889,7 @@ Please enter a name:</source> <context> <name>ModInfoBackup</name> <message> - <location filename="modinfo.cpp" line="820"/> + <location filename="modinfo.cpp" line="898"/> <source>This is the backup of a mod</source> <translation>Это резервная копия мода</translation> </message> @@ -2679,201 +2914,194 @@ Please enter a name:</source> <message> <location filename="modinfodialog.ui" line="45"/> <source>A list of text-files in the mod directory like readmes. </source> - <translation>Список текстовых файлов в каталоге мода, таких как ридми.</translation> + <translation>Список текстовых файлов в каталоге мода, таких как ридми. </translation> </message> <message> <location filename="modinfodialog.ui" line="67"/> - <location filename="modinfodialog.ui" line="155"/> + <location filename="modinfodialog.ui" line="175"/> <source>Save</source> <translation>Сохранить</translation> </message> <message> <location filename="modinfodialog.ui" line="77"/> <source>INI-Files</source> - <translation>INI - файлы</translation> + <translation>INI-файлы</translation> </message> <message> - <location filename="modinfodialog.ui" line="97"/> + <location filename="modinfodialog.ui" line="91"/> + <source>Ini Files</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="104"/> <source>This is a list of .ini files in the mod.</source> - <translation>Это список .ini-файлов мода.</translation> + <translation>Это список ini-файлов мода.</translation> </message> <message> - <location filename="modinfodialog.ui" line="100"/> + <location filename="modinfodialog.ui" line="107"/> <source>This is a list of .ini files in the mod. These are usually used to configure the behaviour of mods if there are configurable parameters.</source> - <translation>Это список INI - файлов мода. Они используются для кофигурации поведения модов, если это возможно.</translation> + <translation>Это список ini-файлов мода. Они используются для настройки работы модов, если это возможно.</translation> </message> <message> - <location filename="modinfodialog.ui" line="149"/> + <location filename="modinfodialog.ui" line="114"/> + <source>Ini Tweaks</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="130"/> + <source>This is a list of ini tweaks (ini modifications that can be toggled).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="133"/> + <source>This is a list of ini tweaks. Ini Tweaks are (usually small) fragments of ini files that are applied over existing settings in skyrim.ini/skyrimprefs.ini. Each tweak can be toggled individually. You should check the description of the mod wether the tweaks are really optional.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="169"/> <source>Save changes to the file.</source> <translation>Сохранить изменения в файле.</translation> </message> <message> - <location filename="modinfodialog.ui" line="152"/> + <location filename="modinfodialog.ui" line="172"/> <source>Save changes to the file. This overwrites the original. There is no automatic backup!</source> <translation>Сохранить изменения в файле. Это перезапишет ранее созданный. Перед перезаписью файла сделайте копию.</translation> </message> <message> - <location filename="modinfodialog.ui" line="165"/> + <location filename="modinfodialog.ui" line="185"/> <source>Images</source> <translation>Изображение</translation> </message> <message> - <location filename="modinfodialog.ui" line="220"/> + <location filename="modinfodialog.ui" line="240"/> <source>Images located in the mod.</source> <translation>Изображения мода.</translation> </message> <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Это список всех изображений (.jpg и .png) в каталоге мода, таких как скриншоты и т.п. Нажмите на любое, для увеличения.</span></p></body></html></translation> + <location filename="modinfodialog.ui" line="243"/> + <source>This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</source> + <translation>Это список всех изображений (.jpg и.png) в папке с модом, таких как снимки экрана и т.п. Выберете любое для увеличения.</translation> </message> <message> - <location filename="modinfodialog.ui" line="256"/> - <location filename="modinfodialog.ui" line="275"/> + <location filename="modinfodialog.ui" line="276"/> + <location filename="modinfodialog.ui" line="295"/> <source>Optional ESPs</source> - <translation>Дополнительный ESP</translation> + <translation>Необязательные ESP</translation> </message> <message> - <location filename="modinfodialog.ui" line="262"/> + <location filename="modinfodialog.ui" line="282"/> <source>List of esps and esms that can not be loaded by the game.</source> <translation>Список esp и esm, которые не могут быть загружены игрой.</translation> </message> <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">They usually contain optional functionality, see the readme.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Most mods do not have optional esps, so chances are good you are looking at an empty list.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Список esp и esm, содержащихся в плагине, которые не могут быть загружены в игру. Они так же не будут отображены в списке esp, в главном окне MO.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Они обычно содержат опциональный функционал, смотрите документацию.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Большинство модов не содержат дополнительных esp, поэтому вы можете увидеть пустой список</span></p></body></html></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="223"/> - <source>This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="265"/> + <location filename="modinfodialog.ui" line="285"/> <source>List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window. They usually contain optional functionality, see the readme. Most mods do not have optional esps, so chances are good you are looking at an empty list.</source> - <translation type="unfinished"></translation> + <translation>Список esp и esm этого плагина, которые не могут быть загружены игрой. Они не будут отображены в списке esp, главного окна MO. +Они обычно включают дополнительные возможности, описанные в документации к моду. + +Большинство модов не имеет дополнительных esp, так что очень вероятно, что вы видите пустой список.</translation> </message> <message> - <location filename="modinfodialog.ui" line="290"/> + <location filename="modinfodialog.ui" line="310"/> <source>Make the selected mod in the lower list unavailable.</source> <translation>Сделать выбранный мод недоступным.</translation> </message> <message> - <location filename="modinfodialog.ui" line="293"/> + <location filename="modinfodialog.ui" line="313"/> <source>The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become "invisible" to the game. It can then no longer be activated.</source> <translation>Выбранный ESP (в нижнем списке) будет перемещены в подкаталог мода и, таким образом, станут "невидимыми" для игры. Затем они больше не будут активированы.</translation> </message> <message> - <location filename="modinfodialog.ui" line="319"/> + <location filename="modinfodialog.ui" line="339"/> <source>Move a file to the data directory.</source> <translation>Переместить файл в каталог Data.</translation> </message> <message> - <location filename="modinfodialog.ui" line="322"/> + <location filename="modinfodialog.ui" line="342"/> <source>This moves a esp to the esp directory so it can be enabled in the main window. Please note that the ESP merely becomes "available", it will not necessarily be loaded! That is configured in the main window of omo.</source> <translation>Перемещает esp в каталог с другими esp так, что он может быть подключен в главном окне. Обратите внимание, что ESP просто становится "доступным", но не будет загружен! Это настраивается в главном окне MO.</translation> </message> <message> - <location filename="modinfodialog.ui" line="357"/> + <location filename="modinfodialog.ui" line="377"/> <source>ESPs in the data directory and thus visible to the game.</source> - <translation>ESP в каталоге Data и виден для игры.</translation> + <translation>ESP в каталоге Data, видны для игры.</translation> </message> <message> - <location filename="modinfodialog.ui" line="360"/> + <location filename="modinfodialog.ui" line="380"/> <source>These are the mod files that are in the (virtual) data directory of your game and will thus be selecteable in the esp list in the main window.</source> - <translation>Это файлы модов которые находятся в (виртуальном)каталоге данных вашей игры и могут быть выбираемыми в списке esp, в главном окне.</translation> + <translation>Это файлы модов, которые находятся в (виртуальном)каталоге данных вашей игры и могут быть выбираемыми в списке esp, в главном окне.</translation> </message> <message> - <location filename="modinfodialog.ui" line="367"/> + <location filename="modinfodialog.ui" line="387"/> <source>Available ESPs</source> <translation>Доступные ESP</translation> </message> <message> - <location filename="modinfodialog.ui" line="375"/> + <location filename="modinfodialog.ui" line="395"/> <source>Conflicts</source> <translation>Конфликты</translation> </message> <message> - <location filename="modinfodialog.ui" line="383"/> + <location filename="modinfodialog.ui" line="403"/> <source>The following conflicted files are provided by this mod</source> <translation>Данные конфликты вызваны этим модом.</translation> </message> <message> - <location filename="modinfodialog.ui" line="433"/> - <location filename="modinfodialog.ui" line="483"/> + <location filename="modinfodialog.ui" line="453"/> + <location filename="modinfodialog.ui" line="503"/> <source>File</source> <translation>Файл</translation> </message> <message> - <location filename="modinfodialog.ui" line="438"/> + <location filename="modinfodialog.ui" line="458"/> <source>Overwritten Mods</source> <translation>Моды перезаписаны</translation> </message> <message> - <location filename="modinfodialog.ui" line="448"/> + <location filename="modinfodialog.ui" line="468"/> <source>The following conflicted files are provided by other mods</source> <translation>Конфликтные файлы других модов.</translation> </message> <message> - <location filename="modinfodialog.ui" line="488"/> + <location filename="modinfodialog.ui" line="508"/> <source>Providing Mod</source> - <translation>Обеспечение мода</translation> + <translation>Моды перезаписывают</translation> </message> <message> - <location filename="modinfodialog.ui" line="498"/> + <location filename="modinfodialog.ui" line="518"/> <source>Non-Conflicted files</source> - <translation>Не конфликтные файлы</translation> + <translation>Неконфликтные файлы</translation> </message> <message> - <location filename="modinfodialog.ui" line="518"/> + <location filename="modinfodialog.ui" line="538"/> <source>Categories</source> <translation>Категории</translation> </message> <message> - <location filename="modinfodialog.ui" line="541"/> + <location filename="modinfodialog.ui" line="561"/> <source>Primary Category</source> <translation>Основная категория</translation> </message> <message> - <location filename="modinfodialog.ui" line="558"/> + <location filename="modinfodialog.ui" line="578"/> <source>Nexus Info</source> - <translation>Информация Nexus.</translation> + <translation>Nexus</translation> </message> <message> - <location filename="modinfodialog.ui" line="566"/> + <location filename="modinfodialog.ui" line="586"/> <source>Mod ID</source> <translation>ID мода</translation> </message> <message> - <location filename="modinfodialog.ui" line="573"/> + <location filename="modinfodialog.ui" line="593"/> <source>Mod ID for this mod on Nexus.</source> <translation>ID мода на Nexus.</translation> </message> <message> - <location filename="modinfodialog.ui" line="576"/> + <location filename="modinfodialog.ui" line="596"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -2886,7 +3114,7 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">ID этого мода на Nexus. Заполняется автоматически, если скачали и установили мод из МО. В противном случае вы можете ввести его вручную. Чтобы найти правильный ID, нужно найти мод на Nexus. URL будет выглядеть следующим образом: </span><a href=" http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://skyrim.nexusmods.com/downloads/file.php?id=1334</span></a><a href="http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" font-size:8pt; color:#000000;">. В этом примере, 1334 - ID, который вы ищете. Кроме того: Выше есть ссылка на Mod Organizer на Nexus. Почему бы не перейти по ней и не одобрить?</span></a></p></body></html></translation> </message> <message> - <location filename="modinfodialog.ui" line="600"/> + <location filename="modinfodialog.ui" line="620"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -2899,82 +3127,60 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Установленная версия мода. Подсказка будет содержать текущую версию, доступную на Nexus. Установленная версия установится только если вы установили мод через МО.</span></p></body></html></translation> </message> <message> - <location filename="modinfodialog.ui" line="607"/> + <location filename="modinfodialog.ui" line="627"/> <source>Version</source> <translation>Версия</translation> </message> <message> - <location filename="modinfodialog.ui" line="637"/> + <location filename="modinfodialog.ui" line="657"/> <source>Refresh</source> <translation>Обновить информацию</translation> </message> <message> - <location filename="modinfodialog.ui" line="640"/> + <location filename="modinfodialog.ui" line="660"/> <source>Refresh all information from Nexus.</source> <translation>Обновить всю информацию с Nexus</translation> </message> <message> - <location filename="modinfodialog.ui" line="654"/> + <location filename="modinfodialog.ui" line="674"/> <source>Description</source> <translation>Описание</translation> </message> <message> - <location filename="modinfodialog.ui" line="669"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><br /></p></body></html></source> - <translation type="unfinished"></translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><br /></p></body></html></translation> - </message> - <message> + <location filename="modinfodialog.ui" line="689"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><br /></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><br /></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><br /></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><br /></p></body></html></translation> </message> <message> - <location filename="modinfodialog.ui" line="704"/> + <location filename="modinfodialog.ui" line="724"/> <source>Endorse</source> <translation>Одобрить</translation> </message> <message> - <location filename="modinfodialog.ui" line="718"/> + <location filename="modinfodialog.ui" line="738"/> <source>Notes</source> <translation>Примечания</translation> </message> <message> - <location filename="modinfodialog.ui" line="728"/> + <location filename="modinfodialog.ui" line="748"/> <source>Filetree</source> - <translation>Файловое древо</translation> + <translation>Файлы</translation> </message> <message> - <location filename="modinfodialog.ui" line="737"/> + <location filename="modinfodialog.ui" line="757"/> <source>A directory view of this mod</source> <translation>Каталог этого мода</translation> </message> <message> - <location filename="modinfodialog.ui" line="740"/> + <location filename="modinfodialog.ui" line="760"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -2989,272 +3195,281 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Изменения происходят непосредственно на диске, так что</span><span style=" font-size:8pt; font-weight:600;"> будьте осторожныl</span><span style=" font-size:8pt;">.</span></p></body></html></translation> </message> <message> - <location filename="modinfodialog.ui" line="767"/> + <location filename="modinfodialog.ui" line="787"/> <source>Previous</source> - <translation>Предыдущий</translation> + <translation>Назад</translation> </message> <message> - <location filename="modinfodialog.ui" line="774"/> + <location filename="modinfodialog.ui" line="794"/> <source>Next</source> <translation>Вперед</translation> </message> <message> - <location filename="modinfodialog.ui" line="794"/> + <location filename="modinfodialog.ui" line="814"/> <source>Close</source> <translation type="unfinished">Закрыть</translation> </message> <message> - <location filename="modinfodialog.cpp" line="104"/> + <location filename="modinfodialog.cpp" line="165"/> <source>&Delete</source> <translation>&Удалить</translation> </message> <message> - <location filename="modinfodialog.cpp" line="105"/> + <location filename="modinfodialog.cpp" line="166"/> <source>&Rename</source> <translation>&Переименовать</translation> </message> <message> - <location filename="modinfodialog.cpp" line="106"/> + <location filename="modinfodialog.cpp" line="167"/> <source>&Hide</source> <translation>&Скрыть</translation> </message> <message> - <location filename="modinfodialog.cpp" line="107"/> + <location filename="modinfodialog.cpp" line="168"/> <source>&Unhide</source> <translation>&Показать</translation> </message> <message> - <location filename="modinfodialog.cpp" line="108"/> + <location filename="modinfodialog.cpp" line="169"/> <source>&Open</source> <translation type="unfinished">&Открыть</translation> </message> <message> - <location filename="modinfodialog.cpp" line="109"/> + <location filename="modinfodialog.cpp" line="170"/> <source>&New Folder</source> <translation>&Новая папка</translation> </message> <message> - <location filename="modinfodialog.cpp" line="405"/> - <location filename="modinfodialog.cpp" line="420"/> + <location filename="modinfodialog.cpp" line="416"/> + <location filename="modinfodialog.cpp" line="431"/> <source>Save changes?</source> <translation>Сохранить изменения?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="405"/> - <location filename="modinfodialog.cpp" line="420"/> + <location filename="modinfodialog.cpp" line="416"/> + <location filename="modinfodialog.cpp" line="431"/> <source>Save changes to "%1"?</source> <translation>Сохранить изменения в "%1"?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="612"/> + <location filename="modinfodialog.cpp" line="621"/> <source>File Exists</source> <translation>Файл уже существует</translation> </message> <message> - <location filename="modinfodialog.cpp" line="612"/> + <location filename="modinfodialog.cpp" line="621"/> <source>A file with that name exists, please enter a new one</source> <translation>Файл с таким именем уже существует, укажите другое</translation> </message> <message> - <location filename="modinfodialog.cpp" line="629"/> + <location filename="modinfodialog.cpp" line="638"/> <source>failed to move file</source> <translation>не удалось переместить файл</translation> </message> <message> - <location filename="modinfodialog.cpp" line="654"/> + <location filename="modinfodialog.cpp" line="663"/> <source>failed to create directory "optional"</source> <translation>не удалось создать папку "optional"</translation> </message> <message> - <location filename="modinfodialog.cpp" line="692"/> - <location filename="modinfodialog.cpp" line="1198"/> + <location filename="modinfodialog.cpp" line="701"/> + <location filename="modinfodialog.cpp" line="1206"/> <source>Info requested, please wait</source> <translation>Информация запрошена, пожалуйста, подождите</translation> </message> <message> - <location filename="modinfodialog.cpp" line="746"/> + <location filename="modinfodialog.cpp" line="755"/> <source>Main</source> <translation>Главное</translation> </message> <message> - <location filename="modinfodialog.cpp" line="747"/> + <location filename="modinfodialog.cpp" line="756"/> <source>Update</source> <translation>Обновление</translation> </message> <message> - <location filename="modinfodialog.cpp" line="748"/> + <location filename="modinfodialog.cpp" line="757"/> <source>Optional</source> <translation>Опционально</translation> </message> <message> - <location filename="modinfodialog.cpp" line="749"/> + <location filename="modinfodialog.cpp" line="758"/> <source>Old</source> <translation>Старые</translation> </message> <message> - <location filename="modinfodialog.cpp" line="750"/> + <location filename="modinfodialog.cpp" line="759"/> <source>Misc</source> <translation>Разное</translation> </message> <message> - <location filename="modinfodialog.cpp" line="751"/> + <location filename="modinfodialog.cpp" line="760"/> <source>Unknown</source> <translation>Неизвестно</translation> </message> <message> - <location filename="modinfodialog.cpp" line="762"/> + <location filename="modinfodialog.cpp" line="771"/> <source>Current Version: %1</source> <translation>Текущая версия: %1</translation> </message> <message> - <location filename="modinfodialog.cpp" line="766"/> + <location filename="modinfodialog.cpp" line="775"/> <source>No update available</source> <translation>Нет доступных обновлений</translation> </message> <message> - <location filename="modinfodialog.cpp" line="807"/> + <location filename="modinfodialog.cpp" line="816"/> <source>(description incomplete, please visit nexus)</source> <translation>(описание не завершено, смотрите на nexus)</translation> </message> <message> - <location filename="modinfodialog.cpp" line="822"/> + <location filename="modinfodialog.cpp" line="831"/> <source><a href="%1">Visit on Nexus</a></source> <translation><a href="%1">Перейти на Nexus</a></translation> </message> <message> - <location filename="modinfodialog.cpp" line="901"/> + <location filename="modinfodialog.cpp" line="910"/> <source>Failed to delete %1</source> <translation type="unfinished">Не удалось удалить %1</translation> </message> <message> - <location filename="modinfodialog.cpp" line="912"/> - <location filename="modinfodialog.cpp" line="917"/> + <location filename="modinfodialog.cpp" line="921"/> + <location filename="modinfodialog.cpp" line="926"/> <source>Confirm</source> <translation>Подтверждение</translation> </message> <message> - <location filename="modinfodialog.cpp" line="912"/> + <location filename="modinfodialog.cpp" line="921"/> <source>Are sure you want to delete "%1"?</source> <translation>Вы уверены, что хотите удалить "%1"?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="917"/> + <location filename="modinfodialog.cpp" line="926"/> <source>Are sure you want to delete the selected files?</source> <translation>Вы уверены, что хотите удалить выбранные файлы?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="991"/> - <location filename="modinfodialog.cpp" line="997"/> + <location filename="modinfodialog.cpp" line="1000"/> + <location filename="modinfodialog.cpp" line="1006"/> <source>New Folder</source> <translation>Новая папка</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1003"/> + <location filename="modinfodialog.cpp" line="1012"/> <source>Failed to create "%1"</source> <translation>Не удалось создать "%1"</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1107"/> - <location filename="modinfodialog.cpp" line="1131"/> + <location filename="modinfodialog.cpp" line="1116"/> + <location filename="modinfodialog.cpp" line="1140"/> <source>Replace file?</source> <translation>Заменить файл?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1107"/> + <location filename="modinfodialog.cpp" line="1116"/> <source>There already is a hidden version of this file. Replace it?</source> <translation>Скрытая версия этого файла уже существует. Заменить?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1110"/> - <location filename="modinfodialog.cpp" line="1134"/> + <location filename="modinfodialog.cpp" line="1119"/> + <location filename="modinfodialog.cpp" line="1143"/> <source>File operation failed</source> <translation>Не удалась операция с файлом</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1110"/> - <location filename="modinfodialog.cpp" line="1134"/> + <location filename="modinfodialog.cpp" line="1119"/> + <location filename="modinfodialog.cpp" line="1143"/> <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> <translation>Не удалось удалить "%1". Может быть, вам не хватает необходимых прав доступа к файлу?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1121"/> - <location filename="modinfodialog.cpp" line="1144"/> + <location filename="modinfodialog.cpp" line="1130"/> + <location filename="modinfodialog.cpp" line="1153"/> <source>failed to rename %1 to %2</source> - <translation>не удалось переименовать %1 в %2</translation> + <translation>не удалось переименовать %1 в %2</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1131"/> + <location filename="modinfodialog.cpp" line="1140"/> <source>There already is a visible version of this file. Replace it?</source> <translation>Видимая версия этого файла уже существует. Заменить?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1178"/> + <location filename="modinfodialog.cpp" line="1186"/> <source>Un-Hide</source> <translation>Показать</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1180"/> + <location filename="modinfodialog.cpp" line="1188"/> <source>Hide</source> <translation>Скрыть</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1221"/> + <location filename="modinfodialog.cpp" line="1229"/> <source>Name</source> - <translation type="unfinished">Имя</translation> + <translation>Имя</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1221"/> + <location filename="modinfodialog.cpp" line="1229"/> <source>Please enter a name</source> - <translation type="unfinished"></translation> + <translation>Пожалуйста, введите имя</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1225"/> - <location filename="modinfodialog.cpp" line="1228"/> + <location filename="modinfodialog.cpp" line="1233"/> + <location filename="modinfodialog.cpp" line="1236"/> <source>Error</source> - <translation type="unfinished">Ошибка</translation> + <translation>Ошибка</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1225"/> + <location filename="modinfodialog.cpp" line="1233"/> <source>Invalid name. Must be a valid file name</source> - <translation type="unfinished"></translation> + <translation>Неверное имя. Необходимо допустимое имя файла.</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1228"/> + <location filename="modinfodialog.cpp" line="1236"/> <source>A tweak by that name exists</source> - <translation type="unfinished"></translation> + <translation>Настройка с таким именем существует</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1240"/> + <location filename="modinfodialog.cpp" line="1250"/> <source>Create Tweak</source> + <translation>Создать настройку</translation> + </message> +</context> +<context> + <name>ModInfoForeign</name> + <message> + <location filename="modinfo.cpp" line="987"/> + <source>This pseudo mod represents content managed outside MO. It isn't modified by MO.</source> <translation type="unfinished"></translation> </message> </context> <context> <name>ModInfoOverwrite</name> <message> - <location filename="modinfo.cpp" line="866"/> + <location filename="modinfo.cpp" line="943"/> <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source> <translation>Этот псевдо-мод содержит файлы из виртуального древа данных, которые были изменены (в Construction Kit и других программах)</translation> </message> - <message> - <source>Overwrite</source> - <translation type="obsolete">Замена</translation> - </message> </context> <context> <name>ModInfoRegular</name> <message> - <location filename="modinfo.cpp" line="393"/> <source>failed to write %1/meta.ini: %2</source> - <translation>не удалось записать %1/meta.ini: %2</translation> + <translation type="obsolete">не удалось записать %1/meta.ini: %2</translation> </message> <message> - <location filename="modinfo.cpp" line="661"/> + <location filename="modinfo.cpp" line="557"/> + <location filename="modinfo.cpp" line="560"/> + <source>failed to write %1/meta.ini: error %2</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfo.cpp" line="811"/> <source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source> <translation>%1 не содержит ни esp/esm, ни папок ресурсов (textures, meshes, interface, ...)</translation> </message> <message> - <location filename="modinfo.cpp" line="665"/> + <location filename="modinfo.cpp" line="815"/> <source>Categories: <br></source> <translation>Категории: <br></translation> </message> @@ -3262,10 +3477,6 @@ p, li { white-space: pre-wrap; } <context> <name>ModList</name> <message> - <source>Overwrite</source> - <translation type="obsolete">Замена</translation> - </message> - <message> <location filename="modlist.cpp" line="109"/> <source>This entry contains files that have been created inside the virtual data tree (i.e. by the construction kit)</source> <translation>Эта запись включает файлы, которые были созданы внутри виртуального древа (с помощью Construction Kit и др. программ)</translation> @@ -3306,119 +3517,124 @@ p, li { white-space: pre-wrap; } <translation>Избыточные</translation> </message> <message> - <location filename="modlist.cpp" line="197"/> + <location filename="modlist.cpp" line="170"/> + <source>Non-MO</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modlist.cpp" line="201"/> <source>invalid</source> <translation>неверные</translation> </message> <message> - <location filename="modlist.cpp" line="308"/> + <location filename="modlist.cpp" line="314"/> <source>installed version: "%1", newest version: "%2"</source> <oldsource>installed version: %1, newest version: %2</oldsource> - <translation type="unfinished">установленная версия: %1, новейшая версия: %2</translation> + <translation>установлена версия: %1, новейшая версия: %2</translation> </message> <message> - <location filename="modlist.cpp" line="310"/> + <location filename="modlist.cpp" line="316"/> <source>The newest version on Nexus seems to be older than the one you have installed. This could either mean the version you have has been withdrawn (i.e. due to a bug) or the author uses a non-standard versioning scheme and that newest version is actually newer. Either way you may want to "upgrade".</source> - <translation type="unfinished"></translation> + <translation>Новейшая версия на Nexus кажется старее той, что установлена у вас. Это может означать, что ваша версия была снята (в связи с ошибкой и т.п.) или автор использует нестандартную схему версий, а новейшая версия на самом деле выше. В любом случае, вы можете "обновить".</translation> </message> <message> - <location filename="modlist.cpp" line="318"/> + <location filename="modlist.cpp" line="324"/> <source>Categories: <br></source> <translation>Категории: <br></translation> </message> <message> - <location filename="modlist.cpp" line="347"/> + <location filename="modlist.cpp" line="353"/> <source>Invalid name</source> <translation>Недопустимое имя</translation> </message> <message> - <location filename="modlist.cpp" line="717"/> + <location filename="modlist.cpp" line="747"/> <source>drag&drop failed: %1</source> <translation>перетаскивание не удалось: %1</translation> </message> <message> - <location filename="modlist.cpp" line="776"/> + <location filename="modlist.cpp" line="810"/> <source>Confirm</source> <translation>Подтверждение</translation> </message> <message> - <location filename="modlist.cpp" line="776"/> + <location filename="modlist.cpp" line="810"/> <source>Are you sure you want to remove "%1"?</source> <translation>Вы действительно хотите удалить "%1"?</translation> </message> <message> - <location filename="modlist.cpp" line="831"/> + <location filename="modlist.cpp" line="865"/> <source>Flags</source> <translation>Флаги</translation> </message> <message> - <location filename="modlist.cpp" line="832"/> + <location filename="modlist.cpp" line="866"/> <source>Mod Name</source> <translation>Имя мода</translation> </message> <message> - <location filename="modlist.cpp" line="833"/> + <location filename="modlist.cpp" line="867"/> <source>Version</source> <translation type="unfinished">Версия</translation> </message> <message> - <location filename="modlist.cpp" line="834"/> + <location filename="modlist.cpp" line="868"/> <source>Priority</source> <translation>Приоритет</translation> </message> <message> - <location filename="modlist.cpp" line="835"/> + <location filename="modlist.cpp" line="869"/> <source>Category</source> <translation>Категория</translation> </message> <message> - <location filename="modlist.cpp" line="836"/> + <location filename="modlist.cpp" line="870"/> <source>Nexus ID</source> <translation>Nexus ID</translation> </message> <message> - <location filename="modlist.cpp" line="837"/> + <location filename="modlist.cpp" line="871"/> <source>Installation</source> <translation>Установка</translation> </message> <message> - <location filename="modlist.cpp" line="838"/> - <location filename="modlist.cpp" line="854"/> + <location filename="modlist.cpp" line="872"/> + <location filename="modlist.cpp" line="888"/> <source>unknown</source> <translation>неизвестный</translation> </message> <message> - <location filename="modlist.cpp" line="846"/> + <location filename="modlist.cpp" line="880"/> <source>Name of your mods</source> <translation>Имя ваших модов</translation> </message> <message> - <location filename="modlist.cpp" line="847"/> + <location filename="modlist.cpp" line="881"/> <source>Version of the mod (if available)</source> <translation>Версия мода (если доступно)</translation> </message> <message> - <location filename="modlist.cpp" line="848"/> + <location filename="modlist.cpp" line="882"/> <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source> - <translation>Приоритет установки для ваших модов. Файлы модов с большим приоритетом перезапишут файлы модов с меньшим приоритетом.</translation> + <translation>Приоритет установки для ваших модов. Файлы модов с большим приоритетом перезапишут файлы модов с меньшим.</translation> </message> <message> - <location filename="modlist.cpp" line="850"/> + <location filename="modlist.cpp" line="884"/> <source>Category of the mod.</source> <translation>Категория мода.</translation> </message> <message> - <location filename="modlist.cpp" line="851"/> + <location filename="modlist.cpp" line="885"/> <source>Id of the mod as used on Nexus.</source> <translation>ID мода, используемый на Nexus.</translation> </message> <message> - <location filename="modlist.cpp" line="852"/> + <location filename="modlist.cpp" line="886"/> <source>Emblemes to highlight things that might require attention.</source> <translation>Выделяет подсветкой вещи, которые могут потребовать внимания.</translation> </message> <message> - <location filename="modlist.cpp" line="853"/> + <location filename="modlist.cpp" line="887"/> <source>Time this mod was installed</source> <translation>Время, когда мод был установлен.</translation> </message> @@ -3452,17 +3668,17 @@ p, li { white-space: pre-wrap; } <context> <name>NXMAccessManager</name> <message> - <location filename="nxmaccessmanager.cpp" line="130"/> + <location filename="nxmaccessmanager.cpp" line="144"/> <source>Logging into Nexus</source> - <translation type="unfinished"></translation> + <translation>Авторизация на Nexus</translation> </message> <message> - <location filename="nxmaccessmanager.cpp" line="145"/> + <location filename="nxmaccessmanager.cpp" line="159"/> <source>timeout</source> <translation>задержка</translation> </message> <message> - <location filename="nxmaccessmanager.cpp" line="185"/> + <location filename="nxmaccessmanager.cpp" line="200"/> <source>Please check your password</source> <translation>Проверьте ваш пароль</translation> </message> @@ -3470,17 +3686,17 @@ p, li { white-space: pre-wrap; } <context> <name>NexusInterface</name> <message> - <location filename="nexusinterface.cpp" line="218"/> + <location filename="nexusinterface.cpp" line="216"/> <source>Failed to guess mod id for "%1", please pick the correct one</source> <translation>Не удалось опознать id мода "%1", пожалуйста, выберете правильный</translation> </message> <message> - <location filename="nexusinterface.cpp" line="455"/> + <location filename="nexusinterface.cpp" line="481"/> <source>empty response</source> <translation>пустой ответ</translation> </message> <message> - <location filename="nexusinterface.cpp" line="483"/> + <location filename="nexusinterface.cpp" line="510"/> <source>invalid response</source> <translation>неверный ответ</translation> </message> @@ -3553,113 +3769,122 @@ p, li { white-space: pre-wrap; } <context> <name>PluginList</name> <message> - <location filename="pluginlist.cpp" line="109"/> + <location filename="pluginlist.cpp" line="103"/> <source>Name</source> <translation type="unfinished">Имя</translation> </message> <message> - <location filename="pluginlist.cpp" line="110"/> + <location filename="pluginlist.cpp" line="104"/> <source>Priority</source> <translation>Приоритет</translation> </message> <message> - <location filename="pluginlist.cpp" line="111"/> + <location filename="pluginlist.cpp" line="105"/> <source>Mod Index</source> - <translation>Индекс мода</translation> + <translation>Индекс</translation> </message> <message> - <location filename="pluginlist.cpp" line="112"/> + <location filename="pluginlist.cpp" line="106"/> <source>Flags</source> - <translation type="unfinished">Флаги</translation> + <translation>Флаги</translation> </message> <message> - <location filename="pluginlist.cpp" line="113"/> - <location filename="pluginlist.cpp" line="125"/> + <location filename="pluginlist.cpp" line="107"/> + <location filename="pluginlist.cpp" line="119"/> <source>unknown</source> <translation>неизвестно</translation> </message> <message> - <location filename="pluginlist.cpp" line="121"/> + <location filename="pluginlist.cpp" line="115"/> <source>Name of your mods</source> <translation>Имена ваших модов</translation> </message> <message> - <location filename="pluginlist.cpp" line="122"/> + <location filename="pluginlist.cpp" line="116"/> <source>Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority.</source> <translation>Приоритет загрузки ваших модов. Моды с большим приоритетом перезапишут данные модов с меньшим приоритетом.</translation> </message> <message> - <location filename="pluginlist.cpp" line="124"/> + <location filename="pluginlist.cpp" line="118"/> <source>The modindex determins the formids of objects originating from this mods.</source> - <translation>Индекс мода определяющий id форм объектов, происходящих из этих модов.</translation> + <translation>Индекс модов, определяющий formid объектов, происходящих из этих модов.</translation> </message> <message> - <location filename="pluginlist.cpp" line="165"/> + <location filename="pluginlist.cpp" line="159"/> <source>failed to update esp info for file %1 (source id: %2), error: %3</source> - <translation type="unfinished"></translation> + <translation>не удалось обновить информацию о esp для файла %1 (id источника: %2), ошибка: %3</translation> </message> <message> - <location filename="pluginlist.cpp" line="233"/> + <location filename="pluginlist.cpp" line="227"/> <source>esp not found: %1</source> <translation>esp не найден: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="240"/> - <location filename="pluginlist.cpp" line="252"/> + <location filename="pluginlist.cpp" line="234"/> + <location filename="pluginlist.cpp" line="246"/> <source>Confirm</source> - <translation type="unfinished"></translation> + <translation>Подтвердить</translation> </message> <message> - <location filename="pluginlist.cpp" line="240"/> + <location filename="pluginlist.cpp" line="234"/> <source>Really enable all plugins?</source> - <translation type="unfinished"></translation> + <translation>Действительно подключить все плагины?</translation> </message> <message> - <location filename="pluginlist.cpp" line="252"/> + <location filename="pluginlist.cpp" line="246"/> <source>Really disable all plugins?</source> - <translation type="unfinished"></translation> + <translation>Действительно отключить все плагины?</translation> </message> <message> - <location filename="pluginlist.cpp" line="380"/> + <location filename="pluginlist.cpp" line="397"/> <source>The file containing locked plugin indices is broken</source> <translation>Файл, содержащий индексы заблокированного плагина, не работает.</translation> </message> <message> - <source>failed to open output file: %1</source> - <translation type="obsolete">не удалось открыть выходной файл: %1</translation> - </message> - <message> - <location filename="pluginlist.cpp" line="418"/> + <location filename="pluginlist.cpp" line="438"/> <source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source> <translation>Некоторые из ваших плагинов имеют неверные имена. Эти плагины не могут быть загружены игрой. Смотрите mo_interface.log для получения списка таких плагинов и переименуйте их.</translation> </message> <message> - <location filename="pluginlist.cpp" line="644"/> - <source>BOSS dll incompatible</source> + <location filename="pluginlist.cpp" line="804"/> + <source><b>Origin</b>: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="983"/> + <location filename="pluginlist.cpp" line="806"/> + <source>Author</source> + <translation type="unfinished">Автор</translation> + </message> + <message> + <location filename="pluginlist.cpp" line="809"/> + <source>Description</source> + <translation type="unfinished">Описание</translation> + </message> + <message> + <source>BOSS dll incompatible</source> + <translation type="obsolete">BOSS dll несовместим</translation> + </message> + <message> + <location filename="pluginlist.cpp" line="802"/> <source>This plugin can't be disabled (enforced by the game)</source> <translation>Этот плагин не может быть отключен (грузится игрой принудительно)</translation> </message> <message> - <location filename="pluginlist.cpp" line="985"/> <source>Origin: %1</source> - <translation>Источник: %1</translation> + <translation type="obsolete">Источник: %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="987"/> + <location filename="pluginlist.cpp" line="812"/> <source>Missing Masters</source> - <translation type="unfinished"></translation> + <translation>Отсутствующие мастерфайлы</translation> </message> <message> - <location filename="pluginlist.cpp" line="993"/> + <location filename="pluginlist.cpp" line="819"/> <source>Enabled Masters</source> - <translation type="unfinished"></translation> + <translation>Подключенные мастерфайлы</translation> </message> <message> - <location filename="pluginlist.cpp" line="1134"/> + <location filename="pluginlist.cpp" line="960"/> <source>failed to restore load order for %1</source> <translation>не удалось восстановить порядок загрузки для %1</translation> </message> @@ -3669,12 +3894,12 @@ p, li { white-space: pre-wrap; } <message> <location filename="previewdialog.ui" line="14"/> <source>Preview</source> - <translation type="unfinished"></translation> + <translation>Предосмотр</translation> </message> <message> <location filename="previewdialog.ui" line="78"/> <source>Close</source> - <translation type="unfinished">Закрыть</translation> + <translation>Закрыть</translation> </message> </context> <context> @@ -3691,25 +3916,16 @@ p, li { white-space: pre-wrap; } p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html></source> - <oldsource><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><br /></p></body></html></oldsource> - <translation type="unfinished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><br /></p></body></html></translation> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html></translation> </message> <message> <location filename="problemsdialog.ui" line="75"/> <source>Close</source> - <translation type="unfinished">Закрыть</translation> - </message> - <message> - <source>fix</source> - <translation type="obsolete">исправить</translation> + <translation>Закрыть</translation> </message> <message> <location filename="problemsdialog.cpp" line="44"/> @@ -3736,66 +3952,67 @@ p, li { white-space: pre-wrap; } <translation>не удалось создать %1</translation> </message> <message> - <source>failed to open "%1" for writing</source> - <translation type="obsolete">не удалось открыть "%1" для записи</translation> - </message> - <message> - <location filename="profile.cpp" line="182"/> + <location filename="profile.cpp" line="184"/> <source>failed to write mod list: %1</source> - <translation type="unfinished"></translation> + <translation>не удалось записать список модов: %1</translation> </message> <message> - <location filename="profile.cpp" line="193"/> + <location filename="profile.cpp" line="195"/> <source>failed to update tweaked ini file, wrong settings may be used: %1</source> <translation>не удалось обновить настроенный ini-файл, вероятно используются ошибочные настройки: %1</translation> </message> <message> - <location filename="profile.cpp" line="223"/> + <location filename="profile.cpp" line="226"/> <source>failed to create tweaked ini: %1</source> <translation>не удалось создать настроенный ini: %1</translation> </message> <message> - <location filename="profile.cpp" line="276"/> - <location filename="profile.cpp" line="305"/> - <location filename="profile.cpp" line="390"/> - <location filename="profile.cpp" line="408"/> - <location filename="profile.cpp" line="418"/> + <location filename="profile.cpp" line="236"/> + <source>"%1" is missing or inaccessible</source> + <translation type="unfinished">"%1" отсутствует</translation> + </message> + <message> + <location filename="profile.cpp" line="281"/> + <location filename="profile.cpp" line="313"/> + <location filename="profile.cpp" line="415"/> + <location filename="profile.cpp" line="432"/> + <location filename="profile.cpp" line="442"/> <source>invalid index %1</source> <translation>неверный индекс %1</translation> </message> <message> - <location filename="profile.cpp" line="371"/> + <location filename="profile.cpp" line="396"/> <source>Overwrite directory couldn't be parsed</source> <translation>Замена каталога не может быть обработана</translation> </message> <message> - <location filename="profile.cpp" line="380"/> + <location filename="profile.cpp" line="405"/> <source>invalid priority %1</source> <translation>неверный приоритет %1</translation> </message> <message> - <location filename="profile.cpp" line="568"/> + <location filename="profile.cpp" line="592"/> <source>failed to parse ini file (%1)</source> <translation>не удалось обработать ini файл (%1)</translation> </message> <message> - <location filename="profile.cpp" line="596"/> + <location filename="profile.cpp" line="620"/> <source>failed to parse ini file (%1): %2</source> <translation>не удалось обработать ini файл (%1): %2</translation> </message> <message> - <location filename="profile.cpp" line="620"/> - <location filename="profile.cpp" line="657"/> + <location filename="profile.cpp" line="644"/> + <location filename="profile.cpp" line="681"/> <source>failed to modify "%1"</source> <translation>не удалось изменить "%1"</translation> </message> <message> - <location filename="profile.cpp" line="685"/> + <location filename="profile.cpp" line="709"/> <source>Delete savegames?</source> <translation>Удалить сохранения?</translation> </message> <message> - <location filename="profile.cpp" line="686"/> + <location filename="profile.cpp" line="710"/> <source>Do you want to delete local savegames? (If you select "No", the save games will show up again if you re-enable local savegames)</source> <translation>Вы хотите удалить локальные сохранения? (При отрицательном выборе сохранения отобразятся снова, если повторно включить локальные сохранения)</translation> </message> @@ -3984,12 +4201,12 @@ p, li { white-space: pre-wrap; } <message> <location filename="profilesdialog.cpp" line="165"/> <source>Invalid name</source> - <translation type="unfinished">Недопустимое имя</translation> + <translation>Недопустимое имя</translation> </message> <message> <location filename="profilesdialog.cpp" line="165"/> <source>Invalid profile name</source> - <translation type="unfinished"></translation> + <translation>Неверное имя профиля</translation> </message> <message> <location filename="profilesdialog.cpp" line="172"/> @@ -3999,21 +4216,17 @@ p, li { white-space: pre-wrap; } <message> <location filename="profilesdialog.cpp" line="172"/> <source>Are you sure you want to remove this profile (including local savegames if any)?</source> - <translation type="unfinished"></translation> + <translation>Вы уверены, что хотите удалить профиль (включая локальные сохранения, если они имеются)?</translation> </message> <message> <location filename="profilesdialog.cpp" line="182"/> <source>Profile broken</source> - <translation type="unfinished"></translation> + <translation>Профиль испорчен</translation> </message> <message> <location filename="profilesdialog.cpp" line="183"/> <source>This profile you're about to delete seems to be broken or the path is invalid. I'm about to delete the following folder: "%1". Proceed?</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Are you sure you want to remove this profile?</source> - <translation type="obsolete">Вы действительно хотите удалить этот профиль?</translation> + <translation>Профиль, который вы собираетесь удалить, кажется испорчен или содержит неверный путь. Речь идет о удалении следующей папки: "%1". Приступить?</translation> </message> <message> <location filename="profilesdialog.cpp" line="215"/> @@ -4183,95 +4396,91 @@ p, li { white-space: pre-wrap; } <translation>Не удалось установить загрузку proxy-dll</translation> </message> <message> - <location filename="main.cpp" line="139"/> + <location filename="main.cpp" line="121"/> <source>Permissions required</source> <translation>Требуются права доступа</translation> </message> <message> - <source>The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights).</source> - <translation type="obsolete">Текущий аккаунт пользователя не имеет необходимых прав для запуска Mod Organizer. Необходимые изменения могут быть сделаны автоматически (каталог MO будет установлен записываемым для текущего аккаунта пользователя). Вам будет предложено запустить "helper.exe" с правами администратора.</translation> - </message> - <message> - <location filename="main.cpp" line="140"/> + <location filename="main.cpp" line="122"/> <source>The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights.</source> - <translation type="unfinished"></translation> + <translation>Текущий аккаунт пользователя не имеет требуемых прав доступа для запуска Mod Organizer. Необходимые изменения могут быть сделаны автоматически (папка MO будет сделана записываемой для текущего аккаунта пользователя). Вы получите запрос о запуске "helper.exe" с правами администратора.</translation> </message> <message> - <location filename="main.cpp" line="231"/> - <location filename="main.cpp" line="269"/> + <location filename="main.cpp" line="216"/> + <location filename="main.cpp" line="254"/> <source>Woops</source> <translation>Упс</translation> </message> <message> - <location filename="main.cpp" line="232"/> + <location filename="main.cpp" line="217"/> <source>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file (%1) to sherb@gmx.net, the bug is a lot more likely to be fixed. Please include a short description of what you were doing when the crash happened</source> <translation>Mod Organizer вышел из строя! Нужно ли создать диагностический файл? Если вы вышлите файл (%1) по адресу sherb@gmx.net, ошибка с намного большей вероятностью будет исправлена. Пожалуйста, добавьте краткое описание своих действий, перед тем, как произошла ошибка</translation> </message> <message> - <location filename="main.cpp" line="270"/> + <location filename="main.cpp" line="255"/> <source>ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1</source> <translation>ModOrganizer вышел из строя! К сожалению не удалось записать диагностический файл: %1</translation> </message> <message> - <location filename="main.cpp" line="332"/> - <location filename="settings.cpp" line="542"/> + <location filename="main.cpp" line="376"/> + <location filename="settings.cpp" line="557"/> <source>Mod Organizer</source> <translation>Mod Organizer</translation> </message> <message> - <location filename="main.cpp" line="332"/> + <location filename="main.cpp" line="376"/> <source>An instance of Mod Organizer is already running</source> <translation>Другой экземпляр Mod Organizer уже запущен</translation> </message> <message> - <location filename="main.cpp" line="354"/> + <location filename="main.cpp" line="398"/> <source>No game identified in "%1". The directory is required to contain the game binary and its launcher.</source> <translation>Игра не обнаружена в "%1". Требуется, чтобы папка содержала исполняемые файлы игры.</translation> </message> <message> - <location filename="main.cpp" line="357"/> - <location filename="main.cpp" line="386"/> + <location filename="main.cpp" line="401"/> + <location filename="main.cpp" line="430"/> <source>Please select the game to manage</source> <translation>Выберете игру для управления</translation> </message> <message> - <location filename="main.cpp" line="412"/> + <location filename="main.cpp" line="456"/> <source>Please select the game edition you have (MO can't start the game correctly if this is set incorrectly!)</source> + <translation>Пожалуйста, выберете редакцию игры, которую вы имеете (MO не сможет правильно запустить игру, если это будет установлено неверно!)</translation> + </message> + <message> + <location filename="main.cpp" line="545"/> + <source>failed to start application: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="782"/> + <location filename="mainwindow.cpp" line="842"/> <source>Please use "Help" from the toolbar to get usage instructions to all elements</source> <translation>Используйте пункт "Справка" на панели инструментов, чтобы получить инструкции по использованию всех элементов.</translation> </message> <message> - <location filename="mainwindow.cpp" line="1610"/> - <location filename="mainwindow.cpp" line="4216"/> + <location filename="mainwindow.cpp" line="1613"/> + <location filename="mainwindow.cpp" line="4226"/> <source><Manage...></source> <translation><Управлять...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1628"/> + <location filename="mainwindow.cpp" line="1631"/> <source>failed to parse profile %1: %2</source> <translation>не удалось обработать профиль %1: %2</translation> </message> <message> - <location filename="pluginlist.cpp" line="335"/> - <location filename="profile.cpp" line="233"/> + <location filename="pluginlist.cpp" line="352"/> <source>failed to find "%1"</source> <translation>не удалось найти "%1"</translation> </message> <message> - <source>encoding error, please report this as a bug and include the file mo_interface.log!</source> - <translation type="obsolete">ошибка кодирования, пожалуйста сообщите об этом баге, включив файл mo_interface.log!</translation> - </message> - <message> - <location filename="pluginlist.cpp" line="491"/> + <location filename="pluginlist.cpp" line="515"/> <source>failed to access %1</source> <translation>не удалось получить доступ к %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="505"/> + <location filename="pluginlist.cpp" line="529"/> <source>failed to set file time %1</source> <translation>не удалось изменить дату модификации для %1</translation> </message> @@ -4282,8 +4491,9 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="profile.cpp" line="96"/> - <source>"%1" is missing</source> - <translation>"%1" отсутствует</translation> + <source>"%1" is missing or inaccessible</source> + <oldsource>"%1" is missing</oldsource> + <translation type="unfinished">"%1" отсутствует</translation> </message> <message> <location filename="profilesdialog.cpp" line="80"/> @@ -4309,27 +4519,27 @@ p, li { white-space: pre-wrap; } <translation>не удалось открыть %1</translation> </message> <message> - <location filename="settings.cpp" line="549"/> + <location filename="settings.cpp" line="564"/> <source>Script Extender</source> <translation>Script Extender</translation> </message> <message> - <location filename="settings.cpp" line="556"/> + <location filename="settings.cpp" line="571"/> <source>Proxy DLL</source> <translation>Proxy DLL</translation> </message> <message> - <location filename="spawn.cpp" line="106"/> + <location filename="spawn.cpp" line="127"/> <source>failed to spawn "%1"</source> <translation>не удалось вызвать "%1"</translation> </message> <message> - <location filename="spawn.cpp" line="113"/> + <location filename="spawn.cpp" line="134"/> <source>Elevation required</source> <translation>Требуется повышение прав</translation> </message> <message> - <location filename="spawn.cpp" line="114"/> + <location filename="spawn.cpp" line="135"/> <source>This process requires elevation to run. This is a potential security risk so I highly advice you to investigate if "%1" @@ -4344,29 +4554,29 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe Запустить с повышенными правами в любом случае? (будет выведен запрос о разрешении ModOrganizer.exe сделать изменения в системе)</translation> </message> <message> - <location filename="spawn.cpp" line="129"/> + <location filename="spawn.cpp" line="150"/> <source>failed to spawn "%1": %2</source> <translation>не удалось вызвать "%1": %2</translation> </message> <message> - <location filename="spawn.cpp" line="138"/> + <location filename="spawn.cpp" line="159"/> <source>"%1" doesn't exist</source> <translation>"%1" не существует</translation> </message> <message> - <location filename="spawn.cpp" line="145"/> + <location filename="spawn.cpp" line="166"/> <source>failed to inject dll into "%1": %2</source> <translation>не удалось подключить dll к "%1": %2</translation> </message> <message> - <location filename="spawn.cpp" line="153"/> + <location filename="spawn.cpp" line="174"/> <source>failed to run "%1"</source> <translation>не удалось запустить "%1"</translation> </message> <message> <location filename="safewritefile.cpp" line="32"/> <source>failed to open temporary file</source> - <translation type="unfinished"></translation> + <translation>не удалось открыть временный файл</translation> </message> </context> <context> @@ -4408,13 +4618,6 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe </message> </context> <context> - <name>QuestionBoxMemory</name> - <message> - <source>Remember selection</source> - <translation type="obsolete">Запомнить выбор</translation> - </message> -</context> -<context> <name>SaveGameInfoWidget</name> <message> <location filename="savegameinfowidget.ui" line="39"/> @@ -4590,26 +4793,18 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <context> <name>Settings</name> <message> - <source>setting for invalid plugin "%1" requested</source> - <translation type="obsolete">запрошена настройка для недействительного плагина "%1"</translation> - </message> - <message> - <source>invalid setting "%1" requested for plugin "%2"</source> - <translation type="obsolete">неверная настройка "%1" запрошена для плагина "%2"</translation> - </message> - <message> - <location filename="settings.cpp" line="320"/> - <location filename="settings.cpp" line="339"/> + <location filename="settings.cpp" line="329"/> + <location filename="settings.cpp" line="348"/> <source>attempt to store setting for unknown plugin "%1"</source> - <translation type="unfinished"></translation> + <translation>попытка сохранить настройку для неизвестного плагина "%1"</translation> </message> <message> - <location filename="settings.cpp" line="660"/> + <location filename="settings.cpp" line="681"/> <source>Confirm</source> <translation>Подтверждение</translation> </message> <message> - <location filename="settings.cpp" line="660"/> + <location filename="settings.cpp" line="681"/> <source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed?</source> <translation>Изменение каталога для модов отразится на всех ваших профилях. Нельзя будет отменить это, если только вы не сохранили резервные копии ваших профилей вручную. Продолжить?</translation> </message> @@ -4699,7 +4894,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="settingsdialog.ui" line="113"/> <source>Advanced</source> - <translation>Продвинутый</translation> + <translation>Дополнительные</translation> </message> <message> <location filename="settingsdialog.ui" line="125"/> @@ -4733,44 +4928,69 @@ p, li { white-space: pre-wrap; } <translation>Каталог кэша</translation> </message> <message> + <location filename="settingsdialog.ui" line="199"/> + <source>User interface</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="settingsdialog.ui" line="205"/> + <source>If checked, the download interface will be more compact.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="208"/> + <source>Compact Download Interface</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="215"/> + <source>If checked, the download list will display meta information instead of file names.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="218"/> + <source>Download Meta Information</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="234"/> <source>Reset stored information from dialogs.</source> <translation>Сброс хранимой информации о диалогах.</translation> </message> <message> - <location filename="settingsdialog.ui" line="208"/> + <location filename="settingsdialog.ui" line="237"/> <source>This will make all dialogs show up again where you checked the "Remember selection"-box.</source> <translation>Заставит снова появиться все диалоги, в которых вы ранее отмечали флажок "Запомнить выбор".</translation> </message> <message> - <location filename="settingsdialog.ui" line="211"/> + <location filename="settingsdialog.ui" line="240"/> <source>Reset Dialogs</source> <translation>Сбросить диалоги</translation> </message> <message> - <location filename="settingsdialog.ui" line="231"/> - <location filename="settingsdialog.ui" line="234"/> + <location filename="settingsdialog.ui" line="260"/> + <location filename="settingsdialog.ui" line="263"/> <source>Modify the categories available to arrange your mods.</source> <translation>Изменение категорий, доступных для упорядочивания ваших модов.</translation> </message> <message> - <location filename="settingsdialog.ui" line="237"/> + <location filename="settingsdialog.ui" line="266"/> <source>Configure Mod Categories</source> <translation>Настроить категории модов</translation> </message> <message> - <location filename="settingsdialog.ui" line="245"/> - <location filename="settingsdialog.ui" line="261"/> + <location filename="settingsdialog.ui" line="274"/> + <location filename="settingsdialog.ui" line="290"/> <source>Nexus</source> <translation>Nexus</translation> </message> <message> - <location filename="settingsdialog.ui" line="251"/> + <location filename="settingsdialog.ui" line="280"/> <source>Allows automatic log-in when the Nexus-Page for the game is clicked.</source> <translation>Позволяет автоматически входить, кликнув на Nexus-страницу игры.</translation> </message> <message> - <location filename="settingsdialog.ui" line="254"/> + <location filename="settingsdialog.ui" line="283"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -4783,126 +5003,122 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Позволяет автоматически входить, кликнув на Nexus-страницу игры. Обратите внимание, что шифрование с которым пароль хранится в файле modorganizer.ini не очень сильное. Если вы беспокоитесь, что кто-нибудь может украсть ваш пароль, не храните его здесь.</span></p></body></html></translation> </message> <message> - <location filename="settingsdialog.ui" line="270"/> + <location filename="settingsdialog.ui" line="299"/> <source>If checked and if correct credentials are entered below, log-in to Nexus (for browsing and downloading) is automatic.</source> <translation>Если отмечено и данные ниже введены правильно, входит на Nexus (для просмотра и загрузки) автоматически.</translation> </message> <message> - <location filename="settingsdialog.ui" line="273"/> + <location filename="settingsdialog.ui" line="302"/> <source>Automatically Log-In to Nexus</source> <translation>Автоматический вход на Nexus</translation> </message> <message> - <location filename="settingsdialog.ui" line="282"/> + <location filename="settingsdialog.ui" line="311"/> <source>Username</source> <translation type="unfinished">Имя пользователя</translation> </message> <message> - <location filename="settingsdialog.ui" line="296"/> + <location filename="settingsdialog.ui" line="325"/> <source>Password</source> <translation type="unfinished">Пароль</translation> </message> <message> - <location filename="settingsdialog.ui" line="318"/> + <location filename="settingsdialog.ui" line="347"/> <source>Disable automatic internet features</source> <translation>Отключить автоматические возможности интернет</translation> </message> <message> - <location filename="settingsdialog.ui" line="321"/> + <location filename="settingsdialog.ui" line="350"/> <source>Disable automatic internet features. This does not affect features that are explicitly invoked by the user (like checking mods for updates, endorsing, opening the web browser)</source> <translation>Отключает автоматические возможности интернет. Это не подействует на функции, которые явно вызваны пользователем (проверка модов на обновления, одобрение, открытие в браузере)</translation> </message> <message> - <location filename="settingsdialog.ui" line="324"/> + <location filename="settingsdialog.ui" line="353"/> <source>Offline Mode</source> <translation>Автономный режим</translation> </message> <message> - <location filename="settingsdialog.ui" line="331"/> + <location filename="settingsdialog.ui" line="360"/> <source>Use a proxy for network connections.</source> <translation>Использовать прокси для соединения с сетью</translation> </message> <message> - <location filename="settingsdialog.ui" line="334"/> + <location filename="settingsdialog.ui" line="363"/> <source>Use a proxy for network connections. This uses the system-wide settings which can be configured in Internet Explorer. Please note that MO will start up a few seconds slower on some systems when using a proxy.</source> <translation>Использовать прокси для соединения с сетью. Используются системные параметры, настраиваемые в Internet Explorer. Обратите внимание, что MO запустится на несколько секунд медленнее на некоторых системах, когда используется прокси.</translation> </message> <message> - <location filename="settingsdialog.ui" line="337"/> + <location filename="settingsdialog.ui" line="366"/> <source>Use HTTP Proxy (Uses System Settings)</source> <translation>Использовать HTTP Proxy (Используются системные настройки)</translation> </message> <message> - <location filename="settingsdialog.ui" line="346"/> + <location filename="settingsdialog.ui" line="375"/> <source>Associate with "Download with manager" links</source> - <translation type="unfinished"></translation> + <translation>Ассоциировать с ссылками "Загрузить с помощью MO"</translation> </message> <message> - <location filename="settingsdialog.ui" line="375"/> + <location filename="settingsdialog.ui" line="404"/> <source>Known Servers (updated on download)</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Known Servers (Dynamically updated every download)</source> - <translation type="obsolete">Известные серверы (Динамически обновляется при каждой загрузке)</translation> + <translation>Известные серверы (обновлено при загрузке)</translation> </message> <message> - <location filename="settingsdialog.ui" line="396"/> + <location filename="settingsdialog.ui" line="425"/> <source>Preferred Servers (Drag & Drop)</source> <translation>Предпочитаемые серверы (Используйте перетаскивание)</translation> </message> <message> - <location filename="settingsdialog.ui" line="431"/> + <location filename="settingsdialog.ui" line="460"/> <source>Plugins</source> <translation>Плагины</translation> </message> <message> - <location filename="settingsdialog.ui" line="453"/> + <location filename="settingsdialog.ui" line="482"/> <source>Author:</source> <translation>Автор:</translation> </message> <message> - <location filename="settingsdialog.ui" line="467"/> + <location filename="settingsdialog.ui" line="496"/> <source>Version:</source> <translation>Версия:</translation> </message> <message> - <location filename="settingsdialog.ui" line="481"/> + <location filename="settingsdialog.ui" line="510"/> <source>Description:</source> <translation>Описание:</translation> </message> <message> - <location filename="settingsdialog.ui" line="519"/> + <location filename="settingsdialog.ui" line="548"/> <source>Key</source> <translation>Клавиша</translation> </message> <message> - <location filename="settingsdialog.ui" line="524"/> + <location filename="settingsdialog.ui" line="553"/> <source>Value</source> <translation>Значение</translation> </message> <message> - <location filename="settingsdialog.ui" line="536"/> + <location filename="settingsdialog.ui" line="565"/> <source>Blacklisted Plugins (use <del> to remove):</source> - <translation type="unfinished"></translation> + <translation>Плагины в черном списке (используйте <del> для удаления):</translation> </message> <message> - <location filename="settingsdialog.ui" line="547"/> + <location filename="settingsdialog.ui" line="576"/> <source>Workarounds</source> <translation>Способы обхода</translation> </message> <message> - <location filename="settingsdialog.ui" line="555"/> + <location filename="settingsdialog.ui" line="584"/> <source>Steam App ID</source> <translation>ID приложения Steam</translation> </message> <message> - <location filename="settingsdialog.ui" line="575"/> + <location filename="settingsdialog.ui" line="604"/> <source>The Steam AppID for your game</source> <translation>ID в Steam для вашей игры</translation> </message> <message> - <location filename="settingsdialog.ui" line="578"/> + <location filename="settingsdialog.ui" line="607"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -4929,17 +5145,17 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">22380 это и есть id, который вам нужен.</span></p></body></html></translation> </message> <message> - <location filename="settingsdialog.ui" line="609"/> + <location filename="settingsdialog.ui" line="638"/> <source>Load Mechanism</source> <translation>Механизм загрузки</translation> </message> <message> - <location filename="settingsdialog.ui" line="629"/> + <location filename="settingsdialog.ui" line="658"/> <source>Select loading mechanism. See help for details.</source> <translation>Выберете механизм загрузки. Смотрите справку для подробностей.</translation> </message> <message> - <location filename="settingsdialog.ui" line="632"/> + <location filename="settingsdialog.ui" line="661"/> <source>Mod Organizer needs a dll to be injected into the game so all mods are visible to it. There are several means to do this: *Mod Organizer* (default) In this mode the Mod Organizer itself injects the dll. The disadvantage is that you always have to start the game through MO or a link created by it. @@ -4956,77 +5172,95 @@ If you use the Steam version of Oblivion the default will NOT work. In this case Если вы используете Steam-версию Oblivion , способ по умолчанию не работает. В этом случае установите obse и используйте "Script Extender" как механизм загрузки. Также после этого вы не сможете запустить Oblivion из MO, вместо этого используйте MO только для настройки модов и запускайте игру через Steam.</translation> </message> <message> - <location filename="settingsdialog.ui" line="649"/> + <location filename="settingsdialog.ui" line="678"/> <source>NMM Version</source> <translation>Версия NMM</translation> </message> <message> - <location filename="settingsdialog.ui" line="669"/> + <location filename="settingsdialog.ui" line="698"/> <source>The Version of Nexus Mod Manager to impersonate.</source> <translation>Версия Nexus Mod Manager для представления.</translation> </message> <message> - <location filename="settingsdialog.ui" line="672"/> + <location filename="settingsdialog.ui" line="701"/> <source>Mod Organizer uses an API provided by the Nexus to provide features like checking for updates and downloading files. Unfortunately this API has not been made available officially to third party tools like MO so we have to impersonate the Nexus Mod Manager to be allowed in. On top of this Nexus has used the client identification to lock out outdated versions of NMM to force users to update. This means that MO also needs to impersonate the new version of NMM even if MO doesn't need an update. Therefore you can configure the version to identify as here. Please note that MO does identify itself as MO to the webserver, it's not lying about what it is. It is merely adding a "compatible" NMM version to the user agent. tl;dr-version: If Nexus-features don't work, insert the current version number of NMM here and try again.</source> - <translation>Mod Organizer использует API Nexus , для предоставления таких возможностей, как проверка обновлений и загрузка файлов. К сожалению этот API не был сделан официально доступным прочим утилитам, вроде MO, так что нужно представляться как Nexus Mod Manager, чтобы получить доступ. -Помимо этого Nexus использует идентификатор версий, чтобы блокировать устаревшии версии NMM и принудительно заставить пользователей обновиться. Это значит, что MO также нужно представляться последней версией NMM, даже если MO не нуждается в обновлении. Поэтому вы можете настроить здесь также и версию для идентификации. -Обратите внимание, что MO идентифицирует себя вебсерверу как MO, он не подделывает данные о себе. Он всего лишь добавляется как "совместимая" с NMM версия, в поле user agent. + <translation>Mod Organizer использует API Nexus , для использования таких возможностей, как проверка обновлений и загрузка файлов. К сожалению этот API не был сделан официально доступным прочим утилитам, вроде MO, так что нужно представляться как Nexus Mod Manager, чтобы получить доступ. +Помимо этого Nexus использует идентификатор версий, чтобы блокировать устаревшие версии NMM и принудительно заставить пользователей обновиться. Это значит, что MO также нужно представляться последней версией NMM, даже если MO не нуждается в обновлении. Поэтому вы можете настроить здесь также и версию для идентификации. +Обратите внимание, что MO идентифицирует себя веб-серверу как MO, он не подделывает данные о себе. Он всего лишь добавляется как "совместимая" с NMM версия, в поле user agent. tl;dr-версия: Если возможности Nexus не работают, вставьте здесь текущую версию NMM и повторите попытку.</translation> </message> <message> - <location filename="settingsdialog.ui" line="694"/> + <location filename="settingsdialog.ui" line="723"/> <source>Enforces that inactive ESPs and ESMs are never loaded.</source> <translation>Обеспечивает то, что неактивные ESP и ESM не будут загружены.</translation> </message> <message> - <location filename="settingsdialog.ui" line="697"/> + <location filename="settingsdialog.ui" line="726"/> <source>It seems that the Games occasionally load ESP or ESM files even if they haven't been activated as plugins. I don't yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded.</source> <translation>Кажется, что иногда игры загружают ESP и ESM файлы, даже если они не были не подключены как плагины Обстоятельства этого пока не известны, но отчеты пользователей подразумевают, что это в ряде случаев нежелательно. Если этот флажок отмечен, не отмеченные в списке ESP и ESM не будут видимы в списке и не будут загружены.</translation> </message> <message> - <location filename="settingsdialog.ui" line="701"/> + <location filename="settingsdialog.ui" line="730"/> <source>Hide inactive ESPs/ESMs</source> - <translation>Скрыть неактивные ESPs/ESMs</translation> + <translation>Скрыть неактивные ESP/ESM</translation> </message> <message> - <location filename="settingsdialog.ui" line="708"/> + <location filename="settingsdialog.ui" line="737"/> <source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on)</source> <translation>Если отмечено, файлы (т.е. esp, esm и bsa) принадлежащие основной игре не смогут быть отключены из интерфейса. (по умолчанию: вкл)</translation> </message> <message> - <location filename="settingsdialog.ui" line="711"/> + <location filename="settingsdialog.ui" line="740"/> <source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on) Uncheck this if you want to use Mod Organizer with total conversions (like Nehrim) but be aware that the game will crash if required files are not enabled.</source> <translation>Если отмечено, файлы (т.е. esp, esm и bsa) принадлежащие основной игре не смогут быть отключены из интерфейса. (по умолчанию: вкл) Снимите флажок, если вы собираетесь использовать Mod Organizer с тотальными конверсиями (как Nehrim) , но будьте осторожны, игра может вылететь, если требуемые файлы будут отключены.</translation> </message> <message> - <location filename="settingsdialog.ui" line="715"/> + <location filename="settingsdialog.ui" line="744"/> <source>Force-enable game files</source> <translation>Принудительно подключить файлы игры</translation> </message> <message> - <location filename="settingsdialog.ui" line="725"/> - <location filename="settingsdialog.ui" line="729"/> + <location filename="settingsdialog.ui" line="754"/> + <source>Disable this to no longer display mods installed outside MO in the mod list (left pane). Assets from those mods will then be treated as having lowest mod priority together with the original game content.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="757"/> + <source>By default Mod Organizer will display esp+bsa bundles installed with foreign tools as mods (left pane). This allows you to control their priority in relation to other mods. This is particularly useful if you also use Steam Workshop to install mods. +However, if you installed loose file mods outside MO which conflict with BSAs also installed outside MO those conflicts can't be resolved correctly. + +If you disable this feature, MO will only display official DLCs this way. Please note that plugins (esps and esms) displayed in the right pane are completely unaffected by this feature.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="763"/> + <source>Display mods installed outside MO</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="773"/> + <location filename="settingsdialog.ui" line="777"/> <source>For Skyrim, this can be used instead of Archive Invalidation. It should make AI redundant for all Profiles. For the other games this is not a sufficient replacement for AI!</source> <translation>Для Скайрим это может быть использовано вместо инвалидации. Это должно сделать AI избыточным для всех профилей. Для других игр недостаточно замены для AI!</translation> </message> <message> - <location filename="settingsdialog.ui" line="733"/> + <location filename="settingsdialog.ui" line="781"/> <source>Back-date BSAs</source> <translation>Back-date BSAs</translation> </message> <message> - <location filename="settingsdialog.ui" line="757"/> + <location filename="settingsdialog.ui" line="805"/> <source>These are workarounds for problems with Mod Organizer. Please make sure you read the help text before changing anything here.</source> <translation>Это способы обхода проблем с Mod Organizer. Убедитесь, что вы прочли справку, перед тем, как делать какие-либо изменения здесь.</translation> </message> @@ -5077,7 +5311,7 @@ For the other games this is not a sufficient replacement for AI!</source> <message> <location filename="simpleinstalldialog.ui" line="55"/> <source>Manual</source> - <translation>Руководство</translation> + <translation>Вручную</translation> </message> <message> <location filename="simpleinstalldialog.ui" line="62"/> @@ -5099,7 +5333,6 @@ For the other games this is not a sufficient replacement for AI!</source> </message> <message> <location filename="singleinstance.cpp" line="82"/> - <location filename="singleinstance.cpp" line="88"/> <source>failed to connect to running instance: %1</source> <translation>не удалось подключиться к запущенному экземпляру: %1</translation> </message> @@ -5145,13 +5378,9 @@ For the other games this is not a sufficient replacement for AI!</source> <context> <name>TransferSavesDialog</name> <message> - <source>Dialog</source> - <translation type="obsolete">Диалог</translation> - </message> - <message> <location filename="transfersavesdialog.ui" line="14"/> <source>Transfer Savegames</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Передать сохранения</translation> </message> <message> <location filename="transfersavesdialog.ui" line="22"/> @@ -5173,21 +5402,13 @@ On Windows Vista/Windows 7: On Windows XP: C:\Documents and Settings\[UserName]\My Documents\My Games\Skyrim\Saves </source> - <oldsource>This is a list of characters in the global location. - -On Windows Vista/Windows 7: - C:\Users\[UserName]\Documents\My Games\Skyrim\Saves - -On Windows XP: - C:\Documents and Settings[UserName]\My Documents\My Games\Skyrim\Saves -</oldsource> - <translation type="unfinished">Список персонажей в общем месторасположении. + <translation>Это список персонажей в общем месторасположении. -На Windows Vista/Windows 7: -C:\Users\[UserName]\Documents\My Games\Skyrim\Saves +В Windows Vista/Windows 7: + C:\Users\[UserName]\Documents\My Games\Skyrim\Saves -На Windows XP: -C:\Documents and Settings[UserName]\My Documents\My Games\Skyrim\Saves +В Windows XP: + C:\Documents and Settings\[UserName]\My Documents\My Games\Skyrim\Saves </translation> </message> <message> @@ -5203,11 +5424,11 @@ On Windows XP: </source> <translation>Список сохранений с выбранным персонажем в общем месторасположении. -На Windows Vista/Windows 7: -C:\Users\[UserName]\Documents\My Games\Skyrim\Saves +В Windows Vista/Windows 7: + C:\Users\[UserName]\Documents\My Games\Skyrim\Saves -На Windows XP: -C:\Documents and Settings[UserName]\My Documents\My Games\Skyrim\Saves +В Windows XP: + C:\Documents and Settings[UserName]\My Documents\My Games\Skyrim\Saves </translation> </message> diff --git a/src/organizer_tr.ts b/src/organizer_tr.ts index d091ad76..d16fad1e 100644 --- a/src/organizer_tr.ts +++ b/src/organizer_tr.ts @@ -141,7 +141,6 @@ Eğer "00 Core" diye bir bileşen varsa, bu genellikle gereklidir. Se <message> <location filename="baincomplexinstallerdialog.ui" line="89"/> <source>Manual</source> - <translatorcomment>What does manual mean here? By hand? Or like a book?</translatorcomment> <translation>El ile</translation> </message> <message> @@ -156,6 +155,29 @@ Eğer "00 Core" diye bir bileşen varsa, bu genellikle gereklidir. Se </message> </context> <context> + <name>BrowserDialog</name> + <message> + <location filename="browserdialog.ui" line="14"/> + <source>Some Page</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="browserdialog.ui" line="256"/> + <source>Search</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="browserdialog.cpp" line="91"/> + <source>new</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="browserdialog.cpp" line="204"/> + <source>failed to start download</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> <name>CategoriesDialog</name> <message> <location filename="categoriesdialog.ui" line="14"/> @@ -272,11 +294,7 @@ p, li { white-space: pre-wrap; } <context> <name>DirectoryRefresher</name> <message> - <source>failed to read %1: %2</source> - <translation type="obsolete">%1: %2 okunamadı</translation> - </message> - <message> - <location filename="directoryrefresher.cpp" line="99"/> + <location filename="directoryrefresher.cpp" line="146"/> <source>failed to read bsa: %1</source> <translation type="unfinished"></translation> </message> @@ -291,7 +309,6 @@ p, li { white-space: pre-wrap; } <message> <location filename="downloadlist.cpp" line="65"/> <source>Filetime</source> - <translatorcomment>Direct translation. What does this mean actually?</translatorcomment> <translation>Dosyazamanı</translation> </message> <message> @@ -320,26 +337,26 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="downloadlistwidget.ui" line="99"/> - <location filename="downloadlistwidget.cpp" line="145"/> - <location filename="downloadlistwidget.cpp" line="147"/> + <location filename="downloadlistwidget.cpp" line="150"/> + <location filename="downloadlistwidget.cpp" line="152"/> <source>Done - Double Click to install</source> <translation>Bitti - Yüklemek için çift tıklayın</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="111"/> - <location filename="downloadlistwidget.cpp" line="113"/> + <location filename="downloadlistwidget.cpp" line="116"/> + <location filename="downloadlistwidget.cpp" line="118"/> <source>Paused - Double Click to resume</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="131"/> - <location filename="downloadlistwidget.cpp" line="133"/> + <location filename="downloadlistwidget.cpp" line="136"/> + <location filename="downloadlistwidget.cpp" line="138"/> <source>Installed - Double Click to re-install</source> <translation>Yüklendi - Tekrar yüklemek için çift tıklayın</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="138"/> - <location filename="downloadlistwidget.cpp" line="140"/> + <location filename="downloadlistwidget.cpp" line="143"/> + <location filename="downloadlistwidget.cpp" line="145"/> <source>Uninstalled - Double Click to re-install</source> <translation type="unfinished"></translation> </message> @@ -361,135 +378,135 @@ p, li { white-space: pre-wrap; } <context> <name>DownloadListWidgetCompactDelegate</name> <message> - <location filename="downloadlistwidgetcompact.cpp" line="126"/> + <location filename="downloadlistwidgetcompact.cpp" line="92"/> + <source>< mod %1 file %2 ></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="97"/> + <source>Pending</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="120"/> + <source>Paused</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="123"/> + <source>Fetching Info 1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="125"/> + <source>Fetching Info 2</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="130"/> <source>Installed</source> <translation>Yüklendi</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="129"/> + <location filename="downloadlistwidgetcompact.cpp" line="133"/> <source>Uninstalled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="132"/> + <location filename="downloadlistwidgetcompact.cpp" line="136"/> <source>Done</source> <translation>Bitti</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="241"/> - <location filename="downloadlistwidgetcompact.cpp" line="250"/> - <location filename="downloadlistwidgetcompact.cpp" line="259"/> - <location filename="downloadlistwidgetcompact.cpp" line="268"/> + <location filename="downloadlistwidgetcompact.cpp" line="245"/> + <location filename="downloadlistwidgetcompact.cpp" line="254"/> + <location filename="downloadlistwidgetcompact.cpp" line="263"/> + <location filename="downloadlistwidgetcompact.cpp" line="272"/> <source>Are you sure?</source> <translation>Emin misiniz?</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="242"/> + <location filename="downloadlistwidgetcompact.cpp" line="246"/> <source>This will remove all finished downloads from this list and from disk.</source> <translation>Bu, tüm bitmiş indirilenleri listeden ve diskten kaldıracaktır.</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="251"/> + <location filename="downloadlistwidgetcompact.cpp" line="255"/> <source>This will remove all installed downloads from this list and from disk.</source> <translation>Bu, tüm yüklenmiş indirilenleri listeden ve diskten kaldıracaktır.</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="260"/> + <location filename="downloadlistwidgetcompact.cpp" line="264"/> <source>This will permanently remove all finished downloads from this list (but NOT from disk).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="269"/> + <location filename="downloadlistwidgetcompact.cpp" line="273"/> <source>This will permanently remove all installed downloads from this list (but NOT from disk).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="298"/> + <location filename="downloadlistwidgetcompact.cpp" line="302"/> <source>Install</source> <translation>Yükle</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="300"/> + <location filename="downloadlistwidgetcompact.cpp" line="304"/> <source>Query Info</source> <translation>Sorgu Bilgisi</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="302"/> + <location filename="downloadlistwidgetcompact.cpp" line="306"/> <source>Delete</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="304"/> + <location filename="downloadlistwidgetcompact.cpp" line="308"/> <source>Un-Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="306"/> + <location filename="downloadlistwidgetcompact.cpp" line="310"/> <source>Remove from View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="312"/> - <source>Remove</source> - <translation>Kaldır</translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="309"/> + <location filename="downloadlistwidgetcompact.cpp" line="313"/> <source>Cancel</source> <translation>İptal et</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="88"/> - <source>< mod %1 file %2 ></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="93"/> - <source>Pending</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="116"/> - <source>Paused</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="119"/> - <source>Fetching Info 1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="121"/> - <source>Fetching Info 2</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="310"/> + <location filename="downloadlistwidgetcompact.cpp" line="314"/> <source>Pause</source> <translation>Duraklat</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="313"/> + <location filename="downloadlistwidgetcompact.cpp" line="316"/> + <source>Remove</source> + <translation>Kaldır</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="317"/> <source>Resume</source> <translation>Devam et</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="318"/> + <location filename="downloadlistwidgetcompact.cpp" line="322"/> <source>Delete Installed...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="319"/> + <location filename="downloadlistwidgetcompact.cpp" line="323"/> <source>Delete All...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="322"/> + <location filename="downloadlistwidgetcompact.cpp" line="326"/> <source>Remove Installed...</source> <translation>Yüklenmişleri kaldır...</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="323"/> + <location filename="downloadlistwidgetcompact.cpp" line="327"/> <source>Remove All...</source> <translation>Hepsini kaldır...</translation> </message> @@ -497,115 +514,115 @@ p, li { white-space: pre-wrap; } <context> <name>DownloadListWidgetDelegate</name> <message> - <location filename="downloadlistwidget.cpp" line="253"/> - <location filename="downloadlistwidget.cpp" line="262"/> - <location filename="downloadlistwidget.cpp" line="271"/> - <location filename="downloadlistwidget.cpp" line="280"/> + <location filename="downloadlistwidget.cpp" line="93"/> + <source>< mod %1 file %2 ></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="96"/> + <source>Pending</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="123"/> + <source>Fetching Info 1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="126"/> + <source>Fetching Info 2</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="258"/> + <location filename="downloadlistwidget.cpp" line="267"/> + <location filename="downloadlistwidget.cpp" line="276"/> + <location filename="downloadlistwidget.cpp" line="285"/> <source>Are you sure?</source> <translation>Emin misiniz?</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="254"/> + <location filename="downloadlistwidget.cpp" line="259"/> <source>This will remove all finished downloads from this list and from disk.</source> <translation>Bu, tüm bitmiş indirilenleri listeden ve diskten kaldıracaktır.</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="263"/> + <location filename="downloadlistwidget.cpp" line="268"/> <source>This will remove all installed downloads from this list and from disk.</source> <translation>Bu, tüm bitmiş yüklenmiş listeden ve diskten kaldıracaktır.</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="272"/> + <location filename="downloadlistwidget.cpp" line="277"/> <source>This will remove all finished downloads from this list (but NOT from disk).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="281"/> + <location filename="downloadlistwidget.cpp" line="286"/> <source>This will remove all installed downloads from this list (but NOT from disk).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="309"/> + <location filename="downloadlistwidget.cpp" line="314"/> <source>Install</source> <translation>Yükle</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="311"/> + <location filename="downloadlistwidget.cpp" line="316"/> <source>Query Info</source> <translation>Bilgi sorgula</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="313"/> + <location filename="downloadlistwidget.cpp" line="318"/> <source>Delete</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="315"/> + <location filename="downloadlistwidget.cpp" line="320"/> <source>Un-Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="317"/> + <location filename="downloadlistwidget.cpp" line="322"/> <source>Remove from View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="323"/> - <source>Remove</source> - <translation>Kaldır</translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="320"/> + <location filename="downloadlistwidget.cpp" line="325"/> <source>Cancel</source> <translation>İptal et</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="88"/> - <source>< mod %1 file %2 ></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="91"/> - <source>Pending</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="118"/> - <source>Fetching Info 1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="121"/> - <source>Fetching Info 2</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="321"/> + <location filename="downloadlistwidget.cpp" line="326"/> <source>Pause</source> <translation>Duraklat</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="324"/> + <location filename="downloadlistwidget.cpp" line="328"/> + <source>Remove</source> + <translation>Kaldır</translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="329"/> <source>Resume</source> <translation>Devam et</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="329"/> + <location filename="downloadlistwidget.cpp" line="334"/> <source>Delete Installed...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="330"/> + <location filename="downloadlistwidget.cpp" line="335"/> <source>Delete All...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="333"/> + <location filename="downloadlistwidget.cpp" line="338"/> <source>Remove Installed...</source> <translation>Yüklenmişleri kaldır</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="334"/> + <location filename="downloadlistwidget.cpp" line="339"/> <source>Remove All...</source> <translation>Hepsini kaldır...</translation> </message> @@ -613,126 +630,173 @@ p, li { white-space: pre-wrap; } <context> <name>DownloadManager</name> <message> - <location filename="downloadmanager.cpp" line="132"/> + <location filename="downloadmanager.cpp" line="142"/> <source>failed to rename "%1" to "%2"</source> <translation>"%1"yi "%2" olarak yeniden adlandırma başarılı olamadı.</translation> </message> <message> - <location filename="downloadmanager.cpp" line="342"/> + <location filename="downloadmanager.cpp" line="321"/> + <source>Memory allocation error (in refreshing directory).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="369"/> <source>Download again?</source> <translation>Tekrar indir?</translation> </message> <message> - <location filename="downloadmanager.cpp" line="342"/> + <location filename="downloadmanager.cpp" line="369"/> <source>A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name.</source> <translation>Aynı dosya isminde bir dosya zaten indirilmiş. Tekrar indirmek istiyor musunuz? Yeni dosya farklı bir isim alacak.</translation> </message> <message> - <location filename="downloadmanager.cpp" line="388"/> + <location filename="downloadmanager.cpp" line="417"/> <source>failed to download %1: could not open output file: %2</source> <translation>%1 indirilemedi : : çıkış dosyası %2 açılamadı</translation> </message> <message> - <location filename="downloadmanager.cpp" line="421"/> + <location filename="downloadmanager.cpp" line="454"/> <source>Wrong Game</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadmanager.cpp" line="421"/> + <location filename="downloadmanager.cpp" line="454"/> <source>The download link is for a mod for "%1" but this instance of MO has been set up for "%2".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadmanager.cpp" line="439"/> - <location filename="downloadmanager.cpp" line="506"/> - <location filename="downloadmanager.cpp" line="682"/> - <location filename="downloadmanager.cpp" line="691"/> - <location filename="downloadmanager.cpp" line="701"/> - <location filename="downloadmanager.cpp" line="710"/> - <location filename="downloadmanager.cpp" line="724"/> - <location filename="downloadmanager.cpp" line="734"/> - <location filename="downloadmanager.cpp" line="744"/> - <location filename="downloadmanager.cpp" line="754"/> - <location filename="downloadmanager.cpp" line="765"/> + <location filename="downloadmanager.cpp" line="471"/> + <location filename="downloadmanager.cpp" line="538"/> + <location filename="downloadmanager.cpp" line="726"/> + <location filename="downloadmanager.cpp" line="735"/> + <location filename="downloadmanager.cpp" line="756"/> <location filename="downloadmanager.cpp" line="773"/> <location filename="downloadmanager.cpp" line="782"/> - <location filename="downloadmanager.cpp" line="792"/> - <location filename="downloadmanager.cpp" line="807"/> + <location filename="downloadmanager.cpp" line="796"/> + <location filename="downloadmanager.cpp" line="806"/> + <location filename="downloadmanager.cpp" line="816"/> + <location filename="downloadmanager.cpp" line="826"/> + <location filename="downloadmanager.cpp" line="841"/> + <location filename="downloadmanager.cpp" line="849"/> + <location filename="downloadmanager.cpp" line="858"/> + <location filename="downloadmanager.cpp" line="868"/> + <location filename="downloadmanager.cpp" line="883"/> <source>invalid index</source> <translation>geçersiz dizin</translation> </message> <message> - <location filename="downloadmanager.cpp" line="457"/> + <location filename="downloadmanager.cpp" line="489"/> <source>failed to delete %1</source> <translation>%1 silinemedi</translation> </message> <message> - <location filename="downloadmanager.cpp" line="463"/> + <location filename="downloadmanager.cpp" line="495"/> <source>failed to delete meta file for %1</source> <translation>%1'in meta dosyası silinemedi</translation> </message> <message> - <location filename="downloadmanager.cpp" line="539"/> - <location filename="downloadmanager.cpp" line="557"/> - <location filename="downloadmanager.cpp" line="570"/> - <location filename="downloadmanager.cpp" line="587"/> - <location filename="downloadmanager.cpp" line="598"/> + <location filename="downloadmanager.cpp" line="571"/> + <location filename="downloadmanager.cpp" line="589"/> + <location filename="downloadmanager.cpp" line="602"/> + <location filename="downloadmanager.cpp" line="622"/> <location filename="downloadmanager.cpp" line="633"/> + <location filename="downloadmanager.cpp" line="673"/> <source>invalid index %1</source> <translation>geçeriz dizin %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="650"/> + <location filename="downloadmanager.cpp" line="640"/> + <source>No known download urls. Sorry, this download can't be resumed.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="695"/> <source>Please enter the nexus mod id</source> <translation>Lütfen nexus mod kimliğini girin</translation> </message> <message> - <location filename="downloadmanager.cpp" line="650"/> + <location filename="downloadmanager.cpp" line="695"/> <source>Mod ID:</source> <translation>Mod kimliği:</translation> </message> <message> - <source>invalid alphabetical index %1</source> - <translation type="obsolete">geçersiz alfabetik dizin %1</translation> + <location filename="downloadmanager.cpp" line="744"/> + <source>Main</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="745"/> + <source>Update</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="746"/> + <source>Optional</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="747"/> + <source>Old</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="748"/> + <source>Misc</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="749"/> + <source>Unknown</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="999"/> + <source>Memory allocation error (in processing progress event).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="1012"/> + <source>Memory allocation error (in processing downloaded data).</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="downloadmanager.cpp" line="1042"/> + <location filename="downloadmanager.cpp" line="1141"/> <source>Information updated</source> <translation>bilgi güncellendi</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1044"/> - <location filename="downloadmanager.cpp" line="1058"/> + <location filename="downloadmanager.cpp" line="1143"/> + <location filename="downloadmanager.cpp" line="1157"/> <source>No matching file found on Nexus! Maybe this file is no longer available or it was renamed?</source> <translation>Nexus'ta uyan bir dosya bulunamadı! Dosya artık mevcut olmayabilir yada yeniden adlandırılmış olabilir!</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1046"/> + <location filename="downloadmanager.cpp" line="1145"/> <source>No file on Nexus matches the selected file by name. Please manually choose the correct one.</source> <translation>Nexus'ta seçili dosyaya isim olarak uyan dosya bulunamadı. Lütfen el ile doğru olanı seçin.</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1180"/> + <location filename="downloadmanager.cpp" line="1286"/> <source>No download server available. Please try again later.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadmanager.cpp" line="1224"/> + <location filename="downloadmanager.cpp" line="1329"/> <source>Failed to request file info from nexus: %1</source> <translation>Nexus'tan dosya bilgisi istenilemedi: %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1249"/> + <location filename="downloadmanager.cpp" line="1357"/> <source>Download failed. Server reported: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadmanager.cpp" line="1251"/> + <location filename="downloadmanager.cpp" line="1359"/> <source>Download failed: %1 (%2)</source> <translation>İndirme başarızı: %1 (%2)</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1331"/> + <location filename="downloadmanager.cpp" line="1458"/> <source>failed to re-open %1</source> <translation>%1 tekrar açılamadı</translation> </message> @@ -795,7 +859,6 @@ p, li { white-space: pre-wrap; } <message> <location filename="editexecutablesdialog.ui" line="93"/> <source>Start in</source> - <translatorcomment>What does this mean? What is the context it is used.</translatorcomment> <translation type="unfinished"></translation> </message> <message> @@ -1029,63 +1092,6 @@ Steam tarafından dağıtılan her oyun/aracın kendine has bir kimliği vardır <source>Cancel</source> <translation>İptal et</translation> </message> - <message> - <source>ModuleConfig.xml missing</source> - <translation type="obsolete">ModuleConfig.xml kayıp</translation> - </message> - <message> - <source><a href="%1">Link</a></source> - <translation type="obsolete"><a href="%1">Bağlantı</a></translation> - </message> - <message> - <source>failed to parse info.xml: %1 (%2) (line %3, column %4)</source> - <translation type="obsolete">info.xml çözümlenemedi: %1 (%2) (satır %3, kolon%4)</translation> - </message> - <message> - <source>unsupported order type %1</source> - <translatorcomment>Order as in sorting?</translatorcomment> - <translation type="obsolete">desteklenmeyen sıralama türü %1</translation> - </message> - <message> - <source>unsupported group type %1</source> - <translation type="obsolete">desteklenmeyen grup türü %1</translation> - </message> - <message> - <source>This component is required</source> - <translation type="obsolete">Bu bileşen gereklidir</translation> - </message> - <message> - <source>It is recommended you enable this component</source> - <translation type="obsolete">Bu bileşeni devreye sokmanız tavsiye edilir</translation> - </message> - <message> - <source>Optional component</source> - <translation type="obsolete">İsteğe bağlı bileşen</translation> - </message> - <message> - <source>This component is not usable in combination with other installed plugins</source> - <translation type="obsolete">Bu bileşen diğer yüklü eklentilerle beraber kullanılamaz</translation> - </message> - <message> - <source>You may be experiencing instability in combination with other installed plugins</source> - <translation type="obsolete">Diğer yüklü eklentilerle beraber kararsızlık yaşayabilirsiniz</translation> - </message> - <message> - <source>None</source> - <translation type="obsolete">Hiçbiri</translation> - </message> - <message> - <source>Select one or more of these options:</source> - <translation type="obsolete">Bir yada daha fazla seçenek seçin</translation> - </message> - <message> - <source>failed to parse ModuleConfig.xml: %1</source> - <translation type="obsolete">ModuleConfig.xml: %1 çözümlenemedi</translation> - </message> - <message> - <source>Install</source> - <translation type="obsolete">Yükle</translation> - </message> </context> <context> <name>InstallDialog</name> @@ -1152,52 +1158,13 @@ p, li { white-space: pre-wrap; } <source>Cancel</source> <translation type="unfinished"></translation> </message> - <message> - <source>Looks good</source> - <translation type="obsolete">Düzgün duruyor</translation> - </message> - <message> - <source>No problem detected</source> - <translation type="obsolete">Problem bulunmadı</translation> - </message> - <message> - <source>No game data on top level</source> - <translation type="obsolete">En üst kademede herhangi bir oyun verisi yok</translation> - </message> - <message> - <source>There is no esp/esm file or asset directory (textures, meshes, interface, ...) on the top level.</source> - <translation type="obsolete">En üst kademede esp/esm dosyası yada mal klasörü (textures, meshes, interface, ...) yok.</translation> - </message> - <message> - <source>Enter a directory name</source> - <translation type="obsolete">Bir klasör ismi girin</translation> - </message> - <message> - <source>A directory with that name exists</source> - <translation type="obsolete">O isimde bir klasör zaten vardır</translation> - </message> - <message> - <source>Set data directory</source> - <translation type="obsolete">Veri klasörü seçin</translation> - </message> - <message> - <source>Unset data directory</source> - <translation type="obsolete">Ayarlanmamış veri klasörü</translation> - </message> - <message> - <source>Create directory...</source> - <translation type="obsolete">Klasör yarat...</translation> - </message> - <message> - <source>&Open</source> - <translation type="obsolete">&Aç</translation> - </message> </context> <context> <name>InstallationManager</name> <message> - <source>mo_archive.dll not loaded: "%1"</source> - <translation type="obsolete">mo_archive.dll yüklü değil: "%1"</translation> + <location filename="installationmanager.cpp" line="76"/> + <source>archive.dll not loaded: "%1"</source> + <translation type="unfinished"></translation> </message> <message> <location filename="installationmanager.cpp" line="98"/> @@ -1210,73 +1177,13 @@ p, li { white-space: pre-wrap; } <translation>Şifre</translation> </message> <message> - <source>Directory exists</source> - <translation type="obsolete">Klasör var</translation> - </message> - <message> - <source>This mod seems to be installed already. Do you want to add files from this archive (overwriting existing ones) or do you want to completely replace the existing files (old files are deleted)?</source> - <translation type="obsolete">Bu mod zaten yüklü gözüküyor. Bu arşivden dosyalar ekelemek (zaten var olanların üzerine yazarak) istiyor munuz yada var olan dosyaları tamamen değiştirmek (eski dosyalar silinerek) istiyor musunuz?</translation> - </message> - <message> - <source>Add Files</source> - <translation type="obsolete">Dosyalar ekle</translation> - </message> - <message> - <source>Replace</source> - <translation type="obsolete">Değiştir</translation> - </message> - <message> <location filename="installationmanager.cpp" line="164"/> <location filename="installationmanager.cpp" line="248"/> - <location filename="installationmanager.cpp" line="529"/> + <location filename="installationmanager.cpp" line="530"/> <source>Extracting files</source> <translation>Dosyalar çıkarılıyor</translation> </message> <message> - <source>Preparing installer</source> - <translation type="obsolete">Yükleyici hazırlanıyor</translation> - </message> - <message> - <source>Installation as fomod failed: %1</source> - <translation type="obsolete">Fomod olarak yüklemek başarılamadı: %1</translation> - </message> - <message> - <source>failed to start %1</source> - <translation type="obsolete">%1 başlatılamadı</translation> - </message> - <message> - <source>Running external installer. -Note: This installer will not be aware of other installed mods!</source> - <translation type="obsolete">Harici yükleyici çalıştırılıyor. -Not: Bu yükleyici diğer modlardan haberdar olmayacak!</translation> - </message> - <message> - <source>Force Close</source> - <translation type="obsolete">Zorla kapat</translation> - </message> - <message> - <source>Confirm</source> - <translation type="obsolete">Onayla</translation> - </message> - <message> - <source>installation failed (errorcode %1)</source> - <translation type="obsolete">yükleme başarısız (hatakodu %1)</translation> - </message> - <message> - <location filename="installationmanager.cpp" line="609"/> - <source>File format "%1" not supported</source> - <translation>Dosya formatı "%1" desteklenmiyor.</translation> - </message> - <message> - <source>failed to open archive "%1": %2</source> - <translation type="obsolete">Arşiv "%1": %2 açılamadı.</translation> - </message> - <message> - <location filename="installationmanager.cpp" line="76"/> - <source>archive.dll not loaded: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="installationmanager.cpp" line="439"/> <source>failed to create backup</source> <translation type="unfinished"></translation> @@ -1302,64 +1209,57 @@ Not: Bu yükleyici diğer modlardan haberdar olmayacak!</translation> <translation type="unfinished"></translation> </message> <message> - <source>Installer missing</source> - <translation type="obsolete">Yükleyici bulunamadı</translation> - </message> - <message> - <source>This package contains a scripted installer. To use this installer you need the optional "NCC"-package and the .net runtime. Do you want to continue, treating this as a manual installer?</source> - <translation type="obsolete">Bu paket kodlu bir yükleyici içermektedir. Bu yükleyiciyi kullanmak için isteye bağlı "NCC-paketi" ve .net runtime gereklidir. Buunu el ile yapılan bir yükleyici gibi kabul ederek devam etmek istiyor musunuz?</translation> - </message> - <message> - <source>Please install NCC</source> - <translation type="obsolete">Lüttfen NCC'yi yükleyiniz.</translation> + <location filename="installationmanager.cpp" line="610"/> + <source>File format "%1" not supported</source> + <translation>Dosya formatı "%1" desteklenmiyor.</translation> </message> <message> - <location filename="installationmanager.cpp" line="735"/> + <location filename="installationmanager.cpp" line="743"/> <source>None of the available installer plugins were able to handle that archive</source> <translation type="unfinished"></translation> </message> <message> - <location filename="installationmanager.cpp" line="745"/> + <location filename="installationmanager.cpp" line="753"/> <source>no error</source> <translation>hata yok</translation> </message> <message> - <location filename="installationmanager.cpp" line="748"/> + <location filename="installationmanager.cpp" line="756"/> <source>7z.dll not found</source> <translation>7z.dll bulunamadı</translation> </message> <message> - <location filename="installationmanager.cpp" line="751"/> + <location filename="installationmanager.cpp" line="759"/> <source>7z.dll isn't valid</source> <translation>7z.dll geçerli değil</translation> </message> <message> - <location filename="installationmanager.cpp" line="754"/> + <location filename="installationmanager.cpp" line="762"/> <source>archive not found</source> <translation>arşiv bulunamadı</translation> </message> <message> - <location filename="installationmanager.cpp" line="757"/> + <location filename="installationmanager.cpp" line="765"/> <source>failed to open archive</source> <translation>arşiv açılamadı</translation> </message> <message> - <location filename="installationmanager.cpp" line="760"/> + <location filename="installationmanager.cpp" line="768"/> <source>unsupported archive type</source> <translation>desteklenmeyen arşiv türü</translation> </message> <message> - <location filename="installationmanager.cpp" line="763"/> + <location filename="installationmanager.cpp" line="771"/> <source>internal library error</source> <translation>içsel kütüphane hatası</translation> </message> <message> - <location filename="installationmanager.cpp" line="766"/> + <location filename="installationmanager.cpp" line="774"/> <source>archive invalid</source> <translation>arşiv geçersiz</translation> </message> <message> - <location filename="installationmanager.cpp" line="770"/> + <location filename="installationmanager.cpp" line="778"/> <source>unknown archive error</source> <translation>bilinmeyen arşiv hatası</translation> </message> @@ -1390,7 +1290,7 @@ Not: Bu yükleyici diğer modlardan haberdar olmayacak!</translation> <context> <name>LogBuffer</name> <message> - <location filename="logbuffer.cpp" line="73"/> + <location filename="logbuffer.cpp" line="83"/> <source>failed to write log to %1: %2</source> <translation>%1: %2 ya kayıt yazılamadı</translation> </message> @@ -1398,12 +1298,12 @@ Not: Bu yükleyici diğer modlardan haberdar olmayacak!</translation> <context> <name>MOApplication</name> <message> - <location filename="moapplication.cpp" line="68"/> + <location filename="moapplication.cpp" line="115"/> <source>an error occured: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="moapplication.cpp" line="73"/> + <location filename="moapplication.cpp" line="120"/> <source>an error occured</source> <translation type="unfinished"></translation> </message> @@ -1411,23 +1311,48 @@ Not: Bu yükleyici diğer modlardan haberdar olmayacak!</translation> <context> <name>MainWindow</name> <message> - <location filename="mainwindow.ui" line="51"/> - <location filename="mainwindow.ui" line="392"/> + <location filename="mainwindow.ui" line="43"/> + <location filename="mainwindow.ui" line="482"/> <source>Categories</source> <translation type="unfinished">Kategoriler</translation> </message> <message> - <location filename="mainwindow.ui" line="128"/> + <location filename="mainwindow.ui" line="97"/> + <source>Click blank area to deselect</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="116"/> + <source>If checked, only mods that match all selected categories are displayed.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="119"/> + <source>And</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="129"/> + <source>If checked, all mods that match at least one of the selected categories are displayed.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="132"/> + <source>Or</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="171"/> <source>Profile</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="138"/> + <location filename="mainwindow.ui" line="181"/> <source>Pick a module collection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="141"/> + <location filename="mainwindow.ui" line="184"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1437,54 +1362,66 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="159"/> + <location filename="mainwindow.ui" line="215"/> <source>Refresh list</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="162"/> + <location filename="mainwindow.ui" line="218"/> <source>Refresh list. This is usually not necessary unless you modified data outside the program.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="278"/> + <location filename="mainwindow.ui" line="238"/> + <location filename="mainwindow.ui" line="739"/> + <source>Restore Backup...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="252"/> + <location filename="mainwindow.ui" line="759"/> + <source>Create Backup</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="368"/> <source>List of available mods.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="281"/> + <location filename="mainwindow.ui" line="371"/> <source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag & drop mods to change their "installation" orders.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="366"/> + <location filename="mainwindow.ui" line="456"/> <source>Filter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="387"/> + <location filename="mainwindow.ui" line="477"/> <source>No groups</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="397"/> + <location filename="mainwindow.ui" line="487"/> <source>Nexus IDs</source> <translation type="unfinished">Nexus kimliği</translation> </message> <message> - <location filename="mainwindow.ui" line="405"/> - <location filename="mainwindow.ui" line="724"/> - <location filename="mainwindow.ui" line="1046"/> + <location filename="mainwindow.ui" line="495"/> + <location filename="mainwindow.ui" line="876"/> + <location filename="mainwindow.ui" line="1214"/> <source>Namefilter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="440"/> + <location filename="mainwindow.ui" line="530"/> <source>Pick a program to run.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="443"/> + <location filename="mainwindow.ui" line="533"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1494,12 +1431,12 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="491"/> + <location filename="mainwindow.ui" line="581"/> <source>Run program</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="494"/> + <location filename="mainwindow.ui" line="584"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1508,17 +1445,17 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="504"/> + <location filename="mainwindow.ui" line="594"/> <source>Run</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="545"/> + <location filename="mainwindow.ui" line="635"/> <source>Create a shortcut in your start menu or on the desktop to the specified program</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="548"/> + <location filename="mainwindow.ui" line="638"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1527,21 +1464,27 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="555"/> + <location filename="mainwindow.ui" line="645"/> <source>Shortcut</source> <translation type="unfinished"></translation> </message> <message> - <source>Save</source> - <translation type="obsolete">Kaydet</translation> + <location filename="mainwindow.ui" line="695"/> + <source>Plugins</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="715"/> + <source>Sort</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="669"/> + <location filename="mainwindow.ui" line="821"/> <source>List of available esp/esm files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="672"/> + <location filename="mainwindow.ui" line="824"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1550,94 +1493,99 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="762"/> - <source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source> + <location filename="mainwindow.ui" line="886"/> + <source>Archives</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="765"/> - <source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" with loose files in your data directory over which is loaded. -By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored! - -BSAs checked here are loaded in such a way that your installation order is obeyed properly.</source> + <location filename="mainwindow.ui" line="916"/> + <source><html><head/><body><p>BSAs are bundles of game assets (textures, scripts, ...). By default, the engine loads these bundles in a separate step from loose files. MO can manage those archives to align their load order with that of loose files:</p><p>If archives are <span style=" font-weight:600;">managed</span>, their load order is specified by the priority of the corresponding mod (left pane), the same as the loose files. You can manually enable any BSA that has no corresponding plugin active.<br/></p><p>If archives are <span style=" font-weight:600;">not managed</span> their load order is specified by the priority of the corresponding plugin (right pane, plugins tab). You can then not manually enable BSAs where the plugin isn't active.</p><p>In either case you can not disable archives if there is a matching plugin, the game will load them no matter what.</p></body></html></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="811"/> - <location filename="mainwindow.ui" line="880"/> - <source>File</source> + <location filename="mainwindow.ui" line="919"/> + <source><html><head/><body><p>Have MO manage archives (<a href="#"><span style=" text-decoration: underline; color:#0000ff;">read more</span></a>)</p></body></html></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="819"/> - <source><html><head/><body><p>Marked Archives (<img src=":/MO/gui/warning_16"/>) are still loaded on Skyrim but the <a href="http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/"><span style=" text-decoration: underline; color:#0000ff;">regular file override</span></a> mechanism will apply: Loose files override BSAs, no matter the mod/plugin priority.</p></body></html></source> + <location filename="mainwindow.ui" line="934"/> + <source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="885"/> - <source>Mod</source> - <translation type="unfinished">Mod</translation> + <location filename="mainwindow.ui" line="937"/> + <source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" with loose files in your data directory over which is loaded. +By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored! + +BSAs checked here are loaded in such a way that your installation order is obeyed properly.</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="830"/> - <source>Data</source> + <location filename="mainwindow.ui" line="983"/> + <location filename="mainwindow.ui" line="1042"/> + <source>File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="605"/> - <source>Plugins</source> + <location filename="mainwindow.ui" line="1459"/> + <source>Copy Log to Clipboard</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="731"/> - <source>Sort</source> + <location filename="mainwindow.ui" line="1462"/> + <source>Ctrl+C</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="741"/> - <source>Archives</source> + <location filename="mainwindow.ui" line="992"/> + <source>Data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="848"/> + <location filename="mainwindow.ui" line="1010"/> <source>refresh data-directory overview</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="851"/> + <location filename="mainwindow.ui" line="1013"/> <source>Refresh the overview. This may take a moment.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="854"/> - <location filename="mainwindow.cpp" line="3781"/> - <location filename="mainwindow.cpp" line="4604"/> + <location filename="mainwindow.ui" line="1016"/> + <location filename="mainwindow.cpp" line="3749"/> + <location filename="mainwindow.cpp" line="4614"/> <source>Refresh</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="870"/> + <location filename="mainwindow.ui" line="1032"/> <source>This is an overview of your data directory as visible to the game (and tools). </source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="895"/> - <location filename="mainwindow.ui" line="898"/> + <location filename="mainwindow.ui" line="1047"/> + <source>Mod</source> + <translation type="unfinished">Mod</translation> + </message> + <message> + <location filename="mainwindow.ui" line="1057"/> + <location filename="mainwindow.ui" line="1060"/> <source>Filter the above list so that only conflicts are displayed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="901"/> + <location filename="mainwindow.ui" line="1063"/> <source>Show only conflicts</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="909"/> + <location filename="mainwindow.ui" line="1071"/> <source>Saves</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="933"/> + <location filename="mainwindow.ui" line="1095"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1648,160 +1596,155 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="947"/> + <location filename="mainwindow.ui" line="1109"/> <source>Downloads</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="979"/> + <location filename="mainwindow.ui" line="1141"/> <source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1032"/> - <source>Compact</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="1039"/> + <location filename="mainwindow.ui" line="1194"/> <source>Show Hidden</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1070"/> + <location filename="mainwindow.ui" line="1256"/> <source>Tool Bar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1112"/> + <location filename="mainwindow.ui" line="1298"/> <source>Install Mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1115"/> + <location filename="mainwindow.ui" line="1301"/> <source>Install &Mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1118"/> + <location filename="mainwindow.ui" line="1304"/> <source>Install a new mod from an archive</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1121"/> + <location filename="mainwindow.ui" line="1307"/> <source>Ctrl+M</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1130"/> + <location filename="mainwindow.ui" line="1316"/> <source>Profiles</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1133"/> + <location filename="mainwindow.ui" line="1319"/> <source>&Profiles</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1136"/> + <location filename="mainwindow.ui" line="1322"/> <source>Configure Profiles</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1139"/> + <location filename="mainwindow.ui" line="1325"/> <source>Ctrl+P</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1148"/> + <location filename="mainwindow.ui" line="1334"/> <source>Executables</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1151"/> + <location filename="mainwindow.ui" line="1337"/> <source>&Executables</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1154"/> + <location filename="mainwindow.ui" line="1340"/> <source>Configure the executables that can be started through Mod Organizer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1157"/> + <location filename="mainwindow.ui" line="1343"/> <source>Ctrl+E</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1166"/> - <location filename="mainwindow.ui" line="1172"/> + <location filename="mainwindow.ui" line="1352"/> + <location filename="mainwindow.ui" line="1358"/> <source>Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1169"/> + <location filename="mainwindow.ui" line="1355"/> <source>&Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1175"/> + <location filename="mainwindow.ui" line="1361"/> <source>Ctrl+I</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1184"/> + <location filename="mainwindow.ui" line="1370"/> <source>Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1187"/> + <location filename="mainwindow.ui" line="1373"/> <source>&Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1190"/> + <location filename="mainwindow.ui" line="1376"/> <source>Configure settings and workarounds</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1193"/> + <location filename="mainwindow.ui" line="1379"/> <source>Ctrl+S</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1202"/> + <location filename="mainwindow.ui" line="1388"/> <source>Nexus</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1205"/> + <location filename="mainwindow.ui" line="1391"/> <source>Search nexus network for more mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1208"/> + <location filename="mainwindow.ui" line="1394"/> <source>Ctrl+N</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1220"/> - <location filename="mainwindow.cpp" line="4545"/> + <location filename="mainwindow.ui" line="1406"/> + <location filename="mainwindow.cpp" line="4555"/> <source>Update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1223"/> + <location filename="mainwindow.ui" line="1409"/> <source>Mod Organizer is up-to-date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1235"/> - <location filename="mainwindow.cpp" line="509"/> + <location filename="mainwindow.ui" line="1421"/> + <location filename="mainwindow.cpp" line="561"/> <source>No Problems</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1238"/> + <location filename="mainwindow.ui" line="1424"/> <source>This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them. !Work in progress! @@ -1809,159 +1752,170 @@ Right now this has very limited functionality</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1250"/> - <location filename="mainwindow.ui" line="1253"/> + <location filename="mainwindow.ui" line="1436"/> + <location filename="mainwindow.ui" line="1439"/> <source>Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1256"/> + <location filename="mainwindow.ui" line="1442"/> <source>Ctrl+H</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1265"/> + <location filename="mainwindow.ui" line="1451"/> <source>Endorse MO</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1268"/> - <location filename="mainwindow.cpp" line="4633"/> + <location filename="mainwindow.ui" line="1454"/> + <location filename="mainwindow.cpp" line="4637"/> <source>Endorse Mod Organizer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="223"/> + <location filename="mainwindow.cpp" line="244"/> <source>Toolbar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="224"/> + <location filename="mainwindow.cpp" line="245"/> <source>Desktop</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="225"/> + <location filename="mainwindow.cpp" line="246"/> <source>Start Menu</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="505"/> + <location filename="mainwindow.cpp" line="549"/> <source>Problems</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="506"/> + <location filename="mainwindow.cpp" line="550"/> <source>There are potential problems with your setup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="510"/> + <location filename="mainwindow.cpp" line="562"/> <source>Everything seems to be in order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="568"/> + <location filename="mainwindow.cpp" line="619"/> <source>Help on UI</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="572"/> + <location filename="mainwindow.cpp" line="623"/> <source>Documentation Wiki</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="576"/> + <location filename="mainwindow.cpp" line="627"/> <source>Report Issue</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="580"/> + <location filename="mainwindow.cpp" line="631"/> <source>Tutorials</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="705"/> + <location filename="mainwindow.cpp" line="765"/> <source>failed to save load order: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="619"/> - <source>About</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="620"/> - <source>About Qt</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="717"/> + <location filename="mainwindow.cpp" line="777"/> <source>Name</source> <translation type="unfinished">İsim</translation> </message> <message> - <location filename="mainwindow.cpp" line="718"/> + <location filename="mainwindow.cpp" line="778"/> <source>Please enter a name for the new profile</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="726"/> + <location filename="mainwindow.cpp" line="786"/> <source>failed to create profile: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="769"/> + <location filename="mainwindow.cpp" line="829"/> <source>Show tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="770"/> + <location filename="mainwindow.cpp" line="830"/> <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="801"/> + <location filename="mainwindow.cpp" line="861"/> <source>Downloads in progress</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="802"/> + <location filename="mainwindow.cpp" line="862"/> <source>There are still downloads in progress, do you really want to quit?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="848"/> + <location filename="mainwindow.cpp" line="916"/> <source>failed to read savegame: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="972"/> + <location filename="mainwindow.cpp" line="1040"/> <source>Plugin "%1" failed: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1270"/> + <location filename="mainwindow.cpp" line="1042"/> + <source>Plugin "%1" failed</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1211"/> + <source>failed to init plugin %1: %2</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1249"/> + <source>Plugin error</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1250"/> + <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="1309"/> <source>Failed to start "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1272"/> + <location filename="mainwindow.cpp" line="1311"/> <source>Waiting</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1272"/> + <location filename="mainwindow.cpp" line="1311"/> <source>Please press OK once you're logged into steam.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1298"/> + <location filename="mainwindow.cpp" line="1337"/> <source>Start Steam?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1299"/> + <location filename="mainwindow.cpp" line="1338"/> <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> @@ -1976,777 +1930,878 @@ Right now this has very limited functionality</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1692"/> + <location filename="mainwindow.cpp" line="1706"/> <source><Edit...></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1789"/> - <source>Failed to refresh list of esps: %1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1929"/> + <location filename="mainwindow.cpp" line="1976"/> <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="1936"/> - <source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1991"/> + <location filename="mainwindow.cpp" line="2038"/> <source>Activating Network Proxy</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2122"/> - <location filename="mainwindow.cpp" line="4248"/> + <location filename="mainwindow.cpp" line="2269"/> + <location filename="mainwindow.cpp" line="4258"/> <source>Installation successful</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2133"/> - <location filename="mainwindow.cpp" line="4261"/> + <location filename="mainwindow.cpp" line="2280"/> + <location filename="mainwindow.cpp" line="4270"/> <source>Configure Mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2134"/> - <location filename="mainwindow.cpp" line="4262"/> + <location filename="mainwindow.cpp" line="2281"/> + <location filename="mainwindow.cpp" line="4271"/> <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="2140"/> - <location filename="mainwindow.cpp" line="4268"/> + <location filename="mainwindow.cpp" line="2288"/> + <location filename="mainwindow.cpp" line="4278"/> <source>mod "%1" not found</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2143"/> - <location filename="mainwindow.cpp" line="4274"/> + <location filename="mainwindow.cpp" line="2291"/> + <location filename="mainwindow.cpp" line="4284"/> <source>Installation cancelled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2143"/> - <location filename="mainwindow.cpp" line="4274"/> + <location filename="mainwindow.cpp" line="2291"/> + <location filename="mainwindow.cpp" line="4284"/> <source>The mod was not installed completely.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2292"/> + <location filename="mainwindow.cpp" line="2196"/> <source>Some plugins could not be loaded</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2315"/> + <location filename="mainwindow.cpp" line="2199"/> + <source>Too many esps and esms enabled</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2202"/> + <location filename="mainwindow.cpp" line="2223"/> + <source>Description missing</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2211"/> + <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="2219"/> <source>The game doesn't allow more than 255 active plugins (including the official ones) to be loaded. You have to disable some unused plugins or merge some plugins into one. You can find a guide here: <a href="http://wiki.step-project.com/Guide:Merging_Plugins">http://wiki.step-project.com/Guide:Merging_Plugins</a></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2341"/> + <location filename="mainwindow.cpp" line="2245"/> <source>Choose Mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2342"/> + <location filename="mainwindow.cpp" line="2246"/> <source>Mod Archive</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2495"/> + <location filename="mainwindow.cpp" line="2502"/> <source>Start Tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2496"/> + <location filename="mainwindow.cpp" line="2503"/> <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="2651"/> - <location filename="mainwindow.cpp" line="4171"/> + <location filename="mainwindow.cpp" line="2647"/> + <location filename="mainwindow.cpp" line="4179"/> <source>Download started</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2682"/> + <location filename="mainwindow.cpp" line="2708"/> <source>failed to update mod list: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2711"/> + <location filename="mainwindow.cpp" line="2738"/> <source>failed to spawn notepad.exe: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2752"/> + <location filename="mainwindow.cpp" line="2775"/> <source>failed to open %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2830"/> + <location filename="mainwindow.cpp" line="2850"/> <source>failed to change origin name: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2997"/> - <source>Multiple esps activated, please check that they don't conflict.</source> + <location filename="mainwindow.cpp" line="2929"/> + <source><Checked></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3345"/> - <location filename="mainwindow.cpp" line="3792"/> - <source>Create Mod...</source> + <location filename="mainwindow.cpp" line="2930"/> + <source><Unchecked></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3355"/> - <source>A mod with this name already exists</source> + <location filename="mainwindow.cpp" line="2931"/> + <source><Update></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3883"/> - <source><All></source> + <location filename="mainwindow.cpp" line="2934"/> + <source><No category></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2909"/> - <source><Checked></source> + <location filename="mainwindow.cpp" line="2935"/> + <source><Conflicted></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="974"/> - <source>Plugin "%1" failed</source> + <location filename="mainwindow.cpp" line="2936"/> + <source><Not Endorsed></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1047"/> - <source>failed to init plugin %1: %2</source> + <location filename="mainwindow.cpp" line="2969"/> + <source>failed to rename mod: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1085"/> - <source>Plugin error</source> + <location filename="mainwindow.cpp" line="2982"/> + <source>Overwrite?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1086"/> - <source>It appears the plugin "%1" failed to load last startup and caused MO to crash. Do you want to disable it? -(Please note: If this is the first time you see this message for this plugin you may want to give it another try. The plugin may be able to recover from the problem)</source> + <location filename="mainwindow.cpp" line="2983"/> + <source>This will replace the existing mod "%1". Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2295"/> - <source>Too many esps and esms enabled</source> + <location filename="mainwindow.cpp" line="2986"/> + <source>failed to remove mod "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2298"/> - <location filename="mainwindow.cpp" line="2319"/> - <source>Description missing</source> + <location filename="mainwindow.cpp" line="2990"/> + <location filename="mainwindow.cpp" line="4456"/> + <location filename="mainwindow.cpp" line="4480"/> + <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="3015"/> + <source>Multiple esps activated, please check that they don't conflict.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2307"/> - <source>The following plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:</source> + <location filename="mainwindow.cpp" line="3043"/> + <location filename="mainwindow.cpp" line="3662"/> + <location filename="mainwindow.cpp" line="3670"/> + <location filename="mainwindow.cpp" line="3890"/> + <source>Confirm</source> + <translation type="unfinished">Onayla</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3044"/> + <source>Remove the following mods?<br><ul>%1</ul></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2860"/> - <source>failed to move "%1" from mod "%2" to "%3": %4</source> + <location filename="mainwindow.cpp" line="3055"/> + <source>failed to remove mod: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2910"/> - <source><Unchecked></source> + <location filename="mainwindow.cpp" line="3090"/> + <location filename="mainwindow.cpp" line="3093"/> + <source>Failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2911"/> - <source><Update></source> + <location filename="mainwindow.cpp" line="3090"/> + <source>Installation file no longer exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2912"/> - <source><No category></source> + <location filename="mainwindow.cpp" line="3094"/> + <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="2913"/> - <source><Conflicted></source> + <location filename="mainwindow.cpp" line="3125"/> + <location filename="mainwindow.cpp" line="3152"/> + <source>You need to be logged in with Nexus to endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2914"/> - <source><Not Endorsed></source> + <location filename="mainwindow.cpp" line="4871"/> + <source>Extract BSA</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2947"/> - <source>failed to rename mod: %1</source> + <location filename="mainwindow.cpp" line="4828"/> + <location filename="mainwindow.cpp" line="4879"/> + <source>failed to read %1: %2</source> + <translation type="unfinished">%1: %2 okunamadı</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4890"/> + <source>This archive contains invalid hashes. Some files may be broken.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2960"/> - <source>Overwrite?</source> + <location filename="mainwindow.cpp" line="3298"/> + <source>Nexus ID for this Mod is unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2961"/> - <source>This will replace the existing mod "%1". Continue?</source> + <location filename="mainwindow.cpp" line="670"/> + <source>About</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2964"/> - <source>failed to remove mod "%1"</source> + <location filename="mainwindow.cpp" line="671"/> + <source>About Qt</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2968"/> - <location filename="mainwindow.cpp" line="4446"/> - <location filename="mainwindow.cpp" line="4470"/> - <source>failed to rename "%1" to "%2"</source> - <translation type="unfinished">"%1"yi "%2" olarak yeniden adlandırma başarılı olamadı.</translation> + <location filename="mainwindow.cpp" line="1085"/> + <source>Download?</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3024"/> - <location filename="mainwindow.cpp" line="3687"/> - <location filename="mainwindow.cpp" line="3695"/> - <location filename="mainwindow.cpp" line="3902"/> - <source>Confirm</source> - <translation type="unfinished">Onayla</translation> + <location filename="mainwindow.cpp" line="1086"/> + <source>A download has been started but no installed page plugin recognizes it. +If you download anyway no information (i.e. version) will be associated with the download. +Continue?</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3025"/> - <source>Remove the following mods?<br><ul>%1</ul></source> + <location filename="mainwindow.cpp" line="1127"/> + <source>Browse Mod Page</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3036"/> - <source>failed to remove mod: %1</source> + <location filename="mainwindow.cpp" line="1323"/> + <source>Executable "%1" not found</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3071"/> - <location filename="mainwindow.cpp" line="3074"/> - <source>Failed</source> + <location filename="mainwindow.cpp" line="1803"/> + <source>Failed to refresh list of esps: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3071"/> - <source>Installation file no longer exists</source> + <location filename="mainwindow.cpp" line="2143"/> + <location filename="mainwindow.cpp" line="2150"/> + <source>Failed to write settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3075"/> - <source>Mods installed with old versions of MO can't be reinstalled in this way.</source> + <location filename="mainwindow.cpp" line="2144"/> + <location filename="mainwindow.cpp" line="2151"/> + <source>An error occured trying to write back MO settings: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3090"/> - <location filename="mainwindow.cpp" line="3117"/> - <source>You need to be logged in with Nexus to endorse</source> + <location filename="mainwindow.cpp" line="2147"/> + <source>File is write protected</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3249"/> - <location filename="mainwindow.cpp" line="4882"/> - <source>Extract BSA</source> + <location filename="mainwindow.cpp" line="2148"/> + <source>Invalid file format (probably a bug)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3250"/> - <source>This mod contains at least one BSA. Do you want to unpack it? -(This removes the BSA after completion. If you don't know about BSAs, just select no)</source> + <location filename="mainwindow.cpp" line="2149"/> + <source>Unknown error %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3259"/> - <location filename="mainwindow.cpp" line="4839"/> - <location filename="mainwindow.cpp" line="4890"/> - <source>failed to read %1: %2</source> - <translation type="unfinished">%1: %2 okunamadı</translation> + <location filename="mainwindow.cpp" line="2880"/> + <source>failed to move "%1" from mod "%2" to "%3": %4</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3272"/> - <location filename="mainwindow.cpp" line="4901"/> - <source>This archive contains invalid hashes. Some files may be broken.</source> + <location filename="mainwindow.cpp" line="2932"/> + <source><Managed by MO></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3306"/> - <source>Nexus ID for this Mod is unknown</source> + <location filename="mainwindow.cpp" line="2933"/> + <source><Managed outside MO></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3109"/> + <source>You need to be logged in with Nexus to resume a download</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3337"/> + <location filename="mainwindow.cpp" line="3777"/> + <source>Create Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3346"/> + <location filename="mainwindow.cpp" line="3338"/> <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="3613"/> + <location filename="mainwindow.cpp" line="3347"/> + <source>A mod with this name already exists</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3588"/> <source>Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3614"/> + <location filename="mainwindow.cpp" line="3589"/> <source>The versioning scheme decides which version is considered newer than another. This function will guess the versioning scheme under the assumption that the installed version is outdated.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3634"/> - <location filename="mainwindow.cpp" line="4516"/> + <location filename="mainwindow.cpp" line="3609"/> + <location filename="mainwindow.cpp" line="4526"/> <source>Sorry</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3635"/> + <location filename="mainwindow.cpp" line="3610"/> <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="3687"/> + <location filename="mainwindow.cpp" line="3662"/> <source>Really enable all visible mods?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3695"/> + <location filename="mainwindow.cpp" line="3670"/> <source>Really disable all visible mods?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3703"/> + <location filename="mainwindow.cpp" line="3678"/> <source>Choose what to export</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3705"/> + <location filename="mainwindow.cpp" line="3680"/> <source>Everything</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3705"/> + <location filename="mainwindow.cpp" line="3680"/> <source>All installed mods are included in the list</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3706"/> + <location filename="mainwindow.cpp" line="3681"/> <source>Active Mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3706"/> + <location filename="mainwindow.cpp" line="3681"/> <source>Only active (checked) mods from your current profile are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3707"/> + <location filename="mainwindow.cpp" line="3682"/> <source>Visible</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3707"/> + <location filename="mainwindow.cpp" line="3682"/> <source>All mods visible in the mod list are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3750"/> + <location filename="mainwindow.cpp" line="3725"/> <source>export failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3774"/> + <location filename="mainwindow.cpp" line="3742"/> <source>Install Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3776"/> + <location filename="mainwindow.cpp" line="3744"/> <source>Enable all visible</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3777"/> + <location filename="mainwindow.cpp" line="3745"/> <source>Disable all visible</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3779"/> + <location filename="mainwindow.cpp" line="3747"/> <source>Check all for update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3783"/> + <location filename="mainwindow.cpp" line="3751"/> <source>Export to csv...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3791"/> + <location filename="mainwindow.cpp" line="3770"/> + <source>All Mods</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3776"/> <source>Sync to Mods...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3795"/> + <location filename="mainwindow.cpp" line="3780"/> <source>Restore Backup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3796"/> + <location filename="mainwindow.cpp" line="3781"/> <source>Remove Backup...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3808"/> + <location filename="mainwindow.cpp" line="3785"/> + <source>Add/Remove Categories</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3790"/> + <source>Replace Categories</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3795"/> <source>Primary Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3815"/> + <location filename="mainwindow.cpp" line="3802"/> <source>Change versioning scheme</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3819"/> + <location filename="mainwindow.cpp" line="3806"/> <source>Un-ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3821"/> + <location filename="mainwindow.cpp" line="3808"/> <source>Ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3826"/> + <location filename="mainwindow.cpp" line="3813"/> <source>Rename Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3827"/> + <location filename="mainwindow.cpp" line="3814"/> <source>Remove Mod...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3828"/> + <location filename="mainwindow.cpp" line="3815"/> <source>Reinstall Mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3831"/> + <location filename="mainwindow.cpp" line="3818"/> <source>Un-Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3834"/> - <location filename="mainwindow.cpp" line="3838"/> + <location filename="mainwindow.cpp" line="3821"/> + <location filename="mainwindow.cpp" line="3825"/> <source>Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3835"/> + <location filename="mainwindow.cpp" line="3822"/> <source>Won't endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3841"/> + <location filename="mainwindow.cpp" line="3828"/> <source>Endorsement state unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3848"/> + <location filename="mainwindow.cpp" line="3835"/> <source>Ignore missing data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3851"/> + <location filename="mainwindow.cpp" line="3838"/> <source>Visit on Nexus</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3852"/> + <location filename="mainwindow.cpp" line="3839"/> <source>Open in explorer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3855"/> + <location filename="mainwindow.cpp" line="3843"/> <source>Information...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3861"/> - <location filename="mainwindow.cpp" line="5086"/> + <location filename="mainwindow.cpp" line="3850"/> + <location filename="mainwindow.cpp" line="5089"/> <source>Exception: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3863"/> - <location filename="mainwindow.cpp" line="5088"/> + <location filename="mainwindow.cpp" line="3852"/> + <location filename="mainwindow.cpp" line="5091"/> <source>Unknown exception</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3885"/> + <location filename="mainwindow.cpp" line="3871"/> + <source><All></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3873"/> <source><Multiple></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3902"/> + <location filename="mainwindow.cpp" line="3890"/> <source>Really delete "%1"?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4013"/> + <location filename="mainwindow.cpp" line="4001"/> <source>Fix Mods...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4014"/> + <location filename="mainwindow.cpp" line="4002"/> <source>Delete</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4038"/> - <location filename="mainwindow.cpp" line="4069"/> + <location filename="mainwindow.cpp" line="4027"/> + <location filename="mainwindow.cpp" line="4060"/> <source>failed to remove %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4053"/> - <location filename="mainwindow.cpp" line="4084"/> + <location filename="mainwindow.cpp" line="4044"/> + <location filename="mainwindow.cpp" line="4076"/> <source>failed to create %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4107"/> + <location filename="mainwindow.cpp" line="4100"/> <source>Can't change download directory while downloads are in progress!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4174"/> + <location filename="mainwindow.cpp" line="4182"/> <source>Download failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4323"/> + <location filename="mainwindow.cpp" line="4333"/> <source>failed to write to file %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4329"/> + <location filename="mainwindow.cpp" line="4339"/> <source>%1 written</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4368"/> + <location filename="mainwindow.cpp" line="4378"/> <source>Select binary</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4368"/> + <location filename="mainwindow.cpp" line="4378"/> <source>Binary</source> <translation type="unfinished">İkili değer</translation> </message> <message> - <location filename="mainwindow.cpp" line="4394"/> + <location filename="mainwindow.cpp" line="4404"/> <source>Enter Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4395"/> + <location filename="mainwindow.cpp" line="4405"/> <source>Please enter a name for the executable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4406"/> + <location filename="mainwindow.cpp" line="4416"/> <source>Not an executable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4406"/> + <location filename="mainwindow.cpp" line="4416"/> <source>This is not a recognized executable.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4431"/> - <location filename="mainwindow.cpp" line="4456"/> + <location filename="mainwindow.cpp" line="4441"/> + <location filename="mainwindow.cpp" line="4466"/> <source>Replace file?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4431"/> + <location filename="mainwindow.cpp" line="4441"/> <source>There already is a hidden version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4434"/> - <location filename="mainwindow.cpp" line="4459"/> + <location filename="mainwindow.cpp" line="4444"/> + <location filename="mainwindow.cpp" line="4469"/> <source>File operation failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4434"/> - <location filename="mainwindow.cpp" line="4459"/> + <location filename="mainwindow.cpp" line="4444"/> + <location filename="mainwindow.cpp" line="4469"/> <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4456"/> + <location filename="mainwindow.cpp" line="4466"/> <source>There already is a visible version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4489"/> + <location filename="mainwindow.cpp" line="4499"/> <source>file not found: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4502"/> + <location filename="mainwindow.cpp" line="4512"/> <source>failed to generate preview for %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4516"/> + <location filename="mainwindow.cpp" line="4526"/> <source>Sorry, can't preview anything. This function currently does not support extracting from bsas.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4547"/> + <location filename="mainwindow.cpp" line="4557"/> <source>Update available</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4584"/> + <location filename="mainwindow.cpp" line="4594"/> <source>Open/Execute</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4585"/> + <location filename="mainwindow.cpp" line="4595"/> <source>Add as Executable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4589"/> + <location filename="mainwindow.cpp" line="4599"/> <source>Preview</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4595"/> + <location filename="mainwindow.cpp" line="4605"/> <source>Un-Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4597"/> + <location filename="mainwindow.cpp" line="4607"/> <source>Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4603"/> + <location filename="mainwindow.cpp" line="4613"/> <source>Write To File...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4634"/> + <location filename="mainwindow.cpp" line="4638"/> <source>Do you want to endorse Mod Organizer on %1 now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5047"/> - <source>Remove</source> + <location filename="mainwindow.cpp" line="4757"/> + <source>Request to Nexus failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5077"/> - <source>Unlock load order</source> + <location filename="mainwindow.cpp" line="4764"/> + <location filename="mainwindow.cpp" line="4782"/> + <source>login successful</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5080"/> - <source>Lock load order</source> + <location filename="mainwindow.cpp" line="4791"/> + <source>login failed: %1. Trying to download anyway</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5149"/> - <source>BOSS working</source> + <location filename="mainwindow.cpp" line="4797"/> + <source>login failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5157"/> - <source>failed to run boss: %1</source> + <location filename="mainwindow.cpp" line="4807"/> + <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="4770"/> - <source>Request to Nexus failed: %1</source> + <location filename="mainwindow.cpp" line="4840"/> + <source>Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1284"/> - <source>Executable "%1" not found</source> + <location filename="mainwindow.cpp" line="4840"/> + <source>failed to extract %1 (errorcode %2)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3798"/> - <source>Add/Remove Categories</source> + <location filename="mainwindow.cpp" line="4935"/> + <source>Extract...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3803"/> - <source>Replace Categories</source> + <location filename="mainwindow.cpp" line="4997"/> + <source>Edit Categories...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4777"/> - <location filename="mainwindow.cpp" line="4794"/> - <source>login successful</source> + <location filename="mainwindow.cpp" line="4998"/> + <source>Deselect filter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4803"/> - <source>login failed: %1. Trying to download anyway</source> + <location filename="mainwindow.cpp" line="5049"/> + <source>Remove</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4809"/> - <source>login failed: %1</source> + <location filename="mainwindow.cpp" line="5060"/> + <source>Enable all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4818"/> - <source>login failed: %1. You need to log-in with Nexus to update MO.</source> + <location filename="mainwindow.cpp" line="5061"/> + <source>Disable all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4851"/> - <source>Error</source> + <location filename="mainwindow.cpp" line="5080"/> + <source>Unlock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4851"/> - <source>failed to extract %1 (errorcode %2)</source> + <location filename="mainwindow.cpp" line="5083"/> + <source>Lock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4946"/> - <source>Extract...</source> + <location filename="mainwindow.cpp" line="5212"/> + <source>depends on missing "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5002"/> - <source>Edit Categories...</source> + <location filename="mainwindow.cpp" line="5232"/> + <source>No profile set</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5057"/> - <source>Enable all</source> + <location filename="mainwindow.cpp" line="5280"/> + <source>LOOT working</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5058"/> - <source>Disable all</source> + <location filename="mainwindow.cpp" line="5326"/> + <source>loot failed. Exit code was: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5333"/> + <source>failed to run loot: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5336"/> + <source>Errors occured</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5384"/> + <source>Backup of load order created</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5394"/> + <source>Choose backup to restore</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5407"/> + <source>No Backups</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5407"/> + <source>There are no backups to restore</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5428"/> + <location filename="mainwindow.cpp" line="5449"/> + <source>Restore failed</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5429"/> + <location filename="mainwindow.cpp" line="5450"/> + <source>Failed to restore the backup. Errorcode: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5440"/> + <source>Backup of modlist created</source> <translation type="unfinished"></translation> </message> </context> @@ -2758,28 +2813,20 @@ This function will guess the versioning scheme under the assumption that the ins <source>Placeholder</source> <translation>Yer tutucu</translation> </message> - <message> - <source>Please install NCC</source> - <translation type="obsolete">Lütfen NCC'yi yükleyin</translation> - </message> </context> <context> <name>ModInfo</name> <message> - <location filename="modinfo.cpp" line="96"/> - <location filename="modinfo.cpp" line="125"/> + <location filename="modinfo.cpp" line="106"/> + <location filename="modinfo.cpp" line="135"/> <source>invalid index %1</source> <translation>geçersiz dizin %1</translation> </message> - <message> - <source>invalid mod id %1</source> - <translation type="obsolete">geçersiz mod kimliği %1</translation> - </message> </context> <context> <name>ModInfoBackup</name> <message> - <location filename="modinfo.cpp" line="820"/> + <location filename="modinfo.cpp" line="898"/> <source>This is the backup of a mod</source> <translation type="unfinished"></translation> </message> @@ -2808,7 +2855,7 @@ This function will guess the versioning scheme under the assumption that the ins </message> <message> <location filename="modinfodialog.ui" line="67"/> - <location filename="modinfodialog.ui" line="155"/> + <location filename="modinfodialog.ui" line="175"/> <source>Save</source> <translation>Kaydet</translation> </message> @@ -2818,83 +2865,73 @@ This function will guess the versioning scheme under the assumption that the ins <translation>INI-Dosyaları</translation> </message> <message> - <location filename="modinfodialog.ui" line="97"/> + <location filename="modinfodialog.ui" line="91"/> + <source>Ini Files</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="104"/> <source>This is a list of .ini files in the mod.</source> <translation>Mod klasöründeki .ini dosyalarının bir listesi</translation> </message> <message> - <location filename="modinfodialog.ui" line="100"/> + <location filename="modinfodialog.ui" line="107"/> <source>This is a list of .ini files in the mod. These are usually used to configure the behaviour of mods if there are configurable parameters.</source> <translation>Moddaki .ini dosyalarının bir listesi. Bunlar genelde, ayarlabilir parametrelerin olduğuğu durumlarda modların davranışlarını ayarlamak için kullanılır.</translation> </message> <message> - <location filename="modinfodialog.ui" line="149"/> + <location filename="modinfodialog.ui" line="114"/> + <source>Ini Tweaks</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="130"/> + <source>This is a list of ini tweaks (ini modifications that can be toggled).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="133"/> + <source>This is a list of ini tweaks. Ini Tweaks are (usually small) fragments of ini files that are applied over existing settings in skyrim.ini/skyrimprefs.ini. Each tweak can be toggled individually. You should check the description of the mod wether the tweaks are really optional.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="169"/> <source>Save changes to the file.</source> <translation>Değişiklikleri dosyaya kaydet.</translation> </message> <message> - <location filename="modinfodialog.ui" line="152"/> + <location filename="modinfodialog.ui" line="172"/> <source>Save changes to the file. This overwrites the original. There is no automatic backup!</source> <translation>Değişiklikleri dosyaya kaydet. Bu orijinal dosyanın üzerine yazar. Otomatik yedekleme yoktur!</translation> </message> <message> - <location filename="modinfodialog.ui" line="165"/> + <location filename="modinfodialog.ui" line="185"/> <source>Images</source> <translation>Resimler</translation> </message> <message> - <location filename="modinfodialog.ui" line="220"/> + <location filename="modinfodialog.ui" line="240"/> <source>Images located in the mod.</source> <translation>Modun içinde yer alan resimler</translation> </message> <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Bu mod klasöründe yer alan ekran resimleri ve benzeri resimlerin(.jpg ve.png) bir listesidir. Tıklayararak daha büyük görüntü alabilirsiniz</span></p></body></html></translation> + <location filename="modinfodialog.ui" line="243"/> + <source>This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="256"/> - <location filename="modinfodialog.ui" line="275"/> + <location filename="modinfodialog.ui" line="276"/> + <location filename="modinfodialog.ui" line="295"/> <source>Optional ESPs</source> <translation>İsteğe bağlı ESP'ler</translation> </message> <message> - <location filename="modinfodialog.ui" line="262"/> + <location filename="modinfodialog.ui" line="282"/> <source>List of esps and esms that can not be loaded by the game.</source> <translation>Oyun tarafından yüklenemeyen espler ve esmlerin bir listesi.</translation> </message> <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">They usually contain optional functionality, see the readme.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Most mods do not have optional esps, so chances are good you are looking at an empty list.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Şu an için oyun tarafından yüklenemeyen ve bu eklenti tarafından içerilen esp ve esm'lerin bir listesidir.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Genelde isteğe bağlı özellikler içerirler, benioku dosyalarına bakın.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Pek çok mod isteğe bağlı esp'ler içermez, bu nedenle büyük ihtimalle boş bir listeye bakıyorsunuz.</span></p></body></html></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="223"/> - <source>This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="265"/> + <location filename="modinfodialog.ui" line="285"/> <source>List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window. They usually contain optional functionality, see the readme. @@ -2902,103 +2939,103 @@ Most mods do not have optional esps, so chances are good you are looking at an e <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="290"/> + <location filename="modinfodialog.ui" line="310"/> <source>Make the selected mod in the lower list unavailable.</source> <translation>Aşağıdaki listedeki seçili modu kullanılamaz yapar.</translation> </message> <message> - <location filename="modinfodialog.ui" line="293"/> + <location filename="modinfodialog.ui" line="313"/> <source>The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become "invisible" to the game. It can then no longer be activated.</source> <translation>Seçili esp (aşağıdaki listede) modun bir alt klasörüne itilecek ve böylece oyuna "görünmez" olacaktır. Artık aktif hale getirilemez.</translation> </message> <message> - <location filename="modinfodialog.ui" line="319"/> + <location filename="modinfodialog.ui" line="339"/> <source>Move a file to the data directory.</source> <translation>Dosyayı veri klasörüne taşı.</translation> </message> <message> - <location filename="modinfodialog.ui" line="322"/> + <location filename="modinfodialog.ui" line="342"/> <source>This moves a esp to the esp directory so it can be enabled in the main window. Please note that the ESP merely becomes "available", it will not necessarily be loaded! That is configured in the main window of omo.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="357"/> + <location filename="modinfodialog.ui" line="377"/> <source>ESPs in the data directory and thus visible to the game.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="360"/> + <location filename="modinfodialog.ui" line="380"/> <source>These are the mod files that are in the (virtual) data directory of your game and will thus be selecteable in the esp list in the main window.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="367"/> + <location filename="modinfodialog.ui" line="387"/> <source>Available ESPs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="375"/> + <location filename="modinfodialog.ui" line="395"/> <source>Conflicts</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="383"/> + <location filename="modinfodialog.ui" line="403"/> <source>The following conflicted files are provided by this mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="433"/> - <location filename="modinfodialog.ui" line="483"/> + <location filename="modinfodialog.ui" line="453"/> + <location filename="modinfodialog.ui" line="503"/> <source>File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="438"/> + <location filename="modinfodialog.ui" line="458"/> <source>Overwritten Mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="448"/> + <location filename="modinfodialog.ui" line="468"/> <source>The following conflicted files are provided by other mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="488"/> + <location filename="modinfodialog.ui" line="508"/> <source>Providing Mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="498"/> + <location filename="modinfodialog.ui" line="518"/> <source>Non-Conflicted files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="518"/> + <location filename="modinfodialog.ui" line="538"/> <source>Categories</source> <translation type="unfinished">Kategoriler</translation> </message> <message> - <location filename="modinfodialog.ui" line="541"/> + <location filename="modinfodialog.ui" line="561"/> <source>Primary Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="558"/> + <location filename="modinfodialog.ui" line="578"/> <source>Nexus Info</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="566"/> + <location filename="modinfodialog.ui" line="586"/> <source>Mod ID</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="573"/> + <location filename="modinfodialog.ui" line="593"/> <source>Mod ID for this mod on Nexus.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="576"/> + <location filename="modinfodialog.ui" line="596"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -3007,7 +3044,7 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="600"/> + <location filename="modinfodialog.ui" line="620"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -3016,27 +3053,27 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="607"/> + <location filename="modinfodialog.ui" line="627"/> <source>Version</source> <translation type="unfinished">Versiyon</translation> </message> <message> - <location filename="modinfodialog.ui" line="637"/> + <location filename="modinfodialog.ui" line="657"/> <source>Refresh</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="640"/> + <location filename="modinfodialog.ui" line="660"/> <source>Refresh all information from Nexus.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="654"/> + <location filename="modinfodialog.ui" line="674"/> <source>Description</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="669"/> + <location filename="modinfodialog.ui" line="689"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -3045,32 +3082,27 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1221"/> - <source>Name</source> - <translation type="unfinished">İsim</translation> - </message> - <message> - <location filename="modinfodialog.ui" line="704"/> + <location filename="modinfodialog.ui" line="724"/> <source>Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="718"/> + <location filename="modinfodialog.ui" line="738"/> <source>Notes</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="728"/> + <location filename="modinfodialog.ui" line="748"/> <source>Filetree</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="737"/> + <location filename="modinfodialog.ui" line="757"/> <source>A directory view of this mod</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="740"/> + <location filename="modinfodialog.ui" line="760"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -3080,245 +3112,258 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="767"/> + <location filename="modinfodialog.ui" line="787"/> <source>Previous</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="774"/> + <location filename="modinfodialog.ui" line="794"/> <source>Next</source> <translation type="unfinished">Sonraki</translation> </message> <message> - <location filename="modinfodialog.ui" line="794"/> + <location filename="modinfodialog.ui" line="814"/> <source>Close</source> <translation type="unfinished">Kapat</translation> </message> <message> - <location filename="modinfodialog.cpp" line="104"/> + <location filename="modinfodialog.cpp" line="165"/> <source>&Delete</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="105"/> + <location filename="modinfodialog.cpp" line="166"/> <source>&Rename</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="106"/> + <location filename="modinfodialog.cpp" line="167"/> <source>&Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="107"/> + <location filename="modinfodialog.cpp" line="168"/> <source>&Unhide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="108"/> + <location filename="modinfodialog.cpp" line="169"/> <source>&Open</source> <translation type="unfinished">&Aç</translation> </message> <message> - <location filename="modinfodialog.cpp" line="109"/> + <location filename="modinfodialog.cpp" line="170"/> <source>&New Folder</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="405"/> - <location filename="modinfodialog.cpp" line="420"/> + <location filename="modinfodialog.cpp" line="416"/> + <location filename="modinfodialog.cpp" line="431"/> <source>Save changes?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="612"/> + <location filename="modinfodialog.cpp" line="416"/> + <location filename="modinfodialog.cpp" line="431"/> + <source>Save changes to "%1"?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="621"/> <source>File Exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="612"/> + <location filename="modinfodialog.cpp" line="621"/> <source>A file with that name exists, please enter a new one</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="629"/> + <location filename="modinfodialog.cpp" line="638"/> <source>failed to move file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="654"/> + <location filename="modinfodialog.cpp" line="663"/> <source>failed to create directory "optional"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="692"/> - <location filename="modinfodialog.cpp" line="1198"/> + <location filename="modinfodialog.cpp" line="701"/> + <location filename="modinfodialog.cpp" line="1206"/> <source>Info requested, please wait</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="807"/> - <source>(description incomplete, please visit nexus)</source> + <location filename="modinfodialog.cpp" line="755"/> + <source>Main</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1221"/> - <source>Please enter a name</source> + <location filename="modinfodialog.cpp" line="756"/> + <source>Update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1225"/> - <location filename="modinfodialog.cpp" line="1228"/> - <source>Error</source> + <location filename="modinfodialog.cpp" line="757"/> + <source>Optional</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1225"/> - <source>Invalid name. Must be a valid file name</source> + <location filename="modinfodialog.cpp" line="758"/> + <source>Old</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1228"/> - <source>A tweak by that name exists</source> + <location filename="modinfodialog.cpp" line="759"/> + <source>Misc</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1240"/> - <source>Create Tweak</source> + <location filename="modinfodialog.cpp" line="760"/> + <source>Unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="762"/> + <location filename="modinfodialog.cpp" line="771"/> <source>Current Version: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="766"/> + <location filename="modinfodialog.cpp" line="775"/> <source>No update available</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="746"/> - <source>Main</source> + <location filename="modinfodialog.cpp" line="816"/> + <source>(description incomplete, please visit nexus)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="405"/> - <location filename="modinfodialog.cpp" line="420"/> - <source>Save changes to "%1"?</source> + <location filename="modinfodialog.cpp" line="831"/> + <source><a href="%1">Visit on Nexus</a></source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="747"/> - <source>Update</source> + <location filename="modinfodialog.cpp" line="910"/> + <source>Failed to delete %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="748"/> - <source>Optional</source> - <translation type="unfinished"></translation> + <location filename="modinfodialog.cpp" line="921"/> + <location filename="modinfodialog.cpp" line="926"/> + <source>Confirm</source> + <translation type="unfinished">Onayla</translation> </message> <message> - <location filename="modinfodialog.cpp" line="749"/> - <source>Old</source> + <location filename="modinfodialog.cpp" line="921"/> + <source>Are sure you want to delete "%1"?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="750"/> - <source>Misc</source> + <location filename="modinfodialog.cpp" line="926"/> + <source>Are sure you want to delete the selected files?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="751"/> - <source>Unknown</source> + <location filename="modinfodialog.cpp" line="1000"/> + <location filename="modinfodialog.cpp" line="1006"/> + <source>New Folder</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="822"/> - <source><a href="%1">Visit on Nexus</a></source> + <location filename="modinfodialog.cpp" line="1012"/> + <source>Failed to create "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="912"/> - <location filename="modinfodialog.cpp" line="917"/> - <source>Confirm</source> - <translation type="unfinished">Onayla</translation> + <location filename="modinfodialog.cpp" line="1116"/> + <location filename="modinfodialog.cpp" line="1140"/> + <source>Replace file?</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="901"/> - <source>Failed to delete %1</source> + <location filename="modinfodialog.cpp" line="1116"/> + <source>There already is a hidden version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="912"/> - <source>Are sure you want to delete "%1"?</source> + <location filename="modinfodialog.cpp" line="1119"/> + <location filename="modinfodialog.cpp" line="1143"/> + <source>File operation failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="917"/> - <source>Are sure you want to delete the selected files?</source> + <location filename="modinfodialog.cpp" line="1119"/> + <location filename="modinfodialog.cpp" line="1143"/> + <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="991"/> - <location filename="modinfodialog.cpp" line="997"/> - <source>New Folder</source> + <location filename="modinfodialog.cpp" line="1130"/> + <location filename="modinfodialog.cpp" line="1153"/> + <source>failed to rename %1 to %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1003"/> - <source>Failed to create "%1"</source> + <location filename="modinfodialog.cpp" line="1140"/> + <source>There already is a visible version of this file. Replace it?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1107"/> - <location filename="modinfodialog.cpp" line="1131"/> - <source>Replace file?</source> + <location filename="modinfodialog.cpp" line="1186"/> + <source>Un-Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1107"/> - <source>There already is a hidden version of this file. Replace it?</source> + <location filename="modinfodialog.cpp" line="1188"/> + <source>Hide</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1110"/> - <location filename="modinfodialog.cpp" line="1134"/> - <source>File operation failed</source> + <location filename="modinfodialog.cpp" line="1229"/> + <source>Name</source> + <translation type="unfinished">İsim</translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1229"/> + <source>Please enter a name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1110"/> - <location filename="modinfodialog.cpp" line="1134"/> - <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> + <location filename="modinfodialog.cpp" line="1233"/> + <location filename="modinfodialog.cpp" line="1236"/> + <source>Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1121"/> - <location filename="modinfodialog.cpp" line="1144"/> - <source>failed to rename %1 to %2</source> + <location filename="modinfodialog.cpp" line="1233"/> + <source>Invalid name. Must be a valid file name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1131"/> - <source>There already is a visible version of this file. Replace it?</source> + <location filename="modinfodialog.cpp" line="1236"/> + <source>A tweak by that name exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1178"/> - <source>Un-Hide</source> + <location filename="modinfodialog.cpp" line="1250"/> + <source>Create Tweak</source> <translation type="unfinished"></translation> </message> +</context> +<context> + <name>ModInfoForeign</name> <message> - <location filename="modinfodialog.cpp" line="1180"/> - <source>Hide</source> + <location filename="modinfo.cpp" line="987"/> + <source>This pseudo mod represents content managed outside MO. It isn't modified by MO.</source> <translation type="unfinished"></translation> </message> </context> <context> <name>ModInfoOverwrite</name> <message> - <location filename="modinfo.cpp" line="866"/> + <location filename="modinfo.cpp" line="943"/> <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source> <translation type="unfinished"></translation> </message> @@ -3326,17 +3371,18 @@ p, li { white-space: pre-wrap; } <context> <name>ModInfoRegular</name> <message> - <location filename="modinfo.cpp" line="393"/> - <source>failed to write %1/meta.ini: %2</source> + <location filename="modinfo.cpp" line="557"/> + <location filename="modinfo.cpp" line="560"/> + <source>failed to write %1/meta.ini: error %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfo.cpp" line="661"/> + <location filename="modinfo.cpp" line="811"/> <source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfo.cpp" line="665"/> + <location filename="modinfo.cpp" line="815"/> <source>Categories: <br></source> <translation type="unfinished"></translation> </message> @@ -3344,11 +3390,6 @@ p, li { white-space: pre-wrap; } <context> <name>ModList</name> <message> - <location filename="modlist.cpp" line="776"/> - <source>Confirm</source> - <translation type="unfinished">Onayla</translation> - </message> - <message> <location filename="modlist.cpp" line="109"/> <source>This entry contains files that have been created inside the virtual data tree (i.e. by the construction kit)</source> <translation type="unfinished"></translation> @@ -3389,119 +3430,124 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="850"/> - <source>Category of the mod.</source> + <location filename="modlist.cpp" line="170"/> + <source>Non-MO</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="851"/> - <source>Id of the mod as used on Nexus.</source> + <location filename="modlist.cpp" line="201"/> + <source>invalid</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="852"/> - <source>Emblemes to highlight things that might require attention.</source> + <location filename="modlist.cpp" line="314"/> + <source>installed version: "%1", newest version: "%2"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="318"/> - <source>Categories: <br></source> + <location filename="modlist.cpp" line="316"/> + <source>The newest version on Nexus seems to be older than the one you have installed. This could either mean the version you have has been withdrawn (i.e. due to a bug) or the author uses a non-standard versioning scheme and that newest version is actually newer. Either way you may want to "upgrade".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="308"/> - <source>installed version: "%1", newest version: "%2"</source> - <oldsource>installed version: %1, newest version: %2</oldsource> + <location filename="modlist.cpp" line="324"/> + <source>Categories: <br></source> <translation type="unfinished"></translation> </message> <message> - <source>Name</source> - <translation type="obsolete">İsim</translation> - </message> - <message> - <location filename="modlist.cpp" line="833"/> - <source>Version</source> - <translation type="unfinished">Versiyon</translation> - </message> - <message> - <location filename="modlist.cpp" line="847"/> - <source>Version of the mod (if available)</source> + <location filename="modlist.cpp" line="353"/> + <source>Invalid name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="834"/> - <source>Priority</source> + <location filename="modlist.cpp" line="747"/> + <source>drag&drop failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="197"/> - <source>invalid</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="810"/> + <source>Confirm</source> + <translation type="unfinished">Onayla</translation> </message> <message> - <location filename="modlist.cpp" line="310"/> - <source>The newest version on Nexus seems to be older than the one you have installed. This could either mean the version you have has been withdrawn (i.e. due to a bug) or the author uses a non-standard versioning scheme and that newest version is actually newer. Either way you may want to "upgrade".</source> + <location filename="modlist.cpp" line="810"/> + <source>Are you sure you want to remove "%1"?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="347"/> - <source>Invalid name</source> + <location filename="modlist.cpp" line="865"/> + <source>Flags</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="717"/> - <source>drag&drop failed: %1</source> + <location filename="modlist.cpp" line="866"/> + <source>Mod Name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="831"/> - <source>Flags</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="867"/> + <source>Version</source> + <translation type="unfinished">Versiyon</translation> </message> <message> - <location filename="modlist.cpp" line="832"/> - <source>Mod Name</source> + <location filename="modlist.cpp" line="868"/> + <source>Priority</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="835"/> + <location filename="modlist.cpp" line="869"/> <source>Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="836"/> + <location filename="modlist.cpp" line="870"/> <source>Nexus ID</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="837"/> + <location filename="modlist.cpp" line="871"/> <source>Installation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="838"/> - <location filename="modlist.cpp" line="854"/> + <location filename="modlist.cpp" line="872"/> + <location filename="modlist.cpp" line="888"/> <source>unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="846"/> + <location filename="modlist.cpp" line="880"/> <source>Name of your mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="848"/> + <location filename="modlist.cpp" line="881"/> + <source>Version of the mod (if available)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modlist.cpp" line="882"/> <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="853"/> - <source>Time this mod was installed</source> + <location filename="modlist.cpp" line="884"/> + <source>Category of the mod.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="776"/> - <source>Are you sure you want to remove "%1"?</source> + <location filename="modlist.cpp" line="885"/> + <source>Id of the mod as used on Nexus.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modlist.cpp" line="886"/> + <source>Emblemes to highlight things that might require attention.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modlist.cpp" line="887"/> + <source>Time this mod was installed</source> <translation type="unfinished"></translation> </message> </context> @@ -3534,17 +3580,17 @@ p, li { white-space: pre-wrap; } <context> <name>NXMAccessManager</name> <message> - <location filename="nxmaccessmanager.cpp" line="130"/> + <location filename="nxmaccessmanager.cpp" line="144"/> <source>Logging into Nexus</source> <translation type="unfinished"></translation> </message> <message> - <location filename="nxmaccessmanager.cpp" line="145"/> + <location filename="nxmaccessmanager.cpp" line="159"/> <source>timeout</source> <translation type="unfinished"></translation> </message> <message> - <location filename="nxmaccessmanager.cpp" line="185"/> + <location filename="nxmaccessmanager.cpp" line="200"/> <source>Please check your password</source> <translation type="unfinished"></translation> </message> @@ -3552,17 +3598,17 @@ p, li { white-space: pre-wrap; } <context> <name>NexusInterface</name> <message> - <location filename="nexusinterface.cpp" line="218"/> + <location filename="nexusinterface.cpp" line="216"/> <source>Failed to guess mod id for "%1", please pick the correct one</source> <translation type="unfinished"></translation> </message> <message> - <location filename="nexusinterface.cpp" line="455"/> + <location filename="nexusinterface.cpp" line="481"/> <source>empty response</source> <translation type="unfinished"></translation> </message> <message> - <location filename="nexusinterface.cpp" line="483"/> + <location filename="nexusinterface.cpp" line="510"/> <source>invalid response</source> <translation type="unfinished"></translation> </message> @@ -3635,110 +3681,115 @@ p, li { white-space: pre-wrap; } <context> <name>PluginList</name> <message> - <location filename="pluginlist.cpp" line="111"/> + <location filename="pluginlist.cpp" line="103"/> + <source>Name</source> + <translation type="unfinished">İsim</translation> + </message> + <message> + <location filename="pluginlist.cpp" line="104"/> + <source>Priority</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="pluginlist.cpp" line="105"/> <source>Mod Index</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="112"/> + <location filename="pluginlist.cpp" line="106"/> <source>Flags</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="113"/> - <location filename="pluginlist.cpp" line="125"/> + <location filename="pluginlist.cpp" line="107"/> + <location filename="pluginlist.cpp" line="119"/> <source>unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="121"/> + <location filename="pluginlist.cpp" line="115"/> <source>Name of your mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="122"/> + <location filename="pluginlist.cpp" line="116"/> <source>Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="124"/> + <location filename="pluginlist.cpp" line="118"/> <source>The modindex determins the formids of objects originating from this mods.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="165"/> + <location filename="pluginlist.cpp" line="159"/> <source>failed to update esp info for file %1 (source id: %2), error: %3</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="233"/> + <location filename="pluginlist.cpp" line="227"/> <source>esp not found: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="240"/> - <location filename="pluginlist.cpp" line="252"/> + <location filename="pluginlist.cpp" line="234"/> + <location filename="pluginlist.cpp" line="246"/> <source>Confirm</source> <translation type="unfinished">Onayla</translation> </message> <message> - <location filename="pluginlist.cpp" line="240"/> + <location filename="pluginlist.cpp" line="234"/> <source>Really enable all plugins?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="252"/> + <location filename="pluginlist.cpp" line="246"/> <source>Really disable all plugins?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="380"/> + <location filename="pluginlist.cpp" line="397"/> <source>The file containing locked plugin indices is broken</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="418"/> - <source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="pluginlist.cpp" line="644"/> - <source>BOSS dll incompatible</source> + <location filename="pluginlist.cpp" line="804"/> + <source><b>Origin</b>: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="987"/> - <source>Missing Masters</source> - <translation type="unfinished"></translation> + <location filename="pluginlist.cpp" line="806"/> + <source>Author</source> + <translation type="unfinished">Yaratıcı</translation> </message> <message> - <location filename="pluginlist.cpp" line="993"/> - <source>Enabled Masters</source> + <location filename="pluginlist.cpp" line="809"/> + <source>Description</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="1134"/> - <source>failed to restore load order for %1</source> + <location filename="pluginlist.cpp" line="438"/> + <source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="983"/> + <location filename="pluginlist.cpp" line="802"/> <source>This plugin can't be disabled (enforced by the game)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="985"/> - <source>Origin: %1</source> + <location filename="pluginlist.cpp" line="812"/> + <source>Missing Masters</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="109"/> - <source>Name</source> - <translation type="unfinished">İsim</translation> + <location filename="pluginlist.cpp" line="819"/> + <source>Enabled Masters</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="110"/> - <source>Priority</source> + <location filename="pluginlist.cpp" line="960"/> + <source>failed to restore load order for %1</source> <translation type="unfinished"></translation> </message> </context> @@ -3769,11 +3820,6 @@ p, li { white-space: pre-wrap; } p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html></source> - <oldsource><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><br /></p></body></html></oldsource> <translation type="unfinished"></translation> </message> <message> @@ -3806,62 +3852,67 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="182"/> + <location filename="profile.cpp" line="184"/> <source>failed to write mod list: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="193"/> + <location filename="profile.cpp" line="195"/> <source>failed to update tweaked ini file, wrong settings may be used: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="223"/> + <location filename="profile.cpp" line="226"/> <source>failed to create tweaked ini: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="276"/> - <location filename="profile.cpp" line="305"/> - <location filename="profile.cpp" line="390"/> - <location filename="profile.cpp" line="408"/> - <location filename="profile.cpp" line="418"/> + <location filename="profile.cpp" line="236"/> + <source>"%1" is missing or inaccessible</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profile.cpp" line="281"/> + <location filename="profile.cpp" line="313"/> + <location filename="profile.cpp" line="415"/> + <location filename="profile.cpp" line="432"/> + <location filename="profile.cpp" line="442"/> <source>invalid index %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="371"/> + <location filename="profile.cpp" line="396"/> <source>Overwrite directory couldn't be parsed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="380"/> + <location filename="profile.cpp" line="405"/> <source>invalid priority %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="568"/> + <location filename="profile.cpp" line="592"/> <source>failed to parse ini file (%1)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="596"/> + <location filename="profile.cpp" line="620"/> <source>failed to parse ini file (%1): %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="620"/> - <location filename="profile.cpp" line="657"/> + <location filename="profile.cpp" line="644"/> + <location filename="profile.cpp" line="681"/> <source>failed to modify "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="685"/> + <location filename="profile.cpp" line="709"/> <source>Delete savegames?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="686"/> + <location filename="profile.cpp" line="710"/> <source>Do you want to delete local savegames? (If you select "No", the save games will show up again if you re-enable local savegames)</source> <translation type="unfinished"></translation> </message> @@ -4106,6 +4157,51 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> + <location filename="csvbuilder.cpp" line="70"/> + <source>invalid field name "%1"</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="csvbuilder.cpp" line="76"/> + <source>invalid type for "%1" (should be integer)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="csvbuilder.cpp" line="81"/> + <source>invalid type for "%1" (should be string)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="csvbuilder.cpp" line="86"/> + <source>invalid type for "%1" (should be float)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="csvbuilder.cpp" line="103"/> + <source>no fields set up yet!</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="csvbuilder.cpp" line="140"/> + <source>field not set "%1"</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="csvbuilder.cpp" line="237"/> + <source>invalid character in field "%1"</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="csvbuilder.cpp" line="240"/> + <source>empty field name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="gameinfoimpl.cpp" line="41"/> + <source>invalid game type %1</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="helper.cpp" line="53"/> <source>helper failed</source> <translation type="unfinished"></translation> @@ -4187,92 +4283,91 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="96"/> - <source>"%1" is missing</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="main.cpp" line="139"/> + <location filename="main.cpp" line="121"/> <source>Permissions required</source> <translation type="unfinished"></translation> </message> <message> - <location filename="main.cpp" line="140"/> + <location filename="main.cpp" line="122"/> <source>The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="main.cpp" line="231"/> - <location filename="main.cpp" line="269"/> + <location filename="main.cpp" line="216"/> + <location filename="main.cpp" line="254"/> <source>Woops</source> <translation type="unfinished"></translation> </message> <message> - <location filename="main.cpp" line="232"/> + <location filename="main.cpp" line="217"/> <source>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file (%1) to sherb@gmx.net, the bug is a lot more likely to be fixed. Please include a short description of what you were doing when the crash happened</source> <translation type="unfinished"></translation> </message> <message> - <location filename="main.cpp" line="270"/> + <location filename="main.cpp" line="255"/> <source>ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="main.cpp" line="332"/> - <location filename="settings.cpp" line="542"/> + <location filename="main.cpp" line="376"/> + <location filename="settings.cpp" line="557"/> <source>Mod Organizer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="main.cpp" line="332"/> + <location filename="main.cpp" line="376"/> <source>An instance of Mod Organizer is already running</source> <translation type="unfinished"></translation> </message> <message> - <location filename="main.cpp" line="354"/> + <location filename="main.cpp" line="398"/> <source>No game identified in "%1". The directory is required to contain the game binary and its launcher.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="main.cpp" line="357"/> - <location filename="main.cpp" line="386"/> + <location filename="main.cpp" line="401"/> + <location filename="main.cpp" line="430"/> <source>Please select the game to manage</source> <translation type="unfinished"></translation> </message> <message> - <location filename="main.cpp" line="412"/> + <location filename="main.cpp" line="456"/> <source>Please select the game edition you have (MO can't start the game correctly if this is set incorrectly!)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="782"/> + <location filename="main.cpp" line="545"/> + <source>failed to start application: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="842"/> <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="1610"/> - <location filename="mainwindow.cpp" line="4216"/> + <location filename="mainwindow.cpp" line="1613"/> + <location filename="mainwindow.cpp" line="4226"/> <source><Manage...></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1628"/> + <location filename="mainwindow.cpp" line="1631"/> <source>failed to parse profile %1: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="335"/> - <location filename="profile.cpp" line="233"/> + <location filename="pluginlist.cpp" line="352"/> <source>failed to find "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="491"/> + <location filename="pluginlist.cpp" line="515"/> <source>failed to access %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="505"/> + <location filename="pluginlist.cpp" line="529"/> <source>failed to set file time %1</source> <translation type="unfinished"></translation> </message> @@ -4282,6 +4377,11 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> + <location filename="profile.cpp" line="96"/> + <source>"%1" is missing or inaccessible</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="profilesdialog.cpp" line="80"/> <source>Before you can use ModOrganizer, you need to create at least one profile. ATTENTION: Run the game at least once before creating a profile!</source> <translation type="unfinished"></translation> @@ -4305,27 +4405,27 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="settings.cpp" line="549"/> + <location filename="settings.cpp" line="564"/> <source>Script Extender</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settings.cpp" line="556"/> + <location filename="settings.cpp" line="571"/> <source>Proxy DLL</source> <translation type="unfinished"></translation> </message> <message> - <location filename="spawn.cpp" line="106"/> + <location filename="spawn.cpp" line="127"/> <source>failed to spawn "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="spawn.cpp" line="113"/> + <location filename="spawn.cpp" line="134"/> <source>Elevation required</source> <translation type="unfinished"></translation> </message> <message> - <location filename="spawn.cpp" line="114"/> + <location filename="spawn.cpp" line="135"/> <source>This process requires elevation to run. This is a potential security risk so I highly advice you to investigate if "%1" @@ -4335,71 +4435,26 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <translation type="unfinished"></translation> </message> <message> - <location filename="spawn.cpp" line="129"/> + <location filename="spawn.cpp" line="150"/> <source>failed to spawn "%1": %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="spawn.cpp" line="138"/> + <location filename="spawn.cpp" line="159"/> <source>"%1" doesn't exist</source> <translation type="unfinished"></translation> </message> <message> - <location filename="spawn.cpp" line="145"/> + <location filename="spawn.cpp" line="166"/> <source>failed to inject dll into "%1": %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="spawn.cpp" line="153"/> + <location filename="spawn.cpp" line="174"/> <source>failed to run "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="csvbuilder.cpp" line="70"/> - <source>invalid field name "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="76"/> - <source>invalid type for "%1" (should be integer)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="81"/> - <source>invalid type for "%1" (should be string)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="86"/> - <source>invalid type for "%1" (should be float)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="103"/> - <source>no fields set up yet!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="140"/> - <source>field not set "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="237"/> - <source>invalid character in field "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="240"/> - <source>empty field name</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="gameinfoimpl.cpp" line="41"/> - <source>invalid game type %1</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="safewritefile.cpp" line="32"/> <source>failed to open temporary file</source> <translation type="unfinished"></translation> @@ -4606,31 +4661,31 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <translation type="unfinished"></translation> </message> <message> - <location filename="selfupdater.cpp" line="460"/> - <source>No download server available. Please try again later.</source> + <location filename="selfupdater.cpp" line="440"/> + <source>Failed to retrieve update information: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="selfupdater.cpp" line="440"/> - <source>Failed to retrieve update information: %1</source> + <location filename="selfupdater.cpp" line="460"/> + <source>No download server available. Please try again later.</source> <translation type="unfinished"></translation> </message> </context> <context> <name>Settings</name> <message> - <location filename="settings.cpp" line="320"/> - <location filename="settings.cpp" line="339"/> + <location filename="settings.cpp" line="329"/> + <location filename="settings.cpp" line="348"/> <source>attempt to store setting for unknown plugin "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settings.cpp" line="660"/> + <location filename="settings.cpp" line="681"/> <source>Confirm</source> <translation type="unfinished">Onayla</translation> </message> <message> - <location filename="settings.cpp" line="660"/> + <location filename="settings.cpp" line="681"/> <source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed?</source> <translation type="unfinished"></translation> </message> @@ -4749,179 +4804,193 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> + <location filename="settingsdialog.ui" line="199"/> + <source>User interface</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="settingsdialog.ui" line="205"/> - <source>Reset stored information from dialogs.</source> + <source>If checked, the download interface will be more compact.</source> <translation type="unfinished"></translation> </message> <message> <location filename="settingsdialog.ui" line="208"/> - <source>This will make all dialogs show up again where you checked the "Remember selection"-box.</source> + <source>Compact Download Interface</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="211"/> - <source>Reset Dialogs</source> + <location filename="settingsdialog.ui" line="215"/> + <source>If checked, the download list will display meta information instead of file names.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="218"/> + <source>Download Meta Information</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="231"/> <location filename="settingsdialog.ui" line="234"/> - <source>Modify the categories available to arrange your mods.</source> + <source>Reset stored information from dialogs.</source> <translation type="unfinished"></translation> </message> <message> <location filename="settingsdialog.ui" line="237"/> - <source>Configure Mod Categories</source> + <source>This will make all dialogs show up again where you checked the "Remember selection"-box.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="318"/> - <source>Disable automatic internet features</source> + <location filename="settingsdialog.ui" line="240"/> + <source>Reset Dialogs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="321"/> - <source>Disable automatic internet features. This does not affect features that are explicitly invoked by the user (like checking mods for updates, endorsing, opening the web browser)</source> + <location filename="settingsdialog.ui" line="260"/> + <location filename="settingsdialog.ui" line="263"/> + <source>Modify the categories available to arrange your mods.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="324"/> - <source>Offline Mode</source> + <location filename="settingsdialog.ui" line="266"/> + <source>Configure Mod Categories</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="331"/> - <source>Use a proxy for network connections.</source> + <location filename="settingsdialog.ui" line="274"/> + <location filename="settingsdialog.ui" line="290"/> + <source>Nexus</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="334"/> - <source>Use a proxy for network connections. This uses the system-wide settings which can be configured in Internet Explorer. Please note that MO will start up a few seconds slower on some systems when using a proxy.</source> + <location filename="settingsdialog.ui" line="280"/> + <source>Allows automatic log-in when the Nexus-Page for the game is clicked.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="337"/> - <source>Use HTTP Proxy (Uses System Settings)</source> + <location filename="settingsdialog.ui" line="283"/> + <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Allows automatic log-in when the Nexus-Page for the game is clicked. Please note that the obfuscation with which the password is stored in modorganizer.ini is not very strong. If you're worried someone might steal your password, don't store it here.</span></p></body></html></source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="396"/> - <source>Preferred Servers (Drag & Drop)</source> + <location filename="settingsdialog.ui" line="299"/> + <source>If checked and if correct credentials are entered below, log-in to Nexus (for browsing and downloading) is automatic.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="536"/> - <source>Blacklisted Plugins (use <del> to remove):</source> + <location filename="settingsdialog.ui" line="302"/> + <source>Automatically Log-In to Nexus</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="632"/> - <source>Mod Organizer needs a dll to be injected into the game so all mods are visible to it. -There are several means to do this: -*Mod Organizer* (default) In this mode the Mod Organizer itself injects the dll. The disadvantage is that you always have to start the game through MO or a link created by it. -*Script Extender* In this mode, MO is installed as a Script Extender (obse, fose, nvse, skse) plugin. -*Proxy DLL* In this mode, MO replaces one of the game's dlls with one that loads MO (and the original dll of course). This will ONLY work with Steam games and it has only been tested with Skyrim. Please use this only if the other mechanisms don't work. - -If you use the Steam version of Oblivion the default will NOT work. In this case, please install obse and use "Script Extender" as the load mechanism. Also you can then not start Oblivion from MO. Instead, use MO only to set up your mods, then quit and start Oblivion through Steam.</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="311"/> + <source>Username</source> + <translation type="unfinished">Kullanıcı adı</translation> </message> <message> - <location filename="settingsdialog.ui" line="245"/> - <location filename="settingsdialog.ui" line="261"/> - <source>Nexus</source> - <translation type="unfinished"></translation> + <location filename="settingsdialog.ui" line="325"/> + <source>Password</source> + <translation type="unfinished">Şifre</translation> </message> <message> - <location filename="settingsdialog.ui" line="251"/> - <source>Allows automatic log-in when the Nexus-Page for the game is clicked.</source> + <location filename="settingsdialog.ui" line="347"/> + <source>Disable automatic internet features</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="254"/> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Allows automatic log-in when the Nexus-Page for the game is clicked. Please note that the obfuscation with which the password is stored in modorganizer.ini is not very strong. If you're worried someone might steal your password, don't store it here.</span></p></body></html></source> + <location filename="settingsdialog.ui" line="350"/> + <source>Disable automatic internet features. This does not affect features that are explicitly invoked by the user (like checking mods for updates, endorsing, opening the web browser)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="270"/> - <source>If checked and if correct credentials are entered below, log-in to Nexus (for browsing and downloading) is automatic.</source> + <location filename="settingsdialog.ui" line="353"/> + <source>Offline Mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="273"/> - <source>Automatically Log-In to Nexus</source> + <location filename="settingsdialog.ui" line="360"/> + <source>Use a proxy for network connections.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="282"/> - <source>Username</source> - <translation type="unfinished">Kullanıcı adı</translation> + <location filename="settingsdialog.ui" line="363"/> + <source>Use a proxy for network connections. This uses the system-wide settings which can be configured in Internet Explorer. Please note that MO will start up a few seconds slower on some systems when using a proxy.</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="296"/> - <source>Password</source> - <translation type="unfinished">Şifre</translation> + <location filename="settingsdialog.ui" line="366"/> + <source>Use HTTP Proxy (Uses System Settings)</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="346"/> + <location filename="settingsdialog.ui" line="375"/> <source>Associate with "Download with manager" links</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="375"/> + <location filename="settingsdialog.ui" line="404"/> <source>Known Servers (updated on download)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="431"/> + <location filename="settingsdialog.ui" line="425"/> + <source>Preferred Servers (Drag & Drop)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="460"/> <source>Plugins</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="453"/> + <location filename="settingsdialog.ui" line="482"/> <source>Author:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="467"/> + <location filename="settingsdialog.ui" line="496"/> <source>Version:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="481"/> + <location filename="settingsdialog.ui" line="510"/> <source>Description:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="519"/> + <location filename="settingsdialog.ui" line="548"/> <source>Key</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="524"/> + <location filename="settingsdialog.ui" line="553"/> <source>Value</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="547"/> + <location filename="settingsdialog.ui" line="565"/> + <source>Blacklisted Plugins (use <del> to remove):</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="576"/> <source>Workarounds</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="555"/> + <location filename="settingsdialog.ui" line="584"/> <source>Steam App ID</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="575"/> + <location filename="settingsdialog.ui" line="604"/> <source>The Steam AppID for your game</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="578"/> + <location filename="settingsdialog.ui" line="607"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -4937,27 +5006,38 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="609"/> + <location filename="settingsdialog.ui" line="638"/> <source>Load Mechanism</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="629"/> + <location filename="settingsdialog.ui" line="658"/> <source>Select loading mechanism. See help for details.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="649"/> + <location filename="settingsdialog.ui" line="661"/> + <source>Mod Organizer needs a dll to be injected into the game so all mods are visible to it. +There are several means to do this: +*Mod Organizer* (default) In this mode the Mod Organizer itself injects the dll. The disadvantage is that you always have to start the game through MO or a link created by it. +*Script Extender* In this mode, MO is installed as a Script Extender (obse, fose, nvse, skse) plugin. +*Proxy DLL* In this mode, MO replaces one of the game's dlls with one that loads MO (and the original dll of course). This will ONLY work with Steam games and it has only been tested with Skyrim. Please use this only if the other mechanisms don't work. + +If you use the Steam version of Oblivion the default will NOT work. In this case, please install obse and use "Script Extender" as the load mechanism. Also you can then not start Oblivion from MO. Instead, use MO only to set up your mods, then quit and start Oblivion through Steam.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="678"/> <source>NMM Version</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="669"/> + <location filename="settingsdialog.ui" line="698"/> <source>The Version of Nexus Mod Manager to impersonate.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="672"/> + <location filename="settingsdialog.ui" line="701"/> <source>Mod Organizer uses an API provided by the Nexus to provide features like checking for updates and downloading files. Unfortunately this API has not been made available officially to third party tools like MO so we have to impersonate the Nexus Mod Manager to be allowed in. On top of this Nexus has used the client identification to lock out outdated versions of NMM to force users to update. This means that MO also needs to impersonate the new version of NMM even if MO doesn't need an update. Therefore you can configure the version to identify as here. Please note that MO does identify itself as MO to the webserver, it's not lying about what it is. It is merely adding a "compatible" NMM version to the user agent. @@ -4966,51 +5046,69 @@ tl;dr-version: If Nexus-features don't work, insert the current version num <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="694"/> + <location filename="settingsdialog.ui" line="723"/> <source>Enforces that inactive ESPs and ESMs are never loaded.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="697"/> + <location filename="settingsdialog.ui" line="726"/> <source>It seems that the Games occasionally load ESP or ESM files even if they haven't been activated as plugins. I don't yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="701"/> + <location filename="settingsdialog.ui" line="730"/> <source>Hide inactive ESPs/ESMs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="708"/> + <location filename="settingsdialog.ui" line="737"/> <source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="711"/> + <location filename="settingsdialog.ui" line="740"/> <source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on) Uncheck this if you want to use Mod Organizer with total conversions (like Nehrim) but be aware that the game will crash if required files are not enabled.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="715"/> + <location filename="settingsdialog.ui" line="744"/> <source>Force-enable game files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="725"/> - <location filename="settingsdialog.ui" line="729"/> + <location filename="settingsdialog.ui" line="754"/> + <source>Disable this to no longer display mods installed outside MO in the mod list (left pane). Assets from those mods will then be treated as having lowest mod priority together with the original game content.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="757"/> + <source>By default Mod Organizer will display esp+bsa bundles installed with foreign tools as mods (left pane). This allows you to control their priority in relation to other mods. This is particularly useful if you also use Steam Workshop to install mods. +However, if you installed loose file mods outside MO which conflict with BSAs also installed outside MO those conflicts can't be resolved correctly. + +If you disable this feature, MO will only display official DLCs this way. Please note that plugins (esps and esms) displayed in the right pane are completely unaffected by this feature.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="763"/> + <source>Display mods installed outside MO</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="773"/> + <location filename="settingsdialog.ui" line="777"/> <source>For Skyrim, this can be used instead of Archive Invalidation. It should make AI redundant for all Profiles. For the other games this is not a sufficient replacement for AI!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="733"/> + <location filename="settingsdialog.ui" line="781"/> <source>Back-date BSAs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="757"/> + <location filename="settingsdialog.ui" line="805"/> <source>These are workarounds for problems with Mod Organizer. Please make sure you read the help text before changing anything here.</source> <translation type="unfinished"></translation> </message> @@ -5083,7 +5181,6 @@ For the other games this is not a sufficient replacement for AI!</source> </message> <message> <location filename="singleinstance.cpp" line="82"/> - <location filename="singleinstance.cpp" line="88"/> <source>failed to connect to running instance: %1</source> <translation type="unfinished"></translation> </message> @@ -5153,14 +5250,6 @@ On Windows Vista/Windows 7: On Windows XP: C:\Documents and Settings\[UserName]\My Documents\My Games\Skyrim\Saves </source> - <oldsource>This is a list of characters in the global location. - -On Windows Vista/Windows 7: - C:\Users\[UserName]\Documents\My Games\Skyrim\Saves - -On Windows XP: - C:\Documents and Settings[UserName]\My Documents\My Games\Skyrim\Saves -</oldsource> <translation type="unfinished"></translation> </message> <message> diff --git a/src/organizer_zh_CN.ts b/src/organizer_zh_CN.ts index a5fb1bcc..fc39c0e1 100644 --- a/src/organizer_zh_CN.ts +++ b/src/organizer_zh_CN.ts @@ -156,6 +156,29 @@ If there is a component called "00 Core" it is usually required. Optio </message> </context> <context> + <name>BrowserDialog</name> + <message> + <location filename="browserdialog.ui" line="14"/> + <source>Some Page</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="browserdialog.ui" line="256"/> + <source>Search</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="browserdialog.cpp" line="91"/> + <source>new</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="browserdialog.cpp" line="204"/> + <source>failed to start download</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> <name>CategoriesDialog</name> <message> <location filename="categoriesdialog.ui" line="14"/> @@ -266,19 +289,15 @@ p, li { white-space: pre-wrap; } <message> <location filename="credentialsdialog.ui" line="75"/> <source>Never ask again</source> - <translation>不再询问</translation> + <translation type="unfinished">无法读取bsa</translation> </message> </context> <context> <name>DirectoryRefresher</name> <message> - <source>failed to read %1: %2</source> - <translation type="obsolete">无法读取 %1: %2</translation> - </message> - <message> - <location filename="directoryrefresher.cpp" line="99"/> + <location filename="directoryrefresher.cpp" line="146"/> <source>failed to read bsa: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished">无法读取bsa</translation> </message> </context> <context> @@ -296,7 +315,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="downloadlist.cpp" line="66"/> <source>Done</source> - <translation type="unfinished">完成</translation> + <translation>完成</translation> </message> <message> <location filename="downloadlist.cpp" line="82"/> @@ -319,28 +338,28 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="downloadlistwidget.ui" line="99"/> - <location filename="downloadlistwidget.cpp" line="145"/> - <location filename="downloadlistwidget.cpp" line="147"/> + <location filename="downloadlistwidget.cpp" line="150"/> + <location filename="downloadlistwidget.cpp" line="152"/> <source>Done - Double Click to install</source> <translation>完成 - 双击进行安装</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="111"/> - <location filename="downloadlistwidget.cpp" line="113"/> + <location filename="downloadlistwidget.cpp" line="116"/> + <location filename="downloadlistwidget.cpp" line="118"/> <source>Paused - Double Click to resume</source> - <translation type="unfinished"></translation> + <translation>已暂停 - 双击可继续</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="131"/> - <location filename="downloadlistwidget.cpp" line="133"/> + <location filename="downloadlistwidget.cpp" line="136"/> + <location filename="downloadlistwidget.cpp" line="138"/> <source>Installed - Double Click to re-install</source> <translation>已安装 - 双击重新安装</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="138"/> - <location filename="downloadlistwidget.cpp" line="140"/> + <location filename="downloadlistwidget.cpp" line="143"/> + <location filename="downloadlistwidget.cpp" line="145"/> <source>Uninstalled - Double Click to re-install</source> - <translation type="unfinished"></translation> + <translation>已卸载 - 双击重新安装</translation> </message> </context> <context> @@ -360,135 +379,135 @@ p, li { white-space: pre-wrap; } <context> <name>DownloadListWidgetCompactDelegate</name> <message> - <location filename="downloadlistwidgetcompact.cpp" line="126"/> + <location filename="downloadlistwidgetcompact.cpp" line="92"/> + <source>< mod %1 file %2 ></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="97"/> + <source>Pending</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="120"/> + <source>Paused</source> + <translation>已暂停</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="123"/> + <source>Fetching Info 1</source> + <translation>抓取信息 1</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="125"/> + <source>Fetching Info 2</source> + <translation type="unfinished">抓取信息 2</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="130"/> <source>Installed</source> - <translation>已安装</translation> + <translation type="unfinished">抓取信息 2</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="129"/> + <location filename="downloadlistwidgetcompact.cpp" line="133"/> <source>Uninstalled</source> - <translation type="unfinished"></translation> + <translation>已卸载</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="132"/> + <location filename="downloadlistwidgetcompact.cpp" line="136"/> <source>Done</source> <translation>完成</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="241"/> - <location filename="downloadlistwidgetcompact.cpp" line="250"/> - <location filename="downloadlistwidgetcompact.cpp" line="259"/> - <location filename="downloadlistwidgetcompact.cpp" line="268"/> + <location filename="downloadlistwidgetcompact.cpp" line="245"/> + <location filename="downloadlistwidgetcompact.cpp" line="254"/> + <location filename="downloadlistwidgetcompact.cpp" line="263"/> + <location filename="downloadlistwidgetcompact.cpp" line="272"/> <source>Are you sure?</source> <translation>确定?</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="242"/> + <location filename="downloadlistwidgetcompact.cpp" line="246"/> <source>This will remove all finished downloads from this list and from disk.</source> <translation>这将会从列表和磁盘中移除所有已完成的下载。</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="251"/> + <location filename="downloadlistwidgetcompact.cpp" line="255"/> <source>This will remove all installed downloads from this list and from disk.</source> <translation>这将会从列表和磁盘中移除所有已安装的下载项目。</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="260"/> + <location filename="downloadlistwidgetcompact.cpp" line="264"/> <source>This will permanently remove all finished downloads from this list (but NOT from disk).</source> - <translation type="unfinished"></translation> + <translation>这将会永久清空本列表中所有已下载完成的项目(但并不会实际从硬盘删除)</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="269"/> + <location filename="downloadlistwidgetcompact.cpp" line="273"/> <source>This will permanently remove all installed downloads from this list (but NOT from disk).</source> - <translation type="unfinished"></translation> + <translation>这将会永久清空本列表中所有已安装完成的项目(但并不会实际从硬盘删除)</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="298"/> + <location filename="downloadlistwidgetcompact.cpp" line="302"/> <source>Install</source> <translation>安装</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="300"/> + <location filename="downloadlistwidgetcompact.cpp" line="304"/> <source>Query Info</source> <translation>查询信息</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="302"/> + <location filename="downloadlistwidgetcompact.cpp" line="306"/> <source>Delete</source> - <translation type="unfinished"></translation> + <translation type="unfinished">&删除</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="304"/> + <location filename="downloadlistwidgetcompact.cpp" line="308"/> <source>Un-Hide</source> - <translation type="unfinished">取消隐藏</translation> + <translation>取消隐藏</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="306"/> + <location filename="downloadlistwidgetcompact.cpp" line="310"/> <source>Remove from View</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="312"/> - <source>Remove</source> - <translation>移除</translation> + <translation>从视图中移除</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="309"/> + <location filename="downloadlistwidgetcompact.cpp" line="313"/> <source>Cancel</source> <translation>取消</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="88"/> - <source>< mod %1 file %2 ></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="93"/> - <source>Pending</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="116"/> - <source>Paused</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="119"/> - <source>Fetching Info 1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="121"/> - <source>Fetching Info 2</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="310"/> + <location filename="downloadlistwidgetcompact.cpp" line="314"/> <source>Pause</source> <translation>暂停</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="313"/> + <location filename="downloadlistwidgetcompact.cpp" line="316"/> + <source>Remove</source> + <translation>移除</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="317"/> <source>Resume</source> <translation>继续</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="318"/> + <location filename="downloadlistwidgetcompact.cpp" line="322"/> <source>Delete Installed...</source> - <translation type="unfinished"></translation> + <translation>移除已安装的项目...</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="319"/> + <location filename="downloadlistwidgetcompact.cpp" line="323"/> <source>Delete All...</source> - <translation type="unfinished"></translation> + <translation>全部删除...</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="322"/> + <location filename="downloadlistwidgetcompact.cpp" line="326"/> <source>Remove Installed...</source> <translation>移除已安装的项目...</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="323"/> + <location filename="downloadlistwidgetcompact.cpp" line="327"/> <source>Remove All...</source> <translation>移除所有...</translation> </message> @@ -496,115 +515,115 @@ p, li { white-space: pre-wrap; } <context> <name>DownloadListWidgetDelegate</name> <message> - <location filename="downloadlistwidget.cpp" line="253"/> - <location filename="downloadlistwidget.cpp" line="262"/> - <location filename="downloadlistwidget.cpp" line="271"/> - <location filename="downloadlistwidget.cpp" line="280"/> + <location filename="downloadlistwidget.cpp" line="93"/> + <source>< mod %1 file %2 ></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="96"/> + <source>Pending</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="123"/> + <source>Fetching Info 1</source> + <translation type="unfinished">抓取信息 1</translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="126"/> + <source>Fetching Info 2</source> + <translation type="unfinished">抓取信息 2</translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="258"/> + <location filename="downloadlistwidget.cpp" line="267"/> + <location filename="downloadlistwidget.cpp" line="276"/> + <location filename="downloadlistwidget.cpp" line="285"/> <source>Are you sure?</source> <translation>确定?</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="254"/> + <location filename="downloadlistwidget.cpp" line="259"/> <source>This will remove all finished downloads from this list and from disk.</source> <translation>这将会从列表和磁盘中移除所有已完成的下载。</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="263"/> + <location filename="downloadlistwidget.cpp" line="268"/> <source>This will remove all installed downloads from this list and from disk.</source> <translation>这将会从列表和磁盘中移除所有已安装的下载项目。</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="272"/> + <location filename="downloadlistwidget.cpp" line="277"/> <source>This will remove all finished downloads from this list (but NOT from disk).</source> - <translation type="unfinished"></translation> + <translation>这将会从列表中移除所有已安装的下载项目。(但不会从实际磁盘中)</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="281"/> + <location filename="downloadlistwidget.cpp" line="286"/> <source>This will remove all installed downloads from this list (but NOT from disk).</source> - <translation type="unfinished"></translation> + <translation>这将会从列表中移除所有已安装的下载项目。(但不会从实际磁盘中)</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="309"/> + <location filename="downloadlistwidget.cpp" line="314"/> <source>Install</source> <translation>安装</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="311"/> + <location filename="downloadlistwidget.cpp" line="316"/> <source>Query Info</source> <translation>查询信息</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="313"/> + <location filename="downloadlistwidget.cpp" line="318"/> <source>Delete</source> - <translation type="unfinished"></translation> + <translation>删除</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="315"/> + <location filename="downloadlistwidget.cpp" line="320"/> <source>Un-Hide</source> - <translation type="unfinished">取消隐藏</translation> + <translation>取消隐藏</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="317"/> + <location filename="downloadlistwidget.cpp" line="322"/> <source>Remove from View</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="323"/> - <source>Remove</source> - <translation>移除</translation> + <translation>从视图中移除</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="320"/> + <location filename="downloadlistwidget.cpp" line="325"/> <source>Cancel</source> <translation>取消</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="88"/> - <source>< mod %1 file %2 ></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="91"/> - <source>Pending</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="118"/> - <source>Fetching Info 1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="121"/> - <source>Fetching Info 2</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="321"/> + <location filename="downloadlistwidget.cpp" line="326"/> <source>Pause</source> <translation>暂停</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="324"/> + <location filename="downloadlistwidget.cpp" line="328"/> + <source>Remove</source> + <translation>移除</translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="329"/> <source>Resume</source> <translation>继续</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="329"/> + <location filename="downloadlistwidget.cpp" line="334"/> <source>Delete Installed...</source> - <translation type="unfinished"></translation> + <translation>移除已安装的项目...</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="330"/> + <location filename="downloadlistwidget.cpp" line="335"/> <source>Delete All...</source> - <translation type="unfinished"></translation> + <translation>全部删除...</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="333"/> + <location filename="downloadlistwidget.cpp" line="338"/> <source>Remove Installed...</source> <translation>移除已安装的项目...</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="334"/> + <location filename="downloadlistwidget.cpp" line="339"/> <source>Remove All...</source> <translation>移除所有...</translation> </message> @@ -612,126 +631,173 @@ p, li { white-space: pre-wrap; } <context> <name>DownloadManager</name> <message> - <location filename="downloadmanager.cpp" line="132"/> + <location filename="downloadmanager.cpp" line="142"/> <source>failed to rename "%1" to "%2"</source> <translation>重命名 "%1 "为 "%2" 时出错</translation> </message> <message> - <location filename="downloadmanager.cpp" line="342"/> + <location filename="downloadmanager.cpp" line="321"/> + <source>Memory allocation error (in refreshing directory).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="369"/> <source>Download again?</source> <translation>重新下载?</translation> </message> <message> - <location filename="downloadmanager.cpp" line="342"/> + <location filename="downloadmanager.cpp" line="369"/> <source>A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name.</source> <translation>已存在同名文件。您确定要重新下载?新文件将使用不同的文件名。</translation> </message> <message> - <location filename="downloadmanager.cpp" line="388"/> + <location filename="downloadmanager.cpp" line="417"/> <source>failed to download %1: could not open output file: %2</source> <translation>下载 %1 失败: 无法打开输出文件: %2</translation> </message> <message> - <location filename="downloadmanager.cpp" line="421"/> + <location filename="downloadmanager.cpp" line="454"/> <source>Wrong Game</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadmanager.cpp" line="421"/> + <location filename="downloadmanager.cpp" line="454"/> <source>The download link is for a mod for "%1" but this instance of MO has been set up for "%2".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadmanager.cpp" line="439"/> - <location filename="downloadmanager.cpp" line="506"/> - <location filename="downloadmanager.cpp" line="682"/> - <location filename="downloadmanager.cpp" line="691"/> - <location filename="downloadmanager.cpp" line="701"/> - <location filename="downloadmanager.cpp" line="710"/> - <location filename="downloadmanager.cpp" line="724"/> - <location filename="downloadmanager.cpp" line="734"/> - <location filename="downloadmanager.cpp" line="744"/> - <location filename="downloadmanager.cpp" line="754"/> - <location filename="downloadmanager.cpp" line="765"/> + <location filename="downloadmanager.cpp" line="471"/> + <location filename="downloadmanager.cpp" line="538"/> + <location filename="downloadmanager.cpp" line="726"/> + <location filename="downloadmanager.cpp" line="735"/> + <location filename="downloadmanager.cpp" line="756"/> <location filename="downloadmanager.cpp" line="773"/> <location filename="downloadmanager.cpp" line="782"/> - <location filename="downloadmanager.cpp" line="792"/> - <location filename="downloadmanager.cpp" line="807"/> + <location filename="downloadmanager.cpp" line="796"/> + <location filename="downloadmanager.cpp" line="806"/> + <location filename="downloadmanager.cpp" line="816"/> + <location filename="downloadmanager.cpp" line="826"/> + <location filename="downloadmanager.cpp" line="841"/> + <location filename="downloadmanager.cpp" line="849"/> + <location filename="downloadmanager.cpp" line="858"/> + <location filename="downloadmanager.cpp" line="868"/> + <location filename="downloadmanager.cpp" line="883"/> <source>invalid index</source> <translation>无效的索引</translation> </message> <message> - <location filename="downloadmanager.cpp" line="457"/> + <location filename="downloadmanager.cpp" line="489"/> <source>failed to delete %1</source> <translation>无法删除 %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="463"/> + <location filename="downloadmanager.cpp" line="495"/> <source>failed to delete meta file for %1</source> <translation>无法从 %1 中删除 mate 文件</translation> </message> <message> - <location filename="downloadmanager.cpp" line="539"/> - <location filename="downloadmanager.cpp" line="557"/> - <location filename="downloadmanager.cpp" line="570"/> - <location filename="downloadmanager.cpp" line="587"/> - <location filename="downloadmanager.cpp" line="598"/> + <location filename="downloadmanager.cpp" line="571"/> + <location filename="downloadmanager.cpp" line="589"/> + <location filename="downloadmanager.cpp" line="602"/> + <location filename="downloadmanager.cpp" line="622"/> <location filename="downloadmanager.cpp" line="633"/> + <location filename="downloadmanager.cpp" line="673"/> <source>invalid index %1</source> <translation>无效的索引 %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="650"/> + <location filename="downloadmanager.cpp" line="640"/> + <source>No known download urls. Sorry, this download can't be resumed.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="695"/> <source>Please enter the nexus mod id</source> <translation>请输入N网 Mod ID</translation> </message> <message> - <location filename="downloadmanager.cpp" line="650"/> + <location filename="downloadmanager.cpp" line="695"/> <source>Mod ID:</source> <translation>Mod ID:</translation> </message> <message> - <source>invalid alphabetical index %1</source> - <translation type="obsolete">无效的字顺索引 %1</translation> + <location filename="downloadmanager.cpp" line="744"/> + <source>Main</source> + <translation type="unfinished">主要文件</translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="745"/> + <source>Update</source> + <translation type="unfinished">更新</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1042"/> + <location filename="downloadmanager.cpp" line="746"/> + <source>Optional</source> + <translation type="unfinished">可选文件</translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="747"/> + <source>Old</source> + <translation type="unfinished">旧档</translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="748"/> + <source>Misc</source> + <translation type="unfinished">杂项</translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="749"/> + <source>Unknown</source> + <translation type="unfinished">未知</translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="999"/> + <source>Memory allocation error (in processing progress event).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="1012"/> + <source>Memory allocation error (in processing downloaded data).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="1141"/> <source>Information updated</source> <translation>信息已更新</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1044"/> - <location filename="downloadmanager.cpp" line="1058"/> + <location filename="downloadmanager.cpp" line="1143"/> + <location filename="downloadmanager.cpp" line="1157"/> <source>No matching file found on Nexus! Maybe this file is no longer available or it was renamed?</source> <translation>无法在N网上找到匹配的文件!也许这个文件已经不存在了或是它改名了?</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1046"/> + <location filename="downloadmanager.cpp" line="1145"/> <source>No file on Nexus matches the selected file by name. Please manually choose the correct one.</source> <translation>所选的文件无法在N网上找到可匹配的项目,请手动选择正确的一个。</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1180"/> + <location filename="downloadmanager.cpp" line="1286"/> <source>No download server available. Please try again later.</source> <translation>没有可用的下载服务器,请稍后再尝试下载。</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1224"/> + <location filename="downloadmanager.cpp" line="1329"/> <source>Failed to request file info from nexus: %1</source> <translation>无法从N网上请求文件信息: %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1249"/> + <location filename="downloadmanager.cpp" line="1357"/> <source>Download failed. Server reported: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadmanager.cpp" line="1251"/> + <location filename="downloadmanager.cpp" line="1359"/> <source>Download failed: %1 (%2)</source> <translation>下载失败: %1 (%2)</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1331"/> + <location filename="downloadmanager.cpp" line="1458"/> <source>failed to re-open %1</source> <translation>无法重新打开 %1</translation> </message> @@ -893,7 +959,7 @@ Right now the only case I know of where this needs to be overwritten is for the <message> <location filename="editexecutablesdialog.cpp" line="149"/> <source>Java (32-bit) required</source> - <translation type="unfinished"></translation> + <translation>需要 Java (32-bit) 支持</translation> </message> <message> <location filename="editexecutablesdialog.cpp" line="150"/> @@ -1027,62 +1093,6 @@ Right now the only case I know of where this needs to be overwritten is for the <source>Cancel</source> <translation>取消</translation> </message> - <message> - <source>ModuleConfig.xml missing</source> - <translation type="obsolete">ModuleConfig.xml 丟失</translation> - </message> - <message> - <source><a href="%1">Link</a></source> - <translation type="obsolete"><a href="%1">链接</a></translation> - </message> - <message> - <source>failed to parse info.xml: %1 (%2) (line %3, column %4)</source> - <translation type="obsolete">无法解析 info.xml: %1 (%2) (行 %3, 列 %4)</translation> - </message> - <message> - <source>unsupported order type %1</source> - <translation type="obsolete">未支持的排列类型 %1</translation> - </message> - <message> - <source>unsupported group type %1</source> - <translation type="obsolete">未支持的群组類型 %1</translation> - </message> - <message> - <source>This component is required</source> - <translation type="obsolete">该组件是必需的</translation> - </message> - <message> - <source>It is recommended you enable this component</source> - <translation type="obsolete">我们建议您启用此组件</translation> - </message> - <message> - <source>Optional component</source> - <translation type="obsolete">可选组件</translation> - </message> - <message> - <source>This component is not usable in combination with other installed plugins</source> - <translation type="obsolete">该组件不能和其它已安装的插件一起使用</translation> - </message> - <message> - <source>You may be experiencing instability in combination with other installed plugins</source> - <translation type="obsolete">与其它已安装的插件一起使用可能会导致游戏不稳定。</translation> - </message> - <message> - <source>None</source> - <translation type="obsolete">无</translation> - </message> - <message> - <source>Select one or more of these options:</source> - <translation type="obsolete">选择这些选项中的一个或多个:</translation> - </message> - <message> - <source>failed to parse ModuleConfig.xml: %1</source> - <translation type="obsolete">无法解析 info.xml: %1</translation> - </message> - <message> - <source>Install</source> - <translation type="obsolete">安装</translation> - </message> </context> <context> <name>InstallDialog</name> @@ -1142,59 +1152,20 @@ p, li { white-space: pre-wrap; } <message> <location filename="installdialog.ui" line="141"/> <source>OK</source> - <translation type="unfinished">确定</translation> + <translation>确定</translation> </message> <message> <location filename="installdialog.ui" line="148"/> <source>Cancel</source> - <translation type="unfinished">取消</translation> - </message> - <message> - <source>Looks good</source> - <translation type="obsolete">看起来不错</translation> - </message> - <message> - <source>No problem detected</source> - <translation type="obsolete">没有检测到问题</translation> - </message> - <message> - <source>No game data on top level</source> - <translation type="obsolete">Data 目录没有在顶层</translation> - </message> - <message> - <source>There is no esp/esm file or asset directory (textures, meshes, interface, ...) on the top level.</source> - <translation type="obsolete">没有 esp 或 esm 文件或有效的目录 (textures, meshes, interface, ...) 在顶层。</translation> - </message> - <message> - <source>Enter a directory name</source> - <translation type="obsolete">输入一个目录名称</translation> - </message> - <message> - <source>A directory with that name exists</source> - <translation type="obsolete">该目录名称已存在</translation> - </message> - <message> - <source>Set data directory</source> - <translation type="obsolete">设置为 Data 目录</translation> - </message> - <message> - <source>Unset data directory</source> - <translation type="obsolete">取消设置为 Data 目录</translation> - </message> - <message> - <source>Create directory...</source> - <translation type="obsolete">新建文件夹...</translation> - </message> - <message> - <source>&Open</source> - <translation type="obsolete">&打开</translation> + <translation>取消</translation> </message> </context> <context> <name>InstallationManager</name> <message> - <source>mo_archive.dll not loaded: "%1"</source> - <translation type="obsolete">mo_archive.dll 未加载: "%1"</translation> + <location filename="installationmanager.cpp" line="76"/> + <source>archive.dll not loaded: "%1"</source> + <translation>archive.dll 没有加载: "%1"</translation> </message> <message> <location filename="installationmanager.cpp" line="98"/> @@ -1207,156 +1178,89 @@ p, li { white-space: pre-wrap; } <translation>密码</translation> </message> <message> - <source>Directory exists</source> - <translation type="obsolete">目录已存在</translation> - </message> - <message> - <source>This mod seems to be installed already. Do you want to add files from this archive (overwriting existing ones) or do you want to completely replace the existing files (old files are deleted)?</source> - <translation type="obsolete">这个 Mod 似乎已安装,您仍想添加此压缩包中的文件吗?(将会覆盖现有的) 或者您想要完整地替换现有的文件吗?(旧的文件将会被删除)</translation> - </message> - <message> - <source>Add Files</source> - <translation type="obsolete">添加文件</translation> - </message> - <message> - <source>Replace</source> - <translation type="obsolete">替换</translation> - </message> - <message> <location filename="installationmanager.cpp" line="164"/> <location filename="installationmanager.cpp" line="248"/> - <location filename="installationmanager.cpp" line="529"/> + <location filename="installationmanager.cpp" line="530"/> <source>Extracting files</source> <translation>正在解压文件</translation> </message> <message> - <source>Preparing installer</source> - <translation type="obsolete">正在准备安装</translation> - </message> - <message> - <source>Installation as fomod failed: %1</source> - <translation type="obsolete">以 fomod 安装失败: %1</translation> - </message> - <message> - <source>failed to start %1</source> - <translation type="obsolete">无法启动 %1</translation> - </message> - <message> - <source>Running external installer. -Note: This installer will not be aware of other installed mods!</source> - <translation type="obsolete">正在执行外部安装程序。 -注意: 此安裝程序并不知道您是否已经安装了其它 Mod!</translation> - </message> - <message> - <source>Force Close</source> - <translation type="obsolete">强制关闭</translation> - </message> - <message> - <source>Confirm</source> - <translation type="obsolete">确认</translation> - </message> - <message> - <source>installation failed (errorcode %1)</source> - <translation type="obsolete">安装失败 (错误代码 %1)</translation> - </message> - <message> - <location filename="installationmanager.cpp" line="609"/> - <source>File format "%1" not supported</source> - <translation>暂不支持文件格式: "%1"</translation> - </message> - <message> - <source>failed to open archive "%1": %2</source> - <translation type="obsolete">无法打开压缩包 "%1": %2</translation> - </message> - <message> - <location filename="installationmanager.cpp" line="76"/> - <source>archive.dll not loaded: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="installationmanager.cpp" line="439"/> <source>failed to create backup</source> - <translation type="unfinished"></translation> + <translation>创建备份失败。</translation> </message> <message> <location filename="installationmanager.cpp" line="448"/> <source>Mod Name</source> - <translation type="unfinished"></translation> + <translation>模组名称</translation> </message> <message> <location filename="installationmanager.cpp" line="448"/> <source>Name</source> - <translation type="unfinished">名称</translation> + <translation>名称</translation> </message> <message> <location filename="installationmanager.cpp" line="501"/> <source>Invalid name</source> - <translation type="unfinished"></translation> + <translation>无效名称</translation> </message> <message> <location filename="installationmanager.cpp" line="502"/> <source>The name you entered is invalid, please enter a different one.</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Installer missing</source> - <translation type="obsolete">安装包丢失</translation> - </message> - <message> - <source>This package contains a scripted installer. To use this installer you need the optional "NCC"-package and the .net runtime. Do you want to continue, treating this as a manual installer?</source> - <translation type="obsolete">此安装包中含有安装脚本。您需要到N网下载安装 NCC,并同时装有 .NET 运行库才能运行此安装脚本。是否跳过此警告并把此安装包作为手动安装包来安装?</translation> + <translation>你输入的名称无效,请重新输入。</translation> </message> <message> - <source>Please install NCC</source> - <translation type="obsolete">请安装 NCC</translation> + <location filename="installationmanager.cpp" line="610"/> + <source>File format "%1" not supported</source> + <translation>暂不支持文件格式: "%1"</translation> </message> <message> - <location filename="installationmanager.cpp" line="735"/> + <location filename="installationmanager.cpp" line="743"/> <source>None of the available installer plugins were able to handle that archive</source> - <translation type="unfinished"></translation> + <translation>没有可用的安装插件能够处理此压缩包</translation> </message> <message> - <location filename="installationmanager.cpp" line="745"/> + <location filename="installationmanager.cpp" line="753"/> <source>no error</source> <translation>没有错误</translation> </message> <message> - <location filename="installationmanager.cpp" line="748"/> + <location filename="installationmanager.cpp" line="756"/> <source>7z.dll not found</source> <translation>未找到 7z.dll</translation> </message> <message> - <location filename="installationmanager.cpp" line="751"/> + <location filename="installationmanager.cpp" line="759"/> <source>7z.dll isn't valid</source> <translation>无效的 7z.dll</translation> </message> <message> - <location filename="installationmanager.cpp" line="754"/> + <location filename="installationmanager.cpp" line="762"/> <source>archive not found</source> <translation>未找到压缩包</translation> </message> <message> - <location filename="installationmanager.cpp" line="757"/> + <location filename="installationmanager.cpp" line="765"/> <source>failed to open archive</source> <translation>无法打开压缩包</translation> </message> <message> - <location filename="installationmanager.cpp" line="760"/> + <location filename="installationmanager.cpp" line="768"/> <source>unsupported archive type</source> <translation>不支持的压缩包类型</translation> </message> <message> - <location filename="installationmanager.cpp" line="763"/> + <location filename="installationmanager.cpp" line="771"/> <source>internal library error</source> <translation>内部库错误</translation> </message> <message> - <location filename="installationmanager.cpp" line="766"/> + <location filename="installationmanager.cpp" line="774"/> <source>archive invalid</source> <translation>无效的压缩包</translation> </message> <message> - <location filename="installationmanager.cpp" line="770"/> + <location filename="installationmanager.cpp" line="778"/> <source>unknown archive error</source> <translation>未知压缩包错误</translation> </message> @@ -1387,7 +1291,7 @@ Note: This installer will not be aware of other installed mods!</source> <context> <name>LogBuffer</name> <message> - <location filename="logbuffer.cpp" line="73"/> + <location filename="logbuffer.cpp" line="83"/> <source>failed to write log to %1: %2</source> <translation>无法生成日志到 %1: %2</translation> </message> @@ -1395,36 +1299,61 @@ Note: This installer will not be aware of other installed mods!</source> <context> <name>MOApplication</name> <message> - <location filename="moapplication.cpp" line="68"/> + <location filename="moapplication.cpp" line="115"/> <source>an error occured: %1</source> <translation type="unfinished">发生错误: %1</translation> </message> <message> - <location filename="moapplication.cpp" line="73"/> + <location filename="moapplication.cpp" line="120"/> <source>an error occured</source> - <translation type="unfinished">发生错误</translation> + <translation>发生错误</translation> </message> </context> <context> <name>MainWindow</name> <message> - <location filename="mainwindow.ui" line="51"/> - <location filename="mainwindow.ui" line="392"/> + <location filename="mainwindow.ui" line="43"/> + <location filename="mainwindow.ui" line="482"/> <source>Categories</source> + <translation>种类</translation> + </message> + <message> + <location filename="mainwindow.ui" line="97"/> + <source>Click blank area to deselect</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="116"/> + <source>If checked, only mods that match all selected categories are displayed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="128"/> + <location filename="mainwindow.ui" line="119"/> + <source>And</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="129"/> + <source>If checked, all mods that match at least one of the selected categories are displayed.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="132"/> + <source>Or</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="171"/> <source>Profile</source> - <translation type="unfinished">配置文件</translation> + <translation>配置文件</translation> </message> <message> - <location filename="mainwindow.ui" line="138"/> + <location filename="mainwindow.ui" line="181"/> <source>Pick a module collection</source> <translation type="unfinished">选择一个配置文件</translation> </message> <message> - <location filename="mainwindow.ui" line="141"/> + <location filename="mainwindow.ui" line="184"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1439,58 +1368,66 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">请注意: 当前您的配置文件的 esp 加载顺序并不是分开保存的。</span></p></body></html></translation> </message> <message> - <location filename="mainwindow.ui" line="159"/> + <location filename="mainwindow.ui" line="215"/> <source>Refresh list</source> - <translation type="unfinished">刷新列表</translation> + <translation>刷新列表</translation> </message> <message> - <location filename="mainwindow.ui" line="162"/> + <location filename="mainwindow.ui" line="218"/> <source>Refresh list. This is usually not necessary unless you modified data outside the program.</source> - <translation type="unfinished">刷新列表,这通常不是必须的,除非您在程序之外修改了文件的数据。</translation> + <translation>刷新列表,这通常不是必须的,除非您在程序之外修改了文件的数据。</translation> </message> <message> - <location filename="mainwindow.ui" line="278"/> - <source>List of available mods.</source> + <location filename="mainwindow.ui" line="238"/> + <location filename="mainwindow.ui" line="739"/> + <source>Restore Backup...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="281"/> - <source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag & drop mods to change their "installation" orders.</source> + <location filename="mainwindow.ui" line="252"/> + <location filename="mainwindow.ui" line="759"/> + <source>Create Backup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="366"/> + <location filename="mainwindow.ui" line="368"/> + <source>List of available mods.</source> + <translation>可用模组列表</translation> + </message> + <message> + <location filename="mainwindow.ui" line="371"/> + <source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag & drop mods to change their "installation" orders.</source> + <translation>已安装mod列表。请使用复选框激活/取消mod,以鼠标拖动可改变他们的“安装”顺序。</translation> + </message> + <message> + <location filename="mainwindow.ui" line="456"/> <source>Filter</source> <translation type="unfinished">过滤器</translation> </message> <message> - <location filename="mainwindow.ui" line="387"/> + <location filename="mainwindow.ui" line="477"/> <source>No groups</source> - <translation type="unfinished"></translation> + <translation>未分组</translation> </message> <message> - <location filename="mainwindow.ui" line="397"/> + <location filename="mainwindow.ui" line="487"/> <source>Nexus IDs</source> - <translation type="unfinished">N网 ID</translation> + <translation>N网 ID</translation> </message> <message> - <location filename="mainwindow.ui" line="405"/> - <location filename="mainwindow.ui" line="724"/> - <location filename="mainwindow.ui" line="1046"/> + <location filename="mainwindow.ui" line="495"/> + <location filename="mainwindow.ui" line="876"/> + <location filename="mainwindow.ui" line="1214"/> <source>Namefilter</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>Start</source> - <translation type="obsolete">开始</translation> + <translation>名称过滤器</translation> </message> <message> - <location filename="mainwindow.ui" line="440"/> + <location filename="mainwindow.ui" line="530"/> <source>Pick a program to run.</source> - <translation type="unfinished">选择要运行的程序。</translation> + <translation>选择要运行的程序。</translation> </message> <message> - <location filename="mainwindow.ui" line="443"/> + <location filename="mainwindow.ui" line="533"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1505,12 +1442,12 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">您可以添加新的工具到此列表中,但我不能保证一些我没有测试过的工具能够正常工作。</span></p></body></html></translation> </message> <message> - <location filename="mainwindow.ui" line="491"/> + <location filename="mainwindow.ui" line="581"/> <source>Run program</source> - <translation type="unfinished">运行程序</translation> + <translation>运行程序</translation> </message> <message> - <location filename="mainwindow.ui" line="494"/> + <location filename="mainwindow.ui" line="584"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1523,17 +1460,17 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">在 Mod Organizer 启用的状态下运行指定的程序。</span></p></body></html></translation> </message> <message> - <location filename="mainwindow.ui" line="504"/> + <location filename="mainwindow.ui" line="594"/> <source>Run</source> - <translation type="unfinished">运行</translation> + <translation>运行</translation> </message> <message> - <location filename="mainwindow.ui" line="545"/> + <location filename="mainwindow.ui" line="635"/> <source>Create a shortcut in your start menu or on the desktop to the specified program</source> - <translation type="unfinished"></translation> + <translation>在开始菜单或桌面生成你指定程序的快捷方式</translation> </message> <message> - <location filename="mainwindow.ui" line="548"/> + <location filename="mainwindow.ui" line="638"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1546,37 +1483,27 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">创建一个开始菜单快捷方式,使您可以直接在 MO 激活状态下运行指定的程序。</span></p></body></html></translation> </message> <message> - <location filename="mainwindow.ui" line="555"/> + <location filename="mainwindow.ui" line="645"/> <source>Shortcut</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>save esp list and load order.</source> - <translation type="obsolete">保存 esp 列表和加载顺序。</translation> + <translation>快捷方式</translation> </message> <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Save the list of active mods and load order. This automatically happens if you close MO or start a program.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">保存已激活 Mod 和加载顺序的列表,当您关闭了 MO 或者启动了一个程序的时候这将会自动发生。</span></p></body></html></translation> + <location filename="mainwindow.ui" line="695"/> + <source>Plugins</source> + <translation type="unfinished">插件</translation> </message> <message> - <source>Save</source> - <translation type="obsolete">保存</translation> + <location filename="mainwindow.ui" line="715"/> + <source>Sort</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="669"/> + <location filename="mainwindow.ui" line="821"/> <source>List of available esp/esm files</source> - <translation type="unfinished">可用 esp 或 esm 文件的列表</translation> + <translation>可用 esp 或 esm 文件的列表</translation> </message> <message> - <location filename="mainwindow.ui" line="672"/> + <location filename="mainwindow.ui" line="824"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1589,16 +1516,27 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">这个列表中包含了位于已激活 Mod 里的 esp 和 esm 文件。这些文件都需要它们自己的加载顺序,您可以使用拖放来修改加载顺序。请注意: MO 将只保存已激活或已勾选状态的 Mod 的加载顺序。<br />有个非常棒的工具叫作 &quot;BOSS&quot;,它可以自动对这些文件进行排序。</span></p></body></html></translation> </message> <message> - <source>IMPORTANT: You can change the order of BSAs here but installation order of mods has priority over the order specified here!</source> - <translation type="obsolete">重要: 您可以在这里更改 BSA 的顺序,不过 Mod 的安装顺序会优先于这里的设置!</translation> + <location filename="mainwindow.ui" line="886"/> + <source>Archives</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="916"/> + <source><html><head/><body><p>BSAs are bundles of game assets (textures, scripts, ...). By default, the engine loads these bundles in a separate step from loose files. MO can manage those archives to align their load order with that of loose files:</p><p>If archives are <span style=" font-weight:600;">managed</span>, their load order is specified by the priority of the corresponding mod (left pane), the same as the loose files. You can manually enable any BSA that has no corresponding plugin active.<br/></p><p>If archives are <span style=" font-weight:600;">not managed</span> their load order is specified by the priority of the corresponding plugin (right pane, plugins tab). You can then not manually enable BSAs where the plugin isn't active.</p><p>In either case you can not disable archives if there is a matching plugin, the game will load them no matter what.</p></body></html></source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="762"/> + <location filename="mainwindow.ui" line="919"/> + <source><html><head/><body><p>Have MO manage archives (<a href="#"><span style=" text-decoration: underline; color:#0000ff;">read more</span></a>)</p></body></html></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="934"/> <source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source> - <translation type="unfinished">可用 BSA 文件的列表。未勾选的项目不会被 MO 管理并且会忽略安装顺序。</translation> + <translation>可用 BSA 文件的列表。未勾选的项目不会被 MO 管理并且会忽略安装顺序。</translation> </message> <message> - <location filename="mainwindow.ui" line="765"/> + <location filename="mainwindow.ui" line="937"/> <source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" with loose files in your data directory over which is loaded. By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored! @@ -1609,81 +1547,71 @@ BSAs checked here are loaded in such a way that your installation order is obeye 这里勾选的 BSA 将会依从您的安装顺序,并且会自行调整加载顺序。</translation> </message> <message> - <location filename="mainwindow.ui" line="811"/> - <location filename="mainwindow.ui" line="880"/> + <location filename="mainwindow.ui" line="983"/> + <location filename="mainwindow.ui" line="1042"/> <source>File</source> - <translation type="unfinished">文件</translation> + <translation>文件</translation> </message> <message> - <location filename="mainwindow.ui" line="819"/> - <source><html><head/><body><p>Marked Archives (<img src=":/MO/gui/warning_16"/>) are still loaded on Skyrim but the <a href="http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/"><span style=" text-decoration: underline; color:#0000ff;">regular file override</span></a> mechanism will apply: Loose files override BSAs, no matter the mod/plugin priority.</p></body></html></source> + <location filename="mainwindow.ui" line="1459"/> + <source>Copy Log to Clipboard</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="885"/> - <source>Mod</source> - <translation type="unfinished">Mod</translation> + <location filename="mainwindow.ui" line="1462"/> + <source>Ctrl+C</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="830"/> + <location filename="mainwindow.ui" line="992"/> <source>Data</source> <translation type="unfinished">Data</translation> </message> <message> - <location filename="mainwindow.ui" line="605"/> - <source>Plugins</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="731"/> - <source>Sort</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="741"/> - <source>Archives</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="848"/> + <location filename="mainwindow.ui" line="1010"/> <source>refresh data-directory overview</source> - <translation type="unfinished">刷新 Data 目录总览</translation> + <translation>刷新 Data 目录总览</translation> </message> <message> - <location filename="mainwindow.ui" line="851"/> + <location filename="mainwindow.ui" line="1013"/> <source>Refresh the overview. This may take a moment.</source> - <translation type="unfinished">刷新总览,这可能需要一些时间。</translation> + <translation>刷新总览,这可能需要一些时间。</translation> </message> <message> - <location filename="mainwindow.ui" line="854"/> - <location filename="mainwindow.cpp" line="3781"/> - <location filename="mainwindow.cpp" line="4604"/> + <location filename="mainwindow.ui" line="1016"/> + <location filename="mainwindow.cpp" line="3749"/> + <location filename="mainwindow.cpp" line="4614"/> <source>Refresh</source> - <translation type="unfinished">刷新</translation> + <translation>刷新</translation> </message> <message> - <location filename="mainwindow.ui" line="870"/> + <location filename="mainwindow.ui" line="1032"/> <source>This is an overview of your data directory as visible to the game (and tools). </source> - <translation type="unfinished">这是在游戏中可见的 Data 目录 (和工具) 的总览。</translation> + <translation>这是在游戏中可见的 Data 目录 (和工具) 的总览。</translation> </message> <message> - <location filename="mainwindow.ui" line="895"/> - <location filename="mainwindow.ui" line="898"/> + <location filename="mainwindow.ui" line="1047"/> + <source>Mod</source> + <translation>模组</translation> + </message> + <message> + <location filename="mainwindow.ui" line="1057"/> + <location filename="mainwindow.ui" line="1060"/> <source>Filter the above list so that only conflicts are displayed.</source> - <translation type="unfinished">过滤上面的列表,使您只能看到有冲突的文件。</translation> + <translation>过滤上面的列表,使您只能看到有冲突的文件。</translation> </message> <message> - <location filename="mainwindow.ui" line="901"/> + <location filename="mainwindow.ui" line="1063"/> <source>Show only conflicts</source> - <translation type="unfinished">只显示冲突</translation> + <translation>只显示冲突</translation> </message> <message> - <location filename="mainwindow.ui" line="909"/> + <location filename="mainwindow.ui" line="1071"/> <source>Saves</source> - <translation type="unfinished">存档</translation> + <translation>存档</translation> </message> <message> - <location filename="mainwindow.ui" line="933"/> + <location filename="mainwindow.ui" line="1095"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1700,360 +1628,343 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">如果您在右键菜单中点击“修复 Mod”,那么 MO 便会尝试激活所有 Mod 和 esp 来修复那些缺失的 esp,它并不会禁用任何东西!</span></p></body></html></translation> </message> <message> - <location filename="mainwindow.ui" line="947"/> + <location filename="mainwindow.ui" line="1109"/> <source>Downloads</source> - <translation type="unfinished">下载</translation> + <translation>下载</translation> </message> <message> - <location filename="mainwindow.ui" line="979"/> + <location filename="mainwindow.ui" line="1141"/> <source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source> - <translation type="unfinished">这是当前已下载的 Mod 的列表,双击进行安装。</translation> + <translation>这是从Nexus已下载的模组的列表,双击进行安装。</translation> </message> <message> - <location filename="mainwindow.ui" line="1032"/> <source>Compact</source> - <translation type="unfinished">紧凑</translation> + <translation type="obsolete">紧凑</translation> </message> <message> - <location filename="mainwindow.ui" line="1039"/> + <location filename="mainwindow.ui" line="1194"/> <source>Show Hidden</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1070"/> + <location filename="mainwindow.ui" line="1256"/> <source>Tool Bar</source> - <translation type="unfinished">工具栏</translation> + <translation>工具栏</translation> </message> <message> - <location filename="mainwindow.ui" line="1112"/> + <location filename="mainwindow.ui" line="1298"/> <source>Install Mod</source> - <translation type="unfinished">安装 Mod</translation> + <translation>安装模组</translation> </message> <message> - <location filename="mainwindow.ui" line="1115"/> + <location filename="mainwindow.ui" line="1301"/> <source>Install &Mod</source> <translation type="unfinished">安装 &Mod</translation> </message> <message> - <location filename="mainwindow.ui" line="1118"/> + <location filename="mainwindow.ui" line="1304"/> <source>Install a new mod from an archive</source> - <translation type="unfinished">通过压缩包来安装一个新 Mod</translation> + <translation>通过压缩包来安装一个新 Mod</translation> </message> <message> - <location filename="mainwindow.ui" line="1121"/> + <location filename="mainwindow.ui" line="1307"/> <source>Ctrl+M</source> - <translation type="unfinished">Ctrl+M</translation> + <translation>Ctrl+M</translation> </message> <message> - <location filename="mainwindow.ui" line="1130"/> + <location filename="mainwindow.ui" line="1316"/> <source>Profiles</source> - <translation type="unfinished">配置文件</translation> + <translation>配置文件</translation> </message> <message> - <location filename="mainwindow.ui" line="1133"/> + <location filename="mainwindow.ui" line="1319"/> <source>&Profiles</source> <translation type="unfinished">&配置文件</translation> </message> <message> - <location filename="mainwindow.ui" line="1136"/> + <location filename="mainwindow.ui" line="1322"/> <source>Configure Profiles</source> <translation type="unfinished">设置配置文件</translation> </message> <message> - <location filename="mainwindow.ui" line="1139"/> + <location filename="mainwindow.ui" line="1325"/> <source>Ctrl+P</source> - <translation type="unfinished">Ctrl+P</translation> + <translation>Ctrl+P</translation> </message> <message> - <location filename="mainwindow.ui" line="1148"/> + <location filename="mainwindow.ui" line="1334"/> <source>Executables</source> - <translation type="unfinished">可执行程序</translation> + <translation>可执行程序</translation> </message> <message> - <location filename="mainwindow.ui" line="1151"/> + <location filename="mainwindow.ui" line="1337"/> <source>&Executables</source> <translation type="unfinished">&可执行程序</translation> </message> <message> - <location filename="mainwindow.ui" line="1154"/> + <location filename="mainwindow.ui" line="1340"/> <source>Configure the executables that can be started through Mod Organizer</source> - <translation type="unfinished">配置可通过 MO 来启动的程序</translation> + <translation>配置可通过 MO 来启动的程序</translation> </message> <message> - <location filename="mainwindow.ui" line="1157"/> + <location filename="mainwindow.ui" line="1343"/> <source>Ctrl+E</source> - <translation type="unfinished">Ctrl+E</translation> + <translation>Ctrl+E</translation> </message> <message> - <location filename="mainwindow.ui" line="1166"/> - <location filename="mainwindow.ui" line="1172"/> + <location filename="mainwindow.ui" line="1352"/> + <location filename="mainwindow.ui" line="1358"/> <source>Tools</source> - <translation type="unfinished"></translation> + <translation>工具</translation> </message> <message> - <location filename="mainwindow.ui" line="1169"/> + <location filename="mainwindow.ui" line="1355"/> <source>&Tools</source> - <translation type="unfinished"></translation> + <translation type="unfinished">工具(&T)</translation> </message> <message> - <location filename="mainwindow.ui" line="1175"/> + <location filename="mainwindow.ui" line="1361"/> <source>Ctrl+I</source> - <translation type="unfinished">Ctrl+I</translation> + <translation>Ctrl+I</translation> </message> <message> - <location filename="mainwindow.ui" line="1184"/> + <location filename="mainwindow.ui" line="1370"/> <source>Settings</source> - <translation type="unfinished">设置</translation> + <translation>设置</translation> </message> <message> - <location filename="mainwindow.ui" line="1187"/> + <location filename="mainwindow.ui" line="1373"/> <source>&Settings</source> <translation type="unfinished">&设置</translation> </message> <message> - <location filename="mainwindow.ui" line="1190"/> + <location filename="mainwindow.ui" line="1376"/> <source>Configure settings and workarounds</source> <translation type="unfinished">配置设定和解决方案</translation> </message> <message> - <location filename="mainwindow.ui" line="1193"/> + <location filename="mainwindow.ui" line="1379"/> <source>Ctrl+S</source> - <translation type="unfinished">Ctrl+S</translation> + <translation>Ctrl+S</translation> </message> <message> - <location filename="mainwindow.ui" line="1202"/> + <location filename="mainwindow.ui" line="1388"/> <source>Nexus</source> - <translation type="unfinished">N网</translation> + <translation>Nexus</translation> </message> <message> - <location filename="mainwindow.ui" line="1205"/> + <location filename="mainwindow.ui" line="1391"/> <source>Search nexus network for more mods</source> - <translation type="unfinished">搜索N网以获取更多 Mod</translation> + <translation>搜索nexus网以获取更多 Mod</translation> </message> <message> - <location filename="mainwindow.ui" line="1208"/> + <location filename="mainwindow.ui" line="1394"/> <source>Ctrl+N</source> - <translation type="unfinished">Ctrl+N</translation> + <translation>Ctrl+N</translation> </message> <message> - <location filename="mainwindow.ui" line="1220"/> - <location filename="mainwindow.cpp" line="4545"/> + <location filename="mainwindow.ui" line="1406"/> + <location filename="mainwindow.cpp" line="4555"/> <source>Update</source> <translation type="unfinished">更新</translation> </message> <message> - <location filename="mainwindow.ui" line="1223"/> + <location filename="mainwindow.ui" line="1409"/> <source>Mod Organizer is up-to-date</source> - <translation type="unfinished">Mod Organizer 现在是最新版本</translation> + <translation>Mod Organizer 现在是最新版本</translation> </message> <message> - <location filename="mainwindow.ui" line="1235"/> - <location filename="mainwindow.cpp" line="509"/> + <location filename="mainwindow.ui" line="1421"/> + <location filename="mainwindow.cpp" line="561"/> <source>No Problems</source> <translation type="unfinished">没有问题</translation> </message> <message> - <location filename="mainwindow.ui" line="1238"/> + <location filename="mainwindow.ui" line="1424"/> <source>This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them. !Work in progress! Right now this has very limited functionality</source> - <translation type="unfinished">如果 MO 检测到您的安装中存在潜在的问题,那么此按钮将会高亮显示,同时 MO 也会给您相应的修复提示。 + <translation>如果 MO 检测到您的安装中存在潜在的问题,那么此按钮将会高亮显示,同时 MO 也会给您相应的修复提示。 !此功能尚未完善! -当前此功能所能提供的项目非常有限</translation> +当前此项所能提供的功能非常有限</translation> </message> <message> - <location filename="mainwindow.ui" line="1250"/> - <location filename="mainwindow.ui" line="1253"/> + <location filename="mainwindow.ui" line="1436"/> + <location filename="mainwindow.ui" line="1439"/> <source>Help</source> - <translation type="unfinished">帮助</translation> + <translation>帮助</translation> </message> <message> - <location filename="mainwindow.ui" line="1256"/> + <location filename="mainwindow.ui" line="1442"/> <source>Ctrl+H</source> - <translation type="unfinished"></translation> + <translation>Ctrl+H</translation> </message> <message> - <location filename="mainwindow.ui" line="1265"/> + <location filename="mainwindow.ui" line="1451"/> <source>Endorse MO</source> - <translation type="unfinished"></translation> + <translation>称赞 MO</translation> </message> <message> - <location filename="mainwindow.ui" line="1268"/> - <location filename="mainwindow.cpp" line="4633"/> + <location filename="mainwindow.ui" line="1454"/> + <location filename="mainwindow.cpp" line="4637"/> <source>Endorse Mod Organizer</source> - <translation type="unfinished"></translation> + <translation>称赞 Mod Organizer</translation> </message> <message> - <location filename="mainwindow.cpp" line="223"/> + <location filename="mainwindow.cpp" line="244"/> <source>Toolbar</source> - <translation type="unfinished"></translation> + <translation>工具栏</translation> </message> <message> - <location filename="mainwindow.cpp" line="224"/> + <location filename="mainwindow.cpp" line="245"/> <source>Desktop</source> - <translation type="unfinished"></translation> + <translation>桌面</translation> </message> <message> - <location filename="mainwindow.cpp" line="225"/> + <location filename="mainwindow.cpp" line="246"/> <source>Start Menu</source> - <translation type="unfinished"></translation> + <translation>开始菜单</translation> </message> <message> - <location filename="mainwindow.cpp" line="505"/> + <location filename="mainwindow.cpp" line="549"/> <source>Problems</source> <translation type="unfinished">问题</translation> </message> <message> - <location filename="mainwindow.cpp" line="506"/> + <location filename="mainwindow.cpp" line="550"/> <source>There are potential problems with your setup</source> - <translation type="unfinished">您的安装中存在潜在的问题</translation> + <translation>您的安装中存在潜在的问题</translation> </message> <message> - <location filename="mainwindow.cpp" line="510"/> + <location filename="mainwindow.cpp" line="562"/> <source>Everything seems to be in order</source> <translation type="unfinished">一切井然有序</translation> </message> <message> - <source><li>NCC not installed. You won't be able to install some scripted mod-installers. Get NCC from <a href="http://skyrim.nexusmods.com/downloads/file.php?id=1334">the MO page on nexus</a></li></source> - <translation type="obsolete"><li>未检测到 NCC,您将不能安装部分包含安装脚本的安装包。您可以从 <a href="http://skyrim.nexusmods.com/downloads/file.php?id=1334"> MO 下载页</a>中下载安装</li></translation> - </message> - <message> - <source><li>NCC version may be incompatible.</li></source> - <translation type="obsolete"><li>NCC 版本可能不兼容。</li></translation> - </message> - <message> - <source><li>dotNet is not installed or outdated. This is required to use NCC. Get it from here: <a href="%1">%1</a></li></source> - <translation type="obsolete"><li>.Net 未安装或版本过旧。想要运行 NCC 您必须先安装 .Net,您可以在以下地址中获取: <a href="%1">%1</a></li></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="568"/> + <location filename="mainwindow.cpp" line="619"/> <source>Help on UI</source> <translation type="unfinished">界面帮助</translation> </message> <message> - <location filename="mainwindow.cpp" line="572"/> + <location filename="mainwindow.cpp" line="623"/> <source>Documentation Wiki</source> <translation type="unfinished">说明文档 (维基)</translation> </message> <message> - <location filename="mainwindow.cpp" line="576"/> + <location filename="mainwindow.cpp" line="627"/> <source>Report Issue</source> - <translation type="unfinished">报告问题</translation> + <translation>报告问题</translation> </message> <message> - <location filename="mainwindow.cpp" line="580"/> + <location filename="mainwindow.cpp" line="631"/> <source>Tutorials</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>load order could not be saved</source> - <translation type="obsolete">无法保存加载顺序</translation> - </message> - <message> - <location filename="mainwindow.cpp" line="705"/> - <source>failed to save load order: %1</source> - <translation type="unfinished">无法保存加载顺序: %1</translation> + <translation>教程</translation> </message> <message> <source>failed to save archives order, do you have write access to "%1"?</source> <translation type="obsolete">无法保存档案顺序,您确定您有权限更改 "%1"?</translation> </message> <message> - <location filename="mainwindow.cpp" line="619"/> - <source>About</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="620"/> - <source>About Qt</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="765"/> + <source>failed to save load order: %1</source> + <translation type="unfinished">无法保存加载顺序: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="717"/> + <location filename="mainwindow.cpp" line="777"/> <source>Name</source> - <translation type="unfinished">名称</translation> + <translation>名称</translation> </message> <message> - <location filename="mainwindow.cpp" line="718"/> + <location filename="mainwindow.cpp" line="778"/> <source>Please enter a name for the new profile</source> - <translation type="unfinished"></translation> + <translation>请为新配置文件输入一个名称</translation> </message> <message> - <location filename="mainwindow.cpp" line="726"/> + <location filename="mainwindow.cpp" line="786"/> <source>failed to create profile: %1</source> <translation type="unfinished">无法创建配置文件: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="769"/> + <location filename="mainwindow.cpp" line="829"/> <source>Show tutorial?</source> - <translation type="unfinished"></translation> + <translation>显示教程?</translation> </message> <message> - <location filename="mainwindow.cpp" line="770"/> + <location filename="mainwindow.cpp" line="830"/> <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> + <translation>你正在第一次使用 Mod Organizer。是否希望显示教程以了解它的基本特性?如果选择否你也可以从“帮助”菜单中开始教程。</translation> </message> <message> - <location filename="mainwindow.cpp" line="801"/> + <location filename="mainwindow.cpp" line="861"/> <source>Downloads in progress</source> - <translation type="unfinished">正在下载</translation> + <translation>正在下载</translation> </message> <message> - <location filename="mainwindow.cpp" line="802"/> + <location filename="mainwindow.cpp" line="862"/> <source>There are still downloads in progress, do you really want to quit?</source> - <translation type="unfinished">仍有正在进行中的下载,您确定要退出吗?</translation> + <translation>仍有正在进行中的下载,您确定要退出吗?</translation> </message> <message> - <location filename="mainwindow.cpp" line="848"/> + <location filename="mainwindow.cpp" line="916"/> <source>failed to read savegame: %1</source> <translation type="unfinished">无法读取存档: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="972"/> + <location filename="mainwindow.cpp" line="1040"/> <source>Plugin "%1" failed: %2</source> - <translation type="unfinished"></translation> + <translation type="unfinished">插件 "%1" 失败: %2</translation> </message> <message> - <location filename="mainwindow.cpp" line="1085"/> + <location filename="mainwindow.cpp" line="1042"/> + <source>Plugin "%1" failed</source> + <translation type="unfinished">插件 "%1" 失败</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1211"/> + <source>failed to init plugin %1: %2</source> + <translation type="unfinished">插件初始化失败 %1: %2</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1249"/> <source>Plugin error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1086"/> + <location filename="mainwindow.cpp" line="1250"/> <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="1270"/> + <location filename="mainwindow.cpp" line="1309"/> <source>Failed to start "%1"</source> <translation type="unfinished">无法启动 "%1"</translation> </message> <message> - <location filename="mainwindow.cpp" line="1272"/> + <location filename="mainwindow.cpp" line="1311"/> <source>Waiting</source> <translation type="unfinished">稍等</translation> </message> <message> - <location filename="mainwindow.cpp" line="1272"/> + <location filename="mainwindow.cpp" line="1311"/> <source>Please press OK once you're logged into steam.</source> - <translation type="unfinished">当您登录 Steam 时请点击确定。</translation> + <translation>当您登录 Steam 时请点击确定。</translation> </message> <message> <source>"%1" not found</source> <translation type="obsolete">"%1" 未找到</translation> </message> <message> - <location filename="mainwindow.cpp" line="1298"/> + <location filename="mainwindow.cpp" line="1337"/> <source>Start Steam?</source> - <translation type="unfinished">启动 Steam?</translation> + <translation>启动 Steam?</translation> </message> <message> - <location filename="mainwindow.cpp" line="1299"/> + <location filename="mainwindow.cpp" line="1338"/> <source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source> - <translation type="unfinished">想要正确地启动遊戲,Steam 必须处于运行状态。MO 要立即启动 Steam 吗?</translation> + <translation>想要正确地启动游戏,Steam 必须处于运行状态。需要MO尝试启动 Steam 吗?</translation> </message> <message> <location filename="mainwindow.cpp" line="1526"/> @@ -2063,783 +1974,892 @@ Right now this has very limited functionality</source> <message> <location filename="mainwindow.cpp" line="1537"/> <source>No conflict</source> - <translation type="unfinished">没有冲突</translation> + <translation>没有冲突</translation> </message> <message> - <location filename="mainwindow.cpp" line="1692"/> + <location filename="mainwindow.cpp" line="1706"/> <source><Edit...></source> <translation type="unfinished"><编辑...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1929"/> + <location filename="mainwindow.cpp" line="1976"/> <source>This bsa is enabled in the ini file so it may be required!</source> - <translation type="unfinished">该 BSA 已在 Ini 文件中启用,因此它可能是必需的。</translation> + <translation>该 BSA 已在 ini 文件中启用,因此它可能是必需的。</translation> </message> <message> - <location filename="mainwindow.cpp" line="1936"/> <source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source> - <translation type="unfinished">此档案还是会被加载,因为存在同名插件。不过它所包含的的文件不会遵循安装顺序!</translation> + <translation type="obsolete">此档案还是会被加载,因为存在同名插件。不过它所包含的的文件不会遵循安装顺序!</translation> </message> <message> - <location filename="mainwindow.cpp" line="1991"/> + <location filename="mainwindow.cpp" line="2038"/> <source>Activating Network Proxy</source> - <translation type="unfinished"></translation> + <translation>激活网络代理</translation> </message> <message> - <location filename="mainwindow.cpp" line="2122"/> - <location filename="mainwindow.cpp" line="4248"/> + <location filename="mainwindow.cpp" line="2269"/> + <location filename="mainwindow.cpp" line="4258"/> <source>Installation successful</source> - <translation type="unfinished">安装成功</translation> + <translation>安装成功</translation> </message> <message> - <location filename="mainwindow.cpp" line="2133"/> - <location filename="mainwindow.cpp" line="4261"/> + <location filename="mainwindow.cpp" line="2280"/> + <location filename="mainwindow.cpp" line="4270"/> <source>Configure Mod</source> - <translation type="unfinished">配置 Mod</translation> + <translation>配置 Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2134"/> - <location filename="mainwindow.cpp" line="4262"/> + <location filename="mainwindow.cpp" line="2281"/> + <location filename="mainwindow.cpp" line="4271"/> <source>This mod contains ini tweaks. Do you want to configure them now?</source> - <translation type="unfinished">此 Mod 中包含 Ini 设定文件,您想现在就对它们进行配置吗?</translation> + <translation>此 Mod 中包含 ini 设定文件,您想现在就对它们进行配置吗?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2140"/> - <location filename="mainwindow.cpp" line="4268"/> + <location filename="mainwindow.cpp" line="2288"/> + <location filename="mainwindow.cpp" line="4278"/> <source>mod "%1" not found</source> <translation type="unfinished">Mod "%1" 未找到</translation> </message> <message> - <location filename="mainwindow.cpp" line="2143"/> - <location filename="mainwindow.cpp" line="4274"/> + <location filename="mainwindow.cpp" line="2291"/> + <location filename="mainwindow.cpp" line="4284"/> <source>Installation cancelled</source> - <translation type="unfinished">安装已取消</translation> + <translation>安装已取消</translation> </message> <message> - <location filename="mainwindow.cpp" line="2143"/> - <location filename="mainwindow.cpp" line="4274"/> + <location filename="mainwindow.cpp" line="2291"/> + <location filename="mainwindow.cpp" line="4284"/> <source>The mod was not installed completely.</source> - <translation type="unfinished">Mod 没有完全安装。</translation> + <translation>该模组没有完全安装。</translation> </message> <message> - <location filename="mainwindow.cpp" line="2292"/> + <location filename="mainwindow.cpp" line="2196"/> <source>Some plugins could not be loaded</source> - <translation type="unfinished"></translation> + <translation>一些插件无法载入</translation> </message> <message> - <location filename="mainwindow.cpp" line="2295"/> + <location filename="mainwindow.cpp" line="2199"/> <source>Too many esps and esms enabled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2298"/> - <location filename="mainwindow.cpp" line="2319"/> + <location filename="mainwindow.cpp" line="2202"/> + <location filename="mainwindow.cpp" line="2223"/> <source>Description missing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2315"/> + <location filename="mainwindow.cpp" line="2211"/> + <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="2219"/> <source>The game doesn't allow more than 255 active plugins (including the official ones) to be loaded. You have to disable some unused plugins or merge some plugins into one. You can find a guide here: <a href="http://wiki.step-project.com/Guide:Merging_Plugins">http://wiki.step-project.com/Guide:Merging_Plugins</a></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2341"/> + <location filename="mainwindow.cpp" line="2245"/> <source>Choose Mod</source> - <translation type="unfinished">选择 Mod</translation> + <translation>选择模组</translation> </message> <message> - <location filename="mainwindow.cpp" line="2342"/> + <location filename="mainwindow.cpp" line="2246"/> <source>Mod Archive</source> <translation type="unfinished">Mod 压缩包</translation> </message> <message> - <location filename="mainwindow.cpp" line="2495"/> + <location filename="mainwindow.cpp" line="2502"/> <source>Start Tutorial?</source> - <translation type="unfinished"></translation> + <translation>开始教程?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2496"/> + <location filename="mainwindow.cpp" line="2503"/> <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> + <translation>即将开始帮助教程。因为技术原因可能无法随时中断。是否继续?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2651"/> - <location filename="mainwindow.cpp" line="4171"/> + <location filename="mainwindow.cpp" line="2647"/> + <location filename="mainwindow.cpp" line="4179"/> <source>Download started</source> - <translation type="unfinished">开始下载</translation> + <translation>开始下载</translation> </message> <message> - <location filename="mainwindow.cpp" line="2682"/> + <location filename="mainwindow.cpp" line="2708"/> <source>failed to update mod list: %1</source> <translation type="unfinished">无法更新 Mod 列表: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2711"/> + <location filename="mainwindow.cpp" line="2738"/> <source>failed to spawn notepad.exe: %1</source> <translation type="unfinished">无法生成 notepad.exe: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2752"/> + <location filename="mainwindow.cpp" line="2775"/> <source>failed to open %1</source> <translation type="unfinished">无法打开 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2830"/> + <location filename="mainwindow.cpp" line="2850"/> <source>failed to change origin name: %1</source> <translation type="unfinished">无法更改原始文件名: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2860"/> - <source>failed to move "%1" from mod "%2" to "%3": %4</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2997"/> - <source>Multiple esps activated, please check that they don't conflict.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3345"/> - <location filename="mainwindow.cpp" line="3792"/> - <source>Create Mod...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3355"/> - <source>A mod with this name already exists</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3613"/> - <source>Continue?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3614"/> - <source>The versioning scheme decides which version is considered newer than another. -This function will guess the versioning scheme under the assumption that the installed version is outdated.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3634"/> - <location filename="mainwindow.cpp" line="4516"/> - <source>Sorry</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3635"/> - <source>I don't know a versioning scheme where %1 is newer than %2.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3883"/> - <source><All></source> - <translation type="unfinished"><全部></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2909"/> + <location filename="mainwindow.cpp" line="2929"/> <source><Checked></source> <translation type="unfinished"><已勾选></translation> </message> <message> - <location filename="mainwindow.cpp" line="974"/> - <source>Plugin "%1" failed</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1047"/> - <source>failed to init plugin %1: %2</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2307"/> - <source>The following plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2910"/> + <location filename="mainwindow.cpp" line="2930"/> <source><Unchecked></source> <translation type="unfinished"><未勾选></translation> </message> <message> - <location filename="mainwindow.cpp" line="2911"/> + <location filename="mainwindow.cpp" line="2931"/> <source><Update></source> <translation type="unfinished"><有更新></translation> </message> <message> - <location filename="mainwindow.cpp" line="2912"/> + <location filename="mainwindow.cpp" line="2934"/> <source><No category></source> <translation type="unfinished"><无类别></translation> </message> <message> - <location filename="mainwindow.cpp" line="2913"/> + <location filename="mainwindow.cpp" line="2935"/> <source><Conflicted></source> - <translation type="unfinished"></translation> + <translation type="unfinished"><有冲突></translation> </message> <message> - <location filename="mainwindow.cpp" line="2914"/> + <location filename="mainwindow.cpp" line="2936"/> <source><Not Endorsed></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2947"/> + <location filename="mainwindow.cpp" line="2969"/> <source>failed to rename mod: %1</source> <translation type="unfinished">无法重命名 Mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2960"/> + <location filename="mainwindow.cpp" line="2982"/> <source>Overwrite?</source> - <translation type="unfinished"></translation> + <translation>覆盖</translation> </message> <message> - <location filename="mainwindow.cpp" line="2961"/> + <location filename="mainwindow.cpp" line="2983"/> <source>This will replace the existing mod "%1". Continue?</source> - <translation type="unfinished"></translation> + <translation type="unfinished">这将会覆盖已存在的mod "%1"。是否继续?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2964"/> + <location filename="mainwindow.cpp" line="2986"/> <source>failed to remove mod "%1"</source> - <translation type="unfinished"></translation> + <translation type="unfinished">无法移动 Mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2968"/> - <location filename="mainwindow.cpp" line="4446"/> - <location filename="mainwindow.cpp" line="4470"/> + <location filename="mainwindow.cpp" line="2990"/> + <location filename="mainwindow.cpp" line="4456"/> + <location filename="mainwindow.cpp" line="4480"/> <source>failed to rename "%1" to "%2"</source> - <translation type="unfinished"></translation> + <translation>重命名 "%1 "为 "%2" 时出错</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3015"/> + <source>Multiple esps activated, please check that they don't conflict.</source> + <translation>多个esp已激活,请检查以确保不冲突。</translation> </message> <message> - <location filename="mainwindow.cpp" line="3024"/> - <location filename="mainwindow.cpp" line="3687"/> - <location filename="mainwindow.cpp" line="3695"/> - <location filename="mainwindow.cpp" line="3902"/> + <location filename="mainwindow.cpp" line="3043"/> + <location filename="mainwindow.cpp" line="3662"/> + <location filename="mainwindow.cpp" line="3670"/> + <location filename="mainwindow.cpp" line="3890"/> <source>Confirm</source> - <translation type="unfinished">确认</translation> + <translation>确认</translation> </message> <message> - <location filename="mainwindow.cpp" line="3025"/> + <location filename="mainwindow.cpp" line="3044"/> <source>Remove the following mods?<br><ul>%1</ul></source> - <translation type="unfinished"></translation> + <translation type="unfinished">是否删除下列mod?<br><ul>%1</ul></translation> </message> <message> - <location filename="mainwindow.cpp" line="3036"/> + <location filename="mainwindow.cpp" line="3055"/> <source>failed to remove mod: %1</source> <translation type="unfinished">无法移动 Mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3071"/> - <location filename="mainwindow.cpp" line="3074"/> + <location filename="mainwindow.cpp" line="3090"/> + <location filename="mainwindow.cpp" line="3093"/> <source>Failed</source> <translation type="unfinished">失败</translation> </message> <message> - <location filename="mainwindow.cpp" line="3071"/> + <location filename="mainwindow.cpp" line="3090"/> <source>Installation file no longer exists</source> <translation type="unfinished">安装文件不复存在</translation> </message> <message> - <location filename="mainwindow.cpp" line="3075"/> + <location filename="mainwindow.cpp" line="3094"/> <source>Mods installed with old versions of MO can't be reinstalled in this way.</source> <translation type="unfinished">旧版 MO 安装的 Mod 无法使用此方法重新安装。</translation> </message> <message> - <location filename="mainwindow.cpp" line="3090"/> - <location filename="mainwindow.cpp" line="3117"/> + <location filename="mainwindow.cpp" line="3125"/> + <location filename="mainwindow.cpp" line="3152"/> <source>You need to be logged in with Nexus to endorse</source> - <translation type="unfinished"></translation> + <translation>你必须登录 Nexus 才能点“称赞”</translation> </message> <message> - <location filename="mainwindow.cpp" line="3249"/> - <location filename="mainwindow.cpp" line="4882"/> + <location filename="mainwindow.cpp" line="4871"/> <source>Extract BSA</source> - <translation type="unfinished">解压 BSA</translation> + <translation>解压 BSA</translation> </message> <message> - <location filename="mainwindow.cpp" line="3250"/> <source>This mod contains at least one BSA. Do you want to unpack it? (This removes the BSA after completion. If you don't know about BSAs, just select no)</source> - <translation type="unfinished">此 Mod 中至少包含一个 BSA。您确定要解压吗? + <translation type="obsolete">此 Mod 中至少包含一个 BSA。您确定要解压吗? (解压完成后,BSA 文件将会被删除。如果您不了解 BSA 的话,请选择“否”)</translation> </message> <message> - <location filename="mainwindow.cpp" line="3259"/> - <location filename="mainwindow.cpp" line="4839"/> - <location filename="mainwindow.cpp" line="4890"/> + <location filename="mainwindow.cpp" line="4828"/> + <location filename="mainwindow.cpp" line="4879"/> <source>failed to read %1: %2</source> <translation type="unfinished">无法读取 %1: %2</translation> </message> <message> - <location filename="mainwindow.cpp" line="3272"/> - <location filename="mainwindow.cpp" line="4901"/> + <location filename="mainwindow.cpp" line="4890"/> <source>This archive contains invalid hashes. Some files may be broken.</source> <translation type="unfinished">压缩包 Hash 值错误。部分文件可能已经损坏。</translation> </message> <message> - <location filename="mainwindow.cpp" line="3306"/> + <location filename="mainwindow.cpp" line="3298"/> <source>Nexus ID for this Mod is unknown</source> - <translation type="unfinished">此 Mod 的N网 ID 未知</translation> + <translation>此模组的Nexus ID未知</translation> </message> <message> - <source>Priority</source> - <translation type="obsolete">优先级</translation> + <location filename="mainwindow.cpp" line="670"/> + <source>About</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="671"/> + <source>About Qt</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1085"/> + <source>Download?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1086"/> + <source>A download has been started but no installed page plugin recognizes it. +If you download anyway no information (i.e. version) will be associated with the download. +Continue?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1127"/> + <source>Browse Mod Page</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1323"/> + <source>Executable "%1" not found</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1803"/> + <source>Failed to refresh list of esps: %1</source> + <translation type="unfinished"></translation> </message> <message> - <source>Choose Priority</source> - <translation type="obsolete">选择优先级</translation> + <location filename="mainwindow.cpp" line="2143"/> + <location filename="mainwindow.cpp" line="2150"/> + <source>Failed to write settings</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3687"/> + <location filename="mainwindow.cpp" line="2144"/> + <location filename="mainwindow.cpp" line="2151"/> + <source>An error occured trying to write back MO settings: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2147"/> + <source>File is write protected</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2148"/> + <source>Invalid file format (probably a bug)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2149"/> + <source>Unknown error %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2880"/> + <source>failed to move "%1" from mod "%2" to "%3": %4</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2932"/> + <source><Managed by MO></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2933"/> + <source><Managed outside MO></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3109"/> + <source>You need to be logged in with Nexus to resume a download</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3337"/> + <location filename="mainwindow.cpp" line="3777"/> + <source>Create Mod...</source> + <translation>创建Mod...</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3338"/> + <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="3347"/> + <source>A mod with this name already exists</source> + <translation>同名模组已存在。</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3588"/> + <source>Continue?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3589"/> + <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="3609"/> + <location filename="mainwindow.cpp" line="4526"/> + <source>Sorry</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3610"/> + <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="3662"/> <source>Really enable all visible mods?</source> - <translation type="unfinished">确定要启用全部可见的 Mod 吗?</translation> + <translation>确定要启用全部可见的模组吗?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3695"/> + <location filename="mainwindow.cpp" line="3670"/> <source>Really disable all visible mods?</source> - <translation type="unfinished">确定要禁用全部可见的 Mod 吗?</translation> + <translation>确定要禁用全部可见的模组吗?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3703"/> + <location filename="mainwindow.cpp" line="3678"/> <source>Choose what to export</source> - <translation type="unfinished"></translation> + <translation>选择要导出的内容</translation> </message> <message> - <location filename="mainwindow.cpp" line="3705"/> + <location filename="mainwindow.cpp" line="3680"/> <source>Everything</source> - <translation type="unfinished"></translation> + <translation type="unfinished">全部</translation> </message> <message> - <location filename="mainwindow.cpp" line="3705"/> + <location filename="mainwindow.cpp" line="3680"/> <source>All installed mods are included in the list</source> - <translation type="unfinished"></translation> + <translation type="unfinished">所有包含在列表的已安装mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="3706"/> + <location filename="mainwindow.cpp" line="3681"/> <source>Active Mods</source> - <translation type="unfinished"></translation> + <translation>激活模组</translation> </message> <message> - <location filename="mainwindow.cpp" line="3706"/> + <location filename="mainwindow.cpp" line="3681"/> <source>Only active (checked) mods from your current profile are included</source> - <translation type="unfinished"></translation> + <translation>仅包含当前配置文件中已激活(打勾)的mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="3707"/> + <location filename="mainwindow.cpp" line="3682"/> <source>Visible</source> - <translation type="unfinished"></translation> + <translation type="unfinished">可见的</translation> </message> <message> - <location filename="mainwindow.cpp" line="3707"/> + <location filename="mainwindow.cpp" line="3682"/> <source>All mods visible in the mod list are included</source> - <translation type="unfinished"></translation> + <translation type="unfinished">包含列表中所有可见的mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="3750"/> + <location filename="mainwindow.cpp" line="3725"/> <source>export failed: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished">导出失败: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3774"/> + <location filename="mainwindow.cpp" line="3742"/> <source>Install Mod...</source> - <translation type="unfinished">安装 Mod...</translation> + <translation>安装模组...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3776"/> + <location filename="mainwindow.cpp" line="3744"/> <source>Enable all visible</source> - <translation type="unfinished">启用所有可见项目</translation> + <translation>启用所有可见项目</translation> </message> <message> - <location filename="mainwindow.cpp" line="3777"/> + <location filename="mainwindow.cpp" line="3745"/> <source>Disable all visible</source> - <translation type="unfinished">禁用所有可见项目</translation> + <translation>禁用所有可见项目</translation> </message> <message> - <location filename="mainwindow.cpp" line="3779"/> + <location filename="mainwindow.cpp" line="3747"/> <source>Check all for update</source> - <translation type="unfinished">检查更新</translation> + <translation>检查所有更新</translation> </message> <message> - <location filename="mainwindow.cpp" line="3783"/> + <location filename="mainwindow.cpp" line="3751"/> <source>Export to csv...</source> + <translation>导出为 CSV...</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3770"/> + <source>All Mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3791"/> + <location filename="mainwindow.cpp" line="3776"/> <source>Sync to Mods...</source> <translation type="unfinished">同步到 Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3795"/> + <location filename="mainwindow.cpp" line="3780"/> <source>Restore Backup</source> - <translation type="unfinished"></translation> + <translation>还原备份</translation> </message> <message> - <location filename="mainwindow.cpp" line="3796"/> + <location filename="mainwindow.cpp" line="3781"/> <source>Remove Backup...</source> + <translation type="unfinished">还原备份...</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3785"/> + <source>Add/Remove Categories</source> <translation type="unfinished"></translation> </message> <message> - <source>Set Category</source> - <translation type="obsolete">设置类别</translation> + <location filename="mainwindow.cpp" line="3790"/> + <source>Replace Categories</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3808"/> + <location filename="mainwindow.cpp" line="3795"/> <source>Primary Category</source> - <translation type="unfinished"></translation> + <translation>主分类</translation> </message> <message> - <location filename="mainwindow.cpp" line="3815"/> + <location filename="mainwindow.cpp" line="3802"/> <source>Change versioning scheme</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3819"/> + <location filename="mainwindow.cpp" line="3806"/> <source>Un-ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3821"/> + <location filename="mainwindow.cpp" line="3808"/> <source>Ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3826"/> + <location filename="mainwindow.cpp" line="3813"/> <source>Rename Mod...</source> - <translation type="unfinished">重命名...</translation> + <translation>重命名模组...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3827"/> + <location filename="mainwindow.cpp" line="3814"/> <source>Remove Mod...</source> - <translation type="unfinished">移除 Mod...</translation> + <translation>移除模组...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3828"/> + <location filename="mainwindow.cpp" line="3815"/> <source>Reinstall Mod</source> - <translation type="unfinished">重新安装 Mod</translation> + <translation>重新安装模组</translation> </message> <message> - <location filename="mainwindow.cpp" line="3831"/> + <location filename="mainwindow.cpp" line="3818"/> <source>Un-Endorse</source> - <translation type="unfinished"></translation> + <translation>取消称赞</translation> </message> <message> - <location filename="mainwindow.cpp" line="3834"/> - <location filename="mainwindow.cpp" line="3838"/> + <location filename="mainwindow.cpp" line="3821"/> + <location filename="mainwindow.cpp" line="3825"/> <source>Endorse</source> - <translation type="unfinished"></translation> + <translation>称赞</translation> </message> <message> - <location filename="mainwindow.cpp" line="3835"/> + <location filename="mainwindow.cpp" line="3822"/> <source>Won't endorse</source> - <translation type="unfinished"></translation> + <translation>不想称赞</translation> </message> <message> - <location filename="mainwindow.cpp" line="3841"/> + <location filename="mainwindow.cpp" line="3828"/> <source>Endorsement state unknown</source> - <translation type="unfinished"></translation> + <translation>称赞状态不明</translation> </message> <message> - <location filename="mainwindow.cpp" line="3848"/> + <location filename="mainwindow.cpp" line="3835"/> <source>Ignore missing data</source> - <translation type="unfinished"></translation> + <translation>忽略丢失的数据</translation> </message> <message> - <location filename="mainwindow.cpp" line="3851"/> + <location filename="mainwindow.cpp" line="3838"/> <source>Visit on Nexus</source> - <translation type="unfinished">在N网上浏览</translation> + <translation>在Nexus上浏览</translation> </message> <message> - <location filename="mainwindow.cpp" line="3852"/> + <location filename="mainwindow.cpp" line="3839"/> <source>Open in explorer</source> - <translation type="unfinished">在资源管理器中打开</translation> + <translation>在资源管理器中打开</translation> </message> <message> - <location filename="mainwindow.cpp" line="3855"/> + <location filename="mainwindow.cpp" line="3843"/> <source>Information...</source> <translation type="unfinished">信息...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3861"/> - <location filename="mainwindow.cpp" line="5086"/> + <location filename="mainwindow.cpp" line="3850"/> + <location filename="mainwindow.cpp" line="5089"/> <source>Exception: </source> <translation type="unfinished">例外: </translation> </message> <message> - <location filename="mainwindow.cpp" line="3863"/> - <location filename="mainwindow.cpp" line="5088"/> + <location filename="mainwindow.cpp" line="3852"/> + <location filename="mainwindow.cpp" line="5091"/> <source>Unknown exception</source> <translation type="unfinished">未知的例外</translation> </message> <message> - <location filename="mainwindow.cpp" line="3885"/> + <location filename="mainwindow.cpp" line="3871"/> + <source><All></source> + <translation type="unfinished"><全部></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3873"/> <source><Multiple></source> - <translation type="unfinished"></translation> + <translation type="unfinished">XX</translation> </message> <message> - <location filename="mainwindow.cpp" line="3902"/> + <location filename="mainwindow.cpp" line="3890"/> <source>Really delete "%1"?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4013"/> + <location filename="mainwindow.cpp" line="4001"/> <source>Fix Mods...</source> - <translation type="unfinished">修复 Mod...</translation> + <translation>修复模组...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4014"/> + <location filename="mainwindow.cpp" line="4002"/> <source>Delete</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4038"/> - <location filename="mainwindow.cpp" line="4069"/> + <location filename="mainwindow.cpp" line="4027"/> + <location filename="mainwindow.cpp" line="4060"/> <source>failed to remove %1</source> <translation type="unfinished">无法删除 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4053"/> - <location filename="mainwindow.cpp" line="4084"/> + <location filename="mainwindow.cpp" line="4044"/> + <location filename="mainwindow.cpp" line="4076"/> <source>failed to create %1</source> <translation type="unfinished">无法创建 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4107"/> + <location filename="mainwindow.cpp" line="4100"/> <source>Can't change download directory while downloads are in progress!</source> - <translation type="unfinished">下载文件时不能修改下载目录!</translation> + <translation>下载文件时不能修改下载目录!</translation> </message> <message> - <location filename="mainwindow.cpp" line="4174"/> + <location filename="mainwindow.cpp" line="4182"/> <source>Download failed</source> - <translation type="unfinished">下载失败</translation> + <translation>下载失败</translation> </message> <message> - <location filename="mainwindow.cpp" line="4323"/> + <location filename="mainwindow.cpp" line="4333"/> <source>failed to write to file %1</source> <translation type="unfinished">无法写入文件 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4329"/> + <location filename="mainwindow.cpp" line="4339"/> <source>%1 written</source> <translation type="unfinished">已写入 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4368"/> + <location filename="mainwindow.cpp" line="4378"/> <source>Select binary</source> <translation type="unfinished">选择可执行文件</translation> </message> <message> - <location filename="mainwindow.cpp" line="4368"/> + <location filename="mainwindow.cpp" line="4378"/> <source>Binary</source> - <translation type="unfinished"></translation> + <translation>程序</translation> </message> <message> - <location filename="mainwindow.cpp" line="4394"/> + <location filename="mainwindow.cpp" line="4404"/> <source>Enter Name</source> - <translation type="unfinished">输入名称</translation> + <translation>输入名称</translation> </message> <message> - <location filename="mainwindow.cpp" line="4395"/> + <location filename="mainwindow.cpp" line="4405"/> <source>Please enter a name for the executable</source> - <translation type="unfinished">请为程序输入一个名称</translation> + <translation>请为该可执行程序输入一个名称</translation> </message> <message> - <location filename="mainwindow.cpp" line="4406"/> + <location filename="mainwindow.cpp" line="4416"/> <source>Not an executable</source> <translation type="unfinished">不是可执行程序</translation> </message> <message> - <location filename="mainwindow.cpp" line="4406"/> + <location filename="mainwindow.cpp" line="4416"/> <source>This is not a recognized executable.</source> <translation type="unfinished">无法识别的可执行文件</translation> </message> <message> - <location filename="mainwindow.cpp" line="4431"/> - <location filename="mainwindow.cpp" line="4456"/> + <location filename="mainwindow.cpp" line="4441"/> + <location filename="mainwindow.cpp" line="4466"/> <source>Replace file?</source> <translation type="unfinished">替换文件?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4431"/> + <location filename="mainwindow.cpp" line="4441"/> <source>There already is a hidden version of this file. Replace it?</source> - <translation type="unfinished">已存在同名文件,但该文件被隐藏了。确定要覆盖吗?</translation> + <translation>已存在同名文件,但该文件被隐藏了。确定要覆盖吗?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4434"/> - <location filename="mainwindow.cpp" line="4459"/> + <location filename="mainwindow.cpp" line="4444"/> + <location filename="mainwindow.cpp" line="4469"/> <source>File operation failed</source> - <translation type="unfinished">文件操作错误</translation> + <translation>文件操作错误</translation> </message> <message> - <location filename="mainwindow.cpp" line="4434"/> - <location filename="mainwindow.cpp" line="4459"/> + <location filename="mainwindow.cpp" line="4444"/> + <location filename="mainwindow.cpp" line="4469"/> <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> - <translation type="unfinished"></translation> + <translation>无法移除 "%1"。也许您需要足够的文件权限?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4456"/> + <location filename="mainwindow.cpp" line="4466"/> <source>There already is a visible version of this file. Replace it?</source> - <translation type="unfinished"></translation> + <translation>已存在同名文件。确定要覆盖吗?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4489"/> + <location filename="mainwindow.cpp" line="4499"/> <source>file not found: %1</source> - <translation type="unfinished">文件未找到: %1</translation> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4502"/> + <location filename="mainwindow.cpp" line="4512"/> <source>failed to generate preview for %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4516"/> + <location filename="mainwindow.cpp" line="4526"/> <source>Sorry, can't preview anything. This function currently does not support extracting from bsas.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4547"/> + <location filename="mainwindow.cpp" line="4557"/> <source>Update available</source> - <translation type="unfinished">更新可用</translation> + <translation>更新可用</translation> </message> <message> - <location filename="mainwindow.cpp" line="4584"/> + <location filename="mainwindow.cpp" line="4594"/> <source>Open/Execute</source> - <translation type="unfinished">打开/执行</translation> + <translation>打开/执行</translation> </message> <message> - <location filename="mainwindow.cpp" line="4585"/> + <location filename="mainwindow.cpp" line="4595"/> <source>Add as Executable</source> - <translation type="unfinished">添加为可执行文件</translation> + <translation>添加为可执行文件</translation> </message> <message> - <location filename="mainwindow.cpp" line="4589"/> + <location filename="mainwindow.cpp" line="4599"/> <source>Preview</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4595"/> + <location filename="mainwindow.cpp" line="4605"/> <source>Un-Hide</source> - <translation type="unfinished">取消隐藏</translation> + <translation>取消隐藏</translation> </message> <message> - <location filename="mainwindow.cpp" line="4597"/> + <location filename="mainwindow.cpp" line="4607"/> <source>Hide</source> - <translation type="unfinished">隐藏</translation> + <translation>隐藏</translation> </message> <message> - <location filename="mainwindow.cpp" line="4603"/> + <location filename="mainwindow.cpp" line="4613"/> <source>Write To File...</source> <translation type="unfinished">写入文件...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4634"/> + <location filename="mainwindow.cpp" line="4638"/> <source>Do you want to endorse Mod Organizer on %1 now?</source> - <translation type="unfinished"></translation> + <translation type="unfinished">是否现在就在 %1 点赞支持 Mod Organizer?</translation> </message> <message> - <location filename="mainwindow.cpp" line="5047"/> - <source>Remove</source> - <translation type="unfinished">移除</translation> + <location filename="mainwindow.cpp" line="4757"/> + <source>Request to Nexus failed: %1</source> + <translation type="unfinished">发往 Nexus 的请求失败: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="5077"/> - <source>Unlock load order</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="4764"/> + <location filename="mainwindow.cpp" line="4782"/> + <source>login successful</source> + <translation>登录成功</translation> </message> <message> - <location filename="mainwindow.cpp" line="5080"/> - <source>Lock load order</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="4791"/> + <source>login failed: %1. Trying to download anyway</source> + <translation type="unfinished">登录失败: %1,请尝试使用别的方法下载</translation> </message> <message> - <location filename="mainwindow.cpp" line="5149"/> - <source>BOSS working</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="4797"/> + <source>login failed: %1</source> + <translation>无法登录: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="5157"/> - <source>failed to run boss: %1</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="4807"/> + <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="4770"/> - <source>Request to Nexus failed: %1</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="4840"/> + <source>Error</source> + <translation>错误</translation> </message> <message> - <location filename="mainwindow.cpp" line="1284"/> - <source>Executable "%1" not found</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="4840"/> + <source>failed to extract %1 (errorcode %2)</source> + <translation type="unfinished">无法解压 %1 (错误代码 %2)</translation> </message> <message> - <location filename="mainwindow.cpp" line="1789"/> - <source>Failed to refresh list of esps: %1</source> + <location filename="mainwindow.cpp" line="4935"/> + <source>Extract...</source> + <translation>解压...</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4997"/> + <source>Edit Categories...</source> + <translation>编辑类别...</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4998"/> + <source>Deselect filter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3346"/> - <source>This will move all files from overwrite into a new, regular mod. -Please enter a name:</source> + <location filename="mainwindow.cpp" line="5049"/> + <source>Remove</source> + <translation>移除</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5060"/> + <source>Enable all</source> + <translation>全部启用</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5061"/> + <source>Disable all</source> + <translation>全部禁用</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5080"/> + <source>Unlock load order</source> + <translation>解锁加载顺序</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5083"/> + <source>Lock load order</source> + <translation>锁定加载顺序</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5212"/> + <source>depends on missing "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3798"/> - <source>Add/Remove Categories</source> + <location filename="mainwindow.cpp" line="5232"/> + <source>No profile set</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3803"/> - <source>Replace Categories</source> + <location filename="mainwindow.cpp" line="5280"/> + <source>LOOT working</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4777"/> - <location filename="mainwindow.cpp" line="4794"/> - <source>login successful</source> - <translation type="unfinished">登录成功</translation> + <location filename="mainwindow.cpp" line="5326"/> + <source>loot failed. Exit code was: %1</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4803"/> - <source>login failed: %1. Trying to download anyway</source> - <translation type="unfinished">登录失败: %1,请尝试使用别的方法下载</translation> + <location filename="mainwindow.cpp" line="5333"/> + <source>failed to run loot: %1</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4809"/> - <source>login failed: %1</source> - <translation type="unfinished">无法登录: %1</translation> + <location filename="mainwindow.cpp" line="5336"/> + <source>Errors occured</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4818"/> - <source>login failed: %1. You need to log-in with Nexus to update MO.</source> - <translation type="unfinished">登录失败: %1。您需要登录到N网才能更新 MO</translation> + <location filename="mainwindow.cpp" line="5384"/> + <source>Backup of load order created</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4851"/> - <source>Error</source> - <translation type="unfinished">错误</translation> + <location filename="mainwindow.cpp" line="5394"/> + <source>Choose backup to restore</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4851"/> - <source>failed to extract %1 (errorcode %2)</source> - <translation type="unfinished">无法解压 %1 (错误代码 %2)</translation> + <location filename="mainwindow.cpp" line="5407"/> + <source>No Backups</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4946"/> - <source>Extract...</source> - <translation type="unfinished">解压...</translation> + <location filename="mainwindow.cpp" line="5407"/> + <source>There are no backups to restore</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5002"/> - <source>Edit Categories...</source> - <translation type="unfinished">编辑类别...</translation> + <location filename="mainwindow.cpp" line="5428"/> + <location filename="mainwindow.cpp" line="5449"/> + <source>Restore failed</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5057"/> - <source>Enable all</source> - <translation type="unfinished">全部启用</translation> + <location filename="mainwindow.cpp" line="5429"/> + <location filename="mainwindow.cpp" line="5450"/> + <source>Failed to restore the backup. Errorcode: %1</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5058"/> - <source>Disable all</source> - <translation type="unfinished">全部禁用</translation> + <location filename="mainwindow.cpp" line="5440"/> + <source>Backup of modlist created</source> + <translation type="unfinished"></translation> </message> </context> <context> @@ -2850,30 +2870,22 @@ Please enter a name:</source> <source>Placeholder</source> <translation>占位符</translation> </message> - <message> - <source>Please install NCC</source> - <translation type="obsolete">请安装 NCC</translation> - </message> </context> <context> <name>ModInfo</name> <message> - <location filename="modinfo.cpp" line="96"/> - <location filename="modinfo.cpp" line="125"/> + <location filename="modinfo.cpp" line="106"/> + <location filename="modinfo.cpp" line="135"/> <source>invalid index %1</source> <translation>无效的索引 %1</translation> </message> - <message> - <source>invalid mod id %1</source> - <translation type="obsolete">无效的 Mod ID %1</translation> - </message> </context> <context> <name>ModInfoBackup</name> <message> - <location filename="modinfo.cpp" line="820"/> + <location filename="modinfo.cpp" line="898"/> <source>This is the backup of a mod</source> - <translation type="unfinished"></translation> + <translation>这是模组的备份</translation> </message> </context> <context> @@ -2900,7 +2912,7 @@ Please enter a name:</source> </message> <message> <location filename="modinfodialog.ui" line="67"/> - <location filename="modinfodialog.ui" line="155"/> + <location filename="modinfodialog.ui" line="175"/> <source>Save</source> <translation>保存</translation> </message> @@ -2910,84 +2922,73 @@ Please enter a name:</source> <translation>Ini 文件</translation> </message> <message> - <location filename="modinfodialog.ui" line="97"/> + <location filename="modinfodialog.ui" line="91"/> + <source>Ini Files</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="104"/> <source>This is a list of .ini files in the mod.</source> <translation>Mod 目录里包含的 Ini 文件的列表。</translation> </message> <message> - <location filename="modinfodialog.ui" line="100"/> + <location filename="modinfodialog.ui" line="107"/> <source>This is a list of .ini files in the mod. These are usually used to configure the behaviour of mods if there are configurable parameters.</source> <translation>Mod 目录里包含的 Ini 文件的列表,这些文件通常用来配置 Mod 的行为,如果有可设置的参数的话。</translation> </message> <message> - <location filename="modinfodialog.ui" line="149"/> + <location filename="modinfodialog.ui" line="114"/> + <source>Ini Tweaks</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="130"/> + <source>This is a list of ini tweaks (ini modifications that can be toggled).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="133"/> + <source>This is a list of ini tweaks. Ini Tweaks are (usually small) fragments of ini files that are applied over existing settings in skyrim.ini/skyrimprefs.ini. Each tweak can be toggled individually. You should check the description of the mod wether the tweaks are really optional.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="169"/> <source>Save changes to the file.</source> <translation>保存更改到文件中。</translation> </message> <message> - <location filename="modinfodialog.ui" line="152"/> + <location filename="modinfodialog.ui" line="172"/> <source>Save changes to the file. This overwrites the original. There is no automatic backup!</source> <translation>保存更改到文件中,这将会覆盖原始文件,并且没有自动备份!</translation> </message> <message> - <location filename="modinfodialog.ui" line="165"/> + <location filename="modinfodialog.ui" line="185"/> <source>Images</source> <translation>图片</translation> </message> <message> - <location filename="modinfodialog.ui" line="220"/> + <location filename="modinfodialog.ui" line="240"/> <source>Images located in the mod.</source> <translation>位于 Mod 中的图片。</translation> </message> <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">这里列出了所有在 Mod 目录里的图片 (.jpg 和 .png),如截图等。点击其中的一个来获得较大的视图。</span></p></body></html></translation> + <location filename="modinfodialog.ui" line="243"/> + <source>This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="256"/> - <location filename="modinfodialog.ui" line="275"/> + <location filename="modinfodialog.ui" line="276"/> + <location filename="modinfodialog.ui" line="295"/> <source>Optional ESPs</source> <translation>可选 ESP</translation> </message> <message> - <location filename="modinfodialog.ui" line="262"/> + <location filename="modinfodialog.ui" line="282"/> <source>List of esps and esms that can not be loaded by the game.</source> <translation>包含了不会被游戏载入的 esp 和 esm 的列表。</translation> </message> <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">They usually contain optional functionality, see the readme.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Most mods do not have optional esps, so chances are good you are looking at an empty list.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">列表中包含了目前不会被游戏载入的 esp 和 esm ,它们甚至不会出现在 MO 主窗口的 esp 列表中。</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">这些文件通常包含一些可选的功能,具体请参阅自述文件。</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">大部分 Mod 没有可选 esp,因此您正在看的很有可能只是一个空列表。</span></p></body></html></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="223"/> - <source>This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="265"/> + <location filename="modinfodialog.ui" line="285"/> <source>List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window. They usually contain optional functionality, see the readme. @@ -2995,103 +2996,103 @@ Most mods do not have optional esps, so chances are good you are looking at an e <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="290"/> + <location filename="modinfodialog.ui" line="310"/> <source>Make the selected mod in the lower list unavailable.</source> <translation>使下表中已选的 Mod 变得不可用。</translation> </message> <message> - <location filename="modinfodialog.ui" line="293"/> + <location filename="modinfodialog.ui" line="313"/> <source>The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become "invisible" to the game. It can then no longer be activated.</source> <translation>已选的 esp (在下表中) 将会被放入 Mod 的子目录里,在游戏里将会变得“不可见”,并且之后就不能再被激活了。</translation> </message> <message> - <location filename="modinfodialog.ui" line="319"/> + <location filename="modinfodialog.ui" line="339"/> <source>Move a file to the data directory.</source> <translation>移动一个文件到 Data 目录。</translation> </message> <message> - <location filename="modinfodialog.ui" line="322"/> + <location filename="modinfodialog.ui" line="342"/> <source>This moves a esp to the esp directory so it can be enabled in the main window. Please note that the ESP merely becomes "available", it will not necessarily be loaded! That is configured in the main window of omo.</source> <translation>移动一个 esp 文件到 esp 目录,这样它就可以在主窗口中启用了。请注意: ESP 只是变得“可用”,它并不一定会被载入!想要载入请在 MO 的主窗口中勾选。</translation> </message> <message> - <location filename="modinfodialog.ui" line="357"/> + <location filename="modinfodialog.ui" line="377"/> <source>ESPs in the data directory and thus visible to the game.</source> <translation>ESP 在 Data 目录,因此它在游戏里会变得可见。</translation> </message> <message> - <location filename="modinfodialog.ui" line="360"/> + <location filename="modinfodialog.ui" line="380"/> <source>These are the mod files that are in the (virtual) data directory of your game and will thus be selecteable in the esp list in the main window.</source> <translation>这些 Mod 文件位于您游戏的 (虚拟) Data 目录里,因此它们在主窗口的 esp 列表中会变得可选。</translation> </message> <message> - <location filename="modinfodialog.ui" line="367"/> + <location filename="modinfodialog.ui" line="387"/> <source>Available ESPs</source> <translation>可用 ESP</translation> </message> <message> - <location filename="modinfodialog.ui" line="375"/> + <location filename="modinfodialog.ui" line="395"/> <source>Conflicts</source> <translation>冲突</translation> </message> <message> - <location filename="modinfodialog.ui" line="383"/> + <location filename="modinfodialog.ui" line="403"/> <source>The following conflicted files are provided by this mod</source> <translation>以下冲突文件由此 Mod 提供</translation> </message> <message> - <location filename="modinfodialog.ui" line="433"/> - <location filename="modinfodialog.ui" line="483"/> + <location filename="modinfodialog.ui" line="453"/> + <location filename="modinfodialog.ui" line="503"/> <source>File</source> <translation>文件</translation> </message> <message> - <location filename="modinfodialog.ui" line="438"/> + <location filename="modinfodialog.ui" line="458"/> <source>Overwritten Mods</source> <translation>覆盖的 Mod</translation> </message> <message> - <location filename="modinfodialog.ui" line="448"/> + <location filename="modinfodialog.ui" line="468"/> <source>The following conflicted files are provided by other mods</source> <translation>以下冲突文件由其它 Mod 提供</translation> </message> <message> - <location filename="modinfodialog.ui" line="488"/> + <location filename="modinfodialog.ui" line="508"/> <source>Providing Mod</source> <translation>提供的 Mod</translation> </message> <message> - <location filename="modinfodialog.ui" line="498"/> + <location filename="modinfodialog.ui" line="518"/> <source>Non-Conflicted files</source> <translation>非冲突文件</translation> </message> <message> - <location filename="modinfodialog.ui" line="518"/> + <location filename="modinfodialog.ui" line="538"/> <source>Categories</source> <translation>类别</translation> </message> <message> - <location filename="modinfodialog.ui" line="541"/> + <location filename="modinfodialog.ui" line="561"/> <source>Primary Category</source> - <translation type="unfinished"></translation> + <translation>主类别</translation> </message> <message> - <location filename="modinfodialog.ui" line="558"/> + <location filename="modinfodialog.ui" line="578"/> <source>Nexus Info</source> <translation>N网信息</translation> </message> <message> - <location filename="modinfodialog.ui" line="566"/> + <location filename="modinfodialog.ui" line="586"/> <source>Mod ID</source> <translation>Mod ID</translation> </message> <message> - <location filename="modinfodialog.ui" line="573"/> + <location filename="modinfodialog.ui" line="593"/> <source>Mod ID for this mod on Nexus.</source> <translation>N网上此 Mod 的 ID。</translation> </message> <message> - <location filename="modinfodialog.ui" line="576"/> + <location filename="modinfodialog.ui" line="596"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -3104,7 +3105,7 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">N网上此 Mod 的 ID,如果您在 MO 中下载并安装了 Mod 它将被自动填写,否则您需要手动输入。要找到正确的 ID,在N网找到 Mod。比如,像这样的链接: <a href=" http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" text-decoration: underline; color:#0000ff;">http://www.skyrimnexus.com/downloads/file.php?id=1334</span></a> 在上面的例子中,1334就是您要找的 ID。此外: 上面的就是 Mod Organizer 在N网的链接,为什么不现在就到那里去赞同我呢?</span></a></p></body></html></translation> </message> <message> - <location filename="modinfodialog.ui" line="600"/> + <location filename="modinfodialog.ui" line="620"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -3117,27 +3118,27 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">Mod 的已安装版本,鼠标提示将显示N网上的当前版本,已安装的版本号只有在您通过 MO 来安装 Mod 的时候才会自动填写。</span></p></body></html></translation> </message> <message> - <location filename="modinfodialog.ui" line="607"/> + <location filename="modinfodialog.ui" line="627"/> <source>Version</source> <translation>版本</translation> </message> <message> - <location filename="modinfodialog.ui" line="637"/> + <location filename="modinfodialog.ui" line="657"/> <source>Refresh</source> - <translation type="unfinished">刷新</translation> + <translation>刷新</translation> </message> <message> - <location filename="modinfodialog.ui" line="640"/> + <location filename="modinfodialog.ui" line="660"/> <source>Refresh all information from Nexus.</source> - <translation type="unfinished"></translation> + <translation>从Nexus刷新全部信息。</translation> </message> <message> - <location filename="modinfodialog.ui" line="654"/> + <location filename="modinfodialog.ui" line="674"/> <source>Description</source> <translation>描述</translation> </message> <message> - <location filename="modinfodialog.ui" line="669"/> + <location filename="modinfodialog.ui" line="689"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -3146,60 +3147,27 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <source>about:blank</source> - <translation type="obsolete">空白页</translation> - </message> - <message> - <source>Files</source> - <translation type="obsolete">文件</translation> - </message> - <message> - <source>List of files currently uploaded on nexus. Double click to download.</source> - <translation type="obsolete">N网上当前已上载的文件列表,双击进行下载。</translation> - </message> - <message> - <source>Type</source> - <translation type="obsolete">类型</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="1221"/> - <source>Name</source> - <translation type="unfinished">名称</translation> - </message> - <message> - <source>Size (kB)</source> - <translation type="obsolete">大小 (KB)</translation> - </message> - <message> - <location filename="modinfodialog.ui" line="704"/> + <location filename="modinfodialog.ui" line="724"/> <source>Endorse</source> - <translation type="unfinished"></translation> + <translation type="unfinished">称赞</translation> </message> <message> - <location filename="modinfodialog.ui" line="718"/> + <location filename="modinfodialog.ui" line="738"/> <source>Notes</source> - <translation type="unfinished"></translation> + <translation type="unfinished">笔记</translation> </message> <message> - <source>Endorsements are an important motivation for authors. Please don't forget to endorse mods you like.</source> - <translation type="obsolete">支持是对作者最大的鼓励,请不要忘记赞同您喜欢的 Mod。</translation> - </message> - <message> - <source>Have you endorsed this yet?</source> - <translation type="obsolete">您支持过这个 Mod 了吗?</translation> - </message> - <message> - <location filename="modinfodialog.ui" line="728"/> + <location filename="modinfodialog.ui" line="748"/> <source>Filetree</source> <translation>文件树</translation> </message> <message> - <location filename="modinfodialog.ui" line="737"/> + <location filename="modinfodialog.ui" line="757"/> <source>A directory view of this mod</source> <translation>这个 Mod 的目录视图</translation> </message> <message> - <location filename="modinfodialog.ui" line="740"/> + <location filename="modinfodialog.ui" line="760"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -3214,269 +3182,258 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">所做的更改将会立即作用于磁盘上的文件,所以请</span><span style=" font-size:9pt; font-weight:600;">谨慎操作</span><span style=" font-size:9pt;">。</span></p></body></html></translation> </message> <message> - <location filename="modinfodialog.ui" line="767"/> + <location filename="modinfodialog.ui" line="787"/> <source>Previous</source> - <translation type="unfinished"></translation> + <translation>上一个</translation> </message> <message> - <location filename="modinfodialog.ui" line="774"/> + <location filename="modinfodialog.ui" line="794"/> <source>Next</source> - <translation type="unfinished">下一步</translation> + <translation>下一步</translation> </message> <message> - <location filename="modinfodialog.ui" line="794"/> + <location filename="modinfodialog.ui" line="814"/> <source>Close</source> <translation>关闭</translation> </message> <message> - <location filename="modinfodialog.cpp" line="104"/> + <location filename="modinfodialog.cpp" line="165"/> <source>&Delete</source> <translation>&删除</translation> </message> <message> - <location filename="modinfodialog.cpp" line="105"/> + <location filename="modinfodialog.cpp" line="166"/> <source>&Rename</source> <translation>&重命名</translation> </message> <message> - <location filename="modinfodialog.cpp" line="106"/> + <location filename="modinfodialog.cpp" line="167"/> <source>&Hide</source> <translation>&隐藏</translation> </message> <message> - <location filename="modinfodialog.cpp" line="107"/> + <location filename="modinfodialog.cpp" line="168"/> <source>&Unhide</source> <translation>&取消隐藏</translation> </message> <message> - <location filename="modinfodialog.cpp" line="108"/> + <location filename="modinfodialog.cpp" line="169"/> <source>&Open</source> <translation>&打开</translation> </message> <message> - <location filename="modinfodialog.cpp" line="109"/> + <location filename="modinfodialog.cpp" line="170"/> <source>&New Folder</source> <translation>&新建文件夹</translation> </message> <message> - <location filename="modinfodialog.cpp" line="405"/> - <location filename="modinfodialog.cpp" line="420"/> + <location filename="modinfodialog.cpp" line="416"/> + <location filename="modinfodialog.cpp" line="431"/> <source>Save changes?</source> <translation>保存更改吗?</translation> </message> <message> - <source>Save changes to the "%1"?</source> - <translation type="obsolete">保存更改到 "%1"?</translation> + <location filename="modinfodialog.cpp" line="416"/> + <location filename="modinfodialog.cpp" line="431"/> + <source>Save changes to "%1"?</source> + <translation type="unfinished">将更改保存到“%1%”吗?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="612"/> + <location filename="modinfodialog.cpp" line="621"/> <source>File Exists</source> <translation>文件已存在</translation> </message> <message> - <location filename="modinfodialog.cpp" line="612"/> + <location filename="modinfodialog.cpp" line="621"/> <source>A file with that name exists, please enter a new one</source> <translation>文件名已存在,请输入其它名称</translation> </message> <message> - <location filename="modinfodialog.cpp" line="629"/> + <location filename="modinfodialog.cpp" line="638"/> <source>failed to move file</source> <translation>无法移动文件</translation> </message> <message> - <location filename="modinfodialog.cpp" line="654"/> + <location filename="modinfodialog.cpp" line="663"/> <source>failed to create directory "optional"</source> <translation>无法创建 "optional" 目录</translation> </message> <message> - <location filename="modinfodialog.cpp" line="692"/> - <location filename="modinfodialog.cpp" line="1198"/> + <location filename="modinfodialog.cpp" line="701"/> + <location filename="modinfodialog.cpp" line="1206"/> <source>Info requested, please wait</source> <translation>请求信息已发出,请稍后</translation> </message> <message> - <location filename="modinfodialog.cpp" line="807"/> - <source>(description incomplete, please visit nexus)</source> - <translation>(描述信息不完整,请访问N网)</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="762"/> - <source>Current Version: %1</source> - <translation>当前版本: %1</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="766"/> - <source>No update available</source> - <translation>没有可用的更新</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="746"/> + <location filename="modinfodialog.cpp" line="755"/> <source>Main</source> <translation>主要文件</translation> </message> <message> - <location filename="modinfodialog.cpp" line="405"/> - <location filename="modinfodialog.cpp" line="420"/> - <source>Save changes to "%1"?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="747"/> + <location filename="modinfodialog.cpp" line="756"/> <source>Update</source> <translation>更新</translation> </message> <message> - <location filename="modinfodialog.cpp" line="748"/> + <location filename="modinfodialog.cpp" line="757"/> <source>Optional</source> <translation>可选文件</translation> </message> <message> - <location filename="modinfodialog.cpp" line="749"/> + <location filename="modinfodialog.cpp" line="758"/> <source>Old</source> <translation>旧档</translation> </message> <message> - <location filename="modinfodialog.cpp" line="750"/> + <location filename="modinfodialog.cpp" line="759"/> <source>Misc</source> <translation>杂项</translation> </message> <message> - <location filename="modinfodialog.cpp" line="751"/> + <location filename="modinfodialog.cpp" line="760"/> <source>Unknown</source> <translation>未知</translation> </message> <message> - <source>request failed: %1</source> - <translation type="obsolete">请求失败: %1</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="822"/> - <source><a href="%1">Visit on Nexus</a></source> - <translation><a href="%1">访问N网</a></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="912"/> - <location filename="modinfodialog.cpp" line="917"/> - <source>Confirm</source> - <translation>确认</translation> + <location filename="modinfodialog.cpp" line="771"/> + <source>Current Version: %1</source> + <translation>当前版本: %1</translation> </message> <message> - <source>Download "%1"?</source> - <translation type="obsolete">下载 "%1"?</translation> + <location filename="modinfodialog.cpp" line="775"/> + <source>No update available</source> + <translation>没有可用的更新</translation> </message> <message> - <source>Download started</source> - <translation type="obsolete">开始下载</translation> + <location filename="modinfodialog.cpp" line="816"/> + <source>(description incomplete, please visit nexus)</source> + <translation>(描述信息不完整,请访问N网)</translation> </message> <message> - <source>Exception: %1</source> - <translation type="obsolete">例外: %1</translation> + <location filename="modinfodialog.cpp" line="831"/> + <source><a href="%1">Visit on Nexus</a></source> + <translation><a href="%1">访问N网</a></translation> </message> <message> - <location filename="modinfodialog.cpp" line="901"/> + <location filename="modinfodialog.cpp" line="910"/> <source>Failed to delete %1</source> <translation>无法删除 %1</translation> </message> <message> - <location filename="modinfodialog.cpp" line="912"/> + <location filename="modinfodialog.cpp" line="921"/> + <location filename="modinfodialog.cpp" line="926"/> + <source>Confirm</source> + <translation>确认</translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="921"/> <source>Are sure you want to delete "%1"?</source> <translation>确定要删除 "%1" 吗?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="917"/> + <location filename="modinfodialog.cpp" line="926"/> <source>Are sure you want to delete the selected files?</source> <translation>确定要删除所选的文件吗?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="991"/> - <location filename="modinfodialog.cpp" line="997"/> + <location filename="modinfodialog.cpp" line="1000"/> + <location filename="modinfodialog.cpp" line="1006"/> <source>New Folder</source> <translation>新建文件夹</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1003"/> + <location filename="modinfodialog.cpp" line="1012"/> <source>Failed to create "%1"</source> <translation>无法创建 "%1"</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1107"/> - <location filename="modinfodialog.cpp" line="1131"/> + <location filename="modinfodialog.cpp" line="1116"/> + <location filename="modinfodialog.cpp" line="1140"/> <source>Replace file?</source> <translation>替换文件?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1107"/> + <location filename="modinfodialog.cpp" line="1116"/> <source>There already is a hidden version of this file. Replace it?</source> <translation>已存在同名文件,但该文件被隐藏了。确定要覆盖吗?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1110"/> - <location filename="modinfodialog.cpp" line="1134"/> + <location filename="modinfodialog.cpp" line="1119"/> + <location filename="modinfodialog.cpp" line="1143"/> <source>File operation failed</source> <translation>文件操作错误</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1110"/> - <location filename="modinfodialog.cpp" line="1134"/> + <location filename="modinfodialog.cpp" line="1119"/> + <location filename="modinfodialog.cpp" line="1143"/> <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> <translation>无法移除 "%1"。也许您需要足够的文件权限?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1121"/> - <location filename="modinfodialog.cpp" line="1144"/> + <location filename="modinfodialog.cpp" line="1130"/> + <location filename="modinfodialog.cpp" line="1153"/> <source>failed to rename %1 to %2</source> <translation>无法重命名 %1 为 %2</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1131"/> + <location filename="modinfodialog.cpp" line="1140"/> <source>There already is a visible version of this file. Replace it?</source> <translation>已存在同名文件。确定要覆盖吗?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1178"/> + <location filename="modinfodialog.cpp" line="1186"/> <source>Un-Hide</source> <translation>取消隐藏</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1180"/> + <location filename="modinfodialog.cpp" line="1188"/> <source>Hide</source> <translation>隐藏</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1221"/> + <location filename="modinfodialog.cpp" line="1229"/> + <source>Name</source> + <translation>名称</translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1229"/> <source>Please enter a name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1225"/> - <location filename="modinfodialog.cpp" line="1228"/> + <location filename="modinfodialog.cpp" line="1233"/> + <location filename="modinfodialog.cpp" line="1236"/> <source>Error</source> - <translation type="unfinished">错误</translation> + <translation>错误</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1225"/> + <location filename="modinfodialog.cpp" line="1233"/> <source>Invalid name. Must be a valid file name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1228"/> + <location filename="modinfodialog.cpp" line="1236"/> <source>A tweak by that name exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1240"/> + <location filename="modinfodialog.cpp" line="1250"/> <source>Create Tweak</source> <translation type="unfinished"></translation> </message> </context> <context> - <name>ModInfoOverwrite</name> + <name>ModInfoForeign</name> <message> - <source>Overwrite</source> - <translation type="obsolete">覆盖</translation> + <location filename="modinfo.cpp" line="987"/> + <source>This pseudo mod represents content managed outside MO. It isn't modified by MO.</source> + <translation type="unfinished"></translation> </message> +</context> +<context> + <name>ModInfoOverwrite</name> <message> - <location filename="modinfo.cpp" line="866"/> + <location filename="modinfo.cpp" line="943"/> <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source> <translation type="unfinished">此虚拟安装包内包含来自虚拟 Data 树的文件,但文件发生了变化 (例: 被CK修改了)</translation> </message> @@ -3484,17 +3441,22 @@ p, li { white-space: pre-wrap; } <context> <name>ModInfoRegular</name> <message> - <location filename="modinfo.cpp" line="393"/> <source>failed to write %1/meta.ini: %2</source> - <translation>无法写入 %1/meta.ini: %2</translation> + <translation type="obsolete">无法写入 %1/meta.ini: %2</translation> </message> <message> - <location filename="modinfo.cpp" line="661"/> + <location filename="modinfo.cpp" line="557"/> + <location filename="modinfo.cpp" line="560"/> + <source>failed to write %1/meta.ini: error %2</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfo.cpp" line="811"/> <source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source> <translation type="unfinished">%1 中未包含 esp 或 esm 和有效的目录 (textures, meshes, interface, ...)</translation> </message> <message> - <location filename="modinfo.cpp" line="665"/> + <location filename="modinfo.cpp" line="815"/> <source>Categories: <br></source> <translation type="unfinished">种类: <br></translation> </message> @@ -3502,27 +3464,6 @@ p, li { white-space: pre-wrap; } <context> <name>ModList</name> <message> - <location filename="modlist.cpp" line="776"/> - <source>Confirm</source> - <translation>确认</translation> - </message> - <message> - <source>Really enable all visible mods?</source> - <translation type="obsolete">确定要启用全部可见的 Mod 吗?</translation> - </message> - <message> - <source>Really disable all visible mods?</source> - <translation type="obsolete">确定要禁用全部可见的 Mod 吗?</translation> - </message> - <message> - <source>invalid row-index %1</source> - <translation type="obsolete">无效的行索引 %1</translation> - </message> - <message> - <source>Overwrite</source> - <translation type="obsolete">覆盖</translation> - </message> - <message> <location filename="modlist.cpp" line="109"/> <source>This entry contains files that have been created inside the virtual data tree (i.e. by the construction kit)</source> <translation>此项目内检测到了虚拟 Data 树的文件发生了变化 (例如: 被 CK 修改了)</translation> @@ -3530,174 +3471,163 @@ p, li { white-space: pre-wrap; } <message> <location filename="modlist.cpp" line="118"/> <source>Backup</source> - <translation type="unfinished"></translation> + <translation>备份</translation> </message> <message> <location filename="modlist.cpp" line="119"/> <source>No valid game data</source> - <translation type="unfinished"></translation> + <translation>无效游戏数据</translation> </message> <message> <location filename="modlist.cpp" line="120"/> <source>Not endorsed yet</source> - <translation type="unfinished"></translation> + <translation>尚未点赞支持</translation> </message> <message> <location filename="modlist.cpp" line="122"/> <source>Overwrites files</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Overwrites文件</translation> </message> <message> <location filename="modlist.cpp" line="123"/> <source>Overwritten files</source> - <translation type="unfinished"></translation> + <translation type="unfinished">覆盖的 Mod</translation> </message> <message> <location filename="modlist.cpp" line="124"/> <source>Overwrites & Overwritten</source> - <translation type="unfinished"></translation> + <translation>覆盖 & 被覆盖</translation> </message> <message> <location filename="modlist.cpp" line="125"/> <source>Redundant</source> + <translation type="unfinished">冗余</translation> + </message> + <message> + <location filename="modlist.cpp" line="170"/> + <source>Non-MO</source> <translation type="unfinished"></translation> </message> <message> - <source>min</source> - <translation type="obsolete">最低值</translation> + <location filename="modlist.cpp" line="201"/> + <source>invalid</source> + <translation>无效</translation> </message> <message> - <source>max</source> - <translation type="obsolete">最高值</translation> + <source>installed version: %1, newest version: %2</source> + <translation type="obsolete">当前版本: %1,最新版本: %2</translation> </message> <message> - <location filename="modlist.cpp" line="850"/> - <source>Category of the mod.</source> + <location filename="modlist.cpp" line="314"/> + <source>installed version: "%1", newest version: "%2"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="851"/> - <source>Id of the mod as used on Nexus.</source> + <location filename="modlist.cpp" line="316"/> + <source>The newest version on Nexus seems to be older than the one you have installed. This could either mean the version you have has been withdrawn (i.e. due to a bug) or the author uses a non-standard versioning scheme and that newest version is actually newer. Either way you may want to "upgrade".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="852"/> - <source>Emblemes to highlight things that might require attention.</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="324"/> + <source>Categories: <br></source> + <translation>种类: <br></translation> </message> <message> - <source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source> - <translation type="obsolete">%1 中未包含 esp 或 esm 和有效的目录 (textures, meshes, interface, ...)</translation> + <location filename="modlist.cpp" line="353"/> + <source>Invalid name</source> + <translation>无效的名称</translation> </message> <message> - <location filename="modlist.cpp" line="318"/> - <source>Categories: <br></source> - <translation>种类: <br></translation> + <location filename="modlist.cpp" line="747"/> + <source>drag&drop failed: %1</source> + <translation type="unfinished">拖拽失败: %1</translation> </message> <message> - <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source> - <translation type="obsolete">此虚拟安装包内包含来自虚拟 Data 树的文件,但文件发生了变化 (例: 被CK修改了)</translation> + <location filename="modlist.cpp" line="810"/> + <source>Confirm</source> + <translation>确认</translation> </message> <message> - <location filename="modlist.cpp" line="308"/> - <source>installed version: "%1", newest version: "%2"</source> - <oldsource>installed version: %1, newest version: %2</oldsource> - <translation type="unfinished">当前版本: %1,最新版本: %2</translation> + <location filename="modlist.cpp" line="810"/> + <source>Are you sure you want to remove "%1"?</source> + <translation>确定要移除 "%1" 吗?</translation> </message> <message> - <source>Name</source> - <translation type="obsolete">名称</translation> + <location filename="modlist.cpp" line="865"/> + <source>Flags</source> + <translation type="unfinished">标志</translation> </message> <message> - <source>Names of your mods</source> - <translation type="obsolete">Mod 名称</translation> + <location filename="modlist.cpp" line="866"/> + <source>Mod Name</source> + <translation>Mod 名称</translation> </message> <message> - <location filename="modlist.cpp" line="833"/> + <location filename="modlist.cpp" line="867"/> <source>Version</source> <translation>版本</translation> </message> <message> - <location filename="modlist.cpp" line="847"/> - <source>Version of the mod (if available)</source> - <translation>Mod 版本 (如果可用)</translation> - </message> - <message> - <location filename="modlist.cpp" line="834"/> + <location filename="modlist.cpp" line="868"/> <source>Priority</source> <translation>优先级</translation> </message> <message> - <location filename="modlist.cpp" line="197"/> - <source>invalid</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="310"/> - <source>The newest version on Nexus seems to be older than the one you have installed. This could either mean the version you have has been withdrawn (i.e. due to a bug) or the author uses a non-standard versioning scheme and that newest version is actually newer. Either way you may want to "upgrade".</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modlist.cpp" line="347"/> - <source>Invalid name</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="869"/> + <source>Category</source> + <translation>分类</translation> </message> <message> - <location filename="modlist.cpp" line="717"/> - <source>drag&drop failed: %1</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="870"/> + <source>Nexus ID</source> + <translation>Nexus网 ID</translation> </message> <message> - <location filename="modlist.cpp" line="831"/> - <source>Flags</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="871"/> + <source>Installation</source> + <translation type="unfinished">安装</translation> </message> <message> - <location filename="modlist.cpp" line="832"/> - <source>Mod Name</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="872"/> + <location filename="modlist.cpp" line="888"/> + <source>unknown</source> + <translation>未知</translation> </message> <message> - <location filename="modlist.cpp" line="835"/> - <source>Category</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="880"/> + <source>Name of your mods</source> + <translation>你的mod名称</translation> </message> <message> - <location filename="modlist.cpp" line="836"/> - <source>Nexus ID</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="881"/> + <source>Version of the mod (if available)</source> + <translation>Mod 版本 (如果可用)</translation> </message> <message> - <location filename="modlist.cpp" line="837"/> - <source>Installation</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="882"/> + <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source> + <translation>Mod 的安装优先级。越高就表示越“重要”,从而覆盖掉低优先级的 Mod 文件。</translation> </message> <message> - <location filename="modlist.cpp" line="838"/> - <location filename="modlist.cpp" line="854"/> - <source>unknown</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="884"/> + <source>Category of the mod.</source> + <translation>mod的分类</translation> </message> <message> - <location filename="modlist.cpp" line="846"/> - <source>Name of your mods</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="885"/> + <source>Id of the mod as used on Nexus.</source> + <translation>mod在 Nexus 网上的ID编号</translation> </message> <message> - <location filename="modlist.cpp" line="848"/> - <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source> - <translation>Mod 的安装优先级。越高就表示越“重要”,从而覆盖掉低优先级的 Mod 文件。</translation> + <location filename="modlist.cpp" line="886"/> + <source>Emblemes to highlight things that might require attention.</source> + <translation type="unfinished">需要注意被标记为高亮的</translation> </message> <message> - <location filename="modlist.cpp" line="853"/> + <location filename="modlist.cpp" line="887"/> <source>Time this mod was installed</source> <translation type="unfinished"></translation> </message> - <message> - <location filename="modlist.cpp" line="776"/> - <source>Are you sure you want to remove "%1"?</source> - <translation>确定要移除 "%1" 吗?</translation> - </message> </context> <context> <name>MotDDialog</name> @@ -3707,27 +3637,12 @@ p, li { white-space: pre-wrap; } <translation>今日消息</translation> </message> <message> - <source>about:blank</source> - <translation type="obsolete">空白页</translation> - </message> - <message> <location filename="motddialog.ui" line="42"/> <source>OK</source> <translation>确定</translation> </message> </context> <context> - <name>MyApplication</name> - <message> - <source>an error occured: %1</source> - <translation type="obsolete">发生错误: %1</translation> - </message> - <message> - <source>an error occured</source> - <translation type="obsolete">发生错误</translation> - </message> -</context> -<context> <name>MyFileSystemModel</name> <message> <location filename="overwriteinfodialog.cpp" line="47"/> @@ -3743,971 +3658,40 @@ p, li { white-space: pre-wrap; } <context> <name>NXMAccessManager</name> <message> - <location filename="nxmaccessmanager.cpp" line="130"/> + <location filename="nxmaccessmanager.cpp" line="144"/> <source>Logging into Nexus</source> <translation type="unfinished"></translation> </message> <message> - <location filename="nxmaccessmanager.cpp" line="145"/> + <location filename="nxmaccessmanager.cpp" line="159"/> <source>timeout</source> <translation>超时</translation> </message> <message> - <location filename="nxmaccessmanager.cpp" line="185"/> + <location filename="nxmaccessmanager.cpp" line="200"/> <source>Please check your password</source> <translation>请检查您的密码</translation> </message> </context> <context> - <name>NXMUrl</name> - <message> - <source>invalid nxm-link: %1</source> - <translation type="obsolete">无效的 NXM 链接: %1</translation> - </message> -</context> -<context> - <name>NexusDialog</name> - <message> - <source>Nexus</source> - <translation type="obsolete">N网</translation> - </message> - <message> - <source>Mod ID</source> - <translation type="obsolete">Mod ID</translation> - </message> - <message> - <source>Search</source> - <translation type="obsolete">搜索</translation> - </message> - <message> - <source>new</source> - <translation type="obsolete">新标签</translation> - </message> - <message> - <source>login failed: %1</source> - <translation type="obsolete">无法登录: %1</translation> - </message> - <message> - <source>login successful</source> - <translation type="obsolete">登录成功</translation> - </message> - <message> - <source>failed to start download</source> - <translation type="obsolete">启动下载失败</translation> - </message> - <message> - <source>Download started</source> - <translation type="obsolete">开始下载</translation> - </message> -</context> -<context> <name>NexusInterface</name> <message> - <location filename="nexusinterface.cpp" line="218"/> + <location filename="nexusinterface.cpp" line="216"/> <source>Failed to guess mod id for "%1", please pick the correct one</source> - <translation type="unfinished"></translation> + <translation type="unfinished"> 提取mod "%1"的ID编号失败,请自行选择正确项。</translation> </message> <message> - <location filename="nexusinterface.cpp" line="455"/> + <location filename="nexusinterface.cpp" line="481"/> <source>empty response</source> <translation>未响应</translation> </message> <message> - <location filename="nexusinterface.cpp" line="483"/> + <location filename="nexusinterface.cpp" line="510"/> <source>invalid response</source> <translation>无效的响应</translation> </message> </context> <context> - <name>OMOWindow</name> - <message> - <source>Categories</source> - <translation type="obsolete">种类</translation> - </message> - <message> - <source>Profile</source> - <translation type="obsolete">配置文件</translation> - </message> - <message> - <source>Pick a module collection</source> - <translation type="obsolete">选择一个配置文件</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Create profiles here. Each profile contains its own list of active mods and esps. This way you can quickly switch between setups for different play throughs.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Please note that right now your esp load order is not kept seperate for different profiles.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">在这里创建配置文件,每个配置文件都包含了它们自己的 Mod 和 esp 的激活方案。这样您就可以通过快速切换设置来体验不同的游戏历程了。</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">请注意: 当前您的配置文件的 esp 加载顺序并不是分开保存的。</span></p></body></html></translation> - </message> - <message> - <source>Refresh list</source> - <translation type="obsolete">刷新列表</translation> - </message> - <message> - <source>Refresh list. This is usually not necessary unless you modified data outside the program.</source> - <translation type="obsolete">刷新列表,这通常不是必须的,除非您在程序之外修改了文件的数据。</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Segoe UI'; font-size:9pt;">List of available mods.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Segoe UI'; font-size:9pt;">可用 Mod 的列表。</span></p></body></html></translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag&amp;drop mods to change their &quot;installation&quot; orders.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">这是已安装 Mod 的列表,使用复选框来启用或禁用 Mod,并使用拖放来改变它们的“安装”顺序。</span></p></body></html></translation> - </message> - <message> - <source>Filter</source> - <translation type="obsolete">过滤器</translation> - </message> - <message> - <source>Start</source> - <translation type="obsolete">开始</translation> - </message> - <message> - <source>Pick a program to run.</source> - <translation type="obsolete">选择要运行的程序。</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Choose the program to run. Once you start using ModOrganizer, you should always run your game and tools from here or through shortcuts created here, otherwise mods installed through MO will not be visible.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">You can add new Tools to this list, but I can't promise tools I haven't tested will work.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">选择要运行的程序。一旦您开始使用 Mod Organizer,您应该始终从这里或通过在这里创建的快捷方式来运行您的游戏和工具,否则任何经由 MO 安装的 Mod 都会变得不可见。</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">您可以添加新的工具到此列表中,但我不能保证一些我没有测试过的工具能够正常工作。</span></p></body></html></translation> - </message> - <message> - <source>Run program</source> - <translation type="obsolete">运行程序</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Run the selected program with ModOrganizer enabled.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">在 Mod Organizer 启用的状态下运行指定的程序。</span></p></body></html></translation> - </message> - <message> - <source>Run</source> - <translation type="obsolete">运行</translation> - </message> - <message> - <source>Create a shortcut in your start menu to the specified program</source> - <translation type="obsolete">为指定的程序创建一个开始菜单快捷方式</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This creates a start menu shortcut that directly starts the selected program with the MO active.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">创建一个开始菜单快捷方式,使您可以直接在 MO 激活状态下运行指定的程序。</span></p></body></html></translation> - </message> - <message> - <source>Menu Shortcut</source> - <translation type="obsolete">开始菜单快捷方式</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">create a desktop shortcut for the selected program</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">为指定的程序创建一个桌面快捷方式</span></p></body></html></translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This creates a desktop shortcut that directly starts the selected program with the MO active.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">创建一个桌面快捷方式,使您可以直接在 MO 激活状态下运行指定的程序。</span></p></body></html></translation> - </message> - <message> - <source>Desktop Shortcut</source> - <translation type="obsolete">桌面快捷方式</translation> - </message> - <message> - <source>save esp list and load order.</source> - <translation type="obsolete">保存 esp 列表和加载顺序。</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Save the list of active mods and load order. This automatically happens if you close MO or start a program.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">保存已激活 Mod 和加载顺序的列表,当您关闭了 MO 或者启动了一个程序的时候这将会自动发生。</span></p></body></html></translation> - </message> - <message> - <source>Save</source> - <translation type="obsolete">保存</translation> - </message> - <message> - <source>List of available esp/esm files</source> - <translation type="obsolete">可用 esp 或 esm 文件的列表</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This list contains the esps and esms contained in the active mods. These require their own load order. Use drag&amp;drop to modify this load order. Please note that MO will only save the load order for mods that are active/checked.<br />There is a great tool named &quot;BOSS&quot; to automatically sort these files.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">这个列表中包含了位于已激活 Mod 里的 esp 和 esm 文件。这些文件都需要它们自己的加载顺序,您可以使用拖放来修改加载顺序。请注意: MO 将只保存已激活或已勾选状态的 Mod 的加载顺序。<br />有个非常棒的工具叫作 &quot;BOSS&quot;,它可以自动对这些文件进行排序。</span></p></body></html></translation> - </message> - <message> - <source>IMPORTANT: You can change the order of BSAs here but installation order of mods has priority over the order specified here!</source> - <translation type="obsolete">重要: 您可以在这里更改 BSA 的顺序,不过 Mod 的安装顺序会优先于这里的设置!</translation> - </message> - <message> - <source>IMPORTANT: For unknown reasons some bsas (SkyUI 3 alpha) do NOT work when checked here.</source> - <translation type="obsolete">重要: 一些 BSA 文件 (例: SkyUI 3 alpha) 在这里勾选后将无法正常工作,具体原因未知。</translation> - </message> - <message> - <source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source> - <translation type="obsolete">可用 BSA 文件的列表。未勾选的项目不会被 MO 管理并且会忽略安装顺序。</translation> - </message> - <message> - <source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" with loose files in your data directory over which is loaded. -By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored! - -BSAs checked here are loaded in such a way that your installation order is obeyed properly.</source> - <translation type="obsolete">BSA 文件是 Bethesda 专用的压缩包文件 (区别于 .zip 文件),里面包含了游戏所用的 Data 内的文件 (meshes, textures 等)。这与 Data 目录里分散的文件是不同的。 -默认情况下,BSA 文件的名称取决于 ESP 插件的名称 (例: plugins.esp 对应 plugins.bsa)。游戏运行时,ESP 对应的 BSA 将会自动加载,并且比所有分散的文件优先级都高,左边您设置的安装顺序最终会被忽略掉。 - -这里勾选的 BSA 将会依从您的安装顺序,并且会自行调整加载顺序。</translation> - </message> - <message> - <source>File</source> - <translation type="obsolete">文件</translation> - </message> - <message> - <source>Mod</source> - <translation type="obsolete">Mod</translation> - </message> - <message> - <source>Data</source> - <translation type="obsolete">Data</translation> - </message> - <message> - <source>refresh data-directory overview</source> - <translation type="obsolete">刷新 Data 目录总览</translation> - </message> - <message> - <source>Refresh the overview. This may take a moment.</source> - <translation type="obsolete">刷新总览,这可能需要一些时间。</translation> - </message> - <message> - <source>Refresh</source> - <translation type="obsolete">刷新</translation> - </message> - <message> - <source>This is an overview of your data directory as visible to the game (and tools). </source> - <translation type="obsolete">这是在游戏中可见的 Data 目录 (和工具) 的总览。</translation> - </message> - <message> - <source>Filter the above list so that only conflicts are displayed.</source> - <translation type="obsolete">过滤上面的列表,使您只能看到有冲突的文件。</translation> - </message> - <message> - <source>Show only conflicts</source> - <translation type="obsolete">只显示冲突</translation> - </message> - <message> - <source>Saves</source> - <translation type="obsolete">存档</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a list of all savegames for this game. Hover over a list entry to get detailed information about the save including a list of esps/esms that were used at the time this save was created but aren't active now.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you click &quot;Fix Mods...&quot; in the context menu, MO will try to activate all mods and esps to fix those missing esps. It will not disable anything!</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">这是此游戏所有存档的列表,将鼠标悬停在项目上来获取该存档的详细信息,里面包含了现在没有被激活但是当存档被创建时所使用的 esp 或 esm 的清单。</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">如果您在右键菜单中点击“修复 Mod”,那么 MO 便会尝试激活所有 Mod 和 esp 来修复那些缺失的 esp,它并不会禁用任何东西!</span></p></body></html></translation> - </message> - <message> - <source>Downloads</source> - <translation type="obsolete">下载</translation> - </message> - <message> - <source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source> - <translation type="obsolete">这是当前已下载的 Mod 的列表,双击进行安装。</translation> - </message> - <message> - <source>Compact</source> - <translation type="obsolete">紧凑</translation> - </message> - <message> - <source>Refresh list of downloads.</source> - <translation type="obsolete">刷新下载列表。</translation> - </message> - <message> - <source>Tool Bar</source> - <translation type="obsolete">工具栏</translation> - </message> - <message> - <source>Install Mod</source> - <translation type="obsolete">安装 Mod</translation> - </message> - <message> - <source>Install &Mod</source> - <translation type="obsolete">安装 &Mod</translation> - </message> - <message> - <source>Install a new mod from an archive</source> - <translation type="obsolete">通过压缩包来安装一个新 Mod</translation> - </message> - <message> - <source>Ctrl+M</source> - <translation type="obsolete">Ctrl+M</translation> - </message> - <message> - <source>Profiles</source> - <translation type="obsolete">配置文件</translation> - </message> - <message> - <source>&Profiles</source> - <translation type="obsolete">&配置文件</translation> - </message> - <message> - <source>Configure Profiles</source> - <translation type="obsolete">设置配置文件</translation> - </message> - <message> - <source>Ctrl+P</source> - <translation type="obsolete">Ctrl+P</translation> - </message> - <message> - <source>Executables</source> - <translation type="obsolete">可执行程序</translation> - </message> - <message> - <source>&Executables</source> - <translation type="obsolete">&可执行程序</translation> - </message> - <message> - <source>Configure the executables that can be started through Mod Organizer</source> - <translation type="obsolete">配置可通过 MO 来启动的程序</translation> - </message> - <message> - <source>Ctrl+E</source> - <translation type="obsolete">Ctrl+E</translation> - </message> - <message> - <source>Edit Ini</source> - <translation type="obsolete">编辑 Ini 文件</translation> - </message> - <message> - <source>Edit &Ini</source> - <translation type="obsolete">编辑 &Ini 文件</translation> - </message> - <message> - <source>Edit the ini file of the current profile</source> - <translation type="obsolete">编辑当前配置的 Ini 文件</translation> - </message> - <message> - <source>Ctrl+I</source> - <translation type="obsolete">Ctrl+I</translation> - </message> - <message> - <source>Settings</source> - <translation type="obsolete">设置</translation> - </message> - <message> - <source>&Settings</source> - <translation type="obsolete">&设置</translation> - </message> - <message> - <source>Configure settings and workarounds</source> - <translation type="obsolete">配置设定和解决方案</translation> - </message> - <message> - <source>Ctrl+S</source> - <translation type="obsolete">Ctrl+S</translation> - </message> - <message> - <source>Nexus</source> - <translation type="obsolete">N网</translation> - </message> - <message> - <source>Search nexus network for more mods</source> - <translation type="obsolete">搜索N网以获取更多 Mod</translation> - </message> - <message> - <source>Ctrl+N</source> - <translation type="obsolete">Ctrl+N</translation> - </message> - <message> - <source>Update</source> - <translation type="obsolete">更新</translation> - </message> - <message> - <source>Mod Organizer is up-to-date</source> - <translation type="obsolete">Mod Organizer 现在是最新版本</translation> - </message> - <message> - <source>No Problems</source> - <translation type="obsolete">没有问题</translation> - </message> - <message> - <source>This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them. - -!Work in progress! -Right now this has very limited functionality</source> - <translation type="obsolete">如果 MO 检测到您的安装中存在潜在的问题,那么此按钮将会高亮显示,同时 MO 也会给您相应的修复提示。 - -!此功能尚未完善! -当前此功能所能提供的项目非常有限</translation> - </message> - <message> - <source>Problems</source> - <translation type="obsolete">问题</translation> - </message> - <message> - <source>There are potential problems with your setup</source> - <translation type="obsolete">您的安装中存在潜在的问题</translation> - </message> - <message> - <source>Everything seems to be in order</source> - <translation type="obsolete">一切井然有序</translation> - </message> - <message> - <source><li>Your BSAs may be set up incorrectly. The game may not run! Please check the BSA tab</li></source> - <translation type="obsolete"><li>您的 BSA 可能没有设置正确。游戏可能无法执行!请检查 BSA 标签。</li></translation> - </message> - <message> - <source><li>NCC not installed. You won't be able to install some scripted mod-installers. Get NCC from <a href="http://skyrim.nexusmods.com/downloads/file.php?id=1334">the MO page on nexus</a></li></source> - <translation type="obsolete"><li>未检测到 NCC,您将不能安装部分包含安装脚本的安装包。您可以从 <a href="http://skyrim.nexusmods.com/downloads/file.php?id=1334"> MO 下载页</a>中下载安装</li></translation> - </message> - <message> - <source><li>NCC version may be incompatible.</li></source> - <translation type="obsolete"><li>NCC 版本可能不兼容。</li></translation> - </message> - <message> - <source><li>dotNet is not installed or outdated. This is required to use NCC. Get it from here: <a href="%1">%1</a></li></source> - <translation type="obsolete"><li>.Net 未安装或版本过旧。想要运行 NCC 您必须先安装 .Net,您可以在以下地址中获取: <a href="%1">%1</a></li></translation> - </message> - <message> - <source>Help</source> - <translation type="obsolete">帮助</translation> - </message> - <message> - <source>Click here if you have any problems with Mod Organizer</source> - <translation type="obsolete">无论您对 Mod Organizer 有什么问题,您都可以点击此处来获取帮助</translation> - </message> - <message> - <source>Help on UI</source> - <translation type="obsolete">界面帮助</translation> - </message> - <message> - <source>Documentation Wiki</source> - <translation type="obsolete">说明文档 (维基)</translation> - </message> - <message> - <source>Report Issue</source> - <translation type="obsolete">报告问题</translation> - </message> - <message> - <source>load order could not be saved</source> - <translation type="obsolete">无法保存加载顺序</translation> - </message> - <message> - <source>failed to save load order: %1</source> - <translation type="obsolete">无法保存加载顺序: %1</translation> - </message> - <message> - <source>failed to save archives order, do you have write access to "%1"?</source> - <translation type="obsolete">无法保存档案顺序,您确定您有权限更改 "%1"?</translation> - </message> - <message> - <source>Name</source> - <translation type="obsolete">名称</translation> - </message> - <message> - <source>Please enter a name for the new profile</source> - <translation type="obsolete">请为新配置文件输入一个名称</translation> - </message> - <message> - <source>failed to create profile: %1</source> - <translation type="obsolete">无法创建配置文件: %1</translation> - </message> - <message> - <source>Downloads in progress</source> - <translation type="obsolete">正在下载</translation> - </message> - <message> - <source>There are still downloads in progress, do you really want to quit?</source> - <translation type="obsolete">仍有正在进行中的下载,您确定要退出吗?</translation> - </message> - <message> - <source>init failed</source> - <translation type="obsolete">初始化失败</translation> - </message> - <message> - <source>failed to read savegame: %1</source> - <translation type="obsolete">无法读取存档: %1</translation> - </message> - <message> - <source><table cellspacing="5"><tr><td>Save Number</td><td>%1</td></tr><tr><td>Character</td><td>%2</td></tr><tr><td>Level</td><td>%3</td></tr><tr><td>Location</td><td>%4</td></tr><tr><td>Date</td><td>%5</td></tr><tr><td>Screenshot</td><td>%6</td></tr><tr><td>Missing ESPs</td><td><h5>%7</h5></td></tr></table></source> - <translation type="obsolete"><table cellspacing="5"><tr><td>存档序号</td><td>%1</td></tr><tr><td>游戏角色</td><td>%2</td></tr><tr><td>角色等级</td><td>%3</td></tr><tr><td>所在地点</td><td>%4</td></tr><tr><td>保存时间</td><td>%5</td></tr><tr><td>游戏截图</td><td>%6</td></tr><tr><td>缺失的 ESP</td><td><h5>%7</h5></td></tr></table></translation> - </message> - <message> - <source>Failed to start "%1"</source> - <translation type="obsolete">无法启动 "%1"</translation> - </message> - <message> - <source>Waiting</source> - <translation type="obsolete">稍等</translation> - </message> - <message> - <source>Please press OK once you're logged into steam.</source> - <translation type="obsolete">当您登录 Steam 时请点击确定。</translation> - </message> - <message> - <source>"%1" not found</source> - <translation type="obsolete">"%1" 未找到</translation> - </message> - <message> - <source>Start Steam?</source> - <translation type="obsolete">启动 Steam?</translation> - </message> - <message> - <source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source> - <translation type="obsolete">想要正确地启动遊戲,Steam 必须处于运行状态。MO 要立即启动 Steam 吗?</translation> - </message> - <message> - <source>Also in: <br></source> - <translation type="obsolete">也在: <br></translation> - </message> - <message> - <source>No conflict</source> - <translation type="obsolete">没有冲突</translation> - </message> - <message> - <source><Edit...></source> - <translation type="obsolete"><编辑...></translation> - </message> - <message> - <source>This bsa is enabled in the ini file so it may be required!</source> - <translation type="obsolete">该 BSA 已在 Ini 文件中启用,因此它可能是必需的。</translation> - </message> - <message> - <source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source> - <translation type="obsolete">此档案还是会被加载,因为存在同名插件。不过它所包含的的文件不会遵循安装顺序!</translation> - </message> - <message> - <source>Installation successful</source> - <translation type="obsolete">安装成功</translation> - </message> - <message> - <source>Configure Mod</source> - <translation type="obsolete">配置 Mod</translation> - </message> - <message> - <source>This mod contains ini tweaks. Do you want to configure them now?</source> - <translation type="obsolete">此 Mod 中包含 Ini 设定文件,您想现在就对它们进行配置吗?</translation> - </message> - <message> - <source>mod "%1" not found</source> - <translation type="obsolete">Mod "%1" 未找到</translation> - </message> - <message> - <source>Installation cancelled</source> - <translation type="obsolete">安装已取消</translation> - </message> - <message> - <source>The mod was not installed completely.</source> - <translation type="obsolete">Mod 没有完全安装。</translation> - </message> - <message> - <source>Choose Mod</source> - <translation type="obsolete">选择 Mod</translation> - </message> - <message> - <source>Mod Archive</source> - <translation type="obsolete">Mod 压缩包</translation> - </message> - <message> - <source>failed to refresh directory structure</source> - <translation type="obsolete">无法刷新目录结构</translation> - </message> - <message> - <source>Download started</source> - <translation type="obsolete">开始下载</translation> - </message> - <message> - <source>failed to update mod list: %1</source> - <translation type="obsolete">无法更新 Mod 列表: %1</translation> - </message> - <message> - <source>failed to spawn notepad.exe: %1</source> - <translation type="obsolete">无法生成 notepad.exe: %1</translation> - </message> - <message> - <source>Ini files are local to the currently selected profile.</source> - <translation type="obsolete">当前所选配置的本地 Ini 文件。</translation> - </message> - <message> - <source>failed to open %1</source> - <translation type="obsolete">无法打开 %1</translation> - </message> - <message> - <source>Name not valid</source> - <translation type="obsolete">名称无效</translation> - </message> - <message> - <source>failed to change origin name: %1</source> - <translation type="obsolete">无法更改原始文件名: %1</translation> - </message> - <message> - <source><All></source> - <translation type="obsolete"><全部></translation> - </message> - <message> - <source><Checked></source> - <translation type="obsolete"><已勾选></translation> - </message> - <message> - <source><Unchecked></source> - <translation type="obsolete"><未勾选></translation> - </message> - <message> - <source><Update></source> - <translation type="obsolete"><有更新></translation> - </message> - <message> - <source><No category></source> - <translation type="obsolete"><无类别></translation> - </message> - <message> - <source>New name</source> - <translation type="obsolete">新名称</translation> - </message> - <message> - <source>A mod with that name exists already</source> - <translation type="obsolete">该 Mod 名已存在</translation> - </message> - <message> - <source>failed to rename mod: %1</source> - <translation type="obsolete">无法重命名 Mod: %1</translation> - </message> - <message> - <source>failed to remove mod: %1</source> - <translation type="obsolete">无法移动 Mod: %1</translation> - </message> - <message> - <source>Failed</source> - <translation type="obsolete">失败</translation> - </message> - <message> - <source>Installation file no longer exists</source> - <translation type="obsolete">安装文件不复存在</translation> - </message> - <message> - <source>Mods installed with old versions of MO can't be reinstalled in this way.</source> - <translation type="obsolete">旧版 MO 安装的 Mod 无法使用此方法重新安装。</translation> - </message> - <message> - <source>Extract BSA</source> - <translation type="obsolete">解压 BSA</translation> - </message> - <message> - <source>This mod contains at least one BSA. Do you want to unpack it? -(This removes the BSA after completion. If you don't know about BSAs, just select no)</source> - <translation type="obsolete">此 Mod 中至少包含一个 BSA。您确定要解压吗? -(解压完成后,BSA 文件将会被删除。如果您不了解 BSA 的话,请选择“否”)</translation> - </message> - <message> - <source>failed to read %1: %2</source> - <translation type="obsolete">无法读取 %1: %2</translation> - </message> - <message> - <source>This archive contains invalid hashes. Some files may be broken.</source> - <translation type="obsolete">压缩包 Hash 值错误。部分文件可能已经损坏。</translation> - </message> - <message> - <source>Nexus ID for this Mod is unknown</source> - <translation type="obsolete">此 Mod 的N网 ID 未知</translation> - </message> - <message> - <source>Priority</source> - <translation type="obsolete">优先级</translation> - </message> - <message> - <source>Choose Priority</source> - <translation type="obsolete">选择优先级</translation> - </message> - <message> - <source>Enable all</source> - <translation type="obsolete">全部启用</translation> - </message> - <message> - <source>Disable all</source> - <translation type="obsolete">全部禁用</translation> - </message> - <message> - <source>Exception: </source> - <translation type="obsolete">例外: </translation> - </message> - <message> - <source>Unknown exception</source> - <translation type="obsolete">未知的例外</translation> - </message> - <message> - <source>Install Mod...</source> - <translation type="obsolete">安装 Mod...</translation> - </message> - <message> - <source>Enable all visible</source> - <translation type="obsolete">启用所有可见项目</translation> - </message> - <message> - <source>Disable all visible</source> - <translation type="obsolete">禁用所有可见项目</translation> - </message> - <message> - <source>Check all for update</source> - <translation type="obsolete">检查更新</translation> - </message> - <message> - <source>Set Priority</source> - <translation type="obsolete">设置优先级</translation> - </message> - <message> - <source>Highest</source> - <translation type="obsolete">最高</translation> - </message> - <message> - <source>Manually...</source> - <translation type="obsolete">手动...</translation> - </message> - <message> - <source>Lowest</source> - <translation type="obsolete">最低</translation> - </message> - <message> - <source>Set Category</source> - <translation type="obsolete">设置类别</translation> - </message> - <message> - <source>Rename Mod...</source> - <translation type="obsolete">重命名...</translation> - </message> - <message> - <source>Remove Mod...</source> - <translation type="obsolete">移除 Mod...</translation> - </message> - <message> - <source>Reinstall Mod</source> - <translation type="obsolete">重新安装 Mod</translation> - </message> - <message> - <source>Visit on Nexus</source> - <translation type="obsolete">在N网上浏览</translation> - </message> - <message> - <source>Open in explorer</source> - <translation type="obsolete">在资源管理器中打开</translation> - </message> - <message> - <source>Sync to Mods...</source> - <translation type="obsolete">同步到 Mod...</translation> - </message> - <message> - <source>Information...</source> - <translation type="obsolete">信息...</translation> - </message> - <message> - <source>Fix Mods...</source> - <translation type="obsolete">修复 Mod...</translation> - </message> - <message> - <source>failed to remove %1</source> - <translation type="obsolete">无法删除 %1</translation> - </message> - <message> - <source>failed to create %1</source> - <translation type="obsolete">无法创建 %1</translation> - </message> - <message> - <source>Can't change download directory while downloads are in progress!</source> - <translation type="obsolete">下载文件时不能修改下载目录!</translation> - </message> - <message> - <source>Download failed</source> - <translation type="obsolete">下载失败</translation> - </message> - <message> - <source>failed to write to file %1</source> - <translation type="obsolete">无法写入文件 %1</translation> - </message> - <message> - <source>%1 written</source> - <translation type="obsolete">已写入 %1</translation> - </message> - <message> - <source>Select binary</source> - <translation type="obsolete">选择可执行文件</translation> - </message> - <message> - <source>Binary</source> - <translation type="obsolete">可执行文件</translation> - </message> - <message> - <source>Enter Name</source> - <translation type="obsolete">输入名称</translation> - </message> - <message> - <source>Please enter a name for the executable</source> - <translation type="obsolete">请为程序输入一个名称</translation> - </message> - <message> - <source>Not an executable</source> - <translation type="obsolete">不是可执行程序</translation> - </message> - <message> - <source>This is not a recognized executable.</source> - <translation type="obsolete">无法识别的可执行文件</translation> - </message> - <message> - <source>Replace file?</source> - <translation type="obsolete">替换文件?</translation> - </message> - <message> - <source>There already is a hidden version of this file. Replace it?</source> - <translation type="obsolete">已存在同名文件,但该文件被隐藏了。确定要覆盖吗?</translation> - </message> - <message> - <source>File operation failed</source> - <translation type="obsolete">文件操作错误</translation> - </message> - <message> - <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> - <translation type="obsolete">无法移除 "%1",也许您需要足够的文件权限?</translation> - </message> - <message> - <source>failed to rename "%1" to "%2"</source> - <translation type="obsolete">无法重命名 "%1" 为 "%2"</translation> - </message> - <message> - <source>There already is a visible version of this file. Replace it?</source> - <translation type="obsolete">已存在同名文件,确定要覆盖吗?</translation> - </message> - <message> - <source>Update available</source> - <translation type="obsolete">更新可用</translation> - </message> - <message> - <source>Open/Execute</source> - <translation type="obsolete">打开/执行</translation> - </message> - <message> - <source>Add as Executable</source> - <translation type="obsolete">添加为可执行文件</translation> - </message> - <message> - <source>Un-Hide</source> - <translation type="obsolete">取消隐藏</translation> - </message> - <message> - <source>Hide</source> - <translation type="obsolete">隐藏</translation> - </message> - <message> - <source>Write To File...</source> - <translation type="obsolete">写入文件...</translation> - </message> - <message> - <source>login successful</source> - <translation type="obsolete">登录成功</translation> - </message> - <message> - <source>login failed: %1. Trying to download anyway</source> - <translation type="obsolete">登录失败: %1,请尝试使用别的方法下载</translation> - </message> - <message> - <source>login failed: %1. You need to log-in with Nexus to update MO.</source> - <translation type="obsolete">登录失败: %1。您需要登录到N网才能更新 MO</translation> - </message> - <message> - <source>Error</source> - <translation type="obsolete">错误</translation> - </message> - <message> - <source>failed to extract %1 (errorcode %2)</source> - <translation type="obsolete">无法解压 %1 (错误代码 %2)</translation> - </message> - <message> - <source>Extract...</source> - <translation type="obsolete">解压...</translation> - </message> - <message> - <source>Edit Categories...</source> - <translation type="obsolete">编辑类别...</translation> - </message> -</context> -<context> <name>OverwriteInfoDialog</name> <message> <location filename="overwriteinfodialog.ui" line="14"/> @@ -4717,7 +3701,7 @@ Right now this has very limited functionality</source> <message> <location filename="overwriteinfodialog.ui" line="39"/> <source>You can use drag&drop to move files and directories to regular mods.</source> - <translation type="unfinished"></translation> + <translation>你可以用鼠标拖拽常规mod的文件和路径</translation> </message> <message> <location filename="overwriteinfodialog.cpp" line="90"/> @@ -4775,143 +3759,124 @@ Right now this has very limited functionality</source> <context> <name>PluginList</name> <message> - <source>ESP not found: %1</source> - <translation type="obsolete">ESP 文件没有找到: %1</translation> + <location filename="pluginlist.cpp" line="103"/> + <source>Name</source> + <translation>名称</translation> </message> <message> - <location filename="pluginlist.cpp" line="111"/> + <location filename="pluginlist.cpp" line="104"/> + <source>Priority</source> + <translation>优先级</translation> + </message> + <message> + <location filename="pluginlist.cpp" line="105"/> <source>Mod Index</source> - <translation type="unfinished"></translation> + <translation>Mod 索引</translation> </message> <message> - <location filename="pluginlist.cpp" line="112"/> + <location filename="pluginlist.cpp" line="106"/> <source>Flags</source> - <translation type="unfinished"></translation> + <translation type="unfinished">标志</translation> </message> <message> - <location filename="pluginlist.cpp" line="113"/> - <location filename="pluginlist.cpp" line="125"/> + <location filename="pluginlist.cpp" line="107"/> + <location filename="pluginlist.cpp" line="119"/> <source>unknown</source> - <translation type="unfinished"></translation> + <translation type="unfinished">未知</translation> </message> <message> - <location filename="pluginlist.cpp" line="121"/> + <location filename="pluginlist.cpp" line="115"/> <source>Name of your mods</source> - <translation type="unfinished"></translation> + <translation>你的mod名称</translation> </message> <message> - <location filename="pluginlist.cpp" line="122"/> + <location filename="pluginlist.cpp" line="116"/> <source>Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="124"/> + <location filename="pluginlist.cpp" line="118"/> <source>The modindex determins the formids of objects originating from this mods.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="165"/> + <location filename="pluginlist.cpp" line="159"/> <source>failed to update esp info for file %1 (source id: %2), error: %3</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="233"/> + <location filename="pluginlist.cpp" line="227"/> <source>esp not found: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished">esp未找到:%1</translation> </message> <message> - <location filename="pluginlist.cpp" line="240"/> - <location filename="pluginlist.cpp" line="252"/> + <location filename="pluginlist.cpp" line="234"/> + <location filename="pluginlist.cpp" line="246"/> <source>Confirm</source> - <translation type="unfinished">确认</translation> + <translation>确认</translation> </message> <message> - <location filename="pluginlist.cpp" line="240"/> + <location filename="pluginlist.cpp" line="234"/> <source>Really enable all plugins?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="252"/> + <location filename="pluginlist.cpp" line="246"/> <source>Really disable all plugins?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="380"/> + <location filename="pluginlist.cpp" line="397"/> <source>The file containing locked plugin indices is broken</source> <translation type="unfinished"></translation> </message> <message> - <source>failed to open output file: %1</source> - <translation type="obsolete">无法打开输出文件: %1</translation> - </message> - <message> - <location filename="pluginlist.cpp" line="418"/> - <source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source> - <translation>您的一些插件名称无效!这些插件无法被游戏载入。请查看 mo_interface.log 来确认那些受影响的插件并重命名它们。</translation> - </message> - <message> - <location filename="pluginlist.cpp" line="644"/> - <source>BOSS dll incompatible</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="pluginlist.cpp" line="987"/> - <source>Missing Masters</source> + <location filename="pluginlist.cpp" line="804"/> + <source><b>Origin</b>: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="993"/> - <source>Enabled Masters</source> - <translation type="unfinished"></translation> + <location filename="pluginlist.cpp" line="806"/> + <source>Author</source> + <translation type="unfinished">作者</translation> </message> <message> - <location filename="pluginlist.cpp" line="1134"/> - <source>failed to restore load order for %1</source> - <translation type="unfinished"></translation> + <location filename="pluginlist.cpp" line="809"/> + <source>Description</source> + <translation type="unfinished">描述</translation> </message> <message> - <source>min</source> - <translation type="obsolete">最低值</translation> + <source>failed to open output file: %1</source> + <translation type="obsolete">无法打开输出文件: %1</translation> </message> <message> - <source>max</source> - <translation type="obsolete">最高值</translation> + <location filename="pluginlist.cpp" line="438"/> + <source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source> + <translation>您的一些插件名称无效!这些插件无法被游戏载入。请查看 mo_interface.log 来确认那些受影响的插件并重命名它们。</translation> </message> <message> - <location filename="pluginlist.cpp" line="983"/> + <location filename="pluginlist.cpp" line="802"/> <source>This plugin can't be disabled (enforced by the game)</source> <translation>这个插件不能被禁用 (由游戏执行)</translation> </message> <message> - <location filename="pluginlist.cpp" line="985"/> <source>Origin: %1</source> - <translation>隶属于: %1</translation> - </message> - <message> - <location filename="pluginlist.cpp" line="109"/> - <source>Name</source> - <translation>名称</translation> - </message> - <message> - <source>Names of your mods</source> - <translation type="obsolete">Mod 名称</translation> - </message> - <message> - <location filename="pluginlist.cpp" line="110"/> - <source>Priority</source> - <translation>优先级</translation> + <translation type="obsolete">隶属于: %1</translation> </message> <message> - <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source> - <translation type="obsolete">Mod 的安装优先级,越高就表示越“重要”,从而覆盖低优先级的 Mod 文件。</translation> + <location filename="pluginlist.cpp" line="812"/> + <source>Missing Masters</source> + <translation type="unfinished"></translation> </message> <message> - <source>ModIndex</source> - <translation type="obsolete">Mod 索引</translation> + <location filename="pluginlist.cpp" line="819"/> + <source>Enabled Masters</source> + <translation type="unfinished"></translation> </message> <message> - <source>This index determines the id of items, spells, ... introduced by the mod. Their id will be "xxyyyyyy" where "xx" is this index which "yyyyyy" is determined by the mod itself.</source> - <translation type="obsolete">这些索引决定了那些通过 Mod 引入的物品,法术等等的 ID。ID 的一般格式是 "xxyyyyyy",其中 "xx" 就是这个的索引,而 "yyyyyy" 则是由 Mod 自己所决定的。</translation> + <location filename="pluginlist.cpp" line="960"/> + <source>failed to restore load order for %1</source> + <translation type="unfinished">恢复 %1 加载顺序失败</translation> </message> </context> <context> @@ -4941,23 +3906,18 @@ Right now this has very limited functionality</source> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html></source> - <oldsource><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><br /></p></body></html></oldsource> <translation type="unfinished"></translation> </message> <message> <location filename="problemsdialog.ui" line="75"/> <source>Close</source> - <translation type="unfinished">关闭</translation> + <translation>关闭</translation> </message> <message> <location filename="problemsdialog.cpp" line="44"/> <location filename="problemsdialog.cpp" line="45"/> <source>Fix</source> - <translation type="unfinished"></translation> + <translation type="unfinished">修复</translation> </message> <message> <location filename="problemsdialog.cpp" line="49"/> @@ -4968,10 +3928,6 @@ p, li { white-space: pre-wrap; } <context> <name>Profile</name> <message> - <source>failed to apply ini tweaks</source> - <translation type="obsolete">无法应用 Ini 设定</translation> - </message> - <message> <location filename="profile.cpp" line="59"/> <source>invalid profile name %1</source> <translation type="unfinished"></translation> @@ -4982,64 +3938,69 @@ p, li { white-space: pre-wrap; } <translation type="unfinished">无法创建 %1</translation> </message> <message> - <location filename="profile.cpp" line="182"/> + <location filename="profile.cpp" line="184"/> <source>failed to write mod list: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished">无法更新 Mod 列表: %1</translation> </message> <message> - <location filename="profile.cpp" line="193"/> + <location filename="profile.cpp" line="195"/> <source>failed to update tweaked ini file, wrong settings may be used: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished">更新tweaked ini文件失败,可能会应用错误的设置: %1</translation> </message> <message> - <location filename="profile.cpp" line="223"/> + <location filename="profile.cpp" line="226"/> <source>failed to create tweaked ini: %1</source> + <translation type="unfinished">创建 tweaked ini: %1 失败</translation> + </message> + <message> + <location filename="profile.cpp" line="236"/> + <source>"%1" is missing or inaccessible</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="276"/> - <location filename="profile.cpp" line="305"/> - <location filename="profile.cpp" line="390"/> - <location filename="profile.cpp" line="408"/> - <location filename="profile.cpp" line="418"/> + <location filename="profile.cpp" line="281"/> + <location filename="profile.cpp" line="313"/> + <location filename="profile.cpp" line="415"/> + <location filename="profile.cpp" line="432"/> + <location filename="profile.cpp" line="442"/> <source>invalid index %1</source> <translation>无效的索引 %1</translation> </message> <message> - <location filename="profile.cpp" line="371"/> + <location filename="profile.cpp" line="396"/> <source>Overwrite directory couldn't be parsed</source> - <translation type="unfinished"></translation> + <translation>Overwrite 目录无法解析</translation> </message> <message> - <location filename="profile.cpp" line="380"/> + <location filename="profile.cpp" line="405"/> <source>invalid priority %1</source> <translation>无效的优先级 %1</translation> </message> <message> - <location filename="profile.cpp" line="568"/> + <location filename="profile.cpp" line="592"/> <source>failed to parse ini file (%1)</source> - <translation type="unfinished"></translation> + <translation type="unfinished">无法解析 Ini 文件 (%1): %2</translation> </message> <message> - <location filename="profile.cpp" line="596"/> + <location filename="profile.cpp" line="620"/> <source>failed to parse ini file (%1): %2</source> <translation>无法解析 Ini 文件 (%1): %2</translation> </message> <message> - <location filename="profile.cpp" line="620"/> - <location filename="profile.cpp" line="657"/> + <location filename="profile.cpp" line="644"/> + <location filename="profile.cpp" line="681"/> <source>failed to modify "%1"</source> - <translation type="unfinished"></translation> + <translation type="unfinished">未能找到 "%1"</translation> </message> <message> - <location filename="profile.cpp" line="685"/> + <location filename="profile.cpp" line="709"/> <source>Delete savegames?</source> - <translation type="unfinished"></translation> + <translation>是否删除游戏存档?</translation> </message> <message> - <location filename="profile.cpp" line="686"/> + <location filename="profile.cpp" line="710"/> <source>Do you want to delete local savegames? (If you select "No", the save games will show up again if you re-enable local savegames)</source> - <translation type="unfinished"></translation> + <translation>是否删除本地游戏存档?(如果选择“否”,当你重新恢复本地游戏时存档将再次显示)</translation> </message> </context> <context> @@ -5100,49 +4061,15 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">注意: </span>由于技术上的原因,目前不可能有分开保存的插件加载顺序。这意味着您不能同时在两个配置文件里使用两种不同的插件配置方案。</p></body></html></translation> </message> <message> - <source>Savegame Filter</source> - <translation type="obsolete">存档过滤</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Experimental</span><span style=" font-size:8pt;"> Enter a charactername to hide all save games from other characters in the game.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt; font-weight:600;">实验性的</span><span style=" font-size:9pt;"> 输入一个角色名来隐藏游戏里其它角色的存档。</span></p></body></html></translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Experimental</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Here you can enter a character name to filter the save games displayed inside the game. This makes it easy to have concurrent walkthroughs with different characters.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Note</span> however that autosave and quicksave are always displayed and overwritten even if they belong to a different character.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Note</span> also this may confuse the savegame counter which is why this feature is marked experimental.</p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">实验性的</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">在这里您可以输入一个角色名称来过滤游戏中显示的存档,这样您就可以简单地同时管理不同的角色了。</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">注意:</span> 即使角色不同,自动存档和快速存档还是共用的。</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">注意:</span> 这样做也有可能会混淆存档的序号,这也是为什么这个功能被标记为实验的原因。</p></body></html></translation> - </message> - <message> <location filename="profilesdialog.ui" line="38"/> <location filename="profilesdialog.ui" line="41"/> <source>If checked, savegames are local to this profile and will not appear when starting with a different profile.</source> - <translation type="unfinished"></translation> + <translation>如果勾取,游戏存档将作为配置文件的局部存档不会在别的配置文件中出现。</translation> </message> <message> <location filename="profilesdialog.ui" line="44"/> <source>Local Savegames</source> - <translation type="unfinished"></translation> + <translation>局部游戏存档</translation> </message> <message> <location filename="profilesdialog.ui" line="51"/> @@ -5213,18 +4140,18 @@ p, li { white-space: pre-wrap; } <message> <location filename="profilesdialog.ui" line="123"/> <source>Rename</source> - <translation type="unfinished"></translation> + <translation type="unfinished">&重命名</translation> </message> <message> <location filename="profilesdialog.ui" line="133"/> <location filename="profilesdialog.ui" line="136"/> <source>Transfer save games to the selected profile.</source> - <translation type="unfinished"></translation> + <translation>传递游戏存档到选定的配置文件</translation> </message> <message> <location filename="profilesdialog.ui" line="139"/> <source>Transfer Saves</source> - <translation type="unfinished"></translation> + <translation>转移存档</translation> </message> <message> <location filename="profilesdialog.ui" line="162"/> @@ -5260,7 +4187,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="profilesdialog.cpp" line="165"/> <source>Invalid name</source> - <translation type="unfinished"></translation> + <translation>无效名称</translation> </message> <message> <location filename="profilesdialog.cpp" line="165"/> @@ -5288,18 +4215,14 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <source>Are you sure you want to remove this profile?</source> - <translation type="obsolete">确定要移除这个配置吗?</translation> - </message> - <message> <location filename="profilesdialog.cpp" line="215"/> <source>Rename Profile</source> - <translation type="unfinished"></translation> + <translation>重命名配置文件</translation> </message> <message> <location filename="profilesdialog.cpp" line="215"/> <source>New Name</source> - <translation type="unfinished"></translation> + <translation>新名称</translation> </message> <message> <location filename="profilesdialog.cpp" line="252"/> @@ -5333,6 +4256,51 @@ p, li { white-space: pre-wrap; } <translation>无效的类别 %1</translation> </message> <message> + <location filename="csvbuilder.cpp" line="70"/> + <source>invalid field name "%1"</source> + <translation type="unfinished">无效的名称 "%1"</translation> + </message> + <message> + <location filename="csvbuilder.cpp" line="76"/> + <source>invalid type for "%1" (should be integer)</source> + <translation type="unfinished">无效的类型 "%1" (应该是整数)</translation> + </message> + <message> + <location filename="csvbuilder.cpp" line="81"/> + <source>invalid type for "%1" (should be string)</source> + <translation type="unfinished">无效的类型 "%1" (应该是字符串)</translation> + </message> + <message> + <location filename="csvbuilder.cpp" line="86"/> + <source>invalid type for "%1" (should be float)</source> + <translation type="unfinished">无效的类型 "%1" (应该是浮点数)</translation> + </message> + <message> + <location filename="csvbuilder.cpp" line="103"/> + <source>no fields set up yet!</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="csvbuilder.cpp" line="140"/> + <source>field not set "%1"</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="csvbuilder.cpp" line="237"/> + <source>invalid character in field "%1"</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="csvbuilder.cpp" line="240"/> + <source>empty field name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="gameinfoimpl.cpp" line="41"/> + <source>invalid game type %1</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="helper.cpp" line="53"/> <source>helper failed</source> <translation>帮助程序出错</translation> @@ -5414,104 +4382,91 @@ p, li { white-space: pre-wrap; } <translation>无法设置代理DLL加载</translation> </message> <message> - <location filename="profile.cpp" line="96"/> - <source>"%1" is missing</source> - <translation>"%1" 缺失</translation> - </message> - <message> - <location filename="main.cpp" line="139"/> + <location filename="main.cpp" line="121"/> <source>Permissions required</source> <translation>需要权限</translation> </message> <message> - <source>The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "mo_helper.exe" with administrative rights).</source> - <translation type="obsolete">当前的用户帐户没有运行 Mod Organizer 所需的访问权限,必要的修改将会自动进行 (MO 的目录将会为当前用户帐户而变得可写),您将被请求使用管理员权限执行 "mo_helper.exe"。</translation> + <location filename="main.cpp" line="122"/> + <source>The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights.</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="main.cpp" line="231"/> - <location filename="main.cpp" line="269"/> + <location filename="main.cpp" line="216"/> + <location filename="main.cpp" line="254"/> <source>Woops</source> <translation>糟糕</translation> </message> <message> - <source>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file by email (sherb@gmx.net), the bug is a lot more likely to be fixed.</source> - <translation type="obsolete">Mod Organizer 崩溃了!要生成诊断文件吗?如果您发送这个文件到我的邮箱 (sherb@gmx.net) 里的话,这个 Bug 会很有可能被修复。</translation> - </message> - <message> - <location filename="main.cpp" line="140"/> - <source>The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="main.cpp" line="232"/> + <location filename="main.cpp" line="217"/> <source>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file (%1) to sherb@gmx.net, the bug is a lot more likely to be fixed. Please include a short description of what you were doing when the crash happened</source> - <translation type="unfinished"></translation> + <translation type="unfinished">ModOrganizer已经崩溃。诊断文件是否已经产生?如果你将文件(%1)发送至 sherb@gmx.net ,这个bug有可能会被修复。最好加入崩溃发生时情况的简短说明(用英文吧)。</translation> </message> <message> - <location filename="main.cpp" line="270"/> + <location filename="main.cpp" line="255"/> <source>ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1</source> <translation>Mod Organizer 崩溃了!遗憾的是,我无法生成诊断文件: %1</translation> </message> <message> - <location filename="main.cpp" line="332"/> - <location filename="settings.cpp" line="542"/> + <location filename="main.cpp" line="376"/> + <location filename="settings.cpp" line="557"/> <source>Mod Organizer</source> <translation>Mod Organizer</translation> </message> <message> - <location filename="main.cpp" line="332"/> + <location filename="main.cpp" line="376"/> <source>An instance of Mod Organizer is already running</source> <translation>Mod Organizer 的一个实例正在运行</translation> </message> <message> - <location filename="main.cpp" line="354"/> + <location filename="main.cpp" line="398"/> <source>No game identified in "%1". The directory is required to contain the game binary and its launcher.</source> <translation>"%1" 中未检测到游戏。请确保该路径中包含游戏执行程序以及对应的 Launcher 文件。</translation> </message> <message> - <location filename="main.cpp" line="357"/> - <location filename="main.cpp" line="386"/> + <location filename="main.cpp" line="401"/> + <location filename="main.cpp" line="430"/> <source>Please select the game to manage</source> <translation>请选择想要管理的游戏</translation> </message> <message> - <location filename="main.cpp" line="412"/> + <location filename="main.cpp" line="456"/> <source>Please select the game edition you have (MO can't start the game correctly if this is set incorrectly!)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="782"/> + <location filename="main.cpp" line="545"/> + <source>failed to start application: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="842"/> <source>Please use "Help" from the toolbar to get usage instructions to all elements</source> <translation>请使用工具栏上的“帮助”来获得所有元素的使用说明</translation> </message> <message> - <location filename="mainwindow.cpp" line="1610"/> - <location filename="mainwindow.cpp" line="4216"/> + <location filename="mainwindow.cpp" line="1613"/> + <location filename="mainwindow.cpp" line="4226"/> <source><Manage...></source> <translation><管理...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1628"/> + <location filename="mainwindow.cpp" line="1631"/> <source>failed to parse profile %1: %2</source> <translation>无法解析配置文件 %1: %2</translation> </message> <message> - <location filename="pluginlist.cpp" line="335"/> - <location filename="profile.cpp" line="233"/> + <location filename="pluginlist.cpp" line="352"/> <source>failed to find "%1"</source> <translation>未能找到 "%1"</translation> </message> <message> - <source>encoding error, please report this as a bug and include the file mo_interface.log!</source> - <translation type="obsolete">编码错误,请向作者汇报此 Bug 并且附上 mo_interface.log 文件!</translation> - </message> - <message> - <location filename="pluginlist.cpp" line="491"/> + <location filename="pluginlist.cpp" line="515"/> <source>failed to access %1</source> <translation>无法访问 %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="505"/> + <location filename="pluginlist.cpp" line="529"/> <source>failed to set file time %1</source> <translation>无法设置文件时间 %1</translation> </message> @@ -5521,12 +4476,13 @@ p, li { white-space: pre-wrap; } <translation>无法创建 %1</translation> </message> <message> - <source>modlist.txt missing</source> - <translation type="obsolete">Modlist.txt 丢失</translation> + <location filename="profile.cpp" line="96"/> + <source>"%1" is missing or inaccessible</source> + <translation type="unfinished"></translation> </message> <message> - <source>failed to copy "%1" to "%2", this is going to end badly...</source> - <translation type="obsolete">无法复制 "%1" 到 "%2",并且程序将会严重地结束...</translation> + <source>"%1" is missing</source> + <translation type="obsolete">"%1" 缺失</translation> </message> <message> <location filename="profilesdialog.cpp" line="80"/> @@ -5552,27 +4508,27 @@ p, li { white-space: pre-wrap; } <translation>无法打开 %1</translation> </message> <message> - <location filename="settings.cpp" line="549"/> + <location filename="settings.cpp" line="564"/> <source>Script Extender</source> <translation>脚本拓展</translation> </message> <message> - <location filename="settings.cpp" line="556"/> + <location filename="settings.cpp" line="571"/> <source>Proxy DLL</source> <translation>代理DLL</translation> </message> <message> - <location filename="spawn.cpp" line="106"/> + <location filename="spawn.cpp" line="127"/> <source>failed to spawn "%1"</source> <translation>无法生成 "%1"</translation> </message> <message> - <location filename="spawn.cpp" line="113"/> + <location filename="spawn.cpp" line="134"/> <source>Elevation required</source> <translation type="unfinished"></translation> </message> <message> - <location filename="spawn.cpp" line="114"/> + <location filename="spawn.cpp" line="135"/> <source>This process requires elevation to run. This is a potential security risk so I highly advice you to investigate if "%1" @@ -5582,83 +4538,26 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <translation type="unfinished"></translation> </message> <message> - <location filename="spawn.cpp" line="129"/> + <location filename="spawn.cpp" line="150"/> <source>failed to spawn "%1": %2</source> <translation>无法生成 "%1": %2</translation> </message> <message> - <location filename="spawn.cpp" line="138"/> + <location filename="spawn.cpp" line="159"/> <source>"%1" doesn't exist</source> <translation>"%1" 不存在</translation> </message> <message> - <location filename="spawn.cpp" line="145"/> + <location filename="spawn.cpp" line="166"/> <source>failed to inject dll into "%1": %2</source> <translation>无法注入 dll 到 "%1": %2</translation> </message> <message> - <location filename="spawn.cpp" line="153"/> + <location filename="spawn.cpp" line="174"/> <source>failed to run "%1"</source> <translation>无法运行 "%1"</translation> </message> <message> - <source>removal of "%1" failed: %2</source> - <translation type="obsolete">无法移除 %1: %2</translation> - </message> - <message> - <source>removal of "%1" failed</source> - <translation type="obsolete">无法移除 "%1"</translation> - </message> - <message> - <source>"%1" doesn't exist (remove)</source> - <translation type="obsolete">"%1" 不存在 (移除)</translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="70"/> - <source>invalid field name "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="76"/> - <source>invalid type for "%1" (should be integer)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="81"/> - <source>invalid type for "%1" (should be string)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="86"/> - <source>invalid type for "%1" (should be float)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="103"/> - <source>no fields set up yet!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="140"/> - <source>field not set "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="237"/> - <source>invalid character in field "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="240"/> - <source>empty field name</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="gameinfoimpl.cpp" line="41"/> - <source>invalid game type %1</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="safewritefile.cpp" line="32"/> <source>failed to open temporary file</source> <translation type="unfinished"></translation> @@ -5669,22 +4568,22 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="queryoverwritedialog.ui" line="14"/> <source>Mod Exists</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Mod 已存在</translation> </message> <message> <location filename="queryoverwritedialog.ui" line="45"/> <source>This mod seems to be installed already. Do you want to add files from this archive (overwriting existing ones) or do you want to completely replace the existing files (old files are deleted)? Alternatively you can install this mod under a different name.</source> - <translation type="unfinished"></translation> + <translation type="unfinished">这个mod看上去已经存在。你是希望将本次压缩包文件添加(覆盖已存在文件)或完全覆盖(旧的文件全删除)?另外你还可以起别的名称安装本mod。</translation> </message> <message> <location filename="queryoverwritedialog.ui" line="63"/> <source>Keep Backup</source> - <translation type="unfinished"></translation> + <translation>保留备份</translation> </message> <message> <location filename="queryoverwritedialog.ui" line="70"/> <source>Merge</source> - <translation type="unfinished"></translation> + <translation>合并</translation> </message> <message> <location filename="queryoverwritedialog.ui" line="77"/> @@ -5694,7 +4593,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="queryoverwritedialog.ui" line="84"/> <source>Rename</source> - <translation type="unfinished"></translation> + <translation type="unfinished">&重命名</translation> </message> <message> <location filename="queryoverwritedialog.ui" line="91"/> @@ -5703,13 +4602,6 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe </message> </context> <context> - <name>QuestionBoxMemory</name> - <message> - <source>Remember selection</source> - <translation type="obsolete">记住我的选择</translation> - </message> -</context> -<context> <name>SaveGameInfoWidget</name> <message> <location filename="savegameinfowidget.ui" line="39"/> @@ -5724,17 +4616,17 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="savegameinfowidget.ui" line="63"/> <source>Level</source> - <translation type="unfinished"></translation> + <translation type="unfinished">等级</translation> </message> <message> <location filename="savegameinfowidget.ui" line="75"/> <source>Location</source> - <translation type="unfinished"></translation> + <translation type="unfinished">位置</translation> </message> <message> <location filename="savegameinfowidget.ui" line="87"/> <source>Date</source> - <translation type="unfinished"></translation> + <translation type="unfinished">时间</translation> </message> </context> <context> @@ -5742,7 +4634,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="savegameinfowidgetgamebryo.cpp" line="41"/> <source>Missing ESPs</source> - <translation type="unfinished"></translation> + <translation type="unfinished">缺失的 ESP</translation> </message> </context> <context> @@ -5755,27 +4647,27 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="savetextasdialog.ui" line="32"/> <source>Copy To Clipboard</source> - <translation type="unfinished"></translation> + <translation>复制到剪贴板</translation> </message> <message> <location filename="savetextasdialog.ui" line="39"/> <source>Save As...</source> - <translation type="unfinished"></translation> + <translation>另存为...</translation> </message> <message> <location filename="savetextasdialog.ui" line="59"/> <source>Close</source> - <translation type="unfinished">关闭</translation> + <translation>关闭</translation> </message> <message> <location filename="savetextasdialog.cpp" line="36"/> <source>Save CSV</source> - <translation type="unfinished"></translation> + <translation>保存 CSV</translation> </message> <message> <location filename="savetextasdialog.cpp" line="36"/> <source>Text Files</source> - <translation type="unfinished"></translation> + <translation type="unfinished">文本文件</translation> </message> <message> <location filename="savetextasdialog.cpp" line="40"/> @@ -5804,13 +4696,9 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <context> <name>SelfUpdater</name> <message> - <source>mo_archive.dll not loaded: "%1"</source> - <translation type="obsolete">mo_archive.dll 未加载: "%1"</translation> - </message> - <message> <location filename="selfupdater.cpp" line="66"/> <source>archive.dll not loaded: "%1"</source> - <translation type="unfinished"></translation> + <translation type="unfinished">archive.dll 没有载入: "%1"</translation> </message> <message> <location filename="selfupdater.cpp" line="116"/> @@ -5848,7 +4736,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="selfupdater.cpp" line="250"/> <source>failed to move outdated files: %1. Please update manually.</source> - <translation type="unfinished"></translation> + <translation type="unfinished">移除过时文件失败: %1。请手动更新</translation> </message> <message> <location filename="selfupdater.cpp" line="268"/> @@ -5873,42 +4761,34 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="selfupdater.cpp" line="425"/> <source>no file for update found. Please update manually.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="selfupdater.cpp" line="460"/> - <source>No download server available. Please try again later.</source> - <translation type="unfinished">没有可用的下载服务器,请稍后再尝试下载。</translation> - </message> - <message> - <source>no file for update found</source> - <translation type="obsolete">未找到更新文件</translation> + <translation type="unfinished">没有发现可更新。请手动更新。</translation> </message> <message> <location filename="selfupdater.cpp" line="440"/> <source>Failed to retrieve update information: %1</source> <translation>无法检索更新信息: %1</translation> </message> + <message> + <location filename="selfupdater.cpp" line="460"/> + <source>No download server available. Please try again later.</source> + <translation>没有可用的下载服务器,请稍后再尝试下载。</translation> + </message> </context> <context> <name>Settings</name> <message> - <source>Administrative rights required to change this.</source> - <translation type="obsolete">需要管理员的权限来更改这个。</translation> - </message> - <message> - <location filename="settings.cpp" line="320"/> - <location filename="settings.cpp" line="339"/> + <location filename="settings.cpp" line="329"/> + <location filename="settings.cpp" line="348"/> <source>attempt to store setting for unknown plugin "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settings.cpp" line="660"/> + <location filename="settings.cpp" line="681"/> <source>Confirm</source> <translation>确认</translation> </message> <message> - <location filename="settings.cpp" line="660"/> + <location filename="settings.cpp" line="681"/> <source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed?</source> <translation>修改 Mod 目录将会影响您的配置!新目录中不存在 (或者名称不同) 的 Mod 将在所有配置中被禁止掉。此操作无法撤销,所以执行此操作前建议先备份下自己的配置。立即执行?</translation> </message> @@ -5956,12 +4836,12 @@ p, li { white-space: pre-wrap; } <message> <location filename="settingsdialog.ui" line="64"/> <source>graphical style</source> - <translation type="unfinished"></translation> + <translation type="unfinished">界面样式</translation> </message> <message> <location filename="settingsdialog.ui" line="67"/> <source>graphical style of the MO user interface</source> - <translation type="unfinished"></translation> + <translation>MO用户界面图形样式</translation> </message> <message> <location filename="settingsdialog.ui" line="78"/> @@ -5987,12 +4867,12 @@ p, li { white-space: pre-wrap; } <message> <location filename="settingsdialog.ui" line="98"/> <source>Info</source> - <translation type="unfinished"></translation> + <translation>信息</translation> </message> <message> <location filename="settingsdialog.ui" line="103"/> <source>Error</source> - <translation type="unfinished">错误</translation> + <translation>错误</translation> </message> <message> <location filename="settingsdialog.ui" line="113"/> @@ -6031,129 +4911,69 @@ p, li { white-space: pre-wrap; } <translation>缓存目录</translation> </message> <message> - <location filename="settingsdialog.ui" line="205"/> - <source>Reset stored information from dialogs.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="208"/> - <source>This will make all dialogs show up again where you checked the "Remember selection"-box.</source> + <location filename="settingsdialog.ui" line="199"/> + <source>User interface</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="211"/> - <source>Reset Dialogs</source> - <translation>重置对话框</translation> - </message> - <message> - <location filename="settingsdialog.ui" line="231"/> - <location filename="settingsdialog.ui" line="234"/> - <source>Modify the categories available to arrange your mods.</source> - <translation>修改可用的类别来整理您的 Mod。</translation> - </message> - <message> - <location filename="settingsdialog.ui" line="237"/> - <source>Configure Mod Categories</source> - <translation>配置 Mod 类别</translation> - </message> - <message> - <location filename="settingsdialog.ui" line="318"/> - <source>Disable automatic internet features</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="321"/> - <source>Disable automatic internet features. This does not affect features that are explicitly invoked by the user (like checking mods for updates, endorsing, opening the web browser)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="324"/> - <source>Offline Mode</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="331"/> - <source>Use a proxy for network connections.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="334"/> - <source>Use a proxy for network connections. This uses the system-wide settings which can be configured in Internet Explorer. Please note that MO will start up a few seconds slower on some systems when using a proxy.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="337"/> - <source>Use HTTP Proxy (Uses System Settings)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="346"/> - <source>Associate with "Download with manager" links</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="375"/> - <source>Known Servers (updated on download)</source> + <location filename="settingsdialog.ui" line="205"/> + <source>If checked, the download interface will be more compact.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="396"/> - <source>Preferred Servers (Drag & Drop)</source> + <location filename="settingsdialog.ui" line="208"/> + <source>Compact Download Interface</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="536"/> - <source>Blacklisted Plugins (use <del> to remove):</source> + <location filename="settingsdialog.ui" line="215"/> + <source>If checked, the download list will display meta information instead of file names.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="632"/> - <source>Mod Organizer needs a dll to be injected into the game so all mods are visible to it. -There are several means to do this: -*Mod Organizer* (default) In this mode the Mod Organizer itself injects the dll. The disadvantage is that you always have to start the game through MO or a link created by it. -*Script Extender* In this mode, MO is installed as a Script Extender (obse, fose, nvse, skse) plugin. -*Proxy DLL* In this mode, MO replaces one of the game's dlls with one that loads MO (and the original dll of course). This will ONLY work with Steam games and it has only been tested with Skyrim. Please use this only if the other mechanisms don't work. - -If you use the Steam version of Oblivion the default will NOT work. In this case, please install obse and use "Script Extender" as the load mechanism. Also you can then not start Oblivion from MO. Instead, use MO only to set up your mods, then quit and start Oblivion through Steam.</source> + <location filename="settingsdialog.ui" line="218"/> + <source>Download Meta Information</source> <translation type="unfinished"></translation> </message> <message> - <source>Installer</source> - <translation type="obsolete">安装程序</translation> - </message> - <message> - <source>Choose the integrated fomod installer over the external one wherever possible.</source> - <translation type="obsolete">尽可能地优先选择内置的 fomod 安装程序而不是外部的。</translation> + <location filename="settingsdialog.ui" line="234"/> + <source>Reset stored information from dialogs.</source> + <translation type="unfinished">重设对话框信息。</translation> </message> <message> - <source>Use the integrated fomod installer if possible. This installer is only able to handle archives scripted using an xml-file (that's maybe half the fomods out there), other files are still installed using the external installer if it's available.</source> - <translation type="obsolete">尽可能地使用内置的 fomod 安装程序。此安装程序仅能处理内含 xml 脚本的压缩包 (大概有一半的 fomod 使用 xml 脚本),其余不支持的文件则继续使用外部安装程序 (如果可用的话)。</translation> + <location filename="settingsdialog.ui" line="237"/> + <source>This will make all dialogs show up again where you checked the "Remember selection"-box.</source> + <translation type="unfinished">全部对话框将全部重新显示,包括你已勾取过“记住选择”的对话框。</translation> </message> <message> - <source>Prefer integrated fomod installer</source> - <translation type="obsolete">首选内置 fomod 安装程序</translation> + <location filename="settingsdialog.ui" line="240"/> + <source>Reset Dialogs</source> + <translation>重置对话框</translation> </message> <message> - <source>Use a very simple installation dialog if MO recognizes the structure of the installation archive. If you prefer your life complicated, uncheck this box.</source> - <translation type="obsolete">如果 MO 能够识别安装包的结构,则使用简单明了的对话框模式安装。如果您喜欢挑战复杂点的,那么也可以取消此复选框。</translation> + <location filename="settingsdialog.ui" line="260"/> + <location filename="settingsdialog.ui" line="263"/> + <source>Modify the categories available to arrange your mods.</source> + <translation>修改可用的类别来整理您的 Mod。</translation> </message> <message> - <source>Enable "Quick Installer"</source> - <translation type="obsolete">启用“快速安装”</translation> + <location filename="settingsdialog.ui" line="266"/> + <source>Configure Mod Categories</source> + <translation>配置 Mod 类别</translation> </message> <message> - <location filename="settingsdialog.ui" line="245"/> - <location filename="settingsdialog.ui" line="261"/> + <location filename="settingsdialog.ui" line="274"/> + <location filename="settingsdialog.ui" line="290"/> <source>Nexus</source> <translation>N网</translation> </message> <message> - <location filename="settingsdialog.ui" line="251"/> + <location filename="settingsdialog.ui" line="280"/> <source>Allows automatic log-in when the Nexus-Page for the game is clicked.</source> <translation>当N网页面打开时将自动登录。</translation> </message> <message> - <location filename="settingsdialog.ui" line="254"/> + <location filename="settingsdialog.ui" line="283"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -6166,84 +4986,126 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">允许当N网页面打开时自动登录。请注意: 密码是储存在 modorganizer.ini 里的,混淆得不是很强烈。如果您担心有人可能会窃取您的密码,那么请不要存储在这里。</span></p></body></html></translation> </message> <message> - <location filename="settingsdialog.ui" line="270"/> + <location filename="settingsdialog.ui" line="299"/> <source>If checked and if correct credentials are entered below, log-in to Nexus (for browsing and downloading) is automatic.</source> - <translation type="unfinished"></translation> + <translation type="unfinished">勾取并在下面输入正确账户,将自动登录Nexus (浏览和下载)。</translation> </message> <message> - <location filename="settingsdialog.ui" line="273"/> + <location filename="settingsdialog.ui" line="302"/> <source>Automatically Log-In to Nexus</source> <translation>自动登录</translation> </message> <message> - <location filename="settingsdialog.ui" line="282"/> + <location filename="settingsdialog.ui" line="311"/> <source>Username</source> <translation>账号</translation> </message> <message> - <location filename="settingsdialog.ui" line="296"/> + <location filename="settingsdialog.ui" line="325"/> <source>Password</source> <translation>密码</translation> </message> <message> - <source>Handle NXM Links</source> - <translation type="obsolete">关联 NXM 链接</translation> + <location filename="settingsdialog.ui" line="347"/> + <source>Disable automatic internet features</source> + <translation>取消自动联网功能</translation> </message> <message> - <source>If checked, MO will use an external browser for buttons like "Visit on Nexus" instead of the integrated one.</source> - <translation type="obsolete">当您勾选时,MO 将会使用外部浏览器打开链接而不是使用内置的。</translation> + <location filename="settingsdialog.ui" line="350"/> + <source>Disable automatic internet features. This does not affect features that are explicitly invoked by the user (like checking mods for updates, endorsing, opening the web browser)</source> + <translation type="unfinished">取消自动联网功能。这并不影响用户调用功能(如检查mod更新,点赞支持mod,打开网页浏览)。</translation> </message> <message> - <source>Prefer external browser</source> - <translation type="obsolete">首选外部浏览器</translation> + <location filename="settingsdialog.ui" line="353"/> + <source>Offline Mode</source> + <translation>离线模式</translation> </message> <message> - <location filename="settingsdialog.ui" line="431"/> - <source>Plugins</source> + <location filename="settingsdialog.ui" line="360"/> + <source>Use a proxy for network connections.</source> + <translation>使用代理联网</translation> + </message> + <message> + <location filename="settingsdialog.ui" line="363"/> + <source>Use a proxy for network connections. This uses the system-wide settings which can be configured in Internet Explorer. Please note that MO will start up a few seconds slower on some systems when using a proxy.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="453"/> - <source>Author:</source> + <location filename="settingsdialog.ui" line="366"/> + <source>Use HTTP Proxy (Uses System Settings)</source> + <translation>使用 HTTP 代理(使用系统设置)</translation> + </message> + <message> + <location filename="settingsdialog.ui" line="375"/> + <source>Associate with "Download with manager" links</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="467"/> - <source>Version:</source> + <location filename="settingsdialog.ui" line="404"/> + <source>Known Servers (updated on download)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="481"/> + <source>Known Servers (Dynamically updated every download)</source> + <translation type="obsolete">已知的服务器(每次下载自动更新)</translation> + </message> + <message> + <location filename="settingsdialog.ui" line="425"/> + <source>Preferred Servers (Drag & Drop)</source> + <translation>首选服务器(可拖拽顺序)</translation> + </message> + <message> + <location filename="settingsdialog.ui" line="460"/> + <source>Plugins</source> + <translation>插件</translation> + </message> + <message> + <location filename="settingsdialog.ui" line="482"/> + <source>Author:</source> + <translation>作者</translation> + </message> + <message> + <location filename="settingsdialog.ui" line="496"/> + <source>Version:</source> + <translation>版本</translation> + </message> + <message> + <location filename="settingsdialog.ui" line="510"/> <source>Description:</source> - <translation type="unfinished"></translation> + <translation>描述</translation> </message> <message> - <location filename="settingsdialog.ui" line="519"/> + <location filename="settingsdialog.ui" line="548"/> <source>Key</source> - <translation type="unfinished"></translation> + <translation type="unfinished">关键</translation> </message> <message> - <location filename="settingsdialog.ui" line="524"/> + <location filename="settingsdialog.ui" line="553"/> <source>Value</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="547"/> + <location filename="settingsdialog.ui" line="565"/> + <source>Blacklisted Plugins (use <del> to remove):</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="576"/> <source>Workarounds</source> <translation>解决方案</translation> </message> <message> - <location filename="settingsdialog.ui" line="555"/> + <location filename="settingsdialog.ui" line="584"/> <source>Steam App ID</source> <translation>Steam App ID</translation> </message> <message> - <location filename="settingsdialog.ui" line="575"/> + <location filename="settingsdialog.ui" line="604"/> <source>The Steam AppID for your game</source> <translation>您游戏的 Steam AppID</translation> </message> <message> - <location filename="settingsdialog.ui" line="578"/> + <location filename="settingsdialog.ui" line="607"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -6270,47 +5132,38 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">其中 22380 就是您要找的 ID。</span></p></body></html></translation> </message> <message> - <location filename="settingsdialog.ui" line="609"/> + <location filename="settingsdialog.ui" line="638"/> <source>Load Mechanism</source> <translation>加载机制</translation> </message> <message> - <location filename="settingsdialog.ui" line="629"/> + <location filename="settingsdialog.ui" line="658"/> <source>Select loading mechanism. See help for details.</source> <translation>选择加载机制,使用帮助查看更多细节。</translation> </message> <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Mod Organizer needs a dll to be injected into the game so all mods are visible to it.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">There are several means to do this:</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Mod Organizer</span><span style=" font-size:8pt;"> (default) In this mode the Mod Organizer itself injects the dll. The disadvantage is that you always have to start the game through MO or a link created by it. This does not work for the Steam version of Oblivion!</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Script Extender</span><span style=" font-size:8pt;"> In this mode, MO is installed as a Script Extender (obse, fose, nvse, skse) plugin. (recommended if you have a script extender installed)</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Proxy DLL</span><span style=" font-size:8pt;"> In this mode, MO replaces one of the game's dlls with one that loads MO (and the original dll of course). This will ONLY work with Steam games and it has only been tested with Skyrim. Please use this only if the other mechanisms don't work.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">Mod Organizer 需要一个 dll 来注入游戏,从而使所有 Mod 在游戏里是可见的。</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">有以下几种方式可以做到这一点: </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt; font-weight:600;">Mod Organizer</span><span style=" font-size:9pt;"> (默认) 在这种模式下,Mod Organizer 将注入自身的 dll。但缺点是: 您总是需要通过 MO 或由其创建的链接来启动游戏。注意: 这并不适用于 Steam 版本的湮灭!</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt; font-weight:600;">脚本拓展</span><span style=" font-size:9pt;"> 在这种模式下,MO 将被作为脚本扩展 (obse, fose, nvse, skse) 的插件来安装。(推荐在您已经安装了脚本拓展后)</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt; font-weight:600;">代理DLL</span><span style=" font-size:9pt;"> 在这种模式下,MO 将替换一个游戏的 dll 来加载 MO (当然原来的 dll),这仅适用于 Steam 版本的游戏,并且只在 Skyrim 上做过测试。请只在其它加载机制不能工作的情况下才使用它。</span></p></body></html></translation> + <location filename="settingsdialog.ui" line="661"/> + <source>Mod Organizer needs a dll to be injected into the game so all mods are visible to it. +There are several means to do this: +*Mod Organizer* (default) In this mode the Mod Organizer itself injects the dll. The disadvantage is that you always have to start the game through MO or a link created by it. +*Script Extender* In this mode, MO is installed as a Script Extender (obse, fose, nvse, skse) plugin. +*Proxy DLL* In this mode, MO replaces one of the game's dlls with one that loads MO (and the original dll of course). This will ONLY work with Steam games and it has only been tested with Skyrim. Please use this only if the other mechanisms don't work. + +If you use the Steam version of Oblivion the default will NOT work. In this case, please install obse and use "Script Extender" as the load mechanism. Also you can then not start Oblivion from MO. Instead, use MO only to set up your mods, then quit and start Oblivion through Steam.</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="649"/> + <location filename="settingsdialog.ui" line="678"/> <source>NMM Version</source> <translation>NMM 版本</translation> </message> <message> - <location filename="settingsdialog.ui" line="669"/> + <location filename="settingsdialog.ui" line="698"/> <source>The Version of Nexus Mod Manager to impersonate.</source> <translation>想要模拟的 NMM 版本号。</translation> </message> <message> - <location filename="settingsdialog.ui" line="672"/> + <location filename="settingsdialog.ui" line="701"/> <source>Mod Organizer uses an API provided by the Nexus to provide features like checking for updates and downloading files. Unfortunately this API has not been made available officially to third party tools like MO so we have to impersonate the Nexus Mod Manager to be allowed in. On top of this Nexus has used the client identification to lock out outdated versions of NMM to force users to update. This means that MO also needs to impersonate the new version of NMM even if MO doesn't need an update. Therefore you can configure the version to identify as here. Please note that MO does identify itself as MO to the webserver, it's not lying about what it is. It is merely adding a "compatible" NMM version to the user agent. @@ -6323,67 +5176,73 @@ tl;dr-version: If Nexus-features don't work, insert the current version num 变更版本号: 如果N网功能不正常了,那么请在这里输入 NMM 的当前版本号并重试一下。</translation> </message> <message> - <location filename="settingsdialog.ui" line="757"/> - <source>These are workarounds for problems with Mod Organizer. Please make sure you read the help text before changing anything here.</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>009.009.009; </source> - <translation type="obsolete">009.009.009; </translation> - </message> - <message> - <source>example: 0.33.1</source> - <translation type="obsolete">例如: 0.33.1</translation> - </message> - <message> - <location filename="settingsdialog.ui" line="694"/> + <location filename="settingsdialog.ui" line="723"/> <source>Enforces that inactive ESPs and ESMs are never loaded.</source> <translation>强制执行,未激活的 ESP 和 ESM 将不会被加载。</translation> </message> <message> - <location filename="settingsdialog.ui" line="697"/> + <location filename="settingsdialog.ui" line="726"/> <source>It seems that the Games occasionally load ESP or ESM files even if they haven't been activated as plugins. I don't yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded.</source> <translation>看来,游戏偶尔会加载一些没有被激活成插件的 ESP 或 ESM 文件。 我还尚不知道它在什么情况下会这样,但是有用户报告说它在某些情况下是很不必要的。如果这个选项被选中,那么在列表中没有被勾选的 ESP 和 ESM 将不会在游戏中出现,并且也不会被载入。</translation> </message> <message> - <location filename="settingsdialog.ui" line="701"/> + <location filename="settingsdialog.ui" line="730"/> <source>Hide inactive ESPs/ESMs</source> <translation>隐藏未激活的 ESP 或 ESM</translation> </message> <message> - <location filename="settingsdialog.ui" line="708"/> + <location filename="settingsdialog.ui" line="737"/> <source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="711"/> + <location filename="settingsdialog.ui" line="740"/> <source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on) Uncheck this if you want to use Mod Organizer with total conversions (like Nehrim) but be aware that the game will crash if required files are not enabled.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="715"/> + <location filename="settingsdialog.ui" line="744"/> <source>Force-enable game files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="725"/> - <location filename="settingsdialog.ui" line="729"/> + <location filename="settingsdialog.ui" line="754"/> + <source>Disable this to no longer display mods installed outside MO in the mod list (left pane). Assets from those mods will then be treated as having lowest mod priority together with the original game content.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="757"/> + <source>By default Mod Organizer will display esp+bsa bundles installed with foreign tools as mods (left pane). This allows you to control their priority in relation to other mods. This is particularly useful if you also use Steam Workshop to install mods. +However, if you installed loose file mods outside MO which conflict with BSAs also installed outside MO those conflicts can't be resolved correctly. + +If you disable this feature, MO will only display official DLCs this way. Please note that plugins (esps and esms) displayed in the right pane are completely unaffected by this feature.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="763"/> + <source>Display mods installed outside MO</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="773"/> + <location filename="settingsdialog.ui" line="777"/> <source>For Skyrim, this can be used instead of Archive Invalidation. It should make AI redundant for all Profiles. For the other games this is not a sufficient replacement for AI!</source> <translation>对于天际,这个可以用来取代档案无效化,它将会使档案无效化对所有配置都变得多余。 但是对于其它游戏,这并不是一个很好的替代品!</translation> </message> <message> - <location filename="settingsdialog.ui" line="733"/> + <location filename="settingsdialog.ui" line="781"/> <source>Back-date BSAs</source> <translation>重置 BSA 文件修改日期</translation> </message> <message> - <source>These are workarounds for problems with Mod Organizer. They are usually not neccessary. Please make sure you read the help text before changing anything here.</source> - <translation type="obsolete">这些是 Mod Organizer 的问题解决方案。它们通常是不必修改的,请确保在您变更了这里的任何东西之前已经读过了帮助文档。</translation> + <location filename="settingsdialog.ui" line="805"/> + <source>These are workarounds for problems with Mod Organizer. Please make sure you read the help text before changing anything here.</source> + <translation type="unfinished"></translation> </message> <message> <location filename="settingsdialog.cpp" line="95"/> @@ -6454,7 +5313,6 @@ For the other games this is not a sufficient replacement for AI!</source> </message> <message> <location filename="singleinstance.cpp" line="82"/> - <location filename="singleinstance.cpp" line="88"/> <source>failed to connect to running instance: %1</source> <translation>无法连接到正在运行的实例: %1</translation> </message> @@ -6498,46 +5356,11 @@ For the other games this is not a sufficient replacement for AI!</source> </message> </context> <context> - <name>TextViewer</name> - <message> - <source>Log Viewer</source> - <translation type="obsolete">文本查看器</translation> - </message> - <message> - <source>Placeholder</source> - <translation type="obsolete">占位符</translation> - </message> - <message> - <source>Save changes?</source> - <translation type="obsolete">保存更改吗?</translation> - </message> - <message> - <source>Do you want to save changes to %1?</source> - <translation type="obsolete">您想要保存更改到 %1 吗?</translation> - </message> - <message> - <source>failed to write to %1</source> - <translation type="obsolete">无法写入 %1</translation> - </message> - <message> - <source>file not found: %1</source> - <translation type="obsolete">文件未找到: %1</translation> - </message> - <message> - <source>Save</source> - <translation type="obsolete">保存</translation> - </message> -</context> -<context> <name>TransferSavesDialog</name> <message> - <source>Dialog</source> - <translation type="obsolete">对话框</translation> - </message> - <message> <location filename="transfersavesdialog.ui" line="14"/> <source>Transfer Savegames</source> - <translation type="unfinished"></translation> + <translation type="unfinished">转移存档</translation> </message> <message> <location filename="transfersavesdialog.ui" line="22"/> @@ -6547,7 +5370,7 @@ For the other games this is not a sufficient replacement for AI!</source> <message> <location filename="transfersavesdialog.ui" line="29"/> <source>This is a list of characters in the global location.</source> - <translation type="unfinished"></translation> + <translation type="unfinished">这里是全局位置存档角色列表。</translation> </message> <message> <location filename="transfersavesdialog.ui" line="32"/> @@ -6559,14 +5382,6 @@ On Windows Vista/Windows 7: On Windows XP: C:\Documents and Settings\[UserName]\My Documents\My Games\Skyrim\Saves </source> - <oldsource>This is a list of characters in the global location. - -On Windows Vista/Windows 7: - C:\Users\[UserName]\Documents\My Games\Skyrim\Saves - -On Windows XP: - C:\Documents and Settings[UserName]\My Documents\My Games\Skyrim\Saves -</oldsource> <translation type="unfinished"></translation> </message> <message> @@ -6585,32 +5400,32 @@ On Windows XP: <message> <location filename="transfersavesdialog.ui" line="87"/> <source>Move -></source> - <translation type="unfinished"></translation> + <translation>移动 -></translation> </message> <message> <location filename="transfersavesdialog.ui" line="97"/> <source>Copy -></source> - <translation type="unfinished"></translation> + <translation>复制 -></translation> </message> <message> <location filename="transfersavesdialog.ui" line="123"/> <source><- Move</source> - <translation type="unfinished"></translation> + <translation><- 移动</translation> </message> <message> <location filename="transfersavesdialog.ui" line="133"/> <source><- Copy</source> - <translation type="unfinished"></translation> + <translation><- 复制</translation> </message> <message> <location filename="transfersavesdialog.ui" line="156"/> <source>Done</source> - <translation type="unfinished">完成</translation> + <translation>完成</translation> </message> <message> <location filename="transfersavesdialog.ui" line="167"/> <source>Profile Characters</source> - <translation type="unfinished"></translation> + <translation type="unfinished">配置文件中角色</translation> </message> <message> <location filename="transfersavesdialog.cpp" line="140"/> @@ -6620,7 +5435,7 @@ On Windows XP: <message> <location filename="transfersavesdialog.cpp" line="141"/> <source>Overwrite the file "%1"</source> - <translation type="unfinished"></translation> + <translation type="unfinished">覆盖文件 "%1"</translation> </message> <message> <location filename="transfersavesdialog.cpp" line="164"/> @@ -6628,23 +5443,23 @@ On Windows XP: <location filename="transfersavesdialog.cpp" line="237"/> <location filename="transfersavesdialog.cpp" line="276"/> <source>Confirm</source> - <translation type="unfinished">确认</translation> + <translation>确认</translation> </message> <message> <location filename="transfersavesdialog.cpp" line="165"/> <location filename="transfersavesdialog.cpp" line="203"/> <source>Copy all save games of character "%1" to the profile?</source> - <translation type="unfinished"></translation> + <translation type="unfinished">是否复制角色 "%1" 的所有游戏存档到这个配置中?</translation> </message> <message> <location filename="transfersavesdialog.cpp" line="238"/> <source>Move all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> - <translation type="unfinished"></translation> + <translation type="unfinished">是否移动角色 "%1" 的所有游戏存档到全局路径?请注意这将使游戏存档的运行编号变得混乱。</translation> </message> <message> <location filename="transfersavesdialog.cpp" line="277"/> <source>Copy all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source> - <translation type="unfinished"></translation> + <translation type="unfinished">是否拷贝角色 "%1" 的所有游戏存档到全局路径?请注意这将使游戏存档的运行编号变得混乱。</translation> </message> </context> </TS> diff --git a/src/organizer_zh_TW.ts b/src/organizer_zh_TW.ts index 0ae46a41..9648be26 100644 --- a/src/organizer_zh_TW.ts +++ b/src/organizer_zh_TW.ts @@ -156,6 +156,29 @@ If there is a component called "00 Core" it is usually required. Optio </message> </context> <context> + <name>BrowserDialog</name> + <message> + <location filename="browserdialog.ui" line="14"/> + <source>Some Page</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="browserdialog.ui" line="256"/> + <source>Search</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="browserdialog.cpp" line="91"/> + <source>new</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="browserdialog.cpp" line="204"/> + <source>failed to start download</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> <name>CategoriesDialog</name> <message> <location filename="categoriesdialog.ui" line="14"/> @@ -272,13 +295,9 @@ p, li { white-space: pre-wrap; } <context> <name>DirectoryRefresher</name> <message> - <source>failed to read %1: %2</source> - <translation type="obsolete">無法讀取 %1: %2</translation> - </message> - <message> - <location filename="directoryrefresher.cpp" line="99"/> + <location filename="directoryrefresher.cpp" line="146"/> <source>failed to read bsa: %1</source> - <translation type="unfinished"></translation> + <translation type="unfinished">無法讀取 %1: %2</translation> </message> </context> <context> @@ -319,28 +338,28 @@ p, li { white-space: pre-wrap; } </message> <message> <location filename="downloadlistwidget.ui" line="99"/> - <location filename="downloadlistwidget.cpp" line="145"/> - <location filename="downloadlistwidget.cpp" line="147"/> + <location filename="downloadlistwidget.cpp" line="150"/> + <location filename="downloadlistwidget.cpp" line="152"/> <source>Done - Double Click to install</source> <translation>完成 - 雙擊進行安裝</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="111"/> - <location filename="downloadlistwidget.cpp" line="113"/> + <location filename="downloadlistwidget.cpp" line="116"/> + <location filename="downloadlistwidget.cpp" line="118"/> <source>Paused - Double Click to resume</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="131"/> - <location filename="downloadlistwidget.cpp" line="133"/> + <location filename="downloadlistwidget.cpp" line="136"/> + <location filename="downloadlistwidget.cpp" line="138"/> <source>Installed - Double Click to re-install</source> <translation>已安裝 - 雙擊重新安裝</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="138"/> - <location filename="downloadlistwidget.cpp" line="140"/> + <location filename="downloadlistwidget.cpp" line="143"/> + <location filename="downloadlistwidget.cpp" line="145"/> <source>Uninstalled - Double Click to re-install</source> - <translation type="unfinished"></translation> + <translation type="unfinished">已安裝 - 雙擊重新安裝</translation> </message> </context> <context> @@ -360,135 +379,135 @@ p, li { white-space: pre-wrap; } <context> <name>DownloadListWidgetCompactDelegate</name> <message> - <location filename="downloadlistwidgetcompact.cpp" line="126"/> + <location filename="downloadlistwidgetcompact.cpp" line="92"/> + <source>< mod %1 file %2 ></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="97"/> + <source>Pending</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="120"/> + <source>Paused</source> + <translation type="unfinished">暫停</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="123"/> + <source>Fetching Info 1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="125"/> + <source>Fetching Info 2</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="130"/> <source>Installed</source> <translation>已安裝</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="129"/> + <location filename="downloadlistwidgetcompact.cpp" line="133"/> <source>Uninstalled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="132"/> + <location filename="downloadlistwidgetcompact.cpp" line="136"/> <source>Done</source> <translation>完成</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="241"/> - <location filename="downloadlistwidgetcompact.cpp" line="250"/> - <location filename="downloadlistwidgetcompact.cpp" line="259"/> - <location filename="downloadlistwidgetcompact.cpp" line="268"/> + <location filename="downloadlistwidgetcompact.cpp" line="245"/> + <location filename="downloadlistwidgetcompact.cpp" line="254"/> + <location filename="downloadlistwidgetcompact.cpp" line="263"/> + <location filename="downloadlistwidgetcompact.cpp" line="272"/> <source>Are you sure?</source> <translation>確定?</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="242"/> + <location filename="downloadlistwidgetcompact.cpp" line="246"/> <source>This will remove all finished downloads from this list and from disk.</source> <translation>這將會從列表和磁碟中移除所有已完成的下載。</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="251"/> + <location filename="downloadlistwidgetcompact.cpp" line="255"/> <source>This will remove all installed downloads from this list and from disk.</source> <translation>這將會從列表和磁碟中移除所有已安裝的下載項目。</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="260"/> + <location filename="downloadlistwidgetcompact.cpp" line="264"/> <source>This will permanently remove all finished downloads from this list (but NOT from disk).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="269"/> + <location filename="downloadlistwidgetcompact.cpp" line="273"/> <source>This will permanently remove all installed downloads from this list (but NOT from disk).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="298"/> + <location filename="downloadlistwidgetcompact.cpp" line="302"/> <source>Install</source> <translation>安裝</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="300"/> + <location filename="downloadlistwidgetcompact.cpp" line="304"/> <source>Query Info</source> <translation>查詢訊息</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="302"/> + <location filename="downloadlistwidgetcompact.cpp" line="306"/> <source>Delete</source> - <translation type="unfinished"></translation> + <translation type="unfinished">&刪除</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="304"/> + <location filename="downloadlistwidgetcompact.cpp" line="308"/> <source>Un-Hide</source> <translation type="unfinished">取消隱藏</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="306"/> + <location filename="downloadlistwidgetcompact.cpp" line="310"/> <source>Remove from View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="312"/> - <source>Remove</source> - <translation>移除</translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="309"/> + <location filename="downloadlistwidgetcompact.cpp" line="313"/> <source>Cancel</source> <translation>取消</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="88"/> - <source>< mod %1 file %2 ></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="93"/> - <source>Pending</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="116"/> - <source>Paused</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="119"/> - <source>Fetching Info 1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="121"/> - <source>Fetching Info 2</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidgetcompact.cpp" line="310"/> + <location filename="downloadlistwidgetcompact.cpp" line="314"/> <source>Pause</source> <translation>暫停</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="313"/> + <location filename="downloadlistwidgetcompact.cpp" line="316"/> + <source>Remove</source> + <translation>移除</translation> + </message> + <message> + <location filename="downloadlistwidgetcompact.cpp" line="317"/> <source>Resume</source> <translation>繼續</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="318"/> + <location filename="downloadlistwidgetcompact.cpp" line="322"/> <source>Delete Installed...</source> - <translation type="unfinished"></translation> + <translation type="unfinished">移除已安裝的項目...</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="319"/> + <location filename="downloadlistwidgetcompact.cpp" line="323"/> <source>Delete All...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="322"/> + <location filename="downloadlistwidgetcompact.cpp" line="326"/> <source>Remove Installed...</source> <translation>移除已安裝的項目...</translation> </message> <message> - <location filename="downloadlistwidgetcompact.cpp" line="323"/> + <location filename="downloadlistwidgetcompact.cpp" line="327"/> <source>Remove All...</source> <translation>移除所有...</translation> </message> @@ -496,115 +515,115 @@ p, li { white-space: pre-wrap; } <context> <name>DownloadListWidgetDelegate</name> <message> - <location filename="downloadlistwidget.cpp" line="253"/> - <location filename="downloadlistwidget.cpp" line="262"/> - <location filename="downloadlistwidget.cpp" line="271"/> - <location filename="downloadlistwidget.cpp" line="280"/> + <location filename="downloadlistwidget.cpp" line="93"/> + <source>< mod %1 file %2 ></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="96"/> + <source>Pending</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="123"/> + <source>Fetching Info 1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="126"/> + <source>Fetching Info 2</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="258"/> + <location filename="downloadlistwidget.cpp" line="267"/> + <location filename="downloadlistwidget.cpp" line="276"/> + <location filename="downloadlistwidget.cpp" line="285"/> <source>Are you sure?</source> <translation>確定?</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="254"/> + <location filename="downloadlistwidget.cpp" line="259"/> <source>This will remove all finished downloads from this list and from disk.</source> <translation>這將會從列表和磁碟中移除所有已完成的下載。</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="263"/> + <location filename="downloadlistwidget.cpp" line="268"/> <source>This will remove all installed downloads from this list and from disk.</source> <translation>這將會從列表和磁碟中移除所有已安裝的下載項目。</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="272"/> + <location filename="downloadlistwidget.cpp" line="277"/> <source>This will remove all finished downloads from this list (but NOT from disk).</source> - <translation type="unfinished"></translation> + <translation type="unfinished">這將會從列表和磁碟中移除所有已完成的下載。</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="281"/> + <location filename="downloadlistwidget.cpp" line="286"/> <source>This will remove all installed downloads from this list (but NOT from disk).</source> - <translation type="unfinished"></translation> + <translation type="unfinished">這將會從列表和磁碟中移除所有已安裝的下載項目。</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="309"/> + <location filename="downloadlistwidget.cpp" line="314"/> <source>Install</source> <translation>安裝</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="311"/> + <location filename="downloadlistwidget.cpp" line="316"/> <source>Query Info</source> <translation>查詢訊息</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="313"/> + <location filename="downloadlistwidget.cpp" line="318"/> <source>Delete</source> - <translation type="unfinished"></translation> + <translation type="unfinished">&刪除</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="315"/> + <location filename="downloadlistwidget.cpp" line="320"/> <source>Un-Hide</source> <translation type="unfinished">取消隱藏</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="317"/> + <location filename="downloadlistwidget.cpp" line="322"/> <source>Remove from View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="323"/> - <source>Remove</source> - <translation>移除</translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="320"/> + <location filename="downloadlistwidget.cpp" line="325"/> <source>Cancel</source> <translation>取消</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="88"/> - <source>< mod %1 file %2 ></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="91"/> - <source>Pending</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="118"/> - <source>Fetching Info 1</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="121"/> - <source>Fetching Info 2</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="downloadlistwidget.cpp" line="321"/> + <location filename="downloadlistwidget.cpp" line="326"/> <source>Pause</source> <translation>暫停</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="324"/> + <location filename="downloadlistwidget.cpp" line="328"/> + <source>Remove</source> + <translation>移除</translation> + </message> + <message> + <location filename="downloadlistwidget.cpp" line="329"/> <source>Resume</source> <translation>繼續</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="329"/> + <location filename="downloadlistwidget.cpp" line="334"/> <source>Delete Installed...</source> - <translation type="unfinished"></translation> + <translation type="unfinished">移除已安裝的項目...</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="330"/> + <location filename="downloadlistwidget.cpp" line="335"/> <source>Delete All...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="333"/> + <location filename="downloadlistwidget.cpp" line="338"/> <source>Remove Installed...</source> <translation>移除已安裝的項目...</translation> </message> <message> - <location filename="downloadlistwidget.cpp" line="334"/> + <location filename="downloadlistwidget.cpp" line="339"/> <source>Remove All...</source> <translation>移除所有...</translation> </message> @@ -612,126 +631,173 @@ p, li { white-space: pre-wrap; } <context> <name>DownloadManager</name> <message> - <location filename="downloadmanager.cpp" line="132"/> + <location filename="downloadmanager.cpp" line="142"/> <source>failed to rename "%1" to "%2"</source> <translation>重新命名 "%1 "為 "%2" 時出錯</translation> </message> <message> - <location filename="downloadmanager.cpp" line="342"/> + <location filename="downloadmanager.cpp" line="321"/> + <source>Memory allocation error (in refreshing directory).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="369"/> <source>Download again?</source> <translation>重新下載?</translation> </message> <message> - <location filename="downloadmanager.cpp" line="342"/> + <location filename="downloadmanager.cpp" line="369"/> <source>A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name.</source> <translation>已存在同名檔案。您確定要重新下載?新檔案將使用不同的檔案名。</translation> </message> <message> - <location filename="downloadmanager.cpp" line="388"/> + <location filename="downloadmanager.cpp" line="417"/> <source>failed to download %1: could not open output file: %2</source> <translation>下載 %1 失敗: 無法開啟輸出檔案: %2</translation> </message> <message> - <location filename="downloadmanager.cpp" line="421"/> + <location filename="downloadmanager.cpp" line="454"/> <source>Wrong Game</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadmanager.cpp" line="421"/> + <location filename="downloadmanager.cpp" line="454"/> <source>The download link is for a mod for "%1" but this instance of MO has been set up for "%2".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadmanager.cpp" line="439"/> - <location filename="downloadmanager.cpp" line="506"/> - <location filename="downloadmanager.cpp" line="682"/> - <location filename="downloadmanager.cpp" line="691"/> - <location filename="downloadmanager.cpp" line="701"/> - <location filename="downloadmanager.cpp" line="710"/> - <location filename="downloadmanager.cpp" line="724"/> - <location filename="downloadmanager.cpp" line="734"/> - <location filename="downloadmanager.cpp" line="744"/> - <location filename="downloadmanager.cpp" line="754"/> - <location filename="downloadmanager.cpp" line="765"/> + <location filename="downloadmanager.cpp" line="471"/> + <location filename="downloadmanager.cpp" line="538"/> + <location filename="downloadmanager.cpp" line="726"/> + <location filename="downloadmanager.cpp" line="735"/> + <location filename="downloadmanager.cpp" line="756"/> <location filename="downloadmanager.cpp" line="773"/> <location filename="downloadmanager.cpp" line="782"/> - <location filename="downloadmanager.cpp" line="792"/> - <location filename="downloadmanager.cpp" line="807"/> + <location filename="downloadmanager.cpp" line="796"/> + <location filename="downloadmanager.cpp" line="806"/> + <location filename="downloadmanager.cpp" line="816"/> + <location filename="downloadmanager.cpp" line="826"/> + <location filename="downloadmanager.cpp" line="841"/> + <location filename="downloadmanager.cpp" line="849"/> + <location filename="downloadmanager.cpp" line="858"/> + <location filename="downloadmanager.cpp" line="868"/> + <location filename="downloadmanager.cpp" line="883"/> <source>invalid index</source> <translation>無效的索引</translation> </message> <message> - <location filename="downloadmanager.cpp" line="457"/> + <location filename="downloadmanager.cpp" line="489"/> <source>failed to delete %1</source> <translation>無法刪除 %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="463"/> + <location filename="downloadmanager.cpp" line="495"/> <source>failed to delete meta file for %1</source> <translation>無法從 %1 中刪除 mate 檔案</translation> </message> <message> - <location filename="downloadmanager.cpp" line="539"/> - <location filename="downloadmanager.cpp" line="557"/> - <location filename="downloadmanager.cpp" line="570"/> - <location filename="downloadmanager.cpp" line="587"/> - <location filename="downloadmanager.cpp" line="598"/> + <location filename="downloadmanager.cpp" line="571"/> + <location filename="downloadmanager.cpp" line="589"/> + <location filename="downloadmanager.cpp" line="602"/> + <location filename="downloadmanager.cpp" line="622"/> <location filename="downloadmanager.cpp" line="633"/> + <location filename="downloadmanager.cpp" line="673"/> <source>invalid index %1</source> <translation>無效的索引 %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="650"/> + <location filename="downloadmanager.cpp" line="640"/> + <source>No known download urls. Sorry, this download can't be resumed.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="695"/> <source>Please enter the nexus mod id</source> <translation>請輸入N網 Mod ID</translation> </message> <message> - <location filename="downloadmanager.cpp" line="650"/> + <location filename="downloadmanager.cpp" line="695"/> <source>Mod ID:</source> <translation>Mod ID:</translation> </message> <message> - <source>invalid alphabetical index %1</source> - <translation type="obsolete">無效的字順索引 %1</translation> + <location filename="downloadmanager.cpp" line="744"/> + <source>Main</source> + <translation type="unfinished">主要檔案</translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="745"/> + <source>Update</source> + <translation type="unfinished">更新</translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="746"/> + <source>Optional</source> + <translation type="unfinished">可選檔案</translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="747"/> + <source>Old</source> + <translation type="unfinished">舊檔</translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="748"/> + <source>Misc</source> + <translation type="unfinished">雜項</translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="749"/> + <source>Unknown</source> + <translation type="unfinished">未知</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1042"/> + <location filename="downloadmanager.cpp" line="999"/> + <source>Memory allocation error (in processing progress event).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="1012"/> + <source>Memory allocation error (in processing downloaded data).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="downloadmanager.cpp" line="1141"/> <source>Information updated</source> <translation>訊息已更新</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1044"/> - <location filename="downloadmanager.cpp" line="1058"/> + <location filename="downloadmanager.cpp" line="1143"/> + <location filename="downloadmanager.cpp" line="1157"/> <source>No matching file found on Nexus! Maybe this file is no longer available or it was renamed?</source> <translation>無法在N網上找到匹配的檔案!也許這個檔案已經不存在了或是它改名了?</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1046"/> + <location filename="downloadmanager.cpp" line="1145"/> <source>No file on Nexus matches the selected file by name. Please manually choose the correct one.</source> <translation>所選的檔案無法在N網上找到可匹配的項目,請手動選擇正確的一個。</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1180"/> + <location filename="downloadmanager.cpp" line="1286"/> <source>No download server available. Please try again later.</source> <translation>沒有可用的下載伺服器,請稍後再嘗試下載。</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1224"/> + <location filename="downloadmanager.cpp" line="1329"/> <source>Failed to request file info from nexus: %1</source> <translation>無法在N網上請求檔案訊息: %1</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1249"/> + <location filename="downloadmanager.cpp" line="1357"/> <source>Download failed. Server reported: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="downloadmanager.cpp" line="1251"/> + <location filename="downloadmanager.cpp" line="1359"/> <source>Download failed: %1 (%2)</source> <translation>下載失敗: %1 (%2)</translation> </message> <message> - <location filename="downloadmanager.cpp" line="1331"/> + <location filename="downloadmanager.cpp" line="1458"/> <source>failed to re-open %1</source> <translation>無法重新開啟 %1</translation> </message> @@ -1027,62 +1093,6 @@ Right now the only case I know of where this needs to be overwritten is for the <source>Cancel</source> <translation>取消</translation> </message> - <message> - <source>ModuleConfig.xml missing</source> - <translation type="obsolete">ModuleConfig.xml 丟失</translation> - </message> - <message> - <source><a href="%1">Link</a></source> - <translation type="obsolete"><a href="%1">連結</a></translation> - </message> - <message> - <source>failed to parse info.xml: %1 (%2) (line %3, column %4)</source> - <translation type="obsolete">無法解析 info.xml: %1 (%2) (行 %3, 列 %4)</translation> - </message> - <message> - <source>unsupported order type %1</source> - <translation type="obsolete">未支持的排列類型 %1</translation> - </message> - <message> - <source>unsupported group type %1</source> - <translation type="obsolete">未支持的群組類型 %1</translation> - </message> - <message> - <source>This component is required</source> - <translation type="obsolete">該組件是必需的</translation> - </message> - <message> - <source>It is recommended you enable this component</source> - <translation type="obsolete">我們建議您啟用此組件</translation> - </message> - <message> - <source>Optional component</source> - <translation type="obsolete">可選組件</translation> - </message> - <message> - <source>This component is not usable in combination with other installed plugins</source> - <translation type="obsolete">該組件不能和其它已安裝的插件一起使用</translation> - </message> - <message> - <source>You may be experiencing instability in combination with other installed plugins</source> - <translation type="obsolete">與其它已安裝的插件一起使用可能會導致遊戲不穩定。</translation> - </message> - <message> - <source>None</source> - <translation type="obsolete">無</translation> - </message> - <message> - <source>Select one or more of these options:</source> - <translation type="obsolete">選擇這些選項中的一個或多個:</translation> - </message> - <message> - <source>failed to parse ModuleConfig.xml: %1</source> - <translation type="obsolete">無法解析 info.xml: %1</translation> - </message> - <message> - <source>Install</source> - <translation type="obsolete">安裝</translation> - </message> </context> <context> <name>InstallDialog</name> @@ -1149,52 +1159,13 @@ p, li { white-space: pre-wrap; } <source>Cancel</source> <translation type="unfinished">取消</translation> </message> - <message> - <source>Looks good</source> - <translation type="obsolete">看起來不錯</translation> - </message> - <message> - <source>No problem detected</source> - <translation type="obsolete">沒有檢測到問題</translation> - </message> - <message> - <source>No game data on top level</source> - <translation type="obsolete">Data 目錄沒有在頂層</translation> - </message> - <message> - <source>There is no esp/esm file or asset directory (textures, meshes, interface, ...) on the top level.</source> - <translation type="obsolete">沒有 esp 或 esm 檔案或有效的目錄 (textures, meshes, interface, ...) 在頂層。</translation> - </message> - <message> - <source>Enter a directory name</source> - <translation type="obsolete">輸入一個目錄名稱</translation> - </message> - <message> - <source>A directory with that name exists</source> - <translation type="obsolete">該目錄名稱已存在</translation> - </message> - <message> - <source>Set data directory</source> - <translation type="obsolete">設定為 Data 目錄</translation> - </message> - <message> - <source>Unset data directory</source> - <translation type="obsolete">取消設定為 Data 目錄</translation> - </message> - <message> - <source>Create directory...</source> - <translation type="obsolete">新增資料夾...</translation> - </message> - <message> - <source>&Open</source> - <translation type="obsolete">&開啟</translation> - </message> </context> <context> <name>InstallationManager</name> <message> - <source>mo_archive.dll not loaded: "%1"</source> - <translation type="obsolete">mo_archive.dll 未加載: "%1"</translation> + <location filename="installationmanager.cpp" line="76"/> + <source>archive.dll not loaded: "%1"</source> + <translation type="unfinished"></translation> </message> <message> <location filename="installationmanager.cpp" line="98"/> @@ -1207,73 +1178,13 @@ p, li { white-space: pre-wrap; } <translation>密碼</translation> </message> <message> - <source>Directory exists</source> - <translation type="obsolete">目錄已存在</translation> - </message> - <message> - <source>This mod seems to be installed already. Do you want to add files from this archive (overwriting existing ones) or do you want to completely replace the existing files (old files are deleted)?</source> - <translation type="obsolete">這個 Mod 似乎已安裝,您仍想添加此壓縮包中的檔案嗎?(將會覆蓋現有的) 或者您想要完整地取代現有的檔案嗎?(舊的檔案將會被刪除)</translation> - </message> - <message> - <source>Add Files</source> - <translation type="obsolete">添加檔案</translation> - </message> - <message> - <source>Replace</source> - <translation type="obsolete">取代</translation> - </message> - <message> <location filename="installationmanager.cpp" line="164"/> <location filename="installationmanager.cpp" line="248"/> - <location filename="installationmanager.cpp" line="529"/> + <location filename="installationmanager.cpp" line="530"/> <source>Extracting files</source> <translation>正在解壓檔案</translation> </message> <message> - <source>Preparing installer</source> - <translation type="obsolete">正在準備安裝</translation> - </message> - <message> - <source>Installation as fomod failed: %1</source> - <translation type="obsolete">以 fomod 安裝失敗: %1</translation> - </message> - <message> - <source>failed to start %1</source> - <translation type="obsolete">無法啟動 %1</translation> - </message> - <message> - <source>Running external installer. -Note: This installer will not be aware of other installed mods!</source> - <translation type="obsolete">正在執行外部安裝程式。 -注意: 此安裝程式並不知道您是否已經安裝了其它 Mod!</translation> - </message> - <message> - <source>Force Close</source> - <translation type="obsolete">強制關閉</translation> - </message> - <message> - <source>Confirm</source> - <translation type="obsolete">確認</translation> - </message> - <message> - <source>installation failed (errorcode %1)</source> - <translation type="obsolete">安裝失敗 (錯誤代碼 %1)</translation> - </message> - <message> - <location filename="installationmanager.cpp" line="609"/> - <source>File format "%1" not supported</source> - <translation>暫不支持檔案格式: "%1"</translation> - </message> - <message> - <source>failed to open archive "%1": %2</source> - <translation type="obsolete">無法開啟壓縮包 "%1": %2</translation> - </message> - <message> - <location filename="installationmanager.cpp" line="76"/> - <source>archive.dll not loaded: "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="installationmanager.cpp" line="439"/> <source>failed to create backup</source> <translation type="unfinished"></translation> @@ -1299,64 +1210,57 @@ Note: This installer will not be aware of other installed mods!</source> <translation type="unfinished"></translation> </message> <message> - <source>Installer missing</source> - <translation type="obsolete">安裝包丟失</translation> - </message> - <message> - <source>This package contains a scripted installer. To use this installer you need the optional "NCC"-package and the .net runtime. Do you want to continue, treating this as a manual installer?</source> - <translation type="obsolete">此安裝包中含有安裝腳本。您需要到N網下載安裝 NCC,並同時裝有 .NET 運行庫才能運行此安裝腳本。是否跳過此警告並把此安裝包作為手動安裝包來安裝?</translation> - </message> - <message> - <source>Please install NCC</source> - <translation type="obsolete">請安裝 NCC</translation> + <location filename="installationmanager.cpp" line="610"/> + <source>File format "%1" not supported</source> + <translation>暫不支持檔案格式: "%1"</translation> </message> <message> - <location filename="installationmanager.cpp" line="735"/> + <location filename="installationmanager.cpp" line="743"/> <source>None of the available installer plugins were able to handle that archive</source> <translation type="unfinished"></translation> </message> <message> - <location filename="installationmanager.cpp" line="745"/> + <location filename="installationmanager.cpp" line="753"/> <source>no error</source> <translation>沒有錯誤</translation> </message> <message> - <location filename="installationmanager.cpp" line="748"/> + <location filename="installationmanager.cpp" line="756"/> <source>7z.dll not found</source> <translation>未找到 7z.dll</translation> </message> <message> - <location filename="installationmanager.cpp" line="751"/> + <location filename="installationmanager.cpp" line="759"/> <source>7z.dll isn't valid</source> <translation>無效的 7z.dll</translation> </message> <message> - <location filename="installationmanager.cpp" line="754"/> + <location filename="installationmanager.cpp" line="762"/> <source>archive not found</source> <translation>未找到壓縮包</translation> </message> <message> - <location filename="installationmanager.cpp" line="757"/> + <location filename="installationmanager.cpp" line="765"/> <source>failed to open archive</source> <translation>無法開啟壓縮包</translation> </message> <message> - <location filename="installationmanager.cpp" line="760"/> + <location filename="installationmanager.cpp" line="768"/> <source>unsupported archive type</source> <translation>不支持的壓縮包類型</translation> </message> <message> - <location filename="installationmanager.cpp" line="763"/> + <location filename="installationmanager.cpp" line="771"/> <source>internal library error</source> <translation>內部庫錯誤</translation> </message> <message> - <location filename="installationmanager.cpp" line="766"/> + <location filename="installationmanager.cpp" line="774"/> <source>archive invalid</source> <translation>無效的壓縮包</translation> </message> <message> - <location filename="installationmanager.cpp" line="770"/> + <location filename="installationmanager.cpp" line="778"/> <source>unknown archive error</source> <translation>未知壓縮包錯誤</translation> </message> @@ -1387,7 +1291,7 @@ Note: This installer will not be aware of other installed mods!</source> <context> <name>LogBuffer</name> <message> - <location filename="logbuffer.cpp" line="73"/> + <location filename="logbuffer.cpp" line="83"/> <source>failed to write log to %1: %2</source> <translation>無法生成日誌到 %1: %2</translation> </message> @@ -1395,12 +1299,12 @@ Note: This installer will not be aware of other installed mods!</source> <context> <name>MOApplication</name> <message> - <location filename="moapplication.cpp" line="68"/> + <location filename="moapplication.cpp" line="115"/> <source>an error occured: %1</source> <translation type="unfinished">發生錯誤: %1</translation> </message> <message> - <location filename="moapplication.cpp" line="73"/> + <location filename="moapplication.cpp" line="120"/> <source>an error occured</source> <translation type="unfinished">發生錯誤</translation> </message> @@ -1408,23 +1312,48 @@ Note: This installer will not be aware of other installed mods!</source> <context> <name>MainWindow</name> <message> - <location filename="mainwindow.ui" line="51"/> - <location filename="mainwindow.ui" line="392"/> + <location filename="mainwindow.ui" line="43"/> + <location filename="mainwindow.ui" line="482"/> <source>Categories</source> + <translation>種類</translation> + </message> + <message> + <location filename="mainwindow.ui" line="97"/> + <source>Click blank area to deselect</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="116"/> + <source>If checked, only mods that match all selected categories are displayed.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="119"/> + <source>And</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="129"/> + <source>If checked, all mods that match at least one of the selected categories are displayed.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="132"/> + <source>Or</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="128"/> + <location filename="mainwindow.ui" line="171"/> <source>Profile</source> <translation type="unfinished">配置檔案</translation> </message> <message> - <location filename="mainwindow.ui" line="138"/> + <location filename="mainwindow.ui" line="181"/> <source>Pick a module collection</source> <translation type="unfinished">選擇一個配置檔案</translation> </message> <message> - <location filename="mainwindow.ui" line="141"/> + <location filename="mainwindow.ui" line="184"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1439,58 +1368,66 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">請注意: 當前您的配置檔案的 esp 加載順序並不是分開儲存的。</span></p></body></html></translation> </message> <message> - <location filename="mainwindow.ui" line="159"/> + <location filename="mainwindow.ui" line="215"/> <source>Refresh list</source> <translation type="unfinished">重新整理列表</translation> </message> <message> - <location filename="mainwindow.ui" line="162"/> + <location filename="mainwindow.ui" line="218"/> <source>Refresh list. This is usually not necessary unless you modified data outside the program.</source> <translation type="unfinished">重新整理列表,這通常不是必須的,除非您在程式之外修改了檔案的數據。</translation> </message> <message> - <location filename="mainwindow.ui" line="278"/> + <location filename="mainwindow.ui" line="238"/> + <location filename="mainwindow.ui" line="739"/> + <source>Restore Backup...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="252"/> + <location filename="mainwindow.ui" line="759"/> + <source>Create Backup</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="368"/> <source>List of available mods.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="281"/> + <location filename="mainwindow.ui" line="371"/> <source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag & drop mods to change their "installation" orders.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="366"/> + <location filename="mainwindow.ui" line="456"/> <source>Filter</source> <translation type="unfinished">過濾器</translation> </message> <message> - <location filename="mainwindow.ui" line="387"/> + <location filename="mainwindow.ui" line="477"/> <source>No groups</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="397"/> + <location filename="mainwindow.ui" line="487"/> <source>Nexus IDs</source> - <translation type="unfinished">N網 ID</translation> + <translation>N網 ID</translation> </message> <message> - <location filename="mainwindow.ui" line="405"/> - <location filename="mainwindow.ui" line="724"/> - <location filename="mainwindow.ui" line="1046"/> + <location filename="mainwindow.ui" line="495"/> + <location filename="mainwindow.ui" line="876"/> + <location filename="mainwindow.ui" line="1214"/> <source>Namefilter</source> <translation type="unfinished"></translation> </message> <message> - <source>Start</source> - <translation type="obsolete">開始</translation> - </message> - <message> - <location filename="mainwindow.ui" line="440"/> + <location filename="mainwindow.ui" line="530"/> <source>Pick a program to run.</source> <translation type="unfinished">選擇要運行的程式。</translation> </message> <message> - <location filename="mainwindow.ui" line="443"/> + <location filename="mainwindow.ui" line="533"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1505,12 +1442,12 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">您可以添加新的工具到此列表中,但我不能保證一些我沒有測試過的工具能够正常工作。</span></p></body></html></translation> </message> <message> - <location filename="mainwindow.ui" line="491"/> + <location filename="mainwindow.ui" line="581"/> <source>Run program</source> <translation type="unfinished">運行程式</translation> </message> <message> - <location filename="mainwindow.ui" line="494"/> + <location filename="mainwindow.ui" line="584"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1523,17 +1460,17 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">在 Mod Organizer 啟用的狀態下運行指定的程式。</span></p></body></html></translation> </message> <message> - <location filename="mainwindow.ui" line="504"/> + <location filename="mainwindow.ui" line="594"/> <source>Run</source> <translation type="unfinished">運行</translation> </message> <message> - <location filename="mainwindow.ui" line="545"/> + <location filename="mainwindow.ui" line="635"/> <source>Create a shortcut in your start menu or on the desktop to the specified program</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="548"/> + <location filename="mainwindow.ui" line="638"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1546,37 +1483,27 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">建立一個開始菜單捷徑,使您可以直接在 MO 激活狀態下運行指定的程式。</span></p></body></html></translation> </message> <message> - <location filename="mainwindow.ui" line="555"/> + <location filename="mainwindow.ui" line="645"/> <source>Shortcut</source> <translation type="unfinished"></translation> </message> <message> - <source>save esp list and load order.</source> - <translation type="obsolete">儲存 esp 列表和加載順序。</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Save the list of active mods and load order. This automatically happens if you close MO or start a program.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">儲存已激活 Mod 和加載順序的列表,當您關閉了 MO 或者啟動了一個程式的時候這將會自動發生。</span></p></body></html></translation> + <location filename="mainwindow.ui" line="695"/> + <source>Plugins</source> + <translation type="unfinished"></translation> </message> <message> - <source>Save</source> - <translation type="obsolete">儲存</translation> + <location filename="mainwindow.ui" line="715"/> + <source>Sort</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="669"/> + <location filename="mainwindow.ui" line="821"/> <source>List of available esp/esm files</source> <translation type="unfinished">可用 esp 或 esm 檔案的列表</translation> </message> <message> - <location filename="mainwindow.ui" line="672"/> + <location filename="mainwindow.ui" line="824"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1589,16 +1516,27 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">這個列表中包含了位于已激活 Mod 裡的 esp 和 esm 檔案。這些檔案都需要它們自己的加載順序,您可以使用拖放來修改加載順序。請注意: MO 將只儲存已激活或已勾選狀態的 Mod 的加載順序。<br />有個非常棒的工具叫作 &quot;BOSS&quot;,它可以自動對這些檔案進行排序。</span></p></body></html></translation> </message> <message> - <source>IMPORTANT: You can change the order of BSAs here but installation order of mods has priority over the order specified here!</source> - <translation type="obsolete">重要: 您可以在這裡更改 BSA 的順序,不過 Mod 的安裝順序會優先於這裡的設定!</translation> + <location filename="mainwindow.ui" line="886"/> + <source>Archives</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="762"/> + <location filename="mainwindow.ui" line="916"/> + <source><html><head/><body><p>BSAs are bundles of game assets (textures, scripts, ...). By default, the engine loads these bundles in a separate step from loose files. MO can manage those archives to align their load order with that of loose files:</p><p>If archives are <span style=" font-weight:600;">managed</span>, their load order is specified by the priority of the corresponding mod (left pane), the same as the loose files. You can manually enable any BSA that has no corresponding plugin active.<br/></p><p>If archives are <span style=" font-weight:600;">not managed</span> their load order is specified by the priority of the corresponding plugin (right pane, plugins tab). You can then not manually enable BSAs where the plugin isn't active.</p><p>In either case you can not disable archives if there is a matching plugin, the game will load them no matter what.</p></body></html></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="919"/> + <source><html><head/><body><p>Have MO manage archives (<a href="#"><span style=" text-decoration: underline; color:#0000ff;">read more</span></a>)</p></body></html></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.ui" line="934"/> <source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source> <translation type="unfinished">可用 BSA 檔案的列表。未勾選的項目不會被 MO 管理並且會忽略安裝順序。</translation> </message> <message> - <location filename="mainwindow.ui" line="765"/> + <location filename="mainwindow.ui" line="937"/> <source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" with loose files in your data directory over which is loaded. By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored! @@ -1609,81 +1547,71 @@ BSAs checked here are loaded in such a way that your installation order is obeye 這裡勾選的 BSA 將會依從您的安裝順序,並且會自行調整加載順序。</translation> </message> <message> - <location filename="mainwindow.ui" line="811"/> - <location filename="mainwindow.ui" line="880"/> + <location filename="mainwindow.ui" line="983"/> + <location filename="mainwindow.ui" line="1042"/> <source>File</source> <translation type="unfinished">檔案</translation> </message> <message> - <location filename="mainwindow.ui" line="819"/> - <source><html><head/><body><p>Marked Archives (<img src=":/MO/gui/warning_16"/>) are still loaded on Skyrim but the <a href="http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/"><span style=" text-decoration: underline; color:#0000ff;">regular file override</span></a> mechanism will apply: Loose files override BSAs, no matter the mod/plugin priority.</p></body></html></source> + <location filename="mainwindow.ui" line="1459"/> + <source>Copy Log to Clipboard</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="885"/> - <source>Mod</source> - <translation type="unfinished">Mod</translation> + <location filename="mainwindow.ui" line="1462"/> + <source>Ctrl+C</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="830"/> + <location filename="mainwindow.ui" line="992"/> <source>Data</source> <translation type="unfinished">Data</translation> </message> <message> - <location filename="mainwindow.ui" line="605"/> - <source>Plugins</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="731"/> - <source>Sort</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="741"/> - <source>Archives</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.ui" line="848"/> + <location filename="mainwindow.ui" line="1010"/> <source>refresh data-directory overview</source> <translation type="unfinished">重新整理 Data 目錄總覽</translation> </message> <message> - <location filename="mainwindow.ui" line="851"/> + <location filename="mainwindow.ui" line="1013"/> <source>Refresh the overview. This may take a moment.</source> <translation type="unfinished">重新整理總覽,這可能需要一些時間。</translation> </message> <message> - <location filename="mainwindow.ui" line="854"/> - <location filename="mainwindow.cpp" line="3781"/> - <location filename="mainwindow.cpp" line="4604"/> + <location filename="mainwindow.ui" line="1016"/> + <location filename="mainwindow.cpp" line="3749"/> + <location filename="mainwindow.cpp" line="4614"/> <source>Refresh</source> <translation type="unfinished">重新整理</translation> </message> <message> - <location filename="mainwindow.ui" line="870"/> + <location filename="mainwindow.ui" line="1032"/> <source>This is an overview of your data directory as visible to the game (and tools). </source> <translation type="unfinished">這是在遊戲中可見的 Data 目錄 (和工具) 的總覽。</translation> </message> <message> - <location filename="mainwindow.ui" line="895"/> - <location filename="mainwindow.ui" line="898"/> + <location filename="mainwindow.ui" line="1047"/> + <source>Mod</source> + <translation type="unfinished">Mod</translation> + </message> + <message> + <location filename="mainwindow.ui" line="1057"/> + <location filename="mainwindow.ui" line="1060"/> <source>Filter the above list so that only conflicts are displayed.</source> <translation type="unfinished">過濾上面的列表,使您只能看到有衝突的檔案。</translation> </message> <message> - <location filename="mainwindow.ui" line="901"/> + <location filename="mainwindow.ui" line="1063"/> <source>Show only conflicts</source> <translation type="unfinished">只顯示衝突</translation> </message> <message> - <location filename="mainwindow.ui" line="909"/> + <location filename="mainwindow.ui" line="1071"/> <source>Saves</source> <translation type="unfinished">存檔</translation> </message> <message> - <location filename="mainwindow.ui" line="933"/> + <location filename="mainwindow.ui" line="1095"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -1700,160 +1628,159 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">如果您在右鍵菜單中點擊“修復 Mod”,那麼 MO 便會嘗試激活所有 Mod 和 esp 來修復那些缺失的 esp,它並不會禁用任何東西!</span></p></body></html></translation> </message> <message> - <location filename="mainwindow.ui" line="947"/> + <location filename="mainwindow.ui" line="1109"/> <source>Downloads</source> <translation type="unfinished">下載</translation> </message> <message> - <location filename="mainwindow.ui" line="979"/> + <location filename="mainwindow.ui" line="1141"/> <source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source> <translation type="unfinished">這是當前已下載的 Mod 的列表,雙擊進行安裝。</translation> </message> <message> - <location filename="mainwindow.ui" line="1032"/> <source>Compact</source> - <translation type="unfinished">緊湊</translation> + <translation type="obsolete">緊湊</translation> </message> <message> - <location filename="mainwindow.ui" line="1039"/> + <location filename="mainwindow.ui" line="1194"/> <source>Show Hidden</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1070"/> + <location filename="mainwindow.ui" line="1256"/> <source>Tool Bar</source> <translation type="unfinished">工具欄</translation> </message> <message> - <location filename="mainwindow.ui" line="1112"/> + <location filename="mainwindow.ui" line="1298"/> <source>Install Mod</source> <translation type="unfinished">安裝 Mod</translation> </message> <message> - <location filename="mainwindow.ui" line="1115"/> + <location filename="mainwindow.ui" line="1301"/> <source>Install &Mod</source> <translation type="unfinished">安裝 &Mod</translation> </message> <message> - <location filename="mainwindow.ui" line="1118"/> + <location filename="mainwindow.ui" line="1304"/> <source>Install a new mod from an archive</source> <translation type="unfinished">通過壓縮包來安裝一個新 Mod</translation> </message> <message> - <location filename="mainwindow.ui" line="1121"/> + <location filename="mainwindow.ui" line="1307"/> <source>Ctrl+M</source> <translation type="unfinished">Ctrl+M</translation> </message> <message> - <location filename="mainwindow.ui" line="1130"/> + <location filename="mainwindow.ui" line="1316"/> <source>Profiles</source> <translation type="unfinished">配置檔案</translation> </message> <message> - <location filename="mainwindow.ui" line="1133"/> + <location filename="mainwindow.ui" line="1319"/> <source>&Profiles</source> <translation type="unfinished">&配置檔案</translation> </message> <message> - <location filename="mainwindow.ui" line="1136"/> + <location filename="mainwindow.ui" line="1322"/> <source>Configure Profiles</source> <translation type="unfinished">設定配置檔案</translation> </message> <message> - <location filename="mainwindow.ui" line="1139"/> + <location filename="mainwindow.ui" line="1325"/> <source>Ctrl+P</source> <translation type="unfinished">Ctrl+P</translation> </message> <message> - <location filename="mainwindow.ui" line="1148"/> + <location filename="mainwindow.ui" line="1334"/> <source>Executables</source> <translation type="unfinished">可執行程式</translation> </message> <message> - <location filename="mainwindow.ui" line="1151"/> + <location filename="mainwindow.ui" line="1337"/> <source>&Executables</source> <translation type="unfinished">&可執行程式</translation> </message> <message> - <location filename="mainwindow.ui" line="1154"/> + <location filename="mainwindow.ui" line="1340"/> <source>Configure the executables that can be started through Mod Organizer</source> <translation type="unfinished">配置可通過 MO 來啟動的程式</translation> </message> <message> - <location filename="mainwindow.ui" line="1157"/> + <location filename="mainwindow.ui" line="1343"/> <source>Ctrl+E</source> <translation type="unfinished">Ctrl+E</translation> </message> <message> - <location filename="mainwindow.ui" line="1166"/> - <location filename="mainwindow.ui" line="1172"/> + <location filename="mainwindow.ui" line="1352"/> + <location filename="mainwindow.ui" line="1358"/> <source>Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1169"/> + <location filename="mainwindow.ui" line="1355"/> <source>&Tools</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1175"/> + <location filename="mainwindow.ui" line="1361"/> <source>Ctrl+I</source> <translation type="unfinished">Ctrl+I</translation> </message> <message> - <location filename="mainwindow.ui" line="1184"/> + <location filename="mainwindow.ui" line="1370"/> <source>Settings</source> <translation type="unfinished">設定</translation> </message> <message> - <location filename="mainwindow.ui" line="1187"/> + <location filename="mainwindow.ui" line="1373"/> <source>&Settings</source> <translation type="unfinished">&設定</translation> </message> <message> - <location filename="mainwindow.ui" line="1190"/> + <location filename="mainwindow.ui" line="1376"/> <source>Configure settings and workarounds</source> <translation type="unfinished">配置設定和解決方案</translation> </message> <message> - <location filename="mainwindow.ui" line="1193"/> + <location filename="mainwindow.ui" line="1379"/> <source>Ctrl+S</source> <translation type="unfinished">Ctrl+S</translation> </message> <message> - <location filename="mainwindow.ui" line="1202"/> + <location filename="mainwindow.ui" line="1388"/> <source>Nexus</source> <translation type="unfinished">N網</translation> </message> <message> - <location filename="mainwindow.ui" line="1205"/> + <location filename="mainwindow.ui" line="1391"/> <source>Search nexus network for more mods</source> <translation type="unfinished">搜尋N網以獲取更多 Mod</translation> </message> <message> - <location filename="mainwindow.ui" line="1208"/> + <location filename="mainwindow.ui" line="1394"/> <source>Ctrl+N</source> <translation type="unfinished">Ctrl+N</translation> </message> <message> - <location filename="mainwindow.ui" line="1220"/> - <location filename="mainwindow.cpp" line="4545"/> + <location filename="mainwindow.ui" line="1406"/> + <location filename="mainwindow.cpp" line="4555"/> <source>Update</source> <translation type="unfinished">更新</translation> </message> <message> - <location filename="mainwindow.ui" line="1223"/> + <location filename="mainwindow.ui" line="1409"/> <source>Mod Organizer is up-to-date</source> <translation type="unfinished">Mod Organizer 現在是最新版本</translation> </message> <message> - <location filename="mainwindow.ui" line="1235"/> - <location filename="mainwindow.cpp" line="509"/> + <location filename="mainwindow.ui" line="1421"/> + <location filename="mainwindow.cpp" line="561"/> <source>No Problems</source> <translation type="unfinished">沒有問題</translation> </message> <message> - <location filename="mainwindow.ui" line="1238"/> + <location filename="mainwindow.ui" line="1424"/> <source>This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them. !Work in progress! @@ -1864,180 +1791,164 @@ Right now this has very limited functionality</source> 當前此功能所能提供的項目非常有限</translation> </message> <message> - <location filename="mainwindow.ui" line="1250"/> - <location filename="mainwindow.ui" line="1253"/> + <location filename="mainwindow.ui" line="1436"/> + <location filename="mainwindow.ui" line="1439"/> <source>Help</source> <translation type="unfinished">幫助</translation> </message> <message> - <location filename="mainwindow.ui" line="1256"/> + <location filename="mainwindow.ui" line="1442"/> <source>Ctrl+H</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Ctrl+M</translation> </message> <message> - <location filename="mainwindow.ui" line="1265"/> + <location filename="mainwindow.ui" line="1451"/> <source>Endorse MO</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.ui" line="1268"/> - <location filename="mainwindow.cpp" line="4633"/> + <location filename="mainwindow.ui" line="1454"/> + <location filename="mainwindow.cpp" line="4637"/> <source>Endorse Mod Organizer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="223"/> + <location filename="mainwindow.cpp" line="244"/> <source>Toolbar</source> - <translation type="unfinished"></translation> + <translation type="unfinished">工具欄</translation> </message> <message> - <location filename="mainwindow.cpp" line="224"/> + <location filename="mainwindow.cpp" line="245"/> <source>Desktop</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="225"/> + <location filename="mainwindow.cpp" line="246"/> <source>Start Menu</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="505"/> + <location filename="mainwindow.cpp" line="549"/> <source>Problems</source> <translation type="unfinished">問題</translation> </message> <message> - <location filename="mainwindow.cpp" line="506"/> + <location filename="mainwindow.cpp" line="550"/> <source>There are potential problems with your setup</source> <translation type="unfinished">您的安裝中存在潛在的問題</translation> </message> <message> - <location filename="mainwindow.cpp" line="510"/> + <location filename="mainwindow.cpp" line="562"/> <source>Everything seems to be in order</source> <translation type="unfinished">一切井然有序</translation> </message> <message> - <source><li>NCC not installed. You won't be able to install some scripted mod-installers. Get NCC from <a href="http://skyrim.nexusmods.com/downloads/file.php?id=1334">the MO page on nexus</a></li></source> - <translation type="obsolete"><li>未檢測到 NCC,您將不能安裝部分包含安裝腳本的安裝包。您可以從 <a href="http://skyrim.nexusmods.com/downloads/file.php?id=1334"> MO 下載頁 </a>中下載安裝</li></translation> - </message> - <message> - <source><li>NCC version may be incompatible.</li></source> - <translation type="obsolete"><li>NCC 版本可能不相容。</li></translation> - </message> - <message> - <source><li>dotNet is not installed or outdated. This is required to use NCC. Get it from here: <a href="%1">%1</a></li></source> - <translation type="obsolete"><li>.Net 未安裝或版本過舊。想要運行 NCC 您必須先安裝 .Net,您可以在以下地址中獲取: <a href="%1">%1</a></li></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="568"/> + <location filename="mainwindow.cpp" line="619"/> <source>Help on UI</source> <translation type="unfinished">介面幫助</translation> </message> <message> - <location filename="mainwindow.cpp" line="572"/> + <location filename="mainwindow.cpp" line="623"/> <source>Documentation Wiki</source> <translation type="unfinished">說明文檔 (維基)</translation> </message> <message> - <location filename="mainwindow.cpp" line="576"/> + <location filename="mainwindow.cpp" line="627"/> <source>Report Issue</source> <translation type="unfinished">報告問題</translation> </message> <message> - <location filename="mainwindow.cpp" line="580"/> + <location filename="mainwindow.cpp" line="631"/> <source>Tutorials</source> <translation type="unfinished"></translation> </message> <message> - <source>load order could not be saved</source> - <translation type="obsolete">無法儲存加載順序</translation> - </message> - <message> - <location filename="mainwindow.cpp" line="705"/> - <source>failed to save load order: %1</source> - <translation type="unfinished">無法儲存加載順序: %1</translation> - </message> - <message> <source>failed to save archives order, do you have write access to "%1"?</source> <translation type="obsolete">無法儲存檔案順序,您確定您有權限更改 "%1"?</translation> </message> <message> - <location filename="mainwindow.cpp" line="619"/> - <source>About</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="620"/> - <source>About Qt</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="765"/> + <source>failed to save load order: %1</source> + <translation type="unfinished">無法儲存加載順序: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="717"/> + <location filename="mainwindow.cpp" line="777"/> <source>Name</source> <translation type="unfinished">名稱</translation> </message> <message> - <location filename="mainwindow.cpp" line="718"/> + <location filename="mainwindow.cpp" line="778"/> <source>Please enter a name for the new profile</source> - <translation type="unfinished"></translation> + <translation>請為新配置檔案輸入一個名稱</translation> </message> <message> - <location filename="mainwindow.cpp" line="726"/> + <location filename="mainwindow.cpp" line="786"/> <source>failed to create profile: %1</source> <translation type="unfinished">無法建立配置檔案: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="769"/> + <location filename="mainwindow.cpp" line="829"/> <source>Show tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="770"/> + <location filename="mainwindow.cpp" line="830"/> <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="801"/> + <location filename="mainwindow.cpp" line="861"/> <source>Downloads in progress</source> <translation type="unfinished">正在下載</translation> </message> <message> - <location filename="mainwindow.cpp" line="802"/> + <location filename="mainwindow.cpp" line="862"/> <source>There are still downloads in progress, do you really want to quit?</source> <translation type="unfinished">仍有正在進行中的下載,您確定要退出嗎?</translation> </message> <message> - <location filename="mainwindow.cpp" line="848"/> + <location filename="mainwindow.cpp" line="916"/> <source>failed to read savegame: %1</source> <translation type="unfinished">無法讀取存檔: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="972"/> + <location filename="mainwindow.cpp" line="1040"/> <source>Plugin "%1" failed: %2</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1085"/> + <location filename="mainwindow.cpp" line="1042"/> + <source>Plugin "%1" failed</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1211"/> + <source>failed to init plugin %1: %2</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1249"/> <source>Plugin error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1086"/> + <location filename="mainwindow.cpp" line="1250"/> <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="1270"/> + <location filename="mainwindow.cpp" line="1309"/> <source>Failed to start "%1"</source> <translation type="unfinished">無法啟動 "%1"</translation> </message> <message> - <location filename="mainwindow.cpp" line="1272"/> + <location filename="mainwindow.cpp" line="1311"/> <source>Waiting</source> <translation type="unfinished">稍等</translation> </message> <message> - <location filename="mainwindow.cpp" line="1272"/> + <location filename="mainwindow.cpp" line="1311"/> <source>Please press OK once you're logged into steam.</source> <translation type="unfinished">當您登入 Steam 時請點擊確定。</translation> </message> @@ -2046,12 +1957,12 @@ Right now this has very limited functionality</source> <translation type="obsolete">"%1" 未找到</translation> </message> <message> - <location filename="mainwindow.cpp" line="1298"/> + <location filename="mainwindow.cpp" line="1337"/> <source>Start Steam?</source> <translation type="unfinished">啟動 Steam?</translation> </message> <message> - <location filename="mainwindow.cpp" line="1299"/> + <location filename="mainwindow.cpp" line="1338"/> <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> @@ -2066,780 +1977,889 @@ Right now this has very limited functionality</source> <translation type="unfinished">沒有衝突</translation> </message> <message> - <location filename="mainwindow.cpp" line="1692"/> + <location filename="mainwindow.cpp" line="1706"/> <source><Edit...></source> <translation type="unfinished"><編輯...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1929"/> + <location filename="mainwindow.cpp" line="1976"/> <source>This bsa is enabled in the ini file so it may be required!</source> <translation type="unfinished">該 BSA 已在 Ini 檔案中啟用,因此它可能是必需的。</translation> </message> <message> - <location filename="mainwindow.cpp" line="1936"/> <source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source> - <translation type="unfinished">此檔案還是會被加載,因為存在同名插件。不過它所包含的的檔案不會遵循安裝順序!</translation> + <translation type="obsolete">此檔案還是會被加載,因為存在同名插件。不過它所包含的的檔案不會遵循安裝順序!</translation> </message> <message> - <location filename="mainwindow.cpp" line="1991"/> + <location filename="mainwindow.cpp" line="2038"/> <source>Activating Network Proxy</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2122"/> - <location filename="mainwindow.cpp" line="4248"/> + <location filename="mainwindow.cpp" line="2269"/> + <location filename="mainwindow.cpp" line="4258"/> <source>Installation successful</source> <translation type="unfinished">安裝成功</translation> </message> <message> - <location filename="mainwindow.cpp" line="2133"/> - <location filename="mainwindow.cpp" line="4261"/> + <location filename="mainwindow.cpp" line="2280"/> + <location filename="mainwindow.cpp" line="4270"/> <source>Configure Mod</source> <translation type="unfinished">配置 Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2134"/> - <location filename="mainwindow.cpp" line="4262"/> + <location filename="mainwindow.cpp" line="2281"/> + <location filename="mainwindow.cpp" line="4271"/> <source>This mod contains ini tweaks. Do you want to configure them now?</source> <translation type="unfinished">此 Mod 中包含 Ini 設定檔案,您想現在就對它們進行配置嗎?</translation> </message> <message> - <location filename="mainwindow.cpp" line="2140"/> - <location filename="mainwindow.cpp" line="4268"/> + <location filename="mainwindow.cpp" line="2288"/> + <location filename="mainwindow.cpp" line="4278"/> <source>mod "%1" not found</source> <translation type="unfinished">Mod "%1" 未找到</translation> </message> <message> - <location filename="mainwindow.cpp" line="2143"/> - <location filename="mainwindow.cpp" line="4274"/> + <location filename="mainwindow.cpp" line="2291"/> + <location filename="mainwindow.cpp" line="4284"/> <source>Installation cancelled</source> <translation type="unfinished">安裝已取消</translation> </message> <message> - <location filename="mainwindow.cpp" line="2143"/> - <location filename="mainwindow.cpp" line="4274"/> + <location filename="mainwindow.cpp" line="2291"/> + <location filename="mainwindow.cpp" line="4284"/> <source>The mod was not installed completely.</source> <translation type="unfinished">Mod 沒有完全安裝。</translation> </message> <message> - <location filename="mainwindow.cpp" line="2292"/> + <location filename="mainwindow.cpp" line="2196"/> <source>Some plugins could not be loaded</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2295"/> + <location filename="mainwindow.cpp" line="2199"/> <source>Too many esps and esms enabled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2298"/> - <location filename="mainwindow.cpp" line="2319"/> + <location filename="mainwindow.cpp" line="2202"/> + <location filename="mainwindow.cpp" line="2223"/> <source>Description missing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2315"/> + <location filename="mainwindow.cpp" line="2211"/> + <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="2219"/> <source>The game doesn't allow more than 255 active plugins (including the official ones) to be loaded. You have to disable some unused plugins or merge some plugins into one. You can find a guide here: <a href="http://wiki.step-project.com/Guide:Merging_Plugins">http://wiki.step-project.com/Guide:Merging_Plugins</a></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2341"/> + <location filename="mainwindow.cpp" line="2245"/> <source>Choose Mod</source> <translation type="unfinished">選擇 Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="2342"/> + <location filename="mainwindow.cpp" line="2246"/> <source>Mod Archive</source> <translation type="unfinished">Mod 壓縮包</translation> </message> <message> - <location filename="mainwindow.cpp" line="2495"/> + <location filename="mainwindow.cpp" line="2502"/> <source>Start Tutorial?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2496"/> + <location filename="mainwindow.cpp" line="2503"/> <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="2651"/> - <location filename="mainwindow.cpp" line="4171"/> + <location filename="mainwindow.cpp" line="2647"/> + <location filename="mainwindow.cpp" line="4179"/> <source>Download started</source> <translation type="unfinished">開始下載</translation> </message> <message> - <location filename="mainwindow.cpp" line="2682"/> + <location filename="mainwindow.cpp" line="2708"/> <source>failed to update mod list: %1</source> <translation type="unfinished">無法更新 Mod 列表: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2711"/> + <location filename="mainwindow.cpp" line="2738"/> <source>failed to spawn notepad.exe: %1</source> <translation type="unfinished">無法生成 notepad.exe: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2752"/> + <location filename="mainwindow.cpp" line="2775"/> <source>failed to open %1</source> <translation type="unfinished">無法開啟 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2830"/> + <location filename="mainwindow.cpp" line="2850"/> <source>failed to change origin name: %1</source> <translation type="unfinished">無法更改原始檔案名: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2860"/> - <source>failed to move "%1" from mod "%2" to "%3": %4</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2997"/> - <source>Multiple esps activated, please check that they don't conflict.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3345"/> - <location filename="mainwindow.cpp" line="3792"/> - <source>Create Mod...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3355"/> - <source>A mod with this name already exists</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3613"/> - <source>Continue?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3614"/> - <source>The versioning scheme decides which version is considered newer than another. -This function will guess the versioning scheme under the assumption that the installed version is outdated.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3634"/> - <location filename="mainwindow.cpp" line="4516"/> - <source>Sorry</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3635"/> - <source>I don't know a versioning scheme where %1 is newer than %2.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="3883"/> - <source><All></source> - <translation type="unfinished"><全部></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2909"/> + <location filename="mainwindow.cpp" line="2929"/> <source><Checked></source> <translation type="unfinished"><已勾選></translation> </message> <message> - <location filename="mainwindow.cpp" line="974"/> - <source>Plugin "%1" failed</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="1047"/> - <source>failed to init plugin %1: %2</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2307"/> - <source>The following plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="mainwindow.cpp" line="2910"/> + <location filename="mainwindow.cpp" line="2930"/> <source><Unchecked></source> <translation type="unfinished"><未勾選></translation> </message> <message> - <location filename="mainwindow.cpp" line="2911"/> + <location filename="mainwindow.cpp" line="2931"/> <source><Update></source> <translation type="unfinished"><有更新></translation> </message> <message> - <location filename="mainwindow.cpp" line="2912"/> + <location filename="mainwindow.cpp" line="2934"/> <source><No category></source> <translation type="unfinished"><無類別></translation> </message> <message> - <location filename="mainwindow.cpp" line="2913"/> + <location filename="mainwindow.cpp" line="2935"/> <source><Conflicted></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2914"/> + <location filename="mainwindow.cpp" line="2936"/> <source><Not Endorsed></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2947"/> + <location filename="mainwindow.cpp" line="2969"/> <source>failed to rename mod: %1</source> <translation type="unfinished">無法重新命名 Mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2960"/> + <location filename="mainwindow.cpp" line="2982"/> <source>Overwrite?</source> - <translation type="unfinished"></translation> + <translation type="unfinished">覆蓋</translation> </message> <message> - <location filename="mainwindow.cpp" line="2961"/> + <location filename="mainwindow.cpp" line="2983"/> <source>This will replace the existing mod "%1". Continue?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="2964"/> + <location filename="mainwindow.cpp" line="2986"/> <source>failed to remove mod "%1"</source> - <translation type="unfinished"></translation> + <translation type="unfinished">無法移動 Mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="2968"/> - <location filename="mainwindow.cpp" line="4446"/> - <location filename="mainwindow.cpp" line="4470"/> + <location filename="mainwindow.cpp" line="2990"/> + <location filename="mainwindow.cpp" line="4456"/> + <location filename="mainwindow.cpp" line="4480"/> <source>failed to rename "%1" to "%2"</source> + <translation>重新命名 "%1 "為 "%2" 時出錯</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3015"/> + <source>Multiple esps activated, please check that they don't conflict.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3024"/> - <location filename="mainwindow.cpp" line="3687"/> - <location filename="mainwindow.cpp" line="3695"/> - <location filename="mainwindow.cpp" line="3902"/> + <location filename="mainwindow.cpp" line="3043"/> + <location filename="mainwindow.cpp" line="3662"/> + <location filename="mainwindow.cpp" line="3670"/> + <location filename="mainwindow.cpp" line="3890"/> <source>Confirm</source> <translation type="unfinished">確認</translation> </message> <message> - <location filename="mainwindow.cpp" line="3025"/> + <location filename="mainwindow.cpp" line="3044"/> <source>Remove the following mods?<br><ul>%1</ul></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3036"/> + <location filename="mainwindow.cpp" line="3055"/> <source>failed to remove mod: %1</source> <translation type="unfinished">無法移動 Mod: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="3071"/> - <location filename="mainwindow.cpp" line="3074"/> + <location filename="mainwindow.cpp" line="3090"/> + <location filename="mainwindow.cpp" line="3093"/> <source>Failed</source> <translation type="unfinished">失敗</translation> </message> <message> - <location filename="mainwindow.cpp" line="3071"/> + <location filename="mainwindow.cpp" line="3090"/> <source>Installation file no longer exists</source> <translation type="unfinished">安裝檔案不複存在</translation> </message> <message> - <location filename="mainwindow.cpp" line="3075"/> + <location filename="mainwindow.cpp" line="3094"/> <source>Mods installed with old versions of MO can't be reinstalled in this way.</source> <translation type="unfinished">舊版 MO 安裝的 Mod 無法使用此方法重新安裝。</translation> </message> <message> - <location filename="mainwindow.cpp" line="3090"/> - <location filename="mainwindow.cpp" line="3117"/> + <location filename="mainwindow.cpp" line="3125"/> + <location filename="mainwindow.cpp" line="3152"/> <source>You need to be logged in with Nexus to endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3249"/> - <location filename="mainwindow.cpp" line="4882"/> + <location filename="mainwindow.cpp" line="4871"/> <source>Extract BSA</source> <translation type="unfinished">解壓 BSA</translation> </message> <message> - <location filename="mainwindow.cpp" line="3250"/> <source>This mod contains at least one BSA. Do you want to unpack it? (This removes the BSA after completion. If you don't know about BSAs, just select no)</source> - <translation type="unfinished">此 Mod 中至少包含一個 BSA。您確定要解壓嗎? + <translation type="obsolete">此 Mod 中至少包含一個 BSA。您確定要解壓嗎? (解壓完成後,BSA 檔案將會被刪除。如果您不瞭解 BSA 的話,請選擇“否”)</translation> </message> <message> - <location filename="mainwindow.cpp" line="3259"/> - <location filename="mainwindow.cpp" line="4839"/> - <location filename="mainwindow.cpp" line="4890"/> + <location filename="mainwindow.cpp" line="4828"/> + <location filename="mainwindow.cpp" line="4879"/> <source>failed to read %1: %2</source> <translation type="unfinished">無法讀取 %1: %2</translation> </message> <message> - <location filename="mainwindow.cpp" line="3272"/> - <location filename="mainwindow.cpp" line="4901"/> + <location filename="mainwindow.cpp" line="4890"/> <source>This archive contains invalid hashes. Some files may be broken.</source> <translation type="unfinished">壓縮包 Hash 值錯誤。部分檔案可能已經損壞。</translation> </message> <message> - <location filename="mainwindow.cpp" line="3306"/> + <location filename="mainwindow.cpp" line="3298"/> <source>Nexus ID for this Mod is unknown</source> <translation type="unfinished">此 Mod 的N網 ID 未知</translation> </message> <message> - <source>Priority</source> - <translation type="obsolete">優先級</translation> + <location filename="mainwindow.cpp" line="670"/> + <source>About</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="671"/> + <source>About Qt</source> + <translation type="unfinished"></translation> </message> <message> - <source>Choose Priority</source> - <translation type="obsolete">選擇優先級</translation> + <location filename="mainwindow.cpp" line="1085"/> + <source>Download?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1086"/> + <source>A download has been started but no installed page plugin recognizes it. +If you download anyway no information (i.e. version) will be associated with the download. +Continue?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1127"/> + <source>Browse Mod Page</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1323"/> + <source>Executable "%1" not found</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="1803"/> + <source>Failed to refresh list of esps: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2143"/> + <location filename="mainwindow.cpp" line="2150"/> + <source>Failed to write settings</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2144"/> + <location filename="mainwindow.cpp" line="2151"/> + <source>An error occured trying to write back MO settings: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2147"/> + <source>File is write protected</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2148"/> + <source>Invalid file format (probably a bug)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2149"/> + <source>Unknown error %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2880"/> + <source>failed to move "%1" from mod "%2" to "%3": %4</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3687"/> + <location filename="mainwindow.cpp" line="2932"/> + <source><Managed by MO></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="2933"/> + <source><Managed outside MO></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3109"/> + <source>You need to be logged in with Nexus to resume a download</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3337"/> + <location filename="mainwindow.cpp" line="3777"/> + <source>Create Mod...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3338"/> + <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="3347"/> + <source>A mod with this name already exists</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3588"/> + <source>Continue?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3589"/> + <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="3609"/> + <location filename="mainwindow.cpp" line="4526"/> + <source>Sorry</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3610"/> + <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="3662"/> <source>Really enable all visible mods?</source> <translation type="unfinished">確定要啟用全部可見的 Mod 嗎?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3695"/> + <location filename="mainwindow.cpp" line="3670"/> <source>Really disable all visible mods?</source> <translation type="unfinished">確定要禁用全部可見的 Mod 嗎?</translation> </message> <message> - <location filename="mainwindow.cpp" line="3703"/> + <location filename="mainwindow.cpp" line="3678"/> <source>Choose what to export</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3705"/> + <location filename="mainwindow.cpp" line="3680"/> <source>Everything</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3705"/> + <location filename="mainwindow.cpp" line="3680"/> <source>All installed mods are included in the list</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3706"/> + <location filename="mainwindow.cpp" line="3681"/> <source>Active Mods</source> - <translation type="unfinished"></translation> + <translation type="unfinished">激活 Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="3706"/> + <location filename="mainwindow.cpp" line="3681"/> <source>Only active (checked) mods from your current profile are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3707"/> + <location filename="mainwindow.cpp" line="3682"/> <source>Visible</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3707"/> + <location filename="mainwindow.cpp" line="3682"/> <source>All mods visible in the mod list are included</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3750"/> + <location filename="mainwindow.cpp" line="3725"/> <source>export failed: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3774"/> + <location filename="mainwindow.cpp" line="3742"/> <source>Install Mod...</source> <translation type="unfinished">安裝 Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3776"/> + <location filename="mainwindow.cpp" line="3744"/> <source>Enable all visible</source> <translation type="unfinished">啟用所有可見項目</translation> </message> <message> - <location filename="mainwindow.cpp" line="3777"/> + <location filename="mainwindow.cpp" line="3745"/> <source>Disable all visible</source> <translation type="unfinished">禁用所有可見項目</translation> </message> <message> - <location filename="mainwindow.cpp" line="3779"/> + <location filename="mainwindow.cpp" line="3747"/> <source>Check all for update</source> <translation type="unfinished">檢查更新</translation> </message> <message> - <location filename="mainwindow.cpp" line="3783"/> + <location filename="mainwindow.cpp" line="3751"/> <source>Export to csv...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3791"/> + <location filename="mainwindow.cpp" line="3770"/> + <source>All Mods</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3776"/> <source>Sync to Mods...</source> <translation type="unfinished">同步到 Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3795"/> + <location filename="mainwindow.cpp" line="3780"/> <source>Restore Backup</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3796"/> + <location filename="mainwindow.cpp" line="3781"/> <source>Remove Backup...</source> <translation type="unfinished"></translation> </message> <message> - <source>Set Category</source> - <translation type="obsolete">設定類別</translation> + <location filename="mainwindow.cpp" line="3785"/> + <source>Add/Remove Categories</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3808"/> + <location filename="mainwindow.cpp" line="3790"/> + <source>Replace Categories</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3795"/> <source>Primary Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3815"/> + <location filename="mainwindow.cpp" line="3802"/> <source>Change versioning scheme</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3819"/> + <location filename="mainwindow.cpp" line="3806"/> <source>Un-ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3821"/> + <location filename="mainwindow.cpp" line="3808"/> <source>Ignore update</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3826"/> + <location filename="mainwindow.cpp" line="3813"/> <source>Rename Mod...</source> <translation type="unfinished">重新命名...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3827"/> + <location filename="mainwindow.cpp" line="3814"/> <source>Remove Mod...</source> <translation type="unfinished">移除 Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3828"/> + <location filename="mainwindow.cpp" line="3815"/> <source>Reinstall Mod</source> <translation type="unfinished">重新安裝 Mod</translation> </message> <message> - <location filename="mainwindow.cpp" line="3831"/> + <location filename="mainwindow.cpp" line="3818"/> <source>Un-Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3834"/> - <location filename="mainwindow.cpp" line="3838"/> + <location filename="mainwindow.cpp" line="3821"/> + <location filename="mainwindow.cpp" line="3825"/> <source>Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3835"/> + <location filename="mainwindow.cpp" line="3822"/> <source>Won't endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3841"/> + <location filename="mainwindow.cpp" line="3828"/> <source>Endorsement state unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3848"/> + <location filename="mainwindow.cpp" line="3835"/> <source>Ignore missing data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3851"/> + <location filename="mainwindow.cpp" line="3838"/> <source>Visit on Nexus</source> <translation type="unfinished">在N網上流覽</translation> </message> <message> - <location filename="mainwindow.cpp" line="3852"/> + <location filename="mainwindow.cpp" line="3839"/> <source>Open in explorer</source> <translation type="unfinished">在檔案總管中開啟</translation> </message> <message> - <location filename="mainwindow.cpp" line="3855"/> + <location filename="mainwindow.cpp" line="3843"/> <source>Information...</source> <translation type="unfinished">訊息...</translation> </message> <message> - <location filename="mainwindow.cpp" line="3861"/> - <location filename="mainwindow.cpp" line="5086"/> + <location filename="mainwindow.cpp" line="3850"/> + <location filename="mainwindow.cpp" line="5089"/> <source>Exception: </source> <translation type="unfinished">例外: </translation> </message> <message> - <location filename="mainwindow.cpp" line="3863"/> - <location filename="mainwindow.cpp" line="5088"/> + <location filename="mainwindow.cpp" line="3852"/> + <location filename="mainwindow.cpp" line="5091"/> <source>Unknown exception</source> <translation type="unfinished">未知的例外</translation> </message> <message> - <location filename="mainwindow.cpp" line="3885"/> + <location filename="mainwindow.cpp" line="3871"/> + <source><All></source> + <translation type="unfinished"><全部></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="3873"/> <source><Multiple></source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3902"/> + <location filename="mainwindow.cpp" line="3890"/> <source>Really delete "%1"?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4013"/> + <location filename="mainwindow.cpp" line="4001"/> <source>Fix Mods...</source> <translation type="unfinished">修復 Mod...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4014"/> + <location filename="mainwindow.cpp" line="4002"/> <source>Delete</source> - <translation type="unfinished"></translation> + <translation type="unfinished">&刪除</translation> </message> <message> - <location filename="mainwindow.cpp" line="4038"/> - <location filename="mainwindow.cpp" line="4069"/> + <location filename="mainwindow.cpp" line="4027"/> + <location filename="mainwindow.cpp" line="4060"/> <source>failed to remove %1</source> <translation type="unfinished">無法刪除 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4053"/> - <location filename="mainwindow.cpp" line="4084"/> + <location filename="mainwindow.cpp" line="4044"/> + <location filename="mainwindow.cpp" line="4076"/> <source>failed to create %1</source> <translation type="unfinished">無法建立 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4107"/> + <location filename="mainwindow.cpp" line="4100"/> <source>Can't change download directory while downloads are in progress!</source> <translation type="unfinished">下載檔案時不能修改下載目錄!</translation> </message> <message> - <location filename="mainwindow.cpp" line="4174"/> + <location filename="mainwindow.cpp" line="4182"/> <source>Download failed</source> <translation type="unfinished">下載失敗</translation> </message> <message> - <location filename="mainwindow.cpp" line="4323"/> + <location filename="mainwindow.cpp" line="4333"/> <source>failed to write to file %1</source> <translation type="unfinished">無法寫入檔案 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4329"/> + <location filename="mainwindow.cpp" line="4339"/> <source>%1 written</source> <translation type="unfinished">已寫入 %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="4368"/> + <location filename="mainwindow.cpp" line="4378"/> <source>Select binary</source> <translation type="unfinished">選擇可執行檔案</translation> </message> <message> - <location filename="mainwindow.cpp" line="4368"/> + <location filename="mainwindow.cpp" line="4378"/> <source>Binary</source> - <translation type="unfinished"></translation> + <translation>程式</translation> </message> <message> - <location filename="mainwindow.cpp" line="4394"/> + <location filename="mainwindow.cpp" line="4404"/> <source>Enter Name</source> <translation type="unfinished">輸入名稱</translation> </message> <message> - <location filename="mainwindow.cpp" line="4395"/> + <location filename="mainwindow.cpp" line="4405"/> <source>Please enter a name for the executable</source> <translation type="unfinished">請為程式輸入一個名稱</translation> </message> <message> - <location filename="mainwindow.cpp" line="4406"/> + <location filename="mainwindow.cpp" line="4416"/> <source>Not an executable</source> <translation type="unfinished">不是可執行程式</translation> </message> <message> - <location filename="mainwindow.cpp" line="4406"/> + <location filename="mainwindow.cpp" line="4416"/> <source>This is not a recognized executable.</source> <translation type="unfinished">無法識別的可執行檔案</translation> </message> <message> - <location filename="mainwindow.cpp" line="4431"/> - <location filename="mainwindow.cpp" line="4456"/> + <location filename="mainwindow.cpp" line="4441"/> + <location filename="mainwindow.cpp" line="4466"/> <source>Replace file?</source> <translation type="unfinished">取代檔案?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4431"/> + <location filename="mainwindow.cpp" line="4441"/> <source>There already is a hidden version of this file. Replace it?</source> <translation type="unfinished">已存在同名檔案,但該檔案被隱藏了。確定要覆蓋嗎?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4434"/> - <location filename="mainwindow.cpp" line="4459"/> + <location filename="mainwindow.cpp" line="4444"/> + <location filename="mainwindow.cpp" line="4469"/> <source>File operation failed</source> <translation type="unfinished">檔案操作錯誤</translation> </message> <message> - <location filename="mainwindow.cpp" line="4434"/> - <location filename="mainwindow.cpp" line="4459"/> + <location filename="mainwindow.cpp" line="4444"/> + <location filename="mainwindow.cpp" line="4469"/> <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> - <translation type="unfinished"></translation> + <translation>無法移除 "%1"。也許您需要足夠的檔案權限?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4456"/> + <location filename="mainwindow.cpp" line="4466"/> <source>There already is a visible version of this file. Replace it?</source> - <translation type="unfinished"></translation> + <translation>已存在同名檔案。確定要覆蓋嗎?</translation> </message> <message> - <location filename="mainwindow.cpp" line="4489"/> + <location filename="mainwindow.cpp" line="4499"/> <source>file not found: %1</source> - <translation type="unfinished">檔案未找到: %1</translation> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4502"/> + <location filename="mainwindow.cpp" line="4512"/> <source>failed to generate preview for %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4516"/> + <location filename="mainwindow.cpp" line="4526"/> <source>Sorry, can't preview anything. This function currently does not support extracting from bsas.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4547"/> + <location filename="mainwindow.cpp" line="4557"/> <source>Update available</source> <translation type="unfinished">更新可用</translation> </message> <message> - <location filename="mainwindow.cpp" line="4584"/> + <location filename="mainwindow.cpp" line="4594"/> <source>Open/Execute</source> <translation type="unfinished">開啟/執行</translation> </message> <message> - <location filename="mainwindow.cpp" line="4585"/> + <location filename="mainwindow.cpp" line="4595"/> <source>Add as Executable</source> <translation type="unfinished">添加為可執行檔案</translation> </message> <message> - <location filename="mainwindow.cpp" line="4589"/> + <location filename="mainwindow.cpp" line="4599"/> <source>Preview</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4595"/> + <location filename="mainwindow.cpp" line="4605"/> <source>Un-Hide</source> <translation type="unfinished">取消隱藏</translation> </message> <message> - <location filename="mainwindow.cpp" line="4597"/> + <location filename="mainwindow.cpp" line="4607"/> <source>Hide</source> <translation type="unfinished">隱藏</translation> </message> <message> - <location filename="mainwindow.cpp" line="4603"/> + <location filename="mainwindow.cpp" line="4613"/> <source>Write To File...</source> <translation type="unfinished">寫入檔案...</translation> </message> <message> - <location filename="mainwindow.cpp" line="4634"/> + <location filename="mainwindow.cpp" line="4638"/> <source>Do you want to endorse Mod Organizer on %1 now?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5047"/> - <source>Remove</source> - <translation type="unfinished">移除</translation> + <location filename="mainwindow.cpp" line="4757"/> + <source>Request to Nexus failed: %1</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5077"/> - <source>Unlock load order</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="4764"/> + <location filename="mainwindow.cpp" line="4782"/> + <source>login successful</source> + <translation type="unfinished">登入成功</translation> </message> <message> - <location filename="mainwindow.cpp" line="5080"/> - <source>Lock load order</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="4791"/> + <source>login failed: %1. Trying to download anyway</source> + <translation type="unfinished">登入失敗: %1,請嘗試使用別的方法下載</translation> </message> <message> - <location filename="mainwindow.cpp" line="5149"/> - <source>BOSS working</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="4797"/> + <source>login failed: %1</source> + <translation>無法登入: %1</translation> </message> <message> - <location filename="mainwindow.cpp" line="5157"/> - <source>failed to run boss: %1</source> - <translation type="unfinished"></translation> + <location filename="mainwindow.cpp" line="4807"/> + <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="4770"/> - <source>Request to Nexus failed: %1</source> + <location filename="mainwindow.cpp" line="4840"/> + <source>Error</source> + <translation type="unfinished">錯誤</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4840"/> + <source>failed to extract %1 (errorcode %2)</source> + <translation type="unfinished">無法解壓 %1 (錯誤代碼 %2)</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4935"/> + <source>Extract...</source> + <translation type="unfinished">解壓...</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4997"/> + <source>Edit Categories...</source> + <translation type="unfinished">編輯類別...</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="4998"/> + <source>Deselect filter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1284"/> - <source>Executable "%1" not found</source> + <location filename="mainwindow.cpp" line="5049"/> + <source>Remove</source> + <translation type="unfinished">移除</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5060"/> + <source>Enable all</source> + <translation type="unfinished">全部啟用</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5061"/> + <source>Disable all</source> + <translation type="unfinished">全部禁用</translation> + </message> + <message> + <location filename="mainwindow.cpp" line="5080"/> + <source>Unlock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="1789"/> - <source>Failed to refresh list of esps: %1</source> + <location filename="mainwindow.cpp" line="5083"/> + <source>Lock load order</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3346"/> - <source>This will move all files from overwrite into a new, regular mod. -Please enter a name:</source> + <location filename="mainwindow.cpp" line="5212"/> + <source>depends on missing "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3798"/> - <source>Add/Remove Categories</source> + <location filename="mainwindow.cpp" line="5232"/> + <source>No profile set</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="3803"/> - <source>Replace Categories</source> + <location filename="mainwindow.cpp" line="5280"/> + <source>LOOT working</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4777"/> - <location filename="mainwindow.cpp" line="4794"/> - <source>login successful</source> - <translation type="unfinished">登入成功</translation> + <location filename="mainwindow.cpp" line="5326"/> + <source>loot failed. Exit code was: %1</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4803"/> - <source>login failed: %1. Trying to download anyway</source> - <translation type="unfinished">登入失敗: %1,請嘗試使用別的方法下載</translation> + <location filename="mainwindow.cpp" line="5333"/> + <source>failed to run loot: %1</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4809"/> - <source>login failed: %1</source> - <translation type="unfinished">無法登入: %1</translation> + <location filename="mainwindow.cpp" line="5336"/> + <source>Errors occured</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4818"/> - <source>login failed: %1. You need to log-in with Nexus to update MO.</source> - <translation type="unfinished">登入失敗: %1。您需要登入到N網才能更新 MO</translation> + <location filename="mainwindow.cpp" line="5384"/> + <source>Backup of load order created</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4851"/> - <source>Error</source> - <translation type="unfinished">錯誤</translation> + <location filename="mainwindow.cpp" line="5394"/> + <source>Choose backup to restore</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4851"/> - <source>failed to extract %1 (errorcode %2)</source> - <translation type="unfinished">無法解壓 %1 (錯誤代碼 %2)</translation> + <location filename="mainwindow.cpp" line="5407"/> + <source>No Backups</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="4946"/> - <source>Extract...</source> - <translation type="unfinished">解壓...</translation> + <location filename="mainwindow.cpp" line="5407"/> + <source>There are no backups to restore</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5002"/> - <source>Edit Categories...</source> - <translation type="unfinished">編輯類別...</translation> + <location filename="mainwindow.cpp" line="5428"/> + <location filename="mainwindow.cpp" line="5449"/> + <source>Restore failed</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5057"/> - <source>Enable all</source> - <translation type="unfinished">全部啟用</translation> + <location filename="mainwindow.cpp" line="5429"/> + <location filename="mainwindow.cpp" line="5450"/> + <source>Failed to restore the backup. Errorcode: %1</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="5058"/> - <source>Disable all</source> - <translation type="unfinished">全部禁用</translation> + <location filename="mainwindow.cpp" line="5440"/> + <source>Backup of modlist created</source> + <translation type="unfinished"></translation> </message> </context> <context> @@ -2850,28 +2870,20 @@ Please enter a name:</source> <source>Placeholder</source> <translation>占位符</translation> </message> - <message> - <source>Please install NCC</source> - <translation type="obsolete">請安裝 NCC</translation> - </message> </context> <context> <name>ModInfo</name> <message> - <location filename="modinfo.cpp" line="96"/> - <location filename="modinfo.cpp" line="125"/> + <location filename="modinfo.cpp" line="106"/> + <location filename="modinfo.cpp" line="135"/> <source>invalid index %1</source> <translation>無效的索引 %1</translation> </message> - <message> - <source>invalid mod id %1</source> - <translation type="obsolete">無效的 Mod ID %1</translation> - </message> </context> <context> <name>ModInfoBackup</name> <message> - <location filename="modinfo.cpp" line="820"/> + <location filename="modinfo.cpp" line="898"/> <source>This is the backup of a mod</source> <translation type="unfinished"></translation> </message> @@ -2900,7 +2912,7 @@ Please enter a name:</source> </message> <message> <location filename="modinfodialog.ui" line="67"/> - <location filename="modinfodialog.ui" line="155"/> + <location filename="modinfodialog.ui" line="175"/> <source>Save</source> <translation>儲存</translation> </message> @@ -2910,84 +2922,73 @@ Please enter a name:</source> <translation>Ini 檔案</translation> </message> <message> - <location filename="modinfodialog.ui" line="97"/> + <location filename="modinfodialog.ui" line="91"/> + <source>Ini Files</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="104"/> <source>This is a list of .ini files in the mod.</source> <translation>Mod 目錄裡包含的 Ini 檔案的列表。</translation> </message> <message> - <location filename="modinfodialog.ui" line="100"/> + <location filename="modinfodialog.ui" line="107"/> <source>This is a list of .ini files in the mod. These are usually used to configure the behaviour of mods if there are configurable parameters.</source> <translation>Mod 目錄裡包含的 Ini 檔案的列表,這些檔案通常用來配置 Mod 的行為,如果有可設定的參數的話。</translation> </message> <message> - <location filename="modinfodialog.ui" line="149"/> + <location filename="modinfodialog.ui" line="114"/> + <source>Ini Tweaks</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="130"/> + <source>This is a list of ini tweaks (ini modifications that can be toggled).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="133"/> + <source>This is a list of ini tweaks. Ini Tweaks are (usually small) fragments of ini files that are applied over existing settings in skyrim.ini/skyrimprefs.ini. Each tweak can be toggled individually. You should check the description of the mod wether the tweaks are really optional.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="modinfodialog.ui" line="169"/> <source>Save changes to the file.</source> <translation>儲存更改到檔案中。</translation> </message> <message> - <location filename="modinfodialog.ui" line="152"/> + <location filename="modinfodialog.ui" line="172"/> <source>Save changes to the file. This overwrites the original. There is no automatic backup!</source> <translation>儲存更改到檔案中,這將會覆蓋原始檔案,並且沒有自動備份!</translation> </message> <message> - <location filename="modinfodialog.ui" line="165"/> + <location filename="modinfodialog.ui" line="185"/> <source>Images</source> <translation>圖片</translation> </message> <message> - <location filename="modinfodialog.ui" line="220"/> + <location filename="modinfodialog.ui" line="240"/> <source>Images located in the mod.</source> <translation>位於 Mod 中的圖片。</translation> </message> <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">這裡列出了所有在 Mod 目錄裡的圖片 (.jpg 和 .png),如截圖等。點擊其中的一個來獲得較大的視圖。</span></p></body></html></translation> + <location filename="modinfodialog.ui" line="243"/> + <source>This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="256"/> - <location filename="modinfodialog.ui" line="275"/> + <location filename="modinfodialog.ui" line="276"/> + <location filename="modinfodialog.ui" line="295"/> <source>Optional ESPs</source> <translation>可選 ESP</translation> </message> <message> - <location filename="modinfodialog.ui" line="262"/> + <location filename="modinfodialog.ui" line="282"/> <source>List of esps and esms that can not be loaded by the game.</source> <translation>包含了不會被遊戲載入的 esp 和 esm 的列表。</translation> </message> <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">They usually contain optional functionality, see the readme.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Most mods do not have optional esps, so chances are good you are looking at an empty list.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">列表中包含了目前不會被遊戲載入的 esp 和 esm,它們甚至不會出現在 MO 主窗口的 esp 列表中。</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">這些檔案通常包含一些可選的功能,具體請參閱自述文檔。</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">大部分 Mod 沒有可選 esp,因此您正在看的很有可能只是一個空列表。</span></p></body></html></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="223"/> - <source>This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.ui" line="265"/> + <location filename="modinfodialog.ui" line="285"/> <source>List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window. They usually contain optional functionality, see the readme. @@ -2995,103 +2996,103 @@ Most mods do not have optional esps, so chances are good you are looking at an e <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="290"/> + <location filename="modinfodialog.ui" line="310"/> <source>Make the selected mod in the lower list unavailable.</source> <translation>使下表中已選的 Mod 變得不可用。</translation> </message> <message> - <location filename="modinfodialog.ui" line="293"/> + <location filename="modinfodialog.ui" line="313"/> <source>The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become "invisible" to the game. It can then no longer be activated.</source> <translation>已選的 esp (在下表中) 將會被放入 Mod 的子目錄裡,在遊戲裡將會變得“不可見”,並且之後就不能再被激活了。</translation> </message> <message> - <location filename="modinfodialog.ui" line="319"/> + <location filename="modinfodialog.ui" line="339"/> <source>Move a file to the data directory.</source> <translation>移動一個檔案到 Data 目錄。</translation> </message> <message> - <location filename="modinfodialog.ui" line="322"/> + <location filename="modinfodialog.ui" line="342"/> <source>This moves a esp to the esp directory so it can be enabled in the main window. Please note that the ESP merely becomes "available", it will not necessarily be loaded! That is configured in the main window of omo.</source> <translation>移動一個 esp 檔案到 esp 目錄,這樣它就可以在主窗口中啟用了。請注意: ESP 只是變得“可用”,它并不一定會被載入!想要载入请在 MO 的主窗口中勾選。</translation> </message> <message> - <location filename="modinfodialog.ui" line="357"/> + <location filename="modinfodialog.ui" line="377"/> <source>ESPs in the data directory and thus visible to the game.</source> <translation>ESP 在 Data 目錄,因此它在游戲裡會變得可見。</translation> </message> <message> - <location filename="modinfodialog.ui" line="360"/> + <location filename="modinfodialog.ui" line="380"/> <source>These are the mod files that are in the (virtual) data directory of your game and will thus be selecteable in the esp list in the main window.</source> <translation>這些 Mod 檔案位於您游戲的 (虛擬) Data 目錄裡,因此它們在主窗口的 esp 列表中會變得可選。</translation> </message> <message> - <location filename="modinfodialog.ui" line="367"/> + <location filename="modinfodialog.ui" line="387"/> <source>Available ESPs</source> <translation>可用 ESP</translation> </message> <message> - <location filename="modinfodialog.ui" line="375"/> + <location filename="modinfodialog.ui" line="395"/> <source>Conflicts</source> <translation>衝突</translation> </message> <message> - <location filename="modinfodialog.ui" line="383"/> + <location filename="modinfodialog.ui" line="403"/> <source>The following conflicted files are provided by this mod</source> <translation>以下衝突檔案由此 Mod 提供</translation> </message> <message> - <location filename="modinfodialog.ui" line="433"/> - <location filename="modinfodialog.ui" line="483"/> + <location filename="modinfodialog.ui" line="453"/> + <location filename="modinfodialog.ui" line="503"/> <source>File</source> <translation>檔案</translation> </message> <message> - <location filename="modinfodialog.ui" line="438"/> + <location filename="modinfodialog.ui" line="458"/> <source>Overwritten Mods</source> <translation>覆蓋的 Mod</translation> </message> <message> - <location filename="modinfodialog.ui" line="448"/> + <location filename="modinfodialog.ui" line="468"/> <source>The following conflicted files are provided by other mods</source> <translation>以下衝突檔案由其它 Mod 提供</translation> </message> <message> - <location filename="modinfodialog.ui" line="488"/> + <location filename="modinfodialog.ui" line="508"/> <source>Providing Mod</source> <translation>提供的 Mod</translation> </message> <message> - <location filename="modinfodialog.ui" line="498"/> + <location filename="modinfodialog.ui" line="518"/> <source>Non-Conflicted files</source> <translation>非衝突檔案</translation> </message> <message> - <location filename="modinfodialog.ui" line="518"/> + <location filename="modinfodialog.ui" line="538"/> <source>Categories</source> <translation>類別</translation> </message> <message> - <location filename="modinfodialog.ui" line="541"/> + <location filename="modinfodialog.ui" line="561"/> <source>Primary Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="558"/> + <location filename="modinfodialog.ui" line="578"/> <source>Nexus Info</source> <translation>N網訊息</translation> </message> <message> - <location filename="modinfodialog.ui" line="566"/> + <location filename="modinfodialog.ui" line="586"/> <source>Mod ID</source> <translation>Mod ID</translation> </message> <message> - <location filename="modinfodialog.ui" line="573"/> + <location filename="modinfodialog.ui" line="593"/> <source>Mod ID for this mod on Nexus.</source> <translation>N網上此 Mod 的 ID。</translation> </message> <message> - <location filename="modinfodialog.ui" line="576"/> + <location filename="modinfodialog.ui" line="596"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -3104,7 +3105,7 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">N網上此 Mod 的 ID,如果您在 MO 中下載並安裝了 Mod 它將被自動填寫,否則您需要手動輸入。要找到正確的 ID,在N網找到 Mod。比如,像這樣的連結: <a href=" http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" text-decoration: underline; color:#0000ff;">http://www.skyrimnexus.com/downloads/file.php?id=1334</span></a> 在上面的例子中,1334就是您要找的 ID。此外: 上面的就是 Mod Organizer 在N網的連結,為什麼不現在就到那裡去贊同我呢?</span></a></p></body></html></translation> </message> <message> - <location filename="modinfodialog.ui" line="600"/> + <location filename="modinfodialog.ui" line="620"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -3117,27 +3118,27 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">Mod 的已安裝版本,滑鼠提示將顯示N網上的當前版本,已安裝的版本號只有在您通過 MO 來安裝 Mod 的時候才會自動填寫。</span></p></body></html></translation> </message> <message> - <location filename="modinfodialog.ui" line="607"/> + <location filename="modinfodialog.ui" line="627"/> <source>Version</source> <translation>版本</translation> </message> <message> - <location filename="modinfodialog.ui" line="637"/> + <location filename="modinfodialog.ui" line="657"/> <source>Refresh</source> <translation type="unfinished">重新整理</translation> </message> <message> - <location filename="modinfodialog.ui" line="640"/> + <location filename="modinfodialog.ui" line="660"/> <source>Refresh all information from Nexus.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="654"/> + <location filename="modinfodialog.ui" line="674"/> <source>Description</source> <translation>描述</translation> </message> <message> - <location filename="modinfodialog.ui" line="669"/> + <location filename="modinfodialog.ui" line="689"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -3146,60 +3147,27 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <source>about:blank</source> - <translation type="obsolete">空白頁</translation> - </message> - <message> - <source>Files</source> - <translation type="obsolete">檔案</translation> - </message> - <message> - <source>List of files currently uploaded on nexus. Double click to download.</source> - <translation type="obsolete">N網上當前已上載的檔案列表,雙擊進行下載。</translation> - </message> - <message> - <source>Type</source> - <translation type="obsolete">類型</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="1221"/> - <source>Name</source> - <translation type="unfinished">名稱</translation> - </message> - <message> - <source>Size (kB)</source> - <translation type="obsolete">大小 (KB)</translation> - </message> - <message> - <location filename="modinfodialog.ui" line="704"/> + <location filename="modinfodialog.ui" line="724"/> <source>Endorse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="718"/> + <location filename="modinfodialog.ui" line="738"/> <source>Notes</source> <translation type="unfinished"></translation> </message> <message> - <source>Endorsements are an important motivation for authors. Please don't forget to endorse mods you like.</source> - <translation type="obsolete">支持是對作者最大的鼓勵,請不要忘記贊同您喜歡的 Mod。</translation> - </message> - <message> - <source>Have you endorsed this yet?</source> - <translation type="obsolete">您支持過這個 Mod 了嗎?</translation> - </message> - <message> - <location filename="modinfodialog.ui" line="728"/> + <location filename="modinfodialog.ui" line="748"/> <source>Filetree</source> <translation>檔案樹</translation> </message> <message> - <location filename="modinfodialog.ui" line="737"/> + <location filename="modinfodialog.ui" line="757"/> <source>A directory view of this mod</source> <translation>這個 Mod 的目錄視圖</translation> </message> <message> - <location filename="modinfodialog.ui" line="740"/> + <location filename="modinfodialog.ui" line="760"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -3214,269 +3182,258 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">所做的更改將會立即作用於磁碟上的檔案,所以請</span><span style=" font-size:9pt; font-weight:600;">謹慎操作</span><span style=" font-size:9pt;">。</span></p></body></html></translation> </message> <message> - <location filename="modinfodialog.ui" line="767"/> + <location filename="modinfodialog.ui" line="787"/> <source>Previous</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.ui" line="774"/> + <location filename="modinfodialog.ui" line="794"/> <source>Next</source> - <translation type="unfinished">下一步</translation> + <translation>下一步</translation> </message> <message> - <location filename="modinfodialog.ui" line="794"/> + <location filename="modinfodialog.ui" line="814"/> <source>Close</source> <translation>關閉</translation> </message> <message> - <location filename="modinfodialog.cpp" line="104"/> + <location filename="modinfodialog.cpp" line="165"/> <source>&Delete</source> <translation>&刪除</translation> </message> <message> - <location filename="modinfodialog.cpp" line="105"/> + <location filename="modinfodialog.cpp" line="166"/> <source>&Rename</source> <translation>&重新命名</translation> </message> <message> - <location filename="modinfodialog.cpp" line="106"/> + <location filename="modinfodialog.cpp" line="167"/> <source>&Hide</source> <translation>&隱藏</translation> </message> <message> - <location filename="modinfodialog.cpp" line="107"/> + <location filename="modinfodialog.cpp" line="168"/> <source>&Unhide</source> <translation>&取消隱藏</translation> </message> <message> - <location filename="modinfodialog.cpp" line="108"/> + <location filename="modinfodialog.cpp" line="169"/> <source>&Open</source> <translation>&開啟</translation> </message> <message> - <location filename="modinfodialog.cpp" line="109"/> + <location filename="modinfodialog.cpp" line="170"/> <source>&New Folder</source> <translation>&新增資料夾</translation> </message> <message> - <location filename="modinfodialog.cpp" line="405"/> - <location filename="modinfodialog.cpp" line="420"/> + <location filename="modinfodialog.cpp" line="416"/> + <location filename="modinfodialog.cpp" line="431"/> <source>Save changes?</source> <translation>儲存更改嗎?</translation> </message> <message> - <source>Save changes to the "%1"?</source> - <translation type="obsolete">儲存更改到 "%1"?</translation> + <location filename="modinfodialog.cpp" line="416"/> + <location filename="modinfodialog.cpp" line="431"/> + <source>Save changes to "%1"?</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="612"/> + <location filename="modinfodialog.cpp" line="621"/> <source>File Exists</source> <translation>檔案已存在</translation> </message> <message> - <location filename="modinfodialog.cpp" line="612"/> + <location filename="modinfodialog.cpp" line="621"/> <source>A file with that name exists, please enter a new one</source> <translation>檔案名已存在,請輸入其它名稱</translation> </message> <message> - <location filename="modinfodialog.cpp" line="629"/> + <location filename="modinfodialog.cpp" line="638"/> <source>failed to move file</source> <translation>無法移動檔案</translation> </message> <message> - <location filename="modinfodialog.cpp" line="654"/> + <location filename="modinfodialog.cpp" line="663"/> <source>failed to create directory "optional"</source> <translation>無法建立 "optional" 目錄</translation> </message> <message> - <location filename="modinfodialog.cpp" line="692"/> - <location filename="modinfodialog.cpp" line="1198"/> + <location filename="modinfodialog.cpp" line="701"/> + <location filename="modinfodialog.cpp" line="1206"/> <source>Info requested, please wait</source> <translation>請求訊息已發出,請稍後</translation> </message> <message> - <location filename="modinfodialog.cpp" line="807"/> - <source>(description incomplete, please visit nexus)</source> - <translation>(描述訊息不完整,請訪問N網)</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="762"/> - <source>Current Version: %1</source> - <translation>當前版本: %1</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="766"/> - <source>No update available</source> - <translation>沒有可用的更新</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="746"/> + <location filename="modinfodialog.cpp" line="755"/> <source>Main</source> <translation>主要檔案</translation> </message> <message> - <location filename="modinfodialog.cpp" line="405"/> - <location filename="modinfodialog.cpp" line="420"/> - <source>Save changes to "%1"?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="747"/> + <location filename="modinfodialog.cpp" line="756"/> <source>Update</source> <translation>更新</translation> </message> <message> - <location filename="modinfodialog.cpp" line="748"/> + <location filename="modinfodialog.cpp" line="757"/> <source>Optional</source> <translation>可選檔案</translation> </message> <message> - <location filename="modinfodialog.cpp" line="749"/> + <location filename="modinfodialog.cpp" line="758"/> <source>Old</source> <translation>舊檔</translation> </message> <message> - <location filename="modinfodialog.cpp" line="750"/> + <location filename="modinfodialog.cpp" line="759"/> <source>Misc</source> <translation>雜項</translation> </message> <message> - <location filename="modinfodialog.cpp" line="751"/> + <location filename="modinfodialog.cpp" line="760"/> <source>Unknown</source> <translation>未知</translation> </message> <message> - <source>request failed: %1</source> - <translation type="obsolete">請求失敗: %1</translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="822"/> - <source><a href="%1">Visit on Nexus</a></source> - <translation><a href="%1">訪問N網</a></translation> - </message> - <message> - <location filename="modinfodialog.cpp" line="912"/> - <location filename="modinfodialog.cpp" line="917"/> - <source>Confirm</source> - <translation>確認</translation> + <location filename="modinfodialog.cpp" line="771"/> + <source>Current Version: %1</source> + <translation>當前版本: %1</translation> </message> <message> - <source>Download "%1"?</source> - <translation type="obsolete">下載 "%1"?</translation> + <location filename="modinfodialog.cpp" line="775"/> + <source>No update available</source> + <translation>沒有可用的更新</translation> </message> <message> - <source>Download started</source> - <translation type="obsolete">開始下載</translation> + <location filename="modinfodialog.cpp" line="816"/> + <source>(description incomplete, please visit nexus)</source> + <translation>(描述訊息不完整,請訪問N網)</translation> </message> <message> - <source>Exception: %1</source> - <translation type="obsolete">例外: %1</translation> + <location filename="modinfodialog.cpp" line="831"/> + <source><a href="%1">Visit on Nexus</a></source> + <translation><a href="%1">訪問N網</a></translation> </message> <message> - <location filename="modinfodialog.cpp" line="901"/> + <location filename="modinfodialog.cpp" line="910"/> <source>Failed to delete %1</source> <translation>無法刪除 %1</translation> </message> <message> - <location filename="modinfodialog.cpp" line="912"/> + <location filename="modinfodialog.cpp" line="921"/> + <location filename="modinfodialog.cpp" line="926"/> + <source>Confirm</source> + <translation>確認</translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="921"/> <source>Are sure you want to delete "%1"?</source> <translation>確定要刪除 "%1" 嗎?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="917"/> + <location filename="modinfodialog.cpp" line="926"/> <source>Are sure you want to delete the selected files?</source> <translation>確定要刪除所選的檔案嗎?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="991"/> - <location filename="modinfodialog.cpp" line="997"/> + <location filename="modinfodialog.cpp" line="1000"/> + <location filename="modinfodialog.cpp" line="1006"/> <source>New Folder</source> <translation>新增資料夾</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1003"/> + <location filename="modinfodialog.cpp" line="1012"/> <source>Failed to create "%1"</source> <translation>無法建立 "%1"</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1107"/> - <location filename="modinfodialog.cpp" line="1131"/> + <location filename="modinfodialog.cpp" line="1116"/> + <location filename="modinfodialog.cpp" line="1140"/> <source>Replace file?</source> <translation>取代檔案?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1107"/> + <location filename="modinfodialog.cpp" line="1116"/> <source>There already is a hidden version of this file. Replace it?</source> <translation>已存在同名檔案,但該檔案被隱藏了。確定要覆蓋嗎?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1110"/> - <location filename="modinfodialog.cpp" line="1134"/> + <location filename="modinfodialog.cpp" line="1119"/> + <location filename="modinfodialog.cpp" line="1143"/> <source>File operation failed</source> <translation>檔案操作錯誤</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1110"/> - <location filename="modinfodialog.cpp" line="1134"/> + <location filename="modinfodialog.cpp" line="1119"/> + <location filename="modinfodialog.cpp" line="1143"/> <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> <translation>無法移除 "%1"。也許您需要足夠的檔案權限?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1121"/> - <location filename="modinfodialog.cpp" line="1144"/> + <location filename="modinfodialog.cpp" line="1130"/> + <location filename="modinfodialog.cpp" line="1153"/> <source>failed to rename %1 to %2</source> <translation>無法重新命名 %1 為 %2</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1131"/> + <location filename="modinfodialog.cpp" line="1140"/> <source>There already is a visible version of this file. Replace it?</source> <translation>已存在同名檔案。確定要覆蓋嗎?</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1178"/> + <location filename="modinfodialog.cpp" line="1186"/> <source>Un-Hide</source> <translation>取消隱藏</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1180"/> + <location filename="modinfodialog.cpp" line="1188"/> <source>Hide</source> <translation>隱藏</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1221"/> + <location filename="modinfodialog.cpp" line="1229"/> + <source>Name</source> + <translation type="unfinished">名稱</translation> + </message> + <message> + <location filename="modinfodialog.cpp" line="1229"/> <source>Please enter a name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1225"/> - <location filename="modinfodialog.cpp" line="1228"/> + <location filename="modinfodialog.cpp" line="1233"/> + <location filename="modinfodialog.cpp" line="1236"/> <source>Error</source> <translation type="unfinished">錯誤</translation> </message> <message> - <location filename="modinfodialog.cpp" line="1225"/> + <location filename="modinfodialog.cpp" line="1233"/> <source>Invalid name. Must be a valid file name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1228"/> + <location filename="modinfodialog.cpp" line="1236"/> <source>A tweak by that name exists</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modinfodialog.cpp" line="1240"/> + <location filename="modinfodialog.cpp" line="1250"/> <source>Create Tweak</source> <translation type="unfinished"></translation> </message> </context> <context> - <name>ModInfoOverwrite</name> + <name>ModInfoForeign</name> <message> - <source>Overwrite</source> - <translation type="obsolete">覆蓋</translation> + <location filename="modinfo.cpp" line="987"/> + <source>This pseudo mod represents content managed outside MO. It isn't modified by MO.</source> + <translation type="unfinished"></translation> </message> +</context> +<context> + <name>ModInfoOverwrite</name> <message> - <location filename="modinfo.cpp" line="866"/> + <location filename="modinfo.cpp" line="943"/> <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source> <translation type="unfinished">此虛擬安裝包內包含來自虛擬 Data 樹的檔案,但檔案發生了變化 (例: 被CK修改了)</translation> </message> @@ -3484,17 +3441,22 @@ p, li { white-space: pre-wrap; } <context> <name>ModInfoRegular</name> <message> - <location filename="modinfo.cpp" line="393"/> <source>failed to write %1/meta.ini: %2</source> - <translation>無法寫入 %1/meta.ini: %2</translation> + <translation type="obsolete">無法寫入 %1/meta.ini: %2</translation> + </message> + <message> + <location filename="modinfo.cpp" line="557"/> + <location filename="modinfo.cpp" line="560"/> + <source>failed to write %1/meta.ini: error %2</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="modinfo.cpp" line="661"/> + <location filename="modinfo.cpp" line="811"/> <source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source> <translation type="unfinished">%1 中未包含 esp 或 esm 和有效的目錄 (textures, meshes, interface, ...)</translation> </message> <message> - <location filename="modinfo.cpp" line="665"/> + <location filename="modinfo.cpp" line="815"/> <source>Categories: <br></source> <translation type="unfinished">種類: <br></translation> </message> @@ -3502,27 +3464,6 @@ p, li { white-space: pre-wrap; } <context> <name>ModList</name> <message> - <location filename="modlist.cpp" line="776"/> - <source>Confirm</source> - <translation>確認</translation> - </message> - <message> - <source>Really enable all visible mods?</source> - <translation type="obsolete">確定要啟用全部可見的 Mod 嗎?</translation> - </message> - <message> - <source>Really disable all visible mods?</source> - <translation type="obsolete">確定要禁用全部可見的 Mod 嗎?</translation> - </message> - <message> - <source>invalid row-index %1</source> - <translation type="obsolete">無效的行索引 %1</translation> - </message> - <message> - <source>Overwrite</source> - <translation type="obsolete">覆蓋</translation> - </message> - <message> <location filename="modlist.cpp" line="109"/> <source>This entry contains files that have been created inside the virtual data tree (i.e. by the construction kit)</source> <translation>此項目內檢測到了虛擬 Data 樹的檔案發生了變化 (例如:被 CK 修改了)</translation> @@ -3550,7 +3491,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="modlist.cpp" line="123"/> <source>Overwritten files</source> - <translation type="unfinished"></translation> + <translation type="unfinished">覆蓋的 Mod</translation> </message> <message> <location filename="modlist.cpp" line="124"/> @@ -3563,141 +3504,130 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <source>min</source> - <translation type="obsolete">最低值</translation> - </message> - <message> - <source>max</source> - <translation type="obsolete">最高值</translation> + <location filename="modlist.cpp" line="170"/> + <source>Non-MO</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="850"/> - <source>Category of the mod.</source> + <location filename="modlist.cpp" line="201"/> + <source>invalid</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="851"/> - <source>Id of the mod as used on Nexus.</source> - <translation type="unfinished"></translation> + <source>installed version: %1, newest version: %2</source> + <translation type="obsolete">當前版本: %1,最新版本: %2</translation> </message> <message> - <location filename="modlist.cpp" line="852"/> - <source>Emblemes to highlight things that might require attention.</source> + <location filename="modlist.cpp" line="314"/> + <source>installed version: "%1", newest version: "%2"</source> <translation type="unfinished"></translation> </message> <message> - <source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source> - <translation type="obsolete">%1 中未包含 esp 或 esm 和有效的目錄 (textures, meshes, interface, ...)</translation> + <location filename="modlist.cpp" line="316"/> + <source>The newest version on Nexus seems to be older than the one you have installed. This could either mean the version you have has been withdrawn (i.e. due to a bug) or the author uses a non-standard versioning scheme and that newest version is actually newer. Either way you may want to "upgrade".</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="318"/> + <location filename="modlist.cpp" line="324"/> <source>Categories: <br></source> <translation>種類: <br></translation> </message> <message> - <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source> - <translation type="obsolete">此虛擬安裝包內包含來自虛擬 Data 樹的檔案,但檔案發生了變化 (例: 被CK修改了)</translation> + <location filename="modlist.cpp" line="353"/> + <source>Invalid name</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="308"/> - <source>installed version: "%1", newest version: "%2"</source> - <oldsource>installed version: %1, newest version: %2</oldsource> - <translation type="unfinished">當前版本: %1,最新版本: %2</translation> + <location filename="modlist.cpp" line="747"/> + <source>drag&drop failed: %1</source> + <translation type="unfinished"></translation> </message> <message> - <source>Name</source> - <translation type="obsolete">名稱</translation> + <location filename="modlist.cpp" line="810"/> + <source>Confirm</source> + <translation>確認</translation> </message> <message> - <source>Names of your mods</source> - <translation type="obsolete">Mod 名稱</translation> + <location filename="modlist.cpp" line="810"/> + <source>Are you sure you want to remove "%1"?</source> + <translation>確定要移除 "%1" 吗?</translation> </message> <message> - <location filename="modlist.cpp" line="833"/> - <source>Version</source> - <translation>版本</translation> + <location filename="modlist.cpp" line="865"/> + <source>Flags</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="847"/> - <source>Version of the mod (if available)</source> - <translation>Mod 版本 (如果可用)</translation> + <location filename="modlist.cpp" line="866"/> + <source>Mod Name</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="834"/> - <source>Priority</source> - <translation>優先級</translation> + <location filename="modlist.cpp" line="867"/> + <source>Version</source> + <translation>版本</translation> </message> <message> - <location filename="modlist.cpp" line="197"/> - <source>invalid</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="868"/> + <source>Priority</source> + <translation>優先級</translation> </message> <message> - <location filename="modlist.cpp" line="310"/> - <source>The newest version on Nexus seems to be older than the one you have installed. This could either mean the version you have has been withdrawn (i.e. due to a bug) or the author uses a non-standard versioning scheme and that newest version is actually newer. Either way you may want to "upgrade".</source> + <location filename="modlist.cpp" line="869"/> + <source>Category</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="347"/> - <source>Invalid name</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="870"/> + <source>Nexus ID</source> + <translation type="unfinished">N網 ID</translation> </message> <message> - <location filename="modlist.cpp" line="717"/> - <source>drag&drop failed: %1</source> + <location filename="modlist.cpp" line="871"/> + <source>Installation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="831"/> - <source>Flags</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="872"/> + <location filename="modlist.cpp" line="888"/> + <source>unknown</source> + <translation type="unfinished">未知</translation> </message> <message> - <location filename="modlist.cpp" line="832"/> - <source>Mod Name</source> + <location filename="modlist.cpp" line="880"/> + <source>Name of your mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="835"/> - <source>Category</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="881"/> + <source>Version of the mod (if available)</source> + <translation>Mod 版本 (如果可用)</translation> </message> <message> - <location filename="modlist.cpp" line="836"/> - <source>Nexus ID</source> - <translation type="unfinished"></translation> + <location filename="modlist.cpp" line="882"/> + <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source> + <translation>Mod 的安裝優先級。越高就表示越“重要”,從而覆蓋掉低優先級的 Mod 檔案。</translation> </message> <message> - <location filename="modlist.cpp" line="837"/> - <source>Installation</source> + <location filename="modlist.cpp" line="884"/> + <source>Category of the mod.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="838"/> - <location filename="modlist.cpp" line="854"/> - <source>unknown</source> + <location filename="modlist.cpp" line="885"/> + <source>Id of the mod as used on Nexus.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="846"/> - <source>Name of your mods</source> + <location filename="modlist.cpp" line="886"/> + <source>Emblemes to highlight things that might require attention.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="modlist.cpp" line="848"/> - <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source> - <translation>Mod 的安裝優先級。越高就表示越“重要”,從而覆蓋掉低優先級的 Mod 檔案。</translation> - </message> - <message> - <location filename="modlist.cpp" line="853"/> + <location filename="modlist.cpp" line="887"/> <source>Time this mod was installed</source> <translation type="unfinished"></translation> </message> - <message> - <location filename="modlist.cpp" line="776"/> - <source>Are you sure you want to remove "%1"?</source> - <translation>確定要移除 "%1" 吗?</translation> - </message> </context> <context> <name>MotDDialog</name> @@ -3707,27 +3637,12 @@ p, li { white-space: pre-wrap; } <translation>今日消息</translation> </message> <message> - <source>about:blank</source> - <translation type="obsolete">空白頁</translation> - </message> - <message> <location filename="motddialog.ui" line="42"/> <source>OK</source> <translation>確定</translation> </message> </context> <context> - <name>MyApplication</name> - <message> - <source>an error occured: %1</source> - <translation type="obsolete">發生錯誤: %1</translation> - </message> - <message> - <source>an error occured</source> - <translation type="obsolete">發生錯誤</translation> - </message> -</context> -<context> <name>MyFileSystemModel</name> <message> <location filename="overwriteinfodialog.cpp" line="47"/> @@ -3743,971 +3658,40 @@ p, li { white-space: pre-wrap; } <context> <name>NXMAccessManager</name> <message> - <location filename="nxmaccessmanager.cpp" line="130"/> + <location filename="nxmaccessmanager.cpp" line="144"/> <source>Logging into Nexus</source> <translation type="unfinished"></translation> </message> <message> - <location filename="nxmaccessmanager.cpp" line="145"/> + <location filename="nxmaccessmanager.cpp" line="159"/> <source>timeout</source> <translation>超時</translation> </message> <message> - <location filename="nxmaccessmanager.cpp" line="185"/> + <location filename="nxmaccessmanager.cpp" line="200"/> <source>Please check your password</source> <translation>請檢查您的密碼</translation> </message> </context> <context> - <name>NXMUrl</name> - <message> - <source>invalid nxm-link: %1</source> - <translation type="obsolete">無效的 NXM 連結: %1</translation> - </message> -</context> -<context> - <name>NexusDialog</name> - <message> - <source>Nexus</source> - <translation type="obsolete">N網</translation> - </message> - <message> - <source>Mod ID</source> - <translation type="obsolete">Mod ID</translation> - </message> - <message> - <source>Search</source> - <translation type="obsolete">尋找</translation> - </message> - <message> - <source>new</source> - <translation type="obsolete">新分頁</translation> - </message> - <message> - <source>login failed: %1</source> - <translation type="obsolete">無法登入: %1</translation> - </message> - <message> - <source>login successful</source> - <translation type="obsolete">登入成功</translation> - </message> - <message> - <source>failed to start download</source> - <translation type="obsolete">啟動下載失敗</translation> - </message> - <message> - <source>Download started</source> - <translation type="obsolete">開始下載</translation> - </message> -</context> -<context> <name>NexusInterface</name> <message> - <location filename="nexusinterface.cpp" line="218"/> + <location filename="nexusinterface.cpp" line="216"/> <source>Failed to guess mod id for "%1", please pick the correct one</source> <translation type="unfinished"></translation> </message> <message> - <location filename="nexusinterface.cpp" line="455"/> + <location filename="nexusinterface.cpp" line="481"/> <source>empty response</source> <translation>未回應</translation> </message> <message> - <location filename="nexusinterface.cpp" line="483"/> + <location filename="nexusinterface.cpp" line="510"/> <source>invalid response</source> <translation>無效的回應</translation> </message> </context> <context> - <name>OMOWindow</name> - <message> - <source>Categories</source> - <translation type="obsolete">種類</translation> - </message> - <message> - <source>Profile</source> - <translation type="obsolete">配置檔案</translation> - </message> - <message> - <source>Pick a module collection</source> - <translation type="obsolete">選擇一個配置檔案</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Create profiles here. Each profile contains its own list of active mods and esps. This way you can quickly switch between setups for different play throughs.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Please note that right now your esp load order is not kept seperate for different profiles.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">在這裡建立配置檔案,每個配置檔案都包含了它們自己的 Mod 和 esp 的激活方案。這樣您就可以通過快速切換設定來體驗不同的遊戲歷程了。</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">請注意: 當前您的配置檔案的 esp 加載順序並不是分開儲存的。</span></p></body></html></translation> - </message> - <message> - <source>Refresh list</source> - <translation type="obsolete">重新整理列表</translation> - </message> - <message> - <source>Refresh list. This is usually not necessary unless you modified data outside the program.</source> - <translation type="obsolete">重新整理列表,這通常不是必須的,除非您在程式之外修改了檔案的數據。</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Segoe UI'; font-size:9pt;">List of available mods.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Segoe UI'; font-size:9pt;">可用 Mod 的列表。</span></p></body></html></translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag&amp;drop mods to change their &quot;installation&quot; orders.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">這是已安裝 Mod 的列表,使用複選框來啟用或禁用 Mod,並使用拖放來改變他們的“安裝”順序。</span></p></body></html></translation> - </message> - <message> - <source>Filter</source> - <translation type="obsolete">過濾器</translation> - </message> - <message> - <source>Start</source> - <translation type="obsolete">開始</translation> - </message> - <message> - <source>Pick a program to run.</source> - <translation type="obsolete">選擇要運行的程式。</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Choose the program to run. Once you start using ModOrganizer, you should always run your game and tools from here or through shortcuts created here, otherwise mods installed through MO will not be visible.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">You can add new Tools to this list, but I can't promise tools I haven't tested will work.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">選擇要運行的程式。一旦您開始使用 Mod Organizer,您應該始終從這裡或通過在這裡建立的捷徑來運行您的遊戲和工具,否則任何經由 MO 安裝的 Mod 都會變得不可見。</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">您可以添加新的工具到此列表中,但我不能保證一些我沒有測試過的工具能够正常工作。</span></p></body></html></translation> - </message> - <message> - <source>Run program</source> - <translation type="obsolete">運行程式</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Run the selected program with ModOrganizer enabled.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">在 Mod Organizer 啟用的狀態下運行指定的程式。</span></p></body></html></translation> - </message> - <message> - <source>Run</source> - <translation type="obsolete">運行</translation> - </message> - <message> - <source>Create a shortcut in your start menu to the specified program</source> - <translation type="obsolete">為指定的程式建立一個開始菜單捷徑</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This creates a start menu shortcut that directly starts the selected program with the MO active.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">建立一個開始菜單捷徑,使您可以直接在 MO 激活狀態下運行指定的程式。</span></p></body></html></translation> - </message> - <message> - <source>Menu Shortcut</source> - <translation type="obsolete">開始菜單捷徑</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">create a desktop shortcut for the selected program</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">為指定的程式建立一個桌面捷徑</span></p></body></html></translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This creates a desktop shortcut that directly starts the selected program with the MO active.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">建立一個桌面捷徑,使您可以直接在 MO 激活狀態下運行指定的程式。</span></p></body></html></translation> - </message> - <message> - <source>Desktop Shortcut</source> - <translation type="obsolete">桌面捷徑</translation> - </message> - <message> - <source>save esp list and load order.</source> - <translation type="obsolete">儲存 esp 列表和加載順序。</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Save the list of active mods and load order. This automatically happens if you close MO or start a program.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">儲存已激活 Mod 和加載順序的列表,當您關閉了 MO 或者啟動了一個程式的時候這將會自動發生。</span></p></body></html></translation> - </message> - <message> - <source>Save</source> - <translation type="obsolete">儲存</translation> - </message> - <message> - <source>List of available esp/esm files</source> - <translation type="obsolete">可用 esp 或 esm 檔案的列表</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This list contains the esps and esms contained in the active mods. These require their own load order. Use drag&amp;drop to modify this load order. Please note that MO will only save the load order for mods that are active/checked.<br />There is a great tool named &quot;BOSS&quot; to automatically sort these files.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">這個列表中包含了位于已激活 Mod 裡的 esp 和 esm 檔案。這些檔案都需要它們自己的加載順序,您可以使用拖放來修改加載順序。請注意: MO 將只儲存已激活或已勾選狀態的 Mod 的加載順序。<br />有個非常棒的工具叫作 &quot;BOSS&quot;,它可以自動對這些檔案進行排序。</span></p></body></html></translation> - </message> - <message> - <source>IMPORTANT: You can change the order of BSAs here but installation order of mods has priority over the order specified here!</source> - <translation type="obsolete">重要: 您可以在這裡更改 BSA 的順序,不過 Mod 的安裝順序會優先於這裡的設定!</translation> - </message> - <message> - <source>IMPORTANT: For unknown reasons some bsas (SkyUI 3 alpha) do NOT work when checked here.</source> - <translation type="obsolete">重要: 一些 BSA 檔案 (例: SkyUI 3 alpha) 在這裡勾選後將無法正常工作,具體原因未知。</translation> - </message> - <message> - <source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source> - <translation type="obsolete">可用 BSA 檔案的列表。未勾選的項目不會被 MO 管理並且會忽略安裝順序。</translation> - </message> - <message> - <source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" with loose files in your data directory over which is loaded. -By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored! - -BSAs checked here are loaded in such a way that your installation order is obeyed properly.</source> - <translation type="obsolete">BSA 檔案是 Bethesda 專用的壓縮包檔案 (區別於 .zip 檔案),裡面包含了遊戲所用的 Data 內的檔案 (meshes, textures 等)。這與 Data 目錄裡分散的檔案是不同的。 -默認情況下,BSA 檔案的名稱取決於 ESP 插件的名稱 (例: plugins.esp 對應 plugins.bsa)。遊戲運行時,ESP 對應的 BSA 將會自動加載,並且比所有分散的檔案優先級都高,左邊您設定的安裝順序最終會被忽略掉。 - -這裡勾選的 BSA 將會依從您的安裝順序,並且會自行調整加載順序。</translation> - </message> - <message> - <source>File</source> - <translation type="obsolete">檔案</translation> - </message> - <message> - <source>Mod</source> - <translation type="obsolete">Mod</translation> - </message> - <message> - <source>Data</source> - <translation type="obsolete">Data</translation> - </message> - <message> - <source>refresh data-directory overview</source> - <translation type="obsolete">重新整理 Data 目錄總覽</translation> - </message> - <message> - <source>Refresh the overview. This may take a moment.</source> - <translation type="obsolete">重新整理總覽,這可能需要一些時間。</translation> - </message> - <message> - <source>Refresh</source> - <translation type="obsolete">重新整理</translation> - </message> - <message> - <source>This is an overview of your data directory as visible to the game (and tools). </source> - <translation type="obsolete">這是在遊戲中可見的 Data 目錄 (和工具) 的總覽。</translation> - </message> - <message> - <source>Filter the above list so that only conflicts are displayed.</source> - <translation type="obsolete">過濾上面的列表,使您只能看到有衝突的檔案。</translation> - </message> - <message> - <source>Show only conflicts</source> - <translation type="obsolete">只顯示衝突</translation> - </message> - <message> - <source>Saves</source> - <translation type="obsolete">存檔</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a list of all savegames for this game. Hover over a list entry to get detailed information about the save including a list of esps/esms that were used at the time this save was created but aren't active now.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you click &quot;Fix Mods...&quot; in the context menu, MO will try to activate all mods and esps to fix those missing esps. It will not disable anything!</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">這是此遊戲所有存檔的列表,將滑鼠懸停在項目上來獲取該存檔的詳細信息,裡面包含了現在沒有被激活但是當存檔被建立時所使用的 esp 或 esm 的清單。</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">如果您在右鍵菜單中點擊“修復 Mod”,那麼 MO 便會嘗試激活所有 Mod 和 esp 來修復那些缺失的 esp,它並不會禁用任何東西!</span></p></body></html></translation> - </message> - <message> - <source>Downloads</source> - <translation type="obsolete">下載</translation> - </message> - <message> - <source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source> - <translation type="obsolete">這是當前已下載的 Mod 的列表,雙擊進行安裝。</translation> - </message> - <message> - <source>Compact</source> - <translation type="obsolete">緊湊</translation> - </message> - <message> - <source>Refresh list of downloads.</source> - <translation type="obsolete">重新整理下載列表。</translation> - </message> - <message> - <source>Tool Bar</source> - <translation type="obsolete">工具欄</translation> - </message> - <message> - <source>Install Mod</source> - <translation type="obsolete">安裝 Mod</translation> - </message> - <message> - <source>Install &Mod</source> - <translation type="obsolete">安裝 &Mod</translation> - </message> - <message> - <source>Install a new mod from an archive</source> - <translation type="obsolete">通過壓縮包來安裝一個新 Mod</translation> - </message> - <message> - <source>Ctrl+M</source> - <translation type="obsolete">Ctrl+M</translation> - </message> - <message> - <source>Profiles</source> - <translation type="obsolete">配置檔案</translation> - </message> - <message> - <source>&Profiles</source> - <translation type="obsolete">&配置檔案</translation> - </message> - <message> - <source>Configure Profiles</source> - <translation type="obsolete">設定配置檔案</translation> - </message> - <message> - <source>Ctrl+P</source> - <translation type="obsolete">Ctrl+P</translation> - </message> - <message> - <source>Executables</source> - <translation type="obsolete">可執行程式</translation> - </message> - <message> - <source>&Executables</source> - <translation type="obsolete">&可執行程式</translation> - </message> - <message> - <source>Configure the executables that can be started through Mod Organizer</source> - <translation type="obsolete">配置可通過 MO 來啟動的程式</translation> - </message> - <message> - <source>Ctrl+E</source> - <translation type="obsolete">Ctrl+E</translation> - </message> - <message> - <source>Edit Ini</source> - <translation type="obsolete">編輯 Ini 檔案</translation> - </message> - <message> - <source>Edit &Ini</source> - <translation type="obsolete">編輯 &Ini 檔案</translation> - </message> - <message> - <source>Edit the ini file of the current profile</source> - <translation type="obsolete">編輯當前配置的 Ini 檔案</translation> - </message> - <message> - <source>Ctrl+I</source> - <translation type="obsolete">Ctrl+I</translation> - </message> - <message> - <source>Settings</source> - <translation type="obsolete">設定</translation> - </message> - <message> - <source>&Settings</source> - <translation type="obsolete">&設定</translation> - </message> - <message> - <source>Configure settings and workarounds</source> - <translation type="obsolete">配置設定和解決方案</translation> - </message> - <message> - <source>Ctrl+S</source> - <translation type="obsolete">Ctrl+S</translation> - </message> - <message> - <source>Nexus</source> - <translation type="obsolete">N網</translation> - </message> - <message> - <source>Search nexus network for more mods</source> - <translation type="obsolete">搜尋N網以獲取更多 Mod</translation> - </message> - <message> - <source>Ctrl+N</source> - <translation type="obsolete">Ctrl+N</translation> - </message> - <message> - <source>Update</source> - <translation type="obsolete">更新</translation> - </message> - <message> - <source>Mod Organizer is up-to-date</source> - <translation type="obsolete">Mod Organizer 現在是最新版本</translation> - </message> - <message> - <source>No Problems</source> - <translation type="obsolete">沒有問題</translation> - </message> - <message> - <source>This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them. - -!Work in progress! -Right now this has very limited functionality</source> - <translation type="obsolete">如果 MO 檢測到您的安裝中存在潛在的問題,那麼此按鈕將會高亮顯示,同時 MO 也會給您相應的修復提示。 - -!此功能尚未完善! -當前此功能所能提供的項目非常有限</translation> - </message> - <message> - <source>Problems</source> - <translation type="obsolete">問題</translation> - </message> - <message> - <source>There are potential problems with your setup</source> - <translation type="obsolete">您的安裝中存在潛在的問題</translation> - </message> - <message> - <source>Everything seems to be in order</source> - <translation type="obsolete">一切井然有序</translation> - </message> - <message> - <source><li>Your BSAs may be set up incorrectly. The game may not run! Please check the BSA tab</li></source> - <translation type="obsolete"><li>您的 BSA 可能沒有設定正確。遊戲可能無法執行!請檢查 BSA 標籤。</li></translation> - </message> - <message> - <source><li>NCC not installed. You won't be able to install some scripted mod-installers. Get NCC from <a href="http://skyrim.nexusmods.com/downloads/file.php?id=1334">the MO page on nexus</a></li></source> - <translation type="obsolete"><li>未檢測到 NCC,您將不能安裝部分包含安裝腳本的安裝包。您可以從 <a href="http://skyrim.nexusmods.com/downloads/file.php?id=1334"> MO 下載頁 </a>中下載安裝</li></translation> - </message> - <message> - <source><li>NCC version may be incompatible.</li></source> - <translation type="obsolete"><li>NCC 版本可能不相容。</li></translation> - </message> - <message> - <source><li>dotNet is not installed or outdated. This is required to use NCC. Get it from here: <a href="%1">%1</a></li></source> - <translation type="obsolete"><li>.Net 未安裝或版本過舊。想要運行 NCC 您必須先安裝 .Net,您可以在以下地址中獲取: <a href="%1">%1</a></li></translation> - </message> - <message> - <source>Help</source> - <translation type="obsolete">幫助</translation> - </message> - <message> - <source>Click here if you have any problems with Mod Organizer</source> - <translation type="obsolete">無論您對 Mod Organizer 有什麼問題,您都可以點擊此處來獲取幫助</translation> - </message> - <message> - <source>Help on UI</source> - <translation type="obsolete">介面幫助</translation> - </message> - <message> - <source>Documentation Wiki</source> - <translation type="obsolete">說明文檔 (維基)</translation> - </message> - <message> - <source>Report Issue</source> - <translation type="obsolete">報告問題</translation> - </message> - <message> - <source>load order could not be saved</source> - <translation type="obsolete">無法儲存加載順序</translation> - </message> - <message> - <source>failed to save load order: %1</source> - <translation type="obsolete">無法儲存加載順序: %1</translation> - </message> - <message> - <source>failed to save archives order, do you have write access to "%1"?</source> - <translation type="obsolete">無法儲存檔案順序,您確定您有權限更改 "%1"?</translation> - </message> - <message> - <source>Name</source> - <translation type="obsolete">名稱</translation> - </message> - <message> - <source>Please enter a name for the new profile</source> - <translation type="obsolete">請為新配置檔案輸入一個名稱</translation> - </message> - <message> - <source>failed to create profile: %1</source> - <translation type="obsolete">無法建立配置檔案: %1</translation> - </message> - <message> - <source>Downloads in progress</source> - <translation type="obsolete">正在下載</translation> - </message> - <message> - <source>There are still downloads in progress, do you really want to quit?</source> - <translation type="obsolete">仍有正在進行中的下載,您確定要退出嗎?</translation> - </message> - <message> - <source>init failed</source> - <translation type="obsolete">初始化失敗</translation> - </message> - <message> - <source>failed to read savegame: %1</source> - <translation type="obsolete">無法讀取存檔: %1</translation> - </message> - <message> - <source><table cellspacing="5"><tr><td>Save Number</td><td>%1</td></tr><tr><td>Character</td><td>%2</td></tr><tr><td>Level</td><td>%3</td></tr><tr><td>Location</td><td>%4</td></tr><tr><td>Date</td><td>%5</td></tr><tr><td>Screenshot</td><td>%6</td></tr><tr><td>Missing ESPs</td><td><h5>%7</h5></td></tr></table></source> - <translation type="obsolete"><table cellspacing="5"><tr><td>存檔序號</td><td>%1</td></tr><tr><td>遊戲角色</td><td>%2</td></tr><tr><td>角色等級</td><td>%3</td></tr><tr><td>所在地點</td><td>%4</td></tr><tr><td>儲存時間</td><td>%5</td></tr><tr><td>遊戲截圖</td><td>%6</td></tr><tr><td>缺失的 ESP</td><td><h5>%7</h5></td></tr></table></translation> - </message> - <message> - <source>Failed to start "%1"</source> - <translation type="obsolete">無法啟動 "%1"</translation> - </message> - <message> - <source>Waiting</source> - <translation type="obsolete">稍等</translation> - </message> - <message> - <source>Please press OK once you're logged into steam.</source> - <translation type="obsolete">當您登入 Steam 時請點擊確定。</translation> - </message> - <message> - <source>"%1" not found</source> - <translation type="obsolete">"%1" 未找到</translation> - </message> - <message> - <source>Start Steam?</source> - <translation type="obsolete">啟動 Steam?</translation> - </message> - <message> - <source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source> - <translation type="obsolete">想要正確地啟動遊戲,Steam 必須處於運行狀態,MO 要立即啟動 Steam 嗎?</translation> - </message> - <message> - <source>Also in: <br></source> - <translation type="obsolete">也在: <br></translation> - </message> - <message> - <source>No conflict</source> - <translation type="obsolete">沒有衝突</translation> - </message> - <message> - <source><Edit...></source> - <translation type="obsolete"><編輯...></translation> - </message> - <message> - <source>This bsa is enabled in the ini file so it may be required!</source> - <translation type="obsolete">該 BSA 已在 Ini 檔案中啟用,因此它可能是必需的。</translation> - </message> - <message> - <source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source> - <translation type="obsolete">此檔案還是會被加載,因為存在同名插件。不過它所包含的的檔案不會遵循安裝順序!</translation> - </message> - <message> - <source>Installation successful</source> - <translation type="obsolete">安裝成功</translation> - </message> - <message> - <source>Configure Mod</source> - <translation type="obsolete">配置 Mod</translation> - </message> - <message> - <source>This mod contains ini tweaks. Do you want to configure them now?</source> - <translation type="obsolete">此 Mod 中包含 Ini 設定檔案,您想現在就對它們進行配置嗎?</translation> - </message> - <message> - <source>mod "%1" not found</source> - <translation type="obsolete">Mod "%1" 未找到</translation> - </message> - <message> - <source>Installation cancelled</source> - <translation type="obsolete">安裝已取消</translation> - </message> - <message> - <source>The mod was not installed completely.</source> - <translation type="obsolete">Mod 沒有完全安裝。</translation> - </message> - <message> - <source>Choose Mod</source> - <translation type="obsolete">選擇 Mod</translation> - </message> - <message> - <source>Mod Archive</source> - <translation type="obsolete">Mod 壓縮包</translation> - </message> - <message> - <source>failed to refresh directory structure</source> - <translation type="obsolete">無法重新整理目錄結構</translation> - </message> - <message> - <source>Download started</source> - <translation type="obsolete">開始下載</translation> - </message> - <message> - <source>failed to update mod list: %1</source> - <translation type="obsolete">無法更新 Mod 列表: %1</translation> - </message> - <message> - <source>failed to spawn notepad.exe: %1</source> - <translation type="obsolete">無法生成 notepad.exe: %1</translation> - </message> - <message> - <source>Ini files are local to the currently selected profile.</source> - <translation type="obsolete">當前所選配置的本地 Ini 檔案。</translation> - </message> - <message> - <source>failed to open %1</source> - <translation type="obsolete">無法開啟 %1</translation> - </message> - <message> - <source>Name not valid</source> - <translation type="obsolete">名稱無效</translation> - </message> - <message> - <source>failed to change origin name: %1</source> - <translation type="obsolete">無法更改原始檔案名: %1</translation> - </message> - <message> - <source><All></source> - <translation type="obsolete"><全部></translation> - </message> - <message> - <source><Checked></source> - <translation type="obsolete"><已勾選></translation> - </message> - <message> - <source><Unchecked></source> - <translation type="obsolete"><未勾選></translation> - </message> - <message> - <source><Update></source> - <translation type="obsolete"><有更新></translation> - </message> - <message> - <source><No category></source> - <translation type="obsolete"><無類別></translation> - </message> - <message> - <source>New name</source> - <translation type="obsolete">新名稱</translation> - </message> - <message> - <source>A mod with that name exists already</source> - <translation type="obsolete">該 Mod 名已存在</translation> - </message> - <message> - <source>failed to rename mod: %1</source> - <translation type="obsolete">無法重新命名 Mod: %1</translation> - </message> - <message> - <source>failed to remove mod: %1</source> - <translation type="obsolete">無法移動 Mod: %1</translation> - </message> - <message> - <source>Failed</source> - <translation type="obsolete">失敗</translation> - </message> - <message> - <source>Installation file no longer exists</source> - <translation type="obsolete">安裝檔案不複存在</translation> - </message> - <message> - <source>Mods installed with old versions of MO can't be reinstalled in this way.</source> - <translation type="obsolete">舊版 MO 安裝的 Mod 無法使用此方法重新安裝。</translation> - </message> - <message> - <source>Extract BSA</source> - <translation type="obsolete">解壓 BSA</translation> - </message> - <message> - <source>This mod contains at least one BSA. Do you want to unpack it? -(This removes the BSA after completion. If you don't know about BSAs, just select no)</source> - <translation type="obsolete">此 Mod 中至少包含一個 BSA。您確定要解壓嗎? -(解壓完成後,BSA 檔案將會被刪除。如果您不瞭解 BSA 的話,請選擇“否”)</translation> - </message> - <message> - <source>failed to read %1: %2</source> - <translation type="obsolete">無法讀取 %1: %2</translation> - </message> - <message> - <source>This archive contains invalid hashes. Some files may be broken.</source> - <translation type="obsolete">壓縮包 Hash 值錯誤。部分檔案可能已經損壞。</translation> - </message> - <message> - <source>Nexus ID for this Mod is unknown</source> - <translation type="obsolete">此 Mod 的N網 ID 未知</translation> - </message> - <message> - <source>Priority</source> - <translation type="obsolete">優先級</translation> - </message> - <message> - <source>Choose Priority</source> - <translation type="obsolete">選擇優先級</translation> - </message> - <message> - <source>Enable all</source> - <translation type="obsolete">全部啟用</translation> - </message> - <message> - <source>Disable all</source> - <translation type="obsolete">全部禁用</translation> - </message> - <message> - <source>Exception: </source> - <translation type="obsolete">例外: </translation> - </message> - <message> - <source>Unknown exception</source> - <translation type="obsolete">未知的例外</translation> - </message> - <message> - <source>Install Mod...</source> - <translation type="obsolete">安裝 Mod...</translation> - </message> - <message> - <source>Enable all visible</source> - <translation type="obsolete">啟用所有可見項目</translation> - </message> - <message> - <source>Disable all visible</source> - <translation type="obsolete">禁用所有可見項目</translation> - </message> - <message> - <source>Check all for update</source> - <translation type="obsolete">檢查更新</translation> - </message> - <message> - <source>Set Priority</source> - <translation type="obsolete">設定優先級</translation> - </message> - <message> - <source>Highest</source> - <translation type="obsolete">最高</translation> - </message> - <message> - <source>Manually...</source> - <translation type="obsolete">手動...</translation> - </message> - <message> - <source>Lowest</source> - <translation type="obsolete">最低</translation> - </message> - <message> - <source>Set Category</source> - <translation type="obsolete">設定類別</translation> - </message> - <message> - <source>Rename Mod...</source> - <translation type="obsolete">重新命名...</translation> - </message> - <message> - <source>Remove Mod...</source> - <translation type="obsolete">移除 Mod...</translation> - </message> - <message> - <source>Reinstall Mod</source> - <translation type="obsolete">重新安裝 Mod</translation> - </message> - <message> - <source>Visit on Nexus</source> - <translation type="obsolete">在N網上流覽</translation> - </message> - <message> - <source>Open in explorer</source> - <translation type="obsolete">在檔案總管中開啟</translation> - </message> - <message> - <source>Sync to Mods...</source> - <translation type="obsolete">同步到 Mod...</translation> - </message> - <message> - <source>Information...</source> - <translation type="obsolete">訊息...</translation> - </message> - <message> - <source>Fix Mods...</source> - <translation type="obsolete">修復 Mod...</translation> - </message> - <message> - <source>failed to remove %1</source> - <translation type="obsolete">無法刪除 %1</translation> - </message> - <message> - <source>failed to create %1</source> - <translation type="obsolete">無法建立 %1</translation> - </message> - <message> - <source>Can't change download directory while downloads are in progress!</source> - <translation type="obsolete">下載檔案時不能修改下載目錄!</translation> - </message> - <message> - <source>Download failed</source> - <translation type="obsolete">下載失敗</translation> - </message> - <message> - <source>failed to write to file %1</source> - <translation type="obsolete">無法寫入檔案 %1</translation> - </message> - <message> - <source>%1 written</source> - <translation type="obsolete">已寫入 %1</translation> - </message> - <message> - <source>Select binary</source> - <translation type="obsolete">選擇可執行檔案</translation> - </message> - <message> - <source>Binary</source> - <translation type="obsolete">可執行檔案</translation> - </message> - <message> - <source>Enter Name</source> - <translation type="obsolete">輸入名稱</translation> - </message> - <message> - <source>Please enter a name for the executable</source> - <translation type="obsolete">請為程式輸入一個名稱</translation> - </message> - <message> - <source>Not an executable</source> - <translation type="obsolete">不是可執行程式</translation> - </message> - <message> - <source>This is not a recognized executable.</source> - <translation type="obsolete">無法識別的可執行檔案</translation> - </message> - <message> - <source>Replace file?</source> - <translation type="obsolete">取代檔案?</translation> - </message> - <message> - <source>There already is a hidden version of this file. Replace it?</source> - <translation type="obsolete">已存在同名檔案,但該檔案被隱藏了。確定要覆蓋嗎?</translation> - </message> - <message> - <source>File operation failed</source> - <translation type="obsolete">檔案操作錯誤</translation> - </message> - <message> - <source>Failed to remove "%1". Maybe you lack the required file permissions?</source> - <translation type="obsolete">無法移除 "%1",也許您需要足夠的檔案權限?</translation> - </message> - <message> - <source>failed to rename "%1" to "%2"</source> - <translation type="obsolete">無法重新命名 "%1" 為 "%2"</translation> - </message> - <message> - <source>There already is a visible version of this file. Replace it?</source> - <translation type="obsolete">已存在同名檔案,確定要覆蓋嗎?</translation> - </message> - <message> - <source>Update available</source> - <translation type="obsolete">更新可用</translation> - </message> - <message> - <source>Open/Execute</source> - <translation type="obsolete">開啟/執行</translation> - </message> - <message> - <source>Add as Executable</source> - <translation type="obsolete">添加為可執行檔案</translation> - </message> - <message> - <source>Un-Hide</source> - <translation type="obsolete">取消隱藏</translation> - </message> - <message> - <source>Hide</source> - <translation type="obsolete">隱藏</translation> - </message> - <message> - <source>Write To File...</source> - <translation type="obsolete">寫入檔案...</translation> - </message> - <message> - <source>login successful</source> - <translation type="obsolete">登入成功</translation> - </message> - <message> - <source>login failed: %1. Trying to download anyway</source> - <translation type="obsolete">登入失敗: %1,請嘗試使用別的方法下載</translation> - </message> - <message> - <source>login failed: %1. You need to log-in with Nexus to update MO.</source> - <translation type="obsolete">登入失敗: %1。您需要登入到N網才能更新 MO</translation> - </message> - <message> - <source>Error</source> - <translation type="obsolete">錯誤</translation> - </message> - <message> - <source>failed to extract %1 (errorcode %2)</source> - <translation type="obsolete">無法解壓 %1 (錯誤代碼 %2)</translation> - </message> - <message> - <source>Extract...</source> - <translation type="obsolete">解壓...</translation> - </message> - <message> - <source>Edit Categories...</source> - <translation type="obsolete">編輯類別...</translation> - </message> -</context> -<context> <name>OverwriteInfoDialog</name> <message> <location filename="overwriteinfodialog.ui" line="14"/> @@ -4775,143 +3759,124 @@ Right now this has very limited functionality</source> <context> <name>PluginList</name> <message> - <source>ESP not found: %1</source> - <translation type="obsolete">ESP 檔案沒有找到: %1</translation> + <location filename="pluginlist.cpp" line="103"/> + <source>Name</source> + <translation>名稱</translation> + </message> + <message> + <location filename="pluginlist.cpp" line="104"/> + <source>Priority</source> + <translation>優先級</translation> </message> <message> - <location filename="pluginlist.cpp" line="111"/> + <location filename="pluginlist.cpp" line="105"/> <source>Mod Index</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="112"/> + <location filename="pluginlist.cpp" line="106"/> <source>Flags</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="113"/> - <location filename="pluginlist.cpp" line="125"/> + <location filename="pluginlist.cpp" line="107"/> + <location filename="pluginlist.cpp" line="119"/> <source>unknown</source> - <translation type="unfinished"></translation> + <translation type="unfinished">未知</translation> </message> <message> - <location filename="pluginlist.cpp" line="121"/> + <location filename="pluginlist.cpp" line="115"/> <source>Name of your mods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="122"/> + <location filename="pluginlist.cpp" line="116"/> <source>Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="124"/> + <location filename="pluginlist.cpp" line="118"/> <source>The modindex determins the formids of objects originating from this mods.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="165"/> + <location filename="pluginlist.cpp" line="159"/> <source>failed to update esp info for file %1 (source id: %2), error: %3</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="233"/> + <location filename="pluginlist.cpp" line="227"/> <source>esp not found: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="240"/> - <location filename="pluginlist.cpp" line="252"/> + <location filename="pluginlist.cpp" line="234"/> + <location filename="pluginlist.cpp" line="246"/> <source>Confirm</source> <translation type="unfinished">確認</translation> </message> <message> - <location filename="pluginlist.cpp" line="240"/> + <location filename="pluginlist.cpp" line="234"/> <source>Really enable all plugins?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="252"/> + <location filename="pluginlist.cpp" line="246"/> <source>Really disable all plugins?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="380"/> + <location filename="pluginlist.cpp" line="397"/> <source>The file containing locked plugin indices is broken</source> <translation type="unfinished"></translation> </message> <message> - <source>failed to open output file: %1</source> - <translation type="obsolete">無法開啟輸出檔案: %1</translation> - </message> - <message> - <location filename="pluginlist.cpp" line="418"/> - <source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source> - <translation>您的一些插件名稱無效!這些插件無法被遊戲載入。請查看 mo_interface.log 來確認那些受影響的插件並重新命名它們。</translation> - </message> - <message> - <location filename="pluginlist.cpp" line="644"/> - <source>BOSS dll incompatible</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="pluginlist.cpp" line="987"/> - <source>Missing Masters</source> + <location filename="pluginlist.cpp" line="804"/> + <source><b>Origin</b>: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="pluginlist.cpp" line="993"/> - <source>Enabled Masters</source> - <translation type="unfinished"></translation> + <location filename="pluginlist.cpp" line="806"/> + <source>Author</source> + <translation type="unfinished">作者</translation> </message> <message> - <location filename="pluginlist.cpp" line="1134"/> - <source>failed to restore load order for %1</source> - <translation type="unfinished"></translation> + <location filename="pluginlist.cpp" line="809"/> + <source>Description</source> + <translation type="unfinished">描述</translation> </message> <message> - <source>min</source> - <translation type="obsolete">最低值</translation> + <source>failed to open output file: %1</source> + <translation type="obsolete">無法開啟輸出檔案: %1</translation> </message> <message> - <source>max</source> - <translation type="obsolete">最高值</translation> + <location filename="pluginlist.cpp" line="438"/> + <source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source> + <translation>您的一些插件名稱無效!這些插件無法被遊戲載入。請查看 mo_interface.log 來確認那些受影響的插件並重新命名它們。</translation> </message> <message> - <location filename="pluginlist.cpp" line="983"/> + <location filename="pluginlist.cpp" line="802"/> <source>This plugin can't be disabled (enforced by the game)</source> <translation>這個插件不能被禁用 (由遊戲執行)</translation> </message> <message> - <location filename="pluginlist.cpp" line="985"/> <source>Origin: %1</source> - <translation>隸屬於: %1</translation> - </message> - <message> - <location filename="pluginlist.cpp" line="109"/> - <source>Name</source> - <translation>名稱</translation> - </message> - <message> - <source>Names of your mods</source> - <translation type="obsolete">Mod 名稱</translation> - </message> - <message> - <location filename="pluginlist.cpp" line="110"/> - <source>Priority</source> - <translation>優先級</translation> + <translation type="obsolete">隸屬於: %1</translation> </message> <message> - <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source> - <translation type="obsolete">Mod 的安裝優先級,越高就表示越“重要”,從而覆蓋低優先級的 Mod 檔案。</translation> + <location filename="pluginlist.cpp" line="812"/> + <source>Missing Masters</source> + <translation type="unfinished"></translation> </message> <message> - <source>ModIndex</source> - <translation type="obsolete">Mod 索引</translation> + <location filename="pluginlist.cpp" line="819"/> + <source>Enabled Masters</source> + <translation type="unfinished"></translation> </message> <message> - <source>This index determines the id of items, spells, ... introduced by the mod. Their id will be "xxyyyyyy" where "xx" is this index which "yyyyyy" is determined by the mod itself.</source> - <translation type="obsolete">這些索引決定了那些通過 Mod 引入的物品,法術等等的 ID。ID 的一般格式是 "xxyyyyyy",其中 "xx" 就是這個的索引,而 "yyyyyy" 則是由 Mod 自己所决定的。</translation> + <location filename="pluginlist.cpp" line="960"/> + <source>failed to restore load order for %1</source> + <translation type="unfinished"></translation> </message> </context> <context> @@ -4941,11 +3906,6 @@ Right now this has very limited functionality</source> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html></source> - <oldsource><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><br /></p></body></html></oldsource> <translation type="unfinished"></translation> </message> <message> @@ -4968,10 +3928,6 @@ p, li { white-space: pre-wrap; } <context> <name>Profile</name> <message> - <source>failed to apply ini tweaks</source> - <translation type="obsolete">無法套用 Ini 設定</translation> - </message> - <message> <location filename="profile.cpp" line="59"/> <source>invalid profile name %1</source> <translation type="unfinished"></translation> @@ -4982,62 +3938,67 @@ p, li { white-space: pre-wrap; } <translation type="unfinished">無法建立 %1</translation> </message> <message> - <location filename="profile.cpp" line="182"/> + <location filename="profile.cpp" line="184"/> <source>failed to write mod list: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="193"/> + <location filename="profile.cpp" line="195"/> <source>failed to update tweaked ini file, wrong settings may be used: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="223"/> + <location filename="profile.cpp" line="226"/> <source>failed to create tweaked ini: %1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="276"/> - <location filename="profile.cpp" line="305"/> - <location filename="profile.cpp" line="390"/> - <location filename="profile.cpp" line="408"/> - <location filename="profile.cpp" line="418"/> + <location filename="profile.cpp" line="236"/> + <source>"%1" is missing or inaccessible</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="profile.cpp" line="281"/> + <location filename="profile.cpp" line="313"/> + <location filename="profile.cpp" line="415"/> + <location filename="profile.cpp" line="432"/> + <location filename="profile.cpp" line="442"/> <source>invalid index %1</source> <translation>無效的索引 %1</translation> </message> <message> - <location filename="profile.cpp" line="371"/> + <location filename="profile.cpp" line="396"/> <source>Overwrite directory couldn't be parsed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="380"/> + <location filename="profile.cpp" line="405"/> <source>invalid priority %1</source> <translation>無效的優先級 %1</translation> </message> <message> - <location filename="profile.cpp" line="568"/> + <location filename="profile.cpp" line="592"/> <source>failed to parse ini file (%1)</source> - <translation type="unfinished"></translation> + <translation type="unfinished">無法解析 Ini 檔案 (%1): %2</translation> </message> <message> - <location filename="profile.cpp" line="596"/> + <location filename="profile.cpp" line="620"/> <source>failed to parse ini file (%1): %2</source> <translation>無法解析 Ini 檔案 (%1): %2</translation> </message> <message> - <location filename="profile.cpp" line="620"/> - <location filename="profile.cpp" line="657"/> + <location filename="profile.cpp" line="644"/> + <location filename="profile.cpp" line="681"/> <source>failed to modify "%1"</source> - <translation type="unfinished"></translation> + <translation type="unfinished">未能找到 "%1"</translation> </message> <message> - <location filename="profile.cpp" line="685"/> + <location filename="profile.cpp" line="709"/> <source>Delete savegames?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="profile.cpp" line="686"/> + <location filename="profile.cpp" line="710"/> <source>Do you want to delete local savegames? (If you select "No", the save games will show up again if you re-enable local savegames)</source> <translation type="unfinished"></translation> </message> @@ -5100,40 +4061,6 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">注意: </span>由于技術上的原因,目前不可能有分開儲存的插件加載順序。這意味著您不能同时在兩個配置檔案裡使用兩種不同的插件配置方案。</p></body></html></translation> </message> <message> - <source>Savegame Filter</source> - <translation type="obsolete">存檔過濾</translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Experimental</span><span style=" font-size:8pt;"> Enter a charactername to hide all save games from other characters in the game.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt; font-weight:600;">實驗性的</span><span style=" font-size:9pt;"> 輸入一個角色名來隱藏遊戲裡其它角色的存檔。</span></p></body></html></translation> - </message> - <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Experimental</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Here you can enter a character name to filter the save games displayed inside the game. This makes it easy to have concurrent walkthroughs with different characters.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Note</span> however that autosave and quicksave are always displayed and overwritten even if they belong to a different character.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Note</span> also this may confuse the savegame counter which is why this feature is marked experimental.</p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">實驗性的</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">在這裡您可以輸入一個角色名稱來過濾遊戲中顯示的存檔,這樣您就可以簡單地同時管理不同的角色了。</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">注意:</span> 即使角色不同,自動存檔和快速存檔還是共用的。</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">注意:</span> 這樣做也有可能會混淆存檔的序號,這也是為什麼這個功能被標記為實驗的原因。</p></body></html></translation> - </message> - <message> <location filename="profilesdialog.ui" line="38"/> <location filename="profilesdialog.ui" line="41"/> <source>If checked, savegames are local to this profile and will not appear when starting with a different profile.</source> @@ -5213,7 +4140,7 @@ p, li { white-space: pre-wrap; } <message> <location filename="profilesdialog.ui" line="123"/> <source>Rename</source> - <translation type="unfinished"></translation> + <translation type="unfinished">&重新命名</translation> </message> <message> <location filename="profilesdialog.ui" line="133"/> @@ -5288,10 +4215,6 @@ p, li { white-space: pre-wrap; } <translation type="unfinished"></translation> </message> <message> - <source>Are you sure you want to remove this profile?</source> - <translation type="obsolete">確定要移除這個配置嗎?</translation> - </message> - <message> <location filename="profilesdialog.cpp" line="215"/> <source>Rename Profile</source> <translation type="unfinished"></translation> @@ -5333,6 +4256,51 @@ p, li { white-space: pre-wrap; } <translation>無效的類別 %1</translation> </message> <message> + <location filename="csvbuilder.cpp" line="70"/> + <source>invalid field name "%1"</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="csvbuilder.cpp" line="76"/> + <source>invalid type for "%1" (should be integer)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="csvbuilder.cpp" line="81"/> + <source>invalid type for "%1" (should be string)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="csvbuilder.cpp" line="86"/> + <source>invalid type for "%1" (should be float)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="csvbuilder.cpp" line="103"/> + <source>no fields set up yet!</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="csvbuilder.cpp" line="140"/> + <source>field not set "%1"</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="csvbuilder.cpp" line="237"/> + <source>invalid character in field "%1"</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="csvbuilder.cpp" line="240"/> + <source>empty field name</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="gameinfoimpl.cpp" line="41"/> + <source>invalid game type %1</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="helper.cpp" line="53"/> <source>helper failed</source> <translation>幫助程式出錯</translation> @@ -5414,104 +4382,91 @@ p, li { white-space: pre-wrap; } <translation>無法設定代理DLL加載</translation> </message> <message> - <location filename="profile.cpp" line="96"/> - <source>"%1" is missing</source> - <translation>"%1" 缺失</translation> - </message> - <message> - <location filename="main.cpp" line="139"/> + <location filename="main.cpp" line="121"/> <source>Permissions required</source> <translation>需要權限</translation> </message> <message> - <source>The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "mo_helper.exe" with administrative rights).</source> - <translation type="obsolete">當前的用戶帳戶沒有運行 Mod Organizer 所需的訪問權限,必要的修改將會自動進行 (MO 的目錄將會為當前用戶帳戶而變得可寫),您將被請求使用管理員權限執行 "mo_helper.exe"。</translation> + <location filename="main.cpp" line="122"/> + <source>The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights.</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="main.cpp" line="231"/> - <location filename="main.cpp" line="269"/> + <location filename="main.cpp" line="216"/> + <location filename="main.cpp" line="254"/> <source>Woops</source> <translation>糟糕</translation> </message> <message> - <source>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file by email (sherb@gmx.net), the bug is a lot more likely to be fixed.</source> - <translation type="obsolete">Mod Organizer 崩潰了!要生成診斷檔案嗎?如果您發送這個檔案到我的郵箱 (sherb@gmx.net) 裡的話,這個 Bug 會很有可能被修復。</translation> - </message> - <message> - <location filename="main.cpp" line="140"/> - <source>The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="main.cpp" line="232"/> + <location filename="main.cpp" line="217"/> <source>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file (%1) to sherb@gmx.net, the bug is a lot more likely to be fixed. Please include a short description of what you were doing when the crash happened</source> <translation type="unfinished"></translation> </message> <message> - <location filename="main.cpp" line="270"/> + <location filename="main.cpp" line="255"/> <source>ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1</source> <translation>Mod Organizer 崩潰了!遺憾的是,我無法生成診斷檔案: %1</translation> </message> <message> - <location filename="main.cpp" line="332"/> - <location filename="settings.cpp" line="542"/> + <location filename="main.cpp" line="376"/> + <location filename="settings.cpp" line="557"/> <source>Mod Organizer</source> <translation>Mod Organizer</translation> </message> <message> - <location filename="main.cpp" line="332"/> + <location filename="main.cpp" line="376"/> <source>An instance of Mod Organizer is already running</source> <translation>Mod Organizer 的一個實例正在運行</translation> </message> <message> - <location filename="main.cpp" line="354"/> + <location filename="main.cpp" line="398"/> <source>No game identified in "%1". The directory is required to contain the game binary and its launcher.</source> <translation>"%1" 中未檢測到遊戲。請確保該路徑中包含遊戲執行程式以及對應的 Launcher 檔案。</translation> </message> <message> - <location filename="main.cpp" line="357"/> - <location filename="main.cpp" line="386"/> + <location filename="main.cpp" line="401"/> + <location filename="main.cpp" line="430"/> <source>Please select the game to manage</source> <translation>請選擇想要管理的遊戲</translation> </message> <message> - <location filename="main.cpp" line="412"/> + <location filename="main.cpp" line="456"/> <source>Please select the game edition you have (MO can't start the game correctly if this is set incorrectly!)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="mainwindow.cpp" line="782"/> + <location filename="main.cpp" line="545"/> + <source>failed to start application: %1</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="mainwindow.cpp" line="842"/> <source>Please use "Help" from the toolbar to get usage instructions to all elements</source> <translation>請使用工具列上的“幫助”來獲得所有元素的使用說明</translation> </message> <message> - <location filename="mainwindow.cpp" line="1610"/> - <location filename="mainwindow.cpp" line="4216"/> + <location filename="mainwindow.cpp" line="1613"/> + <location filename="mainwindow.cpp" line="4226"/> <source><Manage...></source> <translation><管理...></translation> </message> <message> - <location filename="mainwindow.cpp" line="1628"/> + <location filename="mainwindow.cpp" line="1631"/> <source>failed to parse profile %1: %2</source> <translation>無法解析配置檔案 %1: %2</translation> </message> <message> - <location filename="pluginlist.cpp" line="335"/> - <location filename="profile.cpp" line="233"/> + <location filename="pluginlist.cpp" line="352"/> <source>failed to find "%1"</source> <translation>未能找到 "%1"</translation> </message> <message> - <source>encoding error, please report this as a bug and include the file mo_interface.log!</source> - <translation type="obsolete">編碼錯誤,請向作者彙報此 Bug 並且附上 mo_interface.log 檔案!</translation> - </message> - <message> - <location filename="pluginlist.cpp" line="491"/> + <location filename="pluginlist.cpp" line="515"/> <source>failed to access %1</source> <translation>無法訪問 %1</translation> </message> <message> - <location filename="pluginlist.cpp" line="505"/> + <location filename="pluginlist.cpp" line="529"/> <source>failed to set file time %1</source> <translation>無法設定檔案時間 %1</translation> </message> @@ -5521,12 +4476,13 @@ p, li { white-space: pre-wrap; } <translation>無法建立 %1</translation> </message> <message> - <source>modlist.txt missing</source> - <translation type="obsolete">Modlist.txt 丟失</translation> + <location filename="profile.cpp" line="96"/> + <source>"%1" is missing or inaccessible</source> + <translation type="unfinished"></translation> </message> <message> - <source>failed to copy "%1" to "%2", this is going to end badly...</source> - <translation type="obsolete">無法複製 "%1" 到 "%2",並且程式將會嚴重地結束...</translation> + <source>"%1" is missing</source> + <translation type="obsolete">"%1" 缺失</translation> </message> <message> <location filename="profilesdialog.cpp" line="80"/> @@ -5552,27 +4508,27 @@ p, li { white-space: pre-wrap; } <translation>無法開啟 %1</translation> </message> <message> - <location filename="settings.cpp" line="549"/> + <location filename="settings.cpp" line="564"/> <source>Script Extender</source> <translation>腳本拓展</translation> </message> <message> - <location filename="settings.cpp" line="556"/> + <location filename="settings.cpp" line="571"/> <source>Proxy DLL</source> <translation>代理DLL</translation> </message> <message> - <location filename="spawn.cpp" line="106"/> + <location filename="spawn.cpp" line="127"/> <source>failed to spawn "%1"</source> <translation>無法生成 "%1"</translation> </message> <message> - <location filename="spawn.cpp" line="113"/> + <location filename="spawn.cpp" line="134"/> <source>Elevation required</source> <translation type="unfinished"></translation> </message> <message> - <location filename="spawn.cpp" line="114"/> + <location filename="spawn.cpp" line="135"/> <source>This process requires elevation to run. This is a potential security risk so I highly advice you to investigate if "%1" @@ -5582,83 +4538,26 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <translation type="unfinished"></translation> </message> <message> - <location filename="spawn.cpp" line="129"/> + <location filename="spawn.cpp" line="150"/> <source>failed to spawn "%1": %2</source> <translation>無法生成 "%1": %2</translation> </message> <message> - <location filename="spawn.cpp" line="138"/> + <location filename="spawn.cpp" line="159"/> <source>"%1" doesn't exist</source> <translation>"%1" 不存在</translation> </message> <message> - <location filename="spawn.cpp" line="145"/> + <location filename="spawn.cpp" line="166"/> <source>failed to inject dll into "%1": %2</source> <translation>無法注入 dll 到 "%1": %2</translation> </message> <message> - <location filename="spawn.cpp" line="153"/> + <location filename="spawn.cpp" line="174"/> <source>failed to run "%1"</source> <translation>無法運行 "%1"</translation> </message> <message> - <source>removal of "%1" failed: %2</source> - <translation type="obsolete">無法移除 "%1": %2</translation> - </message> - <message> - <source>removal of "%1" failed</source> - <translation type="obsolete">無法移除 "%1"</translation> - </message> - <message> - <source>"%1" doesn't exist (remove)</source> - <translation type="obsolete">"%1" 不存在 (移除)</translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="70"/> - <source>invalid field name "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="76"/> - <source>invalid type for "%1" (should be integer)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="81"/> - <source>invalid type for "%1" (should be string)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="86"/> - <source>invalid type for "%1" (should be float)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="103"/> - <source>no fields set up yet!</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="140"/> - <source>field not set "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="237"/> - <source>invalid character in field "%1"</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="csvbuilder.cpp" line="240"/> - <source>empty field name</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="gameinfoimpl.cpp" line="41"/> - <source>invalid game type %1</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="safewritefile.cpp" line="32"/> <source>failed to open temporary file</source> <translation type="unfinished"></translation> @@ -5694,7 +4593,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="queryoverwritedialog.ui" line="84"/> <source>Rename</source> - <translation type="unfinished"></translation> + <translation type="unfinished">&重新命名</translation> </message> <message> <location filename="queryoverwritedialog.ui" line="91"/> @@ -5703,13 +4602,6 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe </message> </context> <context> - <name>QuestionBoxMemory</name> - <message> - <source>Remember selection</source> - <translation type="obsolete">記住我的選擇</translation> - </message> -</context> -<context> <name>SaveGameInfoWidget</name> <message> <location filename="savegameinfowidget.ui" line="39"/> @@ -5734,7 +4626,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="savegameinfowidget.ui" line="87"/> <source>Date</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Data</translation> </message> </context> <context> @@ -5742,7 +4634,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="savegameinfowidgetgamebryo.cpp" line="41"/> <source>Missing ESPs</source> - <translation type="unfinished"></translation> + <translation type="unfinished">缺失的 ESP</translation> </message> </context> <context> @@ -5775,7 +4667,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <message> <location filename="savetextasdialog.cpp" line="36"/> <source>Text Files</source> - <translation type="unfinished"></translation> + <translation type="unfinished">文字文件</translation> </message> <message> <location filename="savetextasdialog.cpp" line="40"/> @@ -5804,10 +4696,6 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <context> <name>SelfUpdater</name> <message> - <source>mo_archive.dll not loaded: "%1"</source> - <translation type="obsolete">mo_archive.dll 未加載: "%1"</translation> - </message> - <message> <location filename="selfupdater.cpp" line="66"/> <source>archive.dll not loaded: "%1"</source> <translation type="unfinished"></translation> @@ -5876,39 +4764,31 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <translation type="unfinished"></translation> </message> <message> - <location filename="selfupdater.cpp" line="460"/> - <source>No download server available. Please try again later.</source> - <translation type="unfinished">沒有可用的下載伺服器,請稍後再嘗試下載。</translation> - </message> - <message> - <source>no file for update found</source> - <translation type="obsolete">未找到更新檔案</translation> - </message> - <message> <location filename="selfupdater.cpp" line="440"/> <source>Failed to retrieve update information: %1</source> <translation>無法檢索更新信息: %1</translation> </message> + <message> + <location filename="selfupdater.cpp" line="460"/> + <source>No download server available. Please try again later.</source> + <translation type="unfinished">沒有可用的下載伺服器,請稍後再嘗試下載。</translation> + </message> </context> <context> <name>Settings</name> <message> - <source>Administrative rights required to change this.</source> - <translation type="obsolete">需要管理員的權限來更改這個。</translation> - </message> - <message> - <location filename="settings.cpp" line="320"/> - <location filename="settings.cpp" line="339"/> + <location filename="settings.cpp" line="329"/> + <location filename="settings.cpp" line="348"/> <source>attempt to store setting for unknown plugin "%1"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settings.cpp" line="660"/> + <location filename="settings.cpp" line="681"/> <source>Confirm</source> <translation>確認</translation> </message> <message> - <location filename="settings.cpp" line="660"/> + <location filename="settings.cpp" line="681"/> <source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed?</source> <translation>修改 Mod 目錄將會影響您的配置!新目錄中不存在 (或者名稱不同) 的 Mod 將在所有配置中被禁止掉。此操作無法撤銷,所以執行此操作前建議先備份下自己的配置。立即執行?</translation> </message> @@ -6031,129 +4911,69 @@ p, li { white-space: pre-wrap; } <translation>緩存目錄</translation> </message> <message> - <location filename="settingsdialog.ui" line="205"/> - <source>Reset stored information from dialogs.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="208"/> - <source>This will make all dialogs show up again where you checked the "Remember selection"-box.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="211"/> - <source>Reset Dialogs</source> - <translation>重置對話方塊</translation> - </message> - <message> - <location filename="settingsdialog.ui" line="231"/> - <location filename="settingsdialog.ui" line="234"/> - <source>Modify the categories available to arrange your mods.</source> - <translation>修改可用的類別來整理您的 Mod。</translation> - </message> - <message> - <location filename="settingsdialog.ui" line="237"/> - <source>Configure Mod Categories</source> - <translation>配置 Mod 類別</translation> - </message> - <message> - <location filename="settingsdialog.ui" line="318"/> - <source>Disable automatic internet features</source> + <location filename="settingsdialog.ui" line="199"/> + <source>User interface</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="321"/> - <source>Disable automatic internet features. This does not affect features that are explicitly invoked by the user (like checking mods for updates, endorsing, opening the web browser)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="324"/> - <source>Offline Mode</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="331"/> - <source>Use a proxy for network connections.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="334"/> - <source>Use a proxy for network connections. This uses the system-wide settings which can be configured in Internet Explorer. Please note that MO will start up a few seconds slower on some systems when using a proxy.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="settingsdialog.ui" line="337"/> - <source>Use HTTP Proxy (Uses System Settings)</source> + <location filename="settingsdialog.ui" line="205"/> + <source>If checked, the download interface will be more compact.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="346"/> - <source>Associate with "Download with manager" links</source> + <location filename="settingsdialog.ui" line="208"/> + <source>Compact Download Interface</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="375"/> - <source>Known Servers (updated on download)</source> + <location filename="settingsdialog.ui" line="215"/> + <source>If checked, the download list will display meta information instead of file names.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="396"/> - <source>Preferred Servers (Drag & Drop)</source> + <location filename="settingsdialog.ui" line="218"/> + <source>Download Meta Information</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="536"/> - <source>Blacklisted Plugins (use <del> to remove):</source> + <location filename="settingsdialog.ui" line="234"/> + <source>Reset stored information from dialogs.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="632"/> - <source>Mod Organizer needs a dll to be injected into the game so all mods are visible to it. -There are several means to do this: -*Mod Organizer* (default) In this mode the Mod Organizer itself injects the dll. The disadvantage is that you always have to start the game through MO or a link created by it. -*Script Extender* In this mode, MO is installed as a Script Extender (obse, fose, nvse, skse) plugin. -*Proxy DLL* In this mode, MO replaces one of the game's dlls with one that loads MO (and the original dll of course). This will ONLY work with Steam games and it has only been tested with Skyrim. Please use this only if the other mechanisms don't work. - -If you use the Steam version of Oblivion the default will NOT work. In this case, please install obse and use "Script Extender" as the load mechanism. Also you can then not start Oblivion from MO. Instead, use MO only to set up your mods, then quit and start Oblivion through Steam.</source> + <location filename="settingsdialog.ui" line="237"/> + <source>This will make all dialogs show up again where you checked the "Remember selection"-box.</source> <translation type="unfinished"></translation> </message> <message> - <source>Installer</source> - <translation type="obsolete">安裝程式</translation> - </message> - <message> - <source>Choose the integrated fomod installer over the external one wherever possible.</source> - <translation type="obsolete">盡可能地優先選擇內置的 fomod 安裝程式而不是外部的。</translation> - </message> - <message> - <source>Use the integrated fomod installer if possible. This installer is only able to handle archives scripted using an xml-file (that's maybe half the fomods out there), other files are still installed using the external installer if it's available.</source> - <translation type="obsolete">盡可能地使用內置的 fomod 安裝程式。此安裝程式僅能處理內含 xml 腳本的壓縮包 (大概有一半的 fomod 使用 xml 脚本),其餘不支援的檔案則繼續使用外部安裝程式 (如果可用的話)。</translation> - </message> - <message> - <source>Prefer integrated fomod installer</source> - <translation type="obsolete">首選內置 fomod 安裝程式</translation> + <location filename="settingsdialog.ui" line="240"/> + <source>Reset Dialogs</source> + <translation>重置對話方塊</translation> </message> <message> - <source>Use a very simple installation dialog if MO recognizes the structure of the installation archive. If you prefer your life complicated, uncheck this box.</source> - <translation type="obsolete">如果 MO 能夠識別安裝包的結構,則使用簡單明瞭的對話方塊模式安裝。如果您喜歡挑戰複雜點的,那麼也可以取消此複選框。</translation> + <location filename="settingsdialog.ui" line="260"/> + <location filename="settingsdialog.ui" line="263"/> + <source>Modify the categories available to arrange your mods.</source> + <translation>修改可用的類別來整理您的 Mod。</translation> </message> <message> - <source>Enable "Quick Installer"</source> - <translation type="obsolete">啟用“快速安裝”</translation> + <location filename="settingsdialog.ui" line="266"/> + <source>Configure Mod Categories</source> + <translation>配置 Mod 類別</translation> </message> <message> - <location filename="settingsdialog.ui" line="245"/> - <location filename="settingsdialog.ui" line="261"/> + <location filename="settingsdialog.ui" line="274"/> + <location filename="settingsdialog.ui" line="290"/> <source>Nexus</source> <translation>N網</translation> </message> <message> - <location filename="settingsdialog.ui" line="251"/> + <location filename="settingsdialog.ui" line="280"/> <source>Allows automatic log-in when the Nexus-Page for the game is clicked.</source> <translation>當N網頁面開啟時將自動登入。</translation> </message> <message> - <location filename="settingsdialog.ui" line="254"/> + <location filename="settingsdialog.ui" line="283"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -6166,84 +4986,122 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">允許當N網頁面開啟時自動登入。請注意: 密碼是存儲在 modorganizer.ini 裡的,混淆得不是很強烈。如果您擔心有人可能會竊取您的密碼,那麼請不要存儲在這裡。</span></p></body></html></translation> </message> <message> - <location filename="settingsdialog.ui" line="270"/> + <location filename="settingsdialog.ui" line="299"/> <source>If checked and if correct credentials are entered below, log-in to Nexus (for browsing and downloading) is automatic.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="273"/> + <location filename="settingsdialog.ui" line="302"/> <source>Automatically Log-In to Nexus</source> <translation>自動登入</translation> </message> <message> - <location filename="settingsdialog.ui" line="282"/> + <location filename="settingsdialog.ui" line="311"/> <source>Username</source> <translation>帳號</translation> </message> <message> - <location filename="settingsdialog.ui" line="296"/> + <location filename="settingsdialog.ui" line="325"/> <source>Password</source> <translation>密碼</translation> </message> <message> - <source>Handle NXM Links</source> - <translation type="obsolete">關聯 NXM 連結</translation> + <location filename="settingsdialog.ui" line="347"/> + <source>Disable automatic internet features</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="350"/> + <source>Disable automatic internet features. This does not affect features that are explicitly invoked by the user (like checking mods for updates, endorsing, opening the web browser)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="353"/> + <source>Offline Mode</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="360"/> + <source>Use a proxy for network connections.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="363"/> + <source>Use a proxy for network connections. This uses the system-wide settings which can be configured in Internet Explorer. Please note that MO will start up a few seconds slower on some systems when using a proxy.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="366"/> + <source>Use HTTP Proxy (Uses System Settings)</source> + <translation type="unfinished"></translation> </message> <message> - <source>If checked, MO will use an external browser for buttons like "Visit on Nexus" instead of the integrated one.</source> - <translation type="obsolete">當您勾選時,MO 將會使用外部流覽器開啟連結而不是使用內置的。</translation> + <location filename="settingsdialog.ui" line="375"/> + <source>Associate with "Download with manager" links</source> + <translation type="unfinished"></translation> </message> <message> - <source>Prefer external browser</source> - <translation type="obsolete">首選外部流覽器</translation> + <location filename="settingsdialog.ui" line="404"/> + <source>Known Servers (updated on download)</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="431"/> + <location filename="settingsdialog.ui" line="425"/> + <source>Preferred Servers (Drag & Drop)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="460"/> <source>Plugins</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="453"/> + <location filename="settingsdialog.ui" line="482"/> <source>Author:</source> - <translation type="unfinished"></translation> + <translation type="unfinished">作者</translation> </message> <message> - <location filename="settingsdialog.ui" line="467"/> + <location filename="settingsdialog.ui" line="496"/> <source>Version:</source> - <translation type="unfinished"></translation> + <translation type="unfinished">版本</translation> </message> <message> - <location filename="settingsdialog.ui" line="481"/> + <location filename="settingsdialog.ui" line="510"/> <source>Description:</source> - <translation type="unfinished"></translation> + <translation type="unfinished">描述</translation> </message> <message> - <location filename="settingsdialog.ui" line="519"/> + <location filename="settingsdialog.ui" line="548"/> <source>Key</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="524"/> + <location filename="settingsdialog.ui" line="553"/> <source>Value</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="547"/> + <location filename="settingsdialog.ui" line="565"/> + <source>Blacklisted Plugins (use <del> to remove):</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="576"/> <source>Workarounds</source> <translation>解決方案</translation> </message> <message> - <location filename="settingsdialog.ui" line="555"/> + <location filename="settingsdialog.ui" line="584"/> <source>Steam App ID</source> <translation>Steam App ID</translation> </message> <message> - <location filename="settingsdialog.ui" line="575"/> + <location filename="settingsdialog.ui" line="604"/> <source>The Steam AppID for your game</source> <translation>您遊戲的 Steam AppID</translation> </message> <message> - <location filename="settingsdialog.ui" line="578"/> + <location filename="settingsdialog.ui" line="607"/> <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -6270,47 +5128,38 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">其中 22380 就是您要找的 ID。</span></p></body></html></translation> </message> <message> - <location filename="settingsdialog.ui" line="609"/> + <location filename="settingsdialog.ui" line="638"/> <source>Load Mechanism</source> <translation>加載機制</translation> </message> <message> - <location filename="settingsdialog.ui" line="629"/> + <location filename="settingsdialog.ui" line="658"/> <source>Select loading mechanism. See help for details.</source> <translation>選擇加載機制,使用幫助查看更多細節。</translation> </message> <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Mod Organizer needs a dll to be injected into the game so all mods are visible to it.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">There are several means to do this:</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Mod Organizer</span><span style=" font-size:8pt;"> (default) In this mode the Mod Organizer itself injects the dll. The disadvantage is that you always have to start the game through MO or a link created by it. This does not work for the Steam version of Oblivion!</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Script Extender</span><span style=" font-size:8pt;"> In this mode, MO is installed as a Script Extender (obse, fose, nvse, skse) plugin. (recommended if you have a script extender installed)</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt; font-weight:600;">Proxy DLL</span><span style=" font-size:8pt;"> In this mode, MO replaces one of the game's dlls with one that loads MO (and the original dll of course). This will ONLY work with Steam games and it has only been tested with Skyrim. Please use this only if the other mechanisms don't work.</span></p></body></html></source> - <translation type="obsolete"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">Mod Organizer 需要一個 dll 來注入遊戲,從而使所有 Mod 在遊戲裡是可見的。</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">有以下幾種方式可以做到這一點: </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt; font-weight:600;">Mod Organizer</span><span style=" font-size:9pt;"> (默認) 在這種模式下,Mod Organizer 將注入自身的 dll。但缺點是: 您總是需要通過 MO 或由其建立的連結來啟動遊戲。注意: 這並不適用于 Steam 版本的湮滅!</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt; font-weight:600;">腳本拓展</span><span style=" font-size:9pt;"> 在這種模式下,MO 將被作為腳本擴展 (obse, fose, nvse, skse) 的插件來安裝。(推薦在您已經安裝了腳本拓展後)</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt; font-weight:600;">代理DLL</span><span style=" font-size:9pt;"> 在這種模式下,MO 將替換一個遊戲的 dll 來加載 MO (當然原來的 dll),這僅適用于 Steam 版本的遊戲,並且只在 Skyrim 上做過測試。請只在其它加載機制不能工作的情況下才使用它。</span></p></body></html></translation> + <location filename="settingsdialog.ui" line="661"/> + <source>Mod Organizer needs a dll to be injected into the game so all mods are visible to it. +There are several means to do this: +*Mod Organizer* (default) In this mode the Mod Organizer itself injects the dll. The disadvantage is that you always have to start the game through MO or a link created by it. +*Script Extender* In this mode, MO is installed as a Script Extender (obse, fose, nvse, skse) plugin. +*Proxy DLL* In this mode, MO replaces one of the game's dlls with one that loads MO (and the original dll of course). This will ONLY work with Steam games and it has only been tested with Skyrim. Please use this only if the other mechanisms don't work. + +If you use the Steam version of Oblivion the default will NOT work. In this case, please install obse and use "Script Extender" as the load mechanism. Also you can then not start Oblivion from MO. Instead, use MO only to set up your mods, then quit and start Oblivion through Steam.</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="649"/> + <location filename="settingsdialog.ui" line="678"/> <source>NMM Version</source> <translation>NMM 版本</translation> </message> <message> - <location filename="settingsdialog.ui" line="669"/> + <location filename="settingsdialog.ui" line="698"/> <source>The Version of Nexus Mod Manager to impersonate.</source> <translation>想要模擬的 NMM 版本號。</translation> </message> <message> - <location filename="settingsdialog.ui" line="672"/> + <location filename="settingsdialog.ui" line="701"/> <source>Mod Organizer uses an API provided by the Nexus to provide features like checking for updates and downloading files. Unfortunately this API has not been made available officially to third party tools like MO so we have to impersonate the Nexus Mod Manager to be allowed in. On top of this Nexus has used the client identification to lock out outdated versions of NMM to force users to update. This means that MO also needs to impersonate the new version of NMM even if MO doesn't need an update. Therefore you can configure the version to identify as here. Please note that MO does identify itself as MO to the webserver, it's not lying about what it is. It is merely adding a "compatible" NMM version to the user agent. @@ -6323,67 +5172,73 @@ tl;dr-version: If Nexus-features don't work, insert the current version num 變更版本號: 如果N網功能不正常了,那麼請在這裡輸入 NMM 的當前版本號並重試一下。</translation> </message> <message> - <location filename="settingsdialog.ui" line="757"/> - <source>These are workarounds for problems with Mod Organizer. Please make sure you read the help text before changing anything here.</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>009.009.009; </source> - <translation type="obsolete">009.009.009; </translation> - </message> - <message> - <source>example: 0.33.1</source> - <translation type="obsolete">例如: 0.33.1</translation> - </message> - <message> - <location filename="settingsdialog.ui" line="694"/> + <location filename="settingsdialog.ui" line="723"/> <source>Enforces that inactive ESPs and ESMs are never loaded.</source> <translation>強制執行,未激活的 ESP 和 ESM 將不會被加載。</translation> </message> <message> - <location filename="settingsdialog.ui" line="697"/> + <location filename="settingsdialog.ui" line="726"/> <source>It seems that the Games occasionally load ESP or ESM files even if they haven't been activated as plugins. I don't yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded.</source> <translation>看來,遊戲偶爾會加載一些沒有被激活成插件的 ESP 或 ESM 檔案。 我還尚不知道它在什麼情況下會這樣,但是有用戶報告說它在某些情況下是很不必要的。如果這個選項被選中,那麼在列表中沒有被勾選的 ESP 和 ESM 將不會在遊戲中出現,並且也不會被載入。</translation> </message> <message> - <location filename="settingsdialog.ui" line="701"/> + <location filename="settingsdialog.ui" line="730"/> <source>Hide inactive ESPs/ESMs</source> <translation>隱藏未激活的 ESP 或 ESM</translation> </message> <message> - <location filename="settingsdialog.ui" line="708"/> + <location filename="settingsdialog.ui" line="737"/> <source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="711"/> + <location filename="settingsdialog.ui" line="740"/> <source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on) Uncheck this if you want to use Mod Organizer with total conversions (like Nehrim) but be aware that the game will crash if required files are not enabled.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="715"/> + <location filename="settingsdialog.ui" line="744"/> <source>Force-enable game files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="settingsdialog.ui" line="725"/> - <location filename="settingsdialog.ui" line="729"/> + <location filename="settingsdialog.ui" line="754"/> + <source>Disable this to no longer display mods installed outside MO in the mod list (left pane). Assets from those mods will then be treated as having lowest mod priority together with the original game content.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="757"/> + <source>By default Mod Organizer will display esp+bsa bundles installed with foreign tools as mods (left pane). This allows you to control their priority in relation to other mods. This is particularly useful if you also use Steam Workshop to install mods. +However, if you installed loose file mods outside MO which conflict with BSAs also installed outside MO those conflicts can't be resolved correctly. + +If you disable this feature, MO will only display official DLCs this way. Please note that plugins (esps and esms) displayed in the right pane are completely unaffected by this feature.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="763"/> + <source>Display mods installed outside MO</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="settingsdialog.ui" line="773"/> + <location filename="settingsdialog.ui" line="777"/> <source>For Skyrim, this can be used instead of Archive Invalidation. It should make AI redundant for all Profiles. For the other games this is not a sufficient replacement for AI!</source> <translation>對於天際,這個可以用來取代檔案無效化,它將會使档案无效化對所有配置都變得多余。 但是對於其它遊戲,這並不是一個很好的替代品!</translation> </message> <message> - <location filename="settingsdialog.ui" line="733"/> + <location filename="settingsdialog.ui" line="781"/> <source>Back-date BSAs</source> <translation>重置 BSA 檔案修改日期</translation> </message> <message> - <source>These are workarounds for problems with Mod Organizer. They are usually not neccessary. Please make sure you read the help text before changing anything here.</source> - <translation type="obsolete">這些是 Mod Organizer 的問題解決方案。它們通常是不必修改的,請確保在您變更了這裡的任何東西之前已經讀過了幫助文檔。</translation> + <location filename="settingsdialog.ui" line="805"/> + <source>These are workarounds for problems with Mod Organizer. Please make sure you read the help text before changing anything here.</source> + <translation type="unfinished"></translation> </message> <message> <location filename="settingsdialog.cpp" line="95"/> @@ -6454,7 +5309,6 @@ For the other games this is not a sufficient replacement for AI!</source> </message> <message> <location filename="singleinstance.cpp" line="82"/> - <location filename="singleinstance.cpp" line="88"/> <source>failed to connect to running instance: %1</source> <translation>無法連接到正在運行的實例: %1</translation> </message> @@ -6498,43 +5352,8 @@ For the other games this is not a sufficient replacement for AI!</source> </message> </context> <context> - <name>TextViewer</name> - <message> - <source>Log Viewer</source> - <translation type="obsolete">文本查看器</translation> - </message> - <message> - <source>Placeholder</source> - <translation type="obsolete">占位符</translation> - </message> - <message> - <source>Save changes?</source> - <translation type="obsolete">儲存更改嗎?</translation> - </message> - <message> - <source>Do you want to save changes to %1?</source> - <translation type="obsolete">您想要儲存更改到 %1 嗎?</translation> - </message> - <message> - <source>failed to write to %1</source> - <translation type="obsolete">無法寫入 %1</translation> - </message> - <message> - <source>file not found: %1</source> - <translation type="obsolete">檔案未找到: %1</translation> - </message> - <message> - <source>Save</source> - <translation type="obsolete">儲存</translation> - </message> -</context> -<context> <name>TransferSavesDialog</name> <message> - <source>Dialog</source> - <translation type="obsolete">對話方塊</translation> - </message> - <message> <location filename="transfersavesdialog.ui" line="14"/> <source>Transfer Savegames</source> <translation type="unfinished"></translation> @@ -6559,14 +5378,6 @@ On Windows Vista/Windows 7: On Windows XP: C:\Documents and Settings\[UserName]\My Documents\My Games\Skyrim\Saves </source> - <oldsource>This is a list of characters in the global location. - -On Windows Vista/Windows 7: - C:\Users\[UserName]\Documents\My Games\Skyrim\Saves - -On Windows XP: - C:\Documents and Settings[UserName]\My Documents\My Games\Skyrim\Saves -</oldsource> <translation type="unfinished"></translation> </message> <message> diff --git a/src/pluginlist.h b/src/pluginlist.h index 57b78a12..d4a245f0 100644 --- a/src/pluginlist.h +++ b/src/pluginlist.h @@ -310,7 +310,7 @@ private: private: std::vector<ESPInfo> m_ESPs; - mutable std::map<QString, uint> m_LastSaveHash; + mutable std::map<QString, QByteArray> m_LastSaveHash; std::map<QString, int> m_ESPsByName; std::vector<int> m_ESPsByPriority; diff --git a/src/profile.cpp b/src/profile.cpp index 50e6c3b2..2bbdea66 100644 --- a/src/profile.cpp +++ b/src/profile.cpp @@ -415,10 +415,13 @@ void Profile::setModEnabled(unsigned int index, bool enabled) throw MyException(tr("invalid index %1").arg(index)); } - if (m_ModStatus[index].m_Overwrite) { - // overwrite is always enabled - return; + ModInfo::Ptr modInfo = ModInfo::getByIndex(index); + // we could quit in the following case, this shouldn't be a change anyway, + // but at least this allows the situation to be fixed in case of an error + if (modInfo->alwaysEnabled()) { + enabled = true; } + if (enabled != m_ModStatus[index].m_Enabled) { m_ModStatus[index].m_Enabled = enabled; emit modStatusChanged(index); @@ -740,13 +743,11 @@ QString Profile::getLoadOrderFileName() const return QDir::cleanPath(m_Directory.absoluteFilePath("loadorder.txt")); } - QString Profile::getLockedOrderFileName() const { return QDir::cleanPath(m_Directory.absoluteFilePath("lockedorder.txt")); } - QString Profile::getArchivesFileName() const { return QDir::cleanPath(m_Directory.absoluteFilePath("archives.txt")); @@ -757,7 +758,6 @@ QString Profile::getDeleterFileName() const return QDir::cleanPath(m_Directory.absoluteFilePath("hide_plugins.txt")); } - QString Profile::getIniFileName() const { std::wstring primaryIniFile = *(GameInfo::instance().getIniFileNames().begin()); @@ -769,7 +769,6 @@ QString Profile::getProfileTweaks() const return QDir::cleanPath(m_Directory.absoluteFilePath(ToQString(AppConfig::profileTweakIni()))); } - QString Profile::getPath() const { return QDir::cleanPath(m_Directory.absolutePath()); diff --git a/src/profile.h b/src/profile.h index df27bb37..d2f66ca0 100644 --- a/src/profile.h +++ b/src/profile.h @@ -316,7 +316,7 @@ private: QDir m_Directory; - mutable uint m_LastModlistHash; + mutable QByteArray m_LastModlistHash; std::vector<ModStatus> m_ModStatus; std::vector<unsigned int> m_ModIndexByPriority; unsigned int m_NumRegularMods; diff --git a/src/safewritefile.cpp b/src/safewritefile.cpp index 626413dd..3bc1d1c4 100644 --- a/src/safewritefile.cpp +++ b/src/safewritefile.cpp @@ -20,6 +20,7 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>. #include "safewritefile.h"
#include <QStringList>
+#include <QCryptographicHash>
using namespace MOBase;
@@ -47,8 +48,8 @@ void SafeWriteFile::commit() { m_TempFile.close();
}
-bool SafeWriteFile::commitIfDifferent(uint &inHash) {
- uint newHash = hash();
+bool SafeWriteFile::commitIfDifferent(QByteArray &inHash) {
+ QByteArray newHash = hash();
if (newHash != inHash) {
commit();
inHash = newHash;
@@ -58,11 +59,12 @@ bool SafeWriteFile::commitIfDifferent(uint &inHash) { }
}
-uint SafeWriteFile::hash()
+QByteArray SafeWriteFile::hash()
{
+
qint64 pos = m_TempFile.pos();
m_TempFile.seek(0);
QByteArray data = m_TempFile.readAll();
m_TempFile.seek(pos);
- return qHash(data);
+ return QCryptographicHash::hash(data, QCryptographicHash::Md5);
}
diff --git a/src/safewritefile.h b/src/safewritefile.h index 06c22acc..0af6bf98 100644 --- a/src/safewritefile.h +++ b/src/safewritefile.h @@ -37,9 +37,11 @@ public: void commit();
- bool commitIfDifferent(uint &hash);
+ bool commitIfDifferent(QByteArray &hash);
- uint hash();
+private:
+
+ QByteArray hash();
private:
QString m_FileName;
diff --git a/src/tutorials/tutorial_firststeps_main.js b/src/tutorials/tutorial_firststeps_main.js index ae3f6923..4f9c1a74 100644 --- a/src/tutorials/tutorial_firststeps_main.js +++ b/src/tutorials/tutorial_firststeps_main.js @@ -59,7 +59,7 @@ function getTutorialSteps() function() {
tutorial.text = qsTr("There are a few ways to get mods into ModOrganizer. "
- + "If you associated MO with NXM links in the settings you can now use your regular browser to send download from Nexus to MO. "
+ + "If you associated MO with NXM links in the settings you can now use your regular browser to send downloads from Nexus to MO. "
+ "Click on \"Nexus\" to open nexus, find a mod and click the green download buttons on Nexus saying \"Download with Manager\".")
highlightAction("actionNexus", true)
tutorialControl.waitForAction("actionNexus")
@@ -72,9 +72,9 @@ function getTutorialSteps() },
function() {
- tutorial.text = qsTr("Downloads will appear here. You have to download at least one mod to proceed.")
+ tutorial.text = qsTr("Downloads will appear on the \"Downloads\"-tab here. You have to download and install at least one mod to proceed.")
applicationWindow.modInstalled.connect(nextStep)
- highlightItem("downloadView", true)
+ highlightItem("tabWidget", true)
},
function() {
@@ -149,8 +149,20 @@ function getTutorialSteps() function() {
tutorial.text = qsTr("MO applies some \"magic\" to make all BSAs that are checked in this list load in "
- + "the correct order interleaved with the non-bundled resources. Usually it's best "
- + "to check all bsas that have an exclamation mark at the side.")
+ + "the correct order interleaved with the non-bundled resources.")
+ waitForClick()
+ },
+
+ function() {
+ tutorial.text = qsTr("You can disable this magic to make MO behave more like other tools. In this case "
+ + "their load order follows that of the corresponding plugin (.esp).")
+ highlightItem("managedArchiveLabel", false)
+ waitForClick()
+ },
+
+ function() {
+ tutorial.text = qsTr("Many BSAs will appear grayed out and enabled. These mods are loaded by the game engine "
+ + "automatically so they can't be disabled here.")
waitForClick()
},
diff --git a/src/tutorials/tutorial_firststeps_modinfo.js b/src/tutorials/tutorial_firststeps_modinfo.js index 3c56d1f4..50c38345 100644 --- a/src/tutorials/tutorial_firststeps_modinfo.js +++ b/src/tutorials/tutorial_firststeps_modinfo.js @@ -11,8 +11,7 @@ function getTutorialSteps() },
function() {
tutorial.text = qsTr("If you installed the mod from Nexus, the corresponding tab should give you direct "
- +"access to the mod page. That tab can also be used to download optional packages "
- +"or updates for the mod.")
+ +"access to the mod page.")
waitForClick()
},
function() {
diff --git a/src/tutorials/tutorial_firststeps_settings.js b/src/tutorials/tutorial_firststeps_settings.js index 2bff4251..dd5c6e9c 100644 --- a/src/tutorials/tutorial_firststeps_settings.js +++ b/src/tutorials/tutorial_firststeps_settings.js @@ -4,13 +4,13 @@ function getTutorialSteps() function() {
highlightItem("tabWidget", true)
tutorial.text = qsTr("You can use your regular browser to download from Nexus.\nPlease open the \"Nexus\"-tab")
- tutorialControl.waitForTabOpen("tabWidget", 2)
+ tutorialControl.waitForTabOpen("tabWidget", 1)
},
function() {
- highlightItem("handleNXMBox", false)
- tutorial.text = qsTr("If this box is checked the \"DOWNLOAD WITH MANAGER\"-buttons "
- +"in your regular browser will also download with Mod Organizer.")
+ highlightItem("associateButton", false)
+ tutorial.text = qsTr("Click this button so that \"DOWNLOAD WITH MANAGER\"-buttons "
+ +"are download with Mod Organizer.")
waitForClick()
},
diff --git a/src/version.rc b/src/version.rc index f589769d..d0b29298 100644 --- a/src/version.rc +++ b/src/version.rc @@ -1,7 +1,7 @@ #include "Winver.h"
-#define VER_FILEVERSION 1,2,5,0
-#define VER_FILEVERSION_STR "1,2,5,0\0"
+#define VER_FILEVERSION 1,2,6,0
+#define VER_FILEVERSION_STR "1,2,6,0\0"
VS_VERSION_INFO VERSIONINFO
FILEVERSION VER_FILEVERSION
|
