From 49e1dd23b699b499d9b715ef74cb7ca5b0189584 Mon Sep 17 00:00:00 2001 From: Tannin Date: Sat, 31 Aug 2013 17:11:17 +0200 Subject: - mod list can now be sorted by install time - the sorting of download archives wasn't actually by index instead of file time - bugfix: some of the plugins crashed if they failed to create a mod --- src/downloadlist.cpp | 4 +- src/downloadlist.h | 8 + src/downloadlistsortproxy.cpp | 12 +- src/downloadmanager.cpp | 22 +- src/downloadmanager.h | 12 + src/mainwindow.cpp | 4 + src/modlistsortproxy.cpp | 3 + src/organizer.en.ts | 735 ++++++++++++++++++++++-------------------- src/organizer_cs.qm | Bin 137404 -> 137168 bytes src/organizer_cs.ts | 733 +++++++++++++++++++++-------------------- src/organizer_de.qm | Bin 140540 -> 140302 bytes src/organizer_de.ts | 733 +++++++++++++++++++++-------------------- src/organizer_es.qm | Bin 54618 -> 54680 bytes src/organizer_es.ts | 735 ++++++++++++++++++++++-------------------- src/organizer_fr.qm | Bin 115879 -> 115943 bytes src/organizer_fr.ts | 735 ++++++++++++++++++++++-------------------- src/organizer_ru.qm | Bin 53244 -> 53312 bytes src/organizer_ru.ts | 735 ++++++++++++++++++++++-------------------- src/organizer_tr.qm | Bin 45394 -> 45452 bytes src/organizer_tr.ts | 735 ++++++++++++++++++++++-------------------- src/organizer_zh_CN.qm | Bin 111513 -> 111361 bytes src/organizer_zh_CN.ts | 733 +++++++++++++++++++++-------------------- src/organizer_zh_TW.qm | Bin 111547 -> 111395 bytes src/organizer_zh_TW.ts | 733 +++++++++++++++++++++-------------------- 24 files changed, 3500 insertions(+), 3172 deletions(-) (limited to 'src') diff --git a/src/downloadlist.cpp b/src/downloadlist.cpp index 305aee91..9ab48013 100644 --- a/src/downloadlist.cpp +++ b/src/downloadlist.cpp @@ -60,8 +60,8 @@ QVariant DownloadList::headerData(int section, Qt::Orientation orientation, int if ((role == Qt::DisplayRole) && (orientation == Qt::Horizontal)) { switch (section) { - case 0: return tr("Name"); - case 1: return tr("Filetime"); + case COL_NAME: return tr("Name"); + case COL_FILETIME: return tr("Filetime"); default: return tr("Done"); } } else { diff --git a/src/downloadlist.h b/src/downloadlist.h index 1ae97cd0..ba0c287d 100644 --- a/src/downloadlist.h +++ b/src/downloadlist.h @@ -34,6 +34,14 @@ class DownloadList : public QAbstractTableModel Q_OBJECT +public: + + enum EColumn { + COL_NAME = 0, + COL_FILETIME, + COL_STATUS + }; + public: /** diff --git a/src/downloadlistsortproxy.cpp b/src/downloadlistsortproxy.cpp index 7efbd78f..fc743574 100644 --- a/src/downloadlistsortproxy.cpp +++ b/src/downloadlistsortproxy.cpp @@ -18,6 +18,7 @@ along with Mod Organizer. If not, see . */ #include "downloadlistsortproxy.h" +#include "downloadlist.h" DownloadListSortProxy::DownloadListSortProxy(const DownloadManager *manager, QObject *parent) : QSortFilterProxyModel(parent), m_Manager(manager), m_CurrentFilter() @@ -30,18 +31,21 @@ void DownloadListSortProxy::updateFilter(const QString &filter) invalidateFilter(); } + bool DownloadListSortProxy::lessThan(const QModelIndex &left, const QModelIndex &right) const { int leftIndex = sourceModel()->data(left).toInt(); int rightIndex = sourceModel()->data(right).toInt(); - if (left.column() == 0) { + if (left.column() == DownloadList::COL_NAME) { return m_Manager->getFileName(leftIndex).compare(m_Manager->getFileName(rightIndex), Qt::CaseInsensitive) < 0; - } else if (left.column() == 1) { - return leftIndex < rightIndex; - } else { + } else if (left.column() == DownloadList::COL_FILETIME) { + return m_Manager->getFileTime(leftIndex) < m_Manager->getFileTime(rightIndex); + } else if (left.column() == DownloadList::COL_STATUS) { return m_Manager->getState(leftIndex) < m_Manager->getState(rightIndex); + } else { + return leftIndex < rightIndex; } } diff --git a/src/downloadmanager.cpp b/src/downloadmanager.cpp index 8c2615ea..97a0a266 100644 --- a/src/downloadmanager.cpp +++ b/src/downloadmanager.cpp @@ -53,6 +53,7 @@ DownloadManager::DownloadInfo *DownloadManager::DownloadInfo::createNew(const Ne DownloadInfo *info = new DownloadInfo; info->m_DownloadID = s_NextDownloadID++; info->m_StartTime.start(); + info->m_PreResumeSize = 0LL; info->m_Progress = 0; info->m_ResumePos = 0; info->m_ModID = modID; @@ -98,6 +99,7 @@ DownloadManager::DownloadInfo *DownloadManager::DownloadInfo::createFromMeta(con info->m_DownloadID = s_NextDownloadID++; info->m_Output.setFileName(filePath); info->m_TotalSize = QFileInfo(filePath).size(); + info->m_PreResumeSize = info->m_TotalSize; info->m_ModID = metaFile.value("modID", 0).toInt(); info->m_FileID = metaFile.value("fileID", 0).toInt(); info->m_CurrentUrl = 0; @@ -332,6 +334,8 @@ void DownloadManager::startDownload(QNetworkReply *reply, DownloadInfo *newDownl mode |= QIODevice::Append; } + newDownload->m_StartTime.start(); + if (!newDownload->m_Output.open(mode)) { reportError(tr("failed to download %1: could not open output file: %2") .arg(reply->url().toString()).arg(newDownload->m_Output.fileName())); @@ -344,6 +348,8 @@ void DownloadManager::startDownload(QNetworkReply *reply, DownloadInfo *newDownl connect(newDownload->m_Reply, SIGNAL(metaDataChanged()), this, SLOT(metaDataChanged())); if (!resume) { + newDownload->m_PreResumeSize = newDownload->m_Output.size(); + emit aboutToUpdate(); m_ActiveDownloads.append(newDownload); @@ -598,6 +604,20 @@ QString DownloadManager::getFileName(int index) const return m_ActiveDownloads.at(index)->m_FileName; } +QDateTime DownloadManager::getFileTime(int index) const +{ + if ((index < 0) || (index >= m_ActiveDownloads.size())) { + throw MyException(tr("invalid index")); + } + + DownloadInfo *info = m_ActiveDownloads.at(index); + if (!info->m_Created.isValid()) { + info->m_Created = QFileInfo(info->m_Output).created(); + } + + return info->m_Created; +} + qint64 DownloadManager::getFileSize(int index) const { if ((index < 0) || (index >= m_ActiveDownloads.size())) { @@ -1130,7 +1150,7 @@ void DownloadManager::downloadFinished() QVariantMap serverMap = server.toMap(); if (serverMap["URI"].toString() == url) { int deltaTime = info->m_StartTime.secsTo(QTime::currentTime()); - emit downloadSpeed(serverMap["Name"].toString(), info->m_TotalSize / deltaTime); + emit downloadSpeed(serverMap["Name"].toString(), (info->m_TotalSize - info->m_PreResumeSize) / deltaTime); break; } } diff --git a/src/downloadmanager.h b/src/downloadmanager.h index 01d45582..92ba3143 100644 --- a/src/downloadmanager.h +++ b/src/downloadmanager.h @@ -83,6 +83,7 @@ private: QFile m_Output; QNetworkReply *m_Reply; QTime m_StartTime; + qint64 m_PreResumeSize; int m_Progress; int m_ModID; int m_FileID; @@ -91,6 +92,9 @@ private: QStringList m_Urls; qint64 m_ResumePos; qint64 m_TotalSize; + + QDateTime m_Created; // used as a cache in DownloadManager::getFileTime, may not be valid elsewhere + int m_Tries; bool m_ReQueried; @@ -215,6 +219,13 @@ public: */ qint64 getFileSize(int index) const; + /** + * @brief retrieve the creation time of the download specified by index + * @param index index of the file to look up + * @return size of the file (total size during download) + */ + QDateTime getFileTime(int index) const; + /** * @brief retrieve the current progress of the download specified by index * @@ -298,6 +309,7 @@ public: int indexByName(const QString &fileName) const; void pauseAll(); + signals: void aboutToUpdate(); diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 8d5429b4..93efb137 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -104,6 +104,7 @@ along with Mod Organizer. If not, see . #include "modeltest.h" #endif // TEST_MODELS +#pragma warning( disable : 4428 ) using namespace MOBase; using namespace MOShared; @@ -3017,6 +3018,9 @@ void MainWindow::createModFromOverwrite() } IModInterface *newMod = createMod(name); + if (newMod == NULL) { + return; + } ModInfo::Ptr overwriteInfo = ModInfo::getByIndex(m_ContextRow); diff --git a/src/modlistsortproxy.cpp b/src/modlistsortproxy.cpp index 829140b0..37509b12 100644 --- a/src/modlistsortproxy.cpp +++ b/src/modlistsortproxy.cpp @@ -164,6 +164,9 @@ bool ModListSortProxy::lessThan(const QModelIndex &left, return leftPrio.toInt() < rightPrio.toInt(); } break; + case ModList::COL_INSTALLTIME: { + return left.data().toDateTime() < right.data().toDateTime(); + } break; } return lt; } diff --git a/src/organizer.en.ts b/src/organizer.en.ts index cab59dad..3423891a 100644 --- a/src/organizer.en.ts +++ b/src/organizer.en.ts @@ -245,32 +245,42 @@ p, li { white-space: pre-wrap; } DownloadListWidget - + Placeholder - - + + 0 + + + + + KB + + + + + Done - Double Click to install - + Paused - Double Click to resume - + Installed - Double Click to re-install - + Uninstalled - Double Click to re-install @@ -279,12 +289,12 @@ p, li { white-space: pre-wrap; } DownloadListWidgetCompact - + Placeholder - + Done @@ -292,120 +302,120 @@ p, li { white-space: pre-wrap; } DownloadListWidgetCompactDelegate - + Paused - + Fetching Info 1 - + Fetching Info 2 - + Installed - + Uninstalled - + Done - - - - + + + + Are you sure? - + This will remove all finished downloads from this list and from disk. - + This will remove all installed downloads from this list and from disk. - + This will permanently remove all finished downloads from this list (but NOT from disk). - + This will permanently remove all installed downloads from this list (but NOT from disk). - + Install - + Query Info - + Delete - + Remove from View - + Cancel - + Pause - + Remove - + Resume - + Delete Installed... - + Delete All... - + Remove Installed... - + Remove All... @@ -413,100 +423,100 @@ p, li { white-space: pre-wrap; } DownloadListWidgetDelegate - + Fetching Info 1 - + Fetching Info 2 - - - - + + + + Are you sure? - + This will remove all finished downloads from this list and from disk. - + This will remove all installed downloads from this list and from disk. - + This will remove all finished downloads from this list (but NOT from disk). - + This will remove all installed downloads from this list (but NOT from disk). - + Install - + Query Info - + Delete - + Remove from View - + Cancel - + Pause - + Remove - + Resume - + Delete Installed... - + Delete All... - + Remove Installed... - + Remove All... @@ -514,101 +524,103 @@ p, li { white-space: pre-wrap; } DownloadManager - + failed to rename "%1" to "%2" - + Download again? - + A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name. - + failed to download %1: could not open output file: %2 - - - - - - - - - - + + + + + + + + + + + invalid index - + failed to delete %1 - + failed to delete meta file for %1 - - - - - + + + + + + invalid index %1 - + Please enter the nexus mod id - + Mod ID: - + Information updated - - + + No matching file found on Nexus! Maybe this file is no longer available or it was renamed? - + No file on Nexus matches the selected file by name. Please manually choose the correct one. - + No download server available. Please try again later. - + Failed to request file info from nexus: %1 - + Download failed: %1 (%2) - + failed to re-open %1 @@ -964,89 +976,89 @@ p, li { white-space: pre-wrap; } - - - + + + Extracting files - + failed to create backup - + Mod Name - + Name - + Invalid name - + The name you entered is invalid, please enter a different one. - + File format "%1" not supported - + None of the available installer plugins were able to handle that archive - + no error - + 7z.dll not found - + 7z.dll isn't valid - + archive not found - + failed to open archive - + unsupported archive type - + internal library error - + archive invalid - + unknown archive error @@ -1161,7 +1173,7 @@ p, li { white-space: pre-wrap; } - + Namefilter @@ -1279,8 +1291,8 @@ BSAs checked here are loaded in such a way that your installation order is obeye - - + + Refresh @@ -1327,145 +1339,145 @@ p, li { white-space: pre-wrap; } - + Compact - + Tool Bar - + Install Mod - + Install &Mod - + Install a new mod from an archive - + Ctrl+M - + Profiles - + &Profiles - + Configure Profiles - + Ctrl+P - + Executables - + &Executables - + Configure the executables that can be started through Mod Organizer - + Ctrl+E - + Tools - + &Tools - + Ctrl+I - + Settings - + &Settings - + Configure settings and workarounds - + Ctrl+S - + Nexus - + Search nexus network for more mods - + Ctrl+N - - + + Update - + Mod Organizer is up-to-date - - + + No Problems - + This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them. !Work in progress! @@ -1473,808 +1485,814 @@ Right now this has very limited functionality - - + + Help - + Ctrl+H - + Endorse MO - - + + Endorse Mod Organizer - + Toolbar - + Desktop - + Start Menu - + Problems - + There are potential problems with your setup - + Everything seems to be in order - + Help on UI - + Documentation Wiki - + Report Issue - + Tutorials - + failed to save archives order, do you have write access to "%1"? - + failed to save load order: %1 - + Name - + Please enter a name for the new profile - + failed to create profile: %1 - + Show tutorial? - + You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the "Help"-menu. - + Downloads in progress - + There are still downloads in progress, do you really want to quit? - + failed to read savegame: %1 - + Plugin "%1" failed: %2 - + Plugin "%1" failed - + failed to init plugin %1: %2 - + Failed to start "%1" - + Waiting - + Please press OK once you're logged into steam. - + "%1" not found - + Start Steam? - + Steam is required to be running already to correctly start the game. Should MO try to start steam now? - + Also in: <br> - + No conflict - + <Edit...> - + This bsa is enabled in the ini file so it may be required! - + This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order! - + Activating Network Proxy - - + + Installation successful - - + + Configure Mod - - + + This mod contains ini tweaks. Do you want to configure them now? - - + + mod "%1" not found - - + + Installation cancelled - - + + The mod was not installed completely. - + Some plugins could not be loaded - + + + Description missing + + + + The following Plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:<ul> - + Choose Mod - + Mod Archive - + Start Tutorial? - + You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue? - - + + Download started - + failed to update mod list: %1 - + failed to spawn notepad.exe: %1 - + failed to open %1 - + failed to change origin name: %1 - + <Checked> - + <Unchecked> - + <Update> - + <No category> - + <Conflicted> - + failed to rename mod: %1 - + Overwrite? - + This will replace the existing mod "%1". Continue? - + failed to remove mod "%1" - - - + + + failed to rename "%1" to "%2" - + Multiple esps activated, please check that they don't conflict. - - - + + + Confirm - + Remove the following mods?<br><ul>%1</ul> - + failed to remove mod: %1 - - + + Failed - + Installation file no longer exists - + Mods installed with old versions of MO can't be reinstalled in this way. - - + + You need to be logged in with Nexus to endorse - - + + Extract BSA - + This mod contains at least one BSA. Do you want to unpack it? (This removes the BSA after completion. If you don't know about BSAs, just select no) - - - + + + failed to read %1: %2 - - + + This archive contains invalid hashes. Some files may be broken. - + Nexus ID for this Mod is unknown - - + + Create Mod... - + This will move all files from overwrite into a new, regular mod. Please enter a name: - + A mod with this name already exists - + Really enable all visible mods? - + Really disable all visible mods? - + Choose what to export - + Everything - + All installed mods are included in the list - + Active Mods - + Only active (checked) mods from your current profile are included - + Visible - + All mods visible in the mod list are included - + export failed: %1 - + Install Mod... - + Enable all visible - + Disable all visible - + Check all for update - + Export to csv... - + Sync to Mods... - + Restore Backup - + Remove Backup... - + Set Category - + Primary Category - + Rename Mod... - + Remove Mod... - + Reinstall Mod - + Un-Endorse - - + + Endorse - + Won't endorse - + Endorsement state unknown - + Ignore missing data - + Visit on Nexus - + Open in explorer - + Information... - - + + Exception: - - + + Unknown exception - + <All> - + <Multiple> - + Fix Mods... - - + + failed to remove %1 - - + + failed to create %1 - + Can't change download directory while downloads are in progress! - + Download failed - + failed to write to file %1 - + %1 written - + Select binary - + Binary - + Enter Name - + Please enter a name for the executable - + Not an executable - + This is not a recognized executable. - - + + Replace file? - + There already is a hidden version of this file. Replace it? - - + + File operation failed - - + + Failed to remove "%1". Maybe you lack the required file permissions? - + There already is a visible version of this file. Replace it? - + Update available - + Open/Execute - + Add as Executable - + Un-Hide - + Hide - + Write To File... - + Do you want to endorse Mod Organizer on %1 now? - + Request to Nexus failed: %1 - - + + login successful - + login failed: %1. Trying to download anyway - + login failed: %1 - + login failed: %1. You need to log-in with Nexus to update MO. - + Error - + failed to extract %1 (errorcode %2) - + Extract... - + Edit Categories... - + Enable all - + Disable all - + Unlock load order - + Lock load order @@ -3099,53 +3117,69 @@ p, li { white-space: pre-wrap; } PluginList - + Name - + Priority - + Mod Index - - + + unknown - + Name of your mods - + Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority. - + The modindex determins the formids of objects originating from this mods. - + esp not found: %1 - + + + Confirm + + + + + Really enable all plugins? + + + + + Really disable all plugins? + + + + The file containing locked plugin indices is broken - + failed to open output file: %1 @@ -3266,12 +3300,12 @@ p, li { white-space: pre-wrap; } - + Delete savegames? - + Do you want to delete local savegames? (If you select "No", the save games will show up again if you re-enable local savegames) @@ -3649,7 +3683,7 @@ p, li { white-space: pre-wrap; } - + Mod Organizer @@ -3670,32 +3704,27 @@ p, li { white-space: pre-wrap; } - + Please use "Help" from the toolbar to get usage instructions to all elements - - + + <Manage...> - + failed to parse profile %1: %2 - + failed to find "%1" - - - encoding error, please report this as a bug and include the file mo_interface.log! - - failed to access %1 @@ -3740,12 +3769,12 @@ p, li { white-space: pre-wrap; } - + Script Extender - + Proxy DLL @@ -4012,22 +4041,22 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe Settings - + setting for invalid plugin "%1" requested - + invalid setting "%1" requested for plugin "%2" - + Confirm - + Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed? diff --git a/src/organizer_cs.qm b/src/organizer_cs.qm index 1302780d..8bdf0b55 100644 Binary files a/src/organizer_cs.qm and b/src/organizer_cs.qm differ diff --git a/src/organizer_cs.ts b/src/organizer_cs.ts index 5aedc630..1b5b3fca 100644 --- a/src/organizer_cs.ts +++ b/src/organizer_cs.ts @@ -263,32 +263,42 @@ p, li { white-space: pre-wrap; } DownloadListWidget - + Placeholder #Placeholder - - + + 0 + + + + + KB + + + + + Done - Double Click to install Stáhnuté - dvouklik instaluj - + Paused - Double Click to resume - + Installed - Double Click to re-install Instalované - dvouklik přeinstaluj - + Uninstalled - Double Click to re-install @@ -297,12 +307,12 @@ p, li { white-space: pre-wrap; } DownloadListWidgetCompact - + Placeholder Placeholder - + Done Hotovo @@ -310,120 +320,120 @@ p, li { white-space: pre-wrap; } DownloadListWidgetCompactDelegate - + Installed Nainstalované - + Uninstalled - + Done Hotovo - - - - + + + + Are you sure? Jsi si jistý? - + This will remove all finished downloads from this list and from disk. Tímto vymažeš všechny dokončené stáhnutí se seznamu i z disku. - + This will remove all installed downloads from this list and from disk. Tímto vymažeš jenom nainstalované stáhnutí se seznamu i z disku. - + This will permanently remove all finished downloads from this list (but NOT from disk). - + This will permanently remove all installed downloads from this list (but NOT from disk). - + Install Instaluj - + Query Info Získej Info - + Delete - + Remove from View - + Remove Odstranit - + Cancel Zrušit - + Paused - + Fetching Info 1 - + Fetching Info 2 - + Pause Pauza - + Resume Pokračuj - + Delete Installed... - + Delete All... - + Remove Installed... Odstraň už nainstalované... - + Remove All... Odstraň všechny... @@ -431,100 +441,100 @@ p, li { white-space: pre-wrap; } DownloadListWidgetDelegate - - - - + + + + Are you sure? Jsi si jistý? - + This will remove all finished downloads from this list and from disk. Tímto vymažeš všechny dokončené stáhnutí se seznamu i z disku. - + This will remove all installed downloads from this list and from disk. Tímto vymažeš jenom nainstalované stáhnutí se seznamu i z disku. - + This will remove all finished downloads from this list (but NOT from disk). - + This will remove all installed downloads from this list (but NOT from disk). - + Install Instaluj - + Query Info Získej Info - + Delete - + Remove from View - + Remove Odstraniť - + Cancel Zrušit - + Fetching Info 1 - + Fetching Info 2 - + Pause Pauza - + Resume Pokračuj - + Delete Installed... - + Delete All... - + Remove Installed... Odstranit už nainstalované... - + Remove All... Odstranit všechny... @@ -532,65 +542,67 @@ p, li { white-space: pre-wrap; } DownloadManager - + failed to rename "%1" to "%2" Nezdařilo se přejmenovat "%1" na "%2" - + Download again? Stáhnout znovu? - + A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name. Soubor se stejným jménem už byl stáhnutý. Chcete ho stáhnout znovu? Nový soubor bude pojmenován jinak. - + failed to download %1: could not open output file: %2 Stahování zlyhalo %1: nemožno otevřít výslední soubor: %2 - - - - - - - - - - + + + + + + + + + + + invalid index neplatný index - + failed to delete %1 odstránění zlyhalo %1 - + failed to delete meta file for %1 odstránění meta souboru zlyhalo pro %1 - - - - - + + + + + + invalid index %1 neplatný index %1 - + Please enter the nexus mod id Prosím zadej Nexus mod ID - + Mod ID: Mod ID: @@ -599,38 +611,38 @@ p, li { white-space: pre-wrap; } neplatný alfabetický index %1 - + Information updated Info aktualizované - - + + No matching file found on Nexus! Maybe this file is no longer available or it was renamed? Žádný přislouchající soubor nenalezen na Nexusu! Možná už není k dispozici nebo byl přejmenovaný? - + No file on Nexus matches the selected file by name. Please manually choose the correct one. Žádný soubor na Nexusu nezodpovedá přesnému jménu. Zvolte ručne ten správný. - + No download server available. Please try again later. - + Failed to request file info from nexus: %1 Zlyhalo získání info z Nexusu %1 - + Download failed: %1 (%2) Stahování zlyhalo: %1 (%2) - + failed to re-open %1 zlyhalo znovu-otevření %1 @@ -1103,9 +1115,9 @@ p, li { white-space: pre-wrap; } Nahradit - - - + + + Extracting files Rozbalují se soubory @@ -1138,7 +1150,7 @@ p, li { white-space: pre-wrap; } instalace zlyhala (errorcode %1) - + File format "%1" not supported Formát souboru "%1" nepodporován @@ -1164,27 +1176,27 @@ p, li { white-space: pre-wrap; } - + failed to create backup - + Mod Name - + Name Jméno - + Invalid name - + The name you entered is invalid, please enter a different one. @@ -1203,52 +1215,52 @@ Poznámka: Instalátor nerozpoznává už nainstalované mody! Prosím nainstalujte doplněk NCC - + None of the available installer plugins were able to handle that archive - + no error žádná chyba - + 7z.dll not found 7z.dll nenalezeno - + 7z.dll isn't valid 7z.dll je neplatný - + archive not found archív nenalezen - + failed to open archive nemožno otevřít archív - + unsupported archive type nepodporovaný typ archívu - + internal library error chyba internal library - + archive invalid archív je neplatný - + unknown archive error neznáma chyba archívu @@ -1368,7 +1380,7 @@ p, li { white-space: pre-wrap; } - + Namefilter @@ -1534,8 +1546,8 @@ BSAs checked here are loaded in such a way that your installation order is obeye - - + + Refresh Znovunačíst @@ -1588,145 +1600,145 @@ p, li { white-space: pre-wrap; } Tohle je seznam modů, které jsi stánul z Nexusu. Dvojklik nainstaluje mod. - + Compact Kompaktní - + Tool Bar Panel nástrojú - + Install Mod Instaluj mod - + Install &Mod Instaluj &Mod - + Install a new mod from an archive Instaluj nový mod z archívu - + Ctrl+M Ctrl+M - + Profiles Profily - + &Profiles &Profily - + Configure Profiles Nastav profily - + Ctrl+P Ctrl+P - + Executables Spouštění - + &Executables &Spouštění - + Configure the executables that can be started through Mod Organizer Konfigurace spouštění, které lze použít pro načtení modů z MO - + Ctrl+E Ctrl+E - + Tools - + &Tools - + Ctrl+I Ctrl+I - + Settings Nastavení - + &Settings &Nastavení - + Configure settings and workarounds Konfigurace a nastavení programu a různých řešení - + Ctrl+S Ctrl+S - + Nexus Nexus - + Search nexus network for more mods Prohledat mody na nexusu - + Ctrl+N Ctrl+N - - + + Update - + Mod Organizer is up-to-date Verze Mod Organizer u je aktuální - - + + No Problems Žádné problémy - + This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them. !Work in progress! @@ -1737,54 +1749,54 @@ Right now this has very limited functionality V současnosti má omezenou funkcionalitu - - + + Help Pomoc - + Ctrl+H - + Endorse MO - - + + Endorse Mod Organizer - + Toolbar - + Desktop - + Start Menu - + Problems Problémy - + There are potential problems with your setup Existují potenciální problémy s programem - + Everything seems to be in order Všechno se jeví v pořádku @@ -1801,22 +1813,22 @@ V současnosti má omezenou funkcionalitu <li>dotNet není nainstalován nebo je neaktuální. Tohle vyžaduje NCC. Najděte ho zde: <a href="%1">%1</a></li> - + Help on UI Pomoc s programem - + Documentation Wiki Dokumentace wiki - + Report Issue Nahlásit chybu - + Tutorials @@ -1825,368 +1837,374 @@ V současnosti má omezenou funkcionalitu pořadí načtení se nezdařilo uložit - + failed to save load order: %1 zlyhalo uložení pořadí načtení: %1 - + failed to save archives order, do you have write access to "%1"? zlyhal zápis pořadí archivů, máte administrátorsky povoleno zapisovat na "%1"? - + Name Jméno - + Please enter a name for the new profile Prosím zadej jméno pro nový profil - + failed to create profile: %1 Zlyhalo vytvoření profilu: %1 - + Show tutorial? - + You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the "Help"-menu. - + Downloads in progress Probíhá stahování - + There are still downloads in progress, do you really want to quit? Pořád probíhá stahování, určitě chcete skončit (zruší stahování)? - + failed to read savegame: %1 nezdařilo se načíst pozici: %1 - + Plugin "%1" failed: %2 - + Failed to start "%1" Zlyhal start "%1" - + Waiting Čekání - + Please press OK once you're logged into steam. Stiskni OK až budeš přihlášen do Steamu. - + "%1" not found "%1" nenalezeno - + Start Steam? Spustit Steam? - + Steam is required to be running already to correctly start the game. Should MO try to start steam now? Steam by měl běžet aby se podařilo spustit hru. Má se MO pokusit spustit steam teď? - + Also in: <br> Také v: <br> - + No conflict Žádné konflikty - + <Edit...> <Edit...> - + This bsa is enabled in the ini file so it may be required! Tenhle BSA soubor je aktivován v ini souboru, tak zřejmě je vyžadován! - + This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order! Tento archív se stejně načte, protože existuje plugin se stejným jménem ale jeho soubory nebudou zodpovídat pořadí nainstalování! - + Activating Network Proxy - - + + Installation successful Instalace úspěšná - - + + Configure Mod Konfigurace Modu - - + + This mod contains ini tweaks. Do you want to configure them now? Tenhle mod obsahuje ini úpravy. Chcete je nastavovat teď? - - + + mod "%1" not found mod "%1" nenalezen - - + + Installation cancelled Instalace zrušena - - + + The mod was not installed completely. Tento mod se nenainstaloval úplne. - + Some plugins could not be loaded - + + + Description missing + + + + The following Plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:<ul> - + Choose Mod Vyber Mod - + Mod Archive Archív Modu - + Start Tutorial? - + You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue? - - + + Download started Stahování začalo - + failed to update mod list: %1 nezdařilo se aktualizovat seznam modů: %1 - + failed to spawn notepad.exe: %1 zlyhalo otevření notepad.exe: %1 - + failed to open %1 - + failed to change origin name: %1 Nezdařilo se změnit původní jméno: %1 - + Multiple esps activated, please check that they don't conflict. - - + + Create Mod... - + This will move all files from overwrite into a new, regular mod. Please enter a name: - + A mod with this name already exists - + <All> <Všechny> - + <Checked> <Aktivované> - + Plugin "%1" failed - + failed to init plugin %1: %2 - + <Unchecked> <Neaktivované> - + <Update> <Aktualizace> - + <No category> <Bez kategorie> - + <Conflicted> - + failed to rename mod: %1 Nezdařilo se přejmenovat mod: %1 - + Overwrite? - + This will replace the existing mod "%1". Continue? - + failed to remove mod "%1" - - - + + + failed to rename "%1" to "%2" Nezdařilo se přejmenovat "%1" na "%2" - - - + + + Confirm Potvrdit - + Remove the following mods?<br><ul>%1</ul> - + failed to remove mod: %1 Nezdařilo se odstranit mod: %1 - - + + Failed Zlyhání - + Installation file no longer exists Instalační soubor již neexistuje - + Mods installed with old versions of MO can't be reinstalled in this way. Mody nainstalovány staršími verzemi MO nemůžou být přeinstalovány tímto spůsobem. - - + + You need to be logged in with Nexus to endorse - - + + Extract BSA Extrakce BSA - + This mod contains at least one BSA. Do you want to unpack it? (This removes the BSA after completion. If you don't know about BSAs, just select no) Tento mod obsahuje alespoň jeden BSA soubor. Chcete rozpakovat i jeho obsah? (BSA se po úspěšném rozpakování odstrání. Pokud nevíte, co je BSA, zvolte možnost Ne) - - - + + + failed to read %1: %2 - - + + This archive contains invalid hashes. Some files may be broken. Tento archiv má neplatné identifikační součty. Nekteré soubory mohou být poškozeny. - + Nexus ID for this Mod is unknown Nexus ID pro tento Mod není známo @@ -2199,371 +2217,371 @@ Please enter a name: Zvol Prioritu - + Really enable all visible mods? Opravdu aktivovat všechny zobrazené mody? - + Really disable all visible mods? Opravdu deaktivovat všechny zobrazené mody? - + Choose what to export - + Everything - + All installed mods are included in the list - + Active Mods - + Only active (checked) mods from your current profile are included - + Visible - + All mods visible in the mod list are included - + export failed: %1 - + Install Mod... Instaluj Mod... - + Enable all visible Aktivuj všechny v seznamu - + Disable all visible Deaktivuj všechny v seznamu - + Check all for update Skontroluj všechny pro aktualizaci - + Export to csv... - + Sync to Mods... Synchronizuj s Mody... - + Restore Backup - + Remove Backup... - + Set Category Označ Kategorii - + Primary Category - + Rename Mod... Přejmenuj Mod... - + Remove Mod... Odstranit Mod... - + Reinstall Mod Přeinstaluj Mod - + Un-Endorse - - + + Endorse - + Won't endorse - + Endorsement state unknown - + Ignore missing data - + Visit on Nexus Navštiv na Nexusu - + Open in explorer Otevři v prohlížeči - + Information... Informace... - - + + Exception: Výnimky: - - + + Unknown exception Neznámá výnimka - + <Multiple> - + Fix Mods... Oprav Mody... - - + + failed to remove %1 - - + + failed to create %1 - + Can't change download directory while downloads are in progress! Není možné změnit cíl pro stahování když probíhá stahování! - + Download failed Stahování zlyhalo - + failed to write to file %1 Nezdařil se zápis do souboru %1 - + %1 written %1 zapsáno - + Select binary Vyber binární soubor - + Binary Soubor - + Enter Name Zadej jméno - + Please enter a name for the executable Prosím zadej jméno pro spouštění - + Not an executable Není spustitelný - + This is not a recognized executable. Tenhle soubor není rozpoznán jako spustitelný. - - + + Replace file? Nahradit soubor? - + There already is a hidden version of this file. Replace it? Už existuje skrytá verze tohto souboru. Nahradit? - - + + File operation failed Operace se souborem zlyhala - - + + Failed to remove "%1". Maybe you lack the required file permissions? Nepodařilo se odstranit "%1". Možná nejsou k dispozici požadována práva? - + There already is a visible version of this file. Replace it? Už existuje viditelná verze tohto souboru. Nahradit? - + Update available Aktualizace k dispozici - + Open/Execute Otevřít/Spustit - + Add as Executable Přidat Spouštení - + Un-Hide Odekrýt - + Hide Skrýt - + Write To File... Zápis do souboru... - + Do you want to endorse Mod Organizer on %1 now? - + Unlock load order - + Lock load order - + Request to Nexus failed: %1 - - + + login successful - + login failed: %1. Trying to download anyway přihlášení zlyhalo: %1. Pokouším se beztak stahovat - + login failed: %1 přihlášení zlyhalo: %1 - + login failed: %1. You need to log-in with Nexus to update MO. přihlášení zlyhalo: %1. Na aktualizaci MO je potřebné přihlášení k Nexusu. - + Error Chyba - + failed to extract %1 (errorcode %2) zlyhala extrakce %1 (errorcode %2) - + Extract... Extrakce... - + Edit Categories... Editovat Kategorie... - + Enable all - + Disable all @@ -4496,43 +4514,59 @@ V současnosti má omezenou funkcionalitu esp nenalezeno: %1 - + Mod Index - - + + unknown - + Name of your mods - + Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority. - + The modindex determins the formids of objects originating from this mods. - + esp not found: %1 - + + + Confirm + Potvrdit + + + + Really enable all plugins? + + + + + Really disable all plugins? + + + + The file containing locked plugin indices is broken - + failed to open output file: %1 zlyhalo otevření výstupního souboru: %1 @@ -4566,7 +4600,7 @@ V současnosti má omezenou funkcionalitu Původní mod: %1 - + Name Jméno @@ -4575,7 +4609,7 @@ V současnosti má omezenou funkcionalitu Jména vašich modů - + Priority Priorita @@ -4691,12 +4725,12 @@ p, li { white-space: pre-wrap; } - + Delete savegames? - + Do you want to delete local savegames? (If you select "No", the save games will show up again if you re-enable local savegames) @@ -5089,7 +5123,7 @@ p, li { white-space: pre-wrap; } - + Mod Organizer Mod Organizer @@ -5110,31 +5144,30 @@ p, li { white-space: pre-wrap; } Prosím vyberte hru, kterou chcete spravovat - + Please use "Help" from the toolbar to get usage instructions to all elements Prosím použijte "Pomoc" z panelu nástrojú pro instrukce ke všem elementům - - + + <Manage...> <Manage...> - + failed to parse profile %1: %2 Nezdařilo se rozebrat profil %1: %2 - + failed to find "%1" Nepodařilo sa najít "%1" - encoding error, please report this as a bug and include the file mo_interface.log! - Chyba kódování, prosím nahlaste tuto chybu a poskytněte záznamový soubor mo_interface.log! + Chyba kódování, prosím nahlaste tuto chybu a poskytněte záznamový soubor mo_interface.log! @@ -5183,12 +5216,12 @@ p, li { white-space: pre-wrap; } nepodařilo se otevřít %1 - + Script Extender Skript Extender - + Proxy DLL Proxy DLL @@ -5520,12 +5553,12 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe Settings - + setting for invalid plugin "%1" requested - + invalid setting "%1" requested for plugin "%2" @@ -5534,12 +5567,12 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe Administrátorské práva jsou požadovány na tuhle změnu. - + Confirm Potvrdit - + Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed? Zmena adresáře modu změní všechny tvoje profily! Nenalezené mody (nebo přejmenované) v nové lokaci budou deaktivovány ve všech profilech. Není možnosť návratu pokud si nezazálohujete profily ručně. Pokračovat? diff --git a/src/organizer_de.qm b/src/organizer_de.qm index 07f606c8..71baf743 100644 Binary files a/src/organizer_de.qm and b/src/organizer_de.qm differ diff --git a/src/organizer_de.ts b/src/organizer_de.ts index 5c13a873..e47e557f 100644 --- a/src/organizer_de.ts +++ b/src/organizer_de.ts @@ -263,32 +263,42 @@ p, li { white-space: pre-wrap; } DownloadListWidget - + Placeholder Platzhalter - - + + 0 + + + + + KB + + + + + Done - Double Click to install Fertig - Doppelklick zum Installieren - + Paused - Double Click to resume - + Installed - Double Click to re-install Installiert - Doppelclick um erneut zu installieren - + Uninstalled - Double Click to re-install @@ -297,12 +307,12 @@ p, li { white-space: pre-wrap; } DownloadListWidgetCompact - + Placeholder Platzhalter - + Done Fertig @@ -310,120 +320,120 @@ p, li { white-space: pre-wrap; } DownloadListWidgetCompactDelegate - - - - + + + + Are you sure? Sind sie sicher? - + This will remove all finished downloads from this list and from disk. Entfernt alle abgeschlossenen Downloads aus der Liste und von der Festplatte. - + This will remove all installed downloads from this list and from disk. Entfernt alle installierten Downloads aus der Liste und von der Festplatte. - + Install Installieren - + Query Info Info abfragen - + Remove Entfernen - + Cancel Abbrechen - + Paused - + Fetching Info 1 - + Fetching Info 2 - + Installed - + Uninstalled - + Done Fertig - + This will permanently remove all finished downloads from this list (but NOT from disk). - + This will permanently remove all installed downloads from this list (but NOT from disk). - + Delete - + Remove from View - + Pause Pausieren - + Resume Fortsetzen - + Delete Installed... - + Delete All... - + Remove Installed... Installierte entfernen... - + Remove All... Alle löschen... @@ -431,100 +441,100 @@ p, li { white-space: pre-wrap; } DownloadListWidgetDelegate - - - - + + + + Are you sure? Sind sie sicher? - + This will remove all finished downloads from this list and from disk. Entfernt alle abgeschlossenen Downloads aus der Liste und von der Festplatte. - + This will remove all installed downloads from this list and from disk. Entfernt alle installierten Downloads aus der Liste und von der Festplatte. - + This will remove all finished downloads from this list (but NOT from disk). - + This will remove all installed downloads from this list (but NOT from disk). - + Install Installieren - + Query Info Info abfragen - + Delete - + Remove from View - + Remove Entfernen - + Cancel Abbrechen - + Fetching Info 1 - + Fetching Info 2 - + Pause Pausieren - + Resume Fortsetzen - + Delete Installed... - + Delete All... - + Remove Installed... Installierte entfernen... - + Remove All... Alle löschen... @@ -532,11 +542,12 @@ p, li { white-space: pre-wrap; } DownloadManager - - - - - + + + + + + invalid index %1 ungültiger index %1 @@ -545,51 +556,52 @@ p, li { white-space: pre-wrap; } Löschen der Datei ist fehlgeschlagen - + failed to delete %1 konnte %1 nicht löschen - + failed to delete meta file for %1 konnte meta-informationen für %1 nicht löschen - - - - - - - - - - + + + + + + + + + + + invalid index ungültiger Index - + failed to rename "%1" to "%2" - + Download again? - + A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name. - + Please enter the nexus mod id Bitte gib die Nexus Mod ID ein - + Mod ID: Mod ID: @@ -598,33 +610,33 @@ p, li { white-space: pre-wrap; } ungültiger alphabetischer index %1 - + Information updated Informationen aktualisiert - - + + No matching file found on Nexus! Maybe this file is no longer available or it was renamed? Keine passende Datei auf Nexus gefunden! Ist die Datei vielleicht nicht mehr verfügbar? - + No file on Nexus matches the selected file by name. Please manually choose the correct one. Keine Datei mit diesem Namen auf Nexus gefunden. Bitte wähle die passende händisch aus. - + No download server available. Please try again later. - + Failed to request file info from nexus: %1 Konnte Datei-Informationen nicht von Nexus abrufen: %1 - + Download failed: %1 (%2) Download fehlgeschlagen: %1 (%2) @@ -633,7 +645,7 @@ p, li { white-space: pre-wrap; } Abfrage von Dateiinformationen von Nexus fehlgeschlagen! - + failed to re-open %1 Öffnen von %1 fehlgeschlagen @@ -642,7 +654,7 @@ p, li { white-space: pre-wrap; } konnte Antwort von Nexus nicht interpretieren - + failed to download %1: could not open output file: %2 Download von %1 fehlgeschlagen: Konnte Ausgabedatei %2 nicht öffnen @@ -1116,19 +1128,19 @@ p, li { white-space: pre-wrap; } Dieser Mod scheint bereits installiert zu sein. Wollen Sie die Datein aus dem Archiv dem Mod hinzufügen (existierende Dateien werden überschrieben)? - - - + + + Extracting files Extrahiere Dateien - + failed to open archive Öffnen des Archivs fehlgeschlagen - + File format "%1" not supported Dateiformat "%1" wird nicht unterstützt @@ -1182,27 +1194,27 @@ p, li { white-space: pre-wrap; } - + failed to create backup - + Mod Name - + Name Name - + Invalid name - + The name you entered is invalid, please enter a different one. @@ -1215,47 +1227,47 @@ p, li { white-space: pre-wrap; } 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? - + None of the available installer plugins were able to handle that archive - + no error Kein Fehler - + 7z.dll not found 7z.dll nicht gefunden - + 7z.dll isn't valid 7z.dll ist ungültig - + archive not found Archiv nicht gefunden - + unsupported archive type Archivtyp wird nicht unterstützt - + internal library error Interner Fehler in der Bibliothek - + archive invalid Ungültiges Archiv - + unknown archive error Unbekannter Fehler im Archiv @@ -1375,7 +1387,7 @@ p, li { white-space: pre-wrap; } - + Namefilter @@ -1538,8 +1550,8 @@ BSAs checked here are loaded in such a way that your installation order is obeye - - + + Refresh Neu laden @@ -1592,145 +1604,145 @@ p, li { white-space: pre-wrap; } Dies ist eine Liste der Mods die von Nexus heruntergeladen wurden. Doppelklicken Sie um zu installieren. - + Compact Kompakt - + Tool Bar Werkzeugleiste - + Install Mod Mod installieren - + Install &Mod &Mod installieren - + Install a new mod from an archive Installiert eine Mod aus einem Archiv - + Ctrl+M Ctrl+M - + Profiles Profile - + &Profiles &Profile - + Configure Profiles Profile konfigurieren - + Ctrl+P Ctrl+P - + Executables Programme - + &Executables Programm&e - + Configure the executables that can be started through Mod Organizer Konfigurieren der Programme die von Mod Organiser gestartet werden können - + Ctrl+E Ctrl+E - + Tools - + &Tools - + Ctrl+I Ctrl+I - + Settings Einstellungen - + &Settings Ein&stellungen - + Configure settings and workarounds Einstellungen und Workarounds verwalten - + Ctrl+S Ctrl+S - + Nexus Nexus - + Search nexus network for more mods Durchsuche die passende Seite des Nexus-Netzwerks nach weiteren Mods - + Ctrl+N Ctrl+N - - + + Update Aktualisierung - + Mod Organizer is up-to-date Mod Organizer ist auf dem neuesten Stand - - + + No Problems Keine Probleme - + This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them. !Work in progress! @@ -1739,54 +1751,54 @@ Right now this has very limited functionality Diese Funktion ist noch in arbeit und ist sehr eingeschränkt. - - + + Help Hilfe - + Ctrl+H Ctrl+H - + Endorse MO - - + + Endorse Mod Organizer - + Toolbar - + Desktop - + Start Menu - + Problems Probleme - + There are potential problems with your setup Es bestehen möglicherweise Probleme mit Ihrer Konfiguration - + Everything seems to be in order Alles in bester Ordnung @@ -1803,22 +1815,22 @@ Diese Funktion ist noch in arbeit und ist sehr eingeschränkt. <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> - + Help on UI Hilfe zur Oberfläche - + Documentation Wiki Wiki Dokumentation - + Report Issue Fehler melden - + Tutorials @@ -1827,368 +1839,374 @@ Diese Funktion ist noch in arbeit und ist sehr eingeschränkt. Ladereihenfolge konnte nicht gespeichert werden - + failed to save load order: %1 Reihenfolge konnt nicht gespeichert werden: %1 - + failed to save archives order, do you have write access to "%1"? - + Name Name - + Please enter a name for the new profile Bitte geben Sie einen Namen für das neue Profil an - + failed to create profile: %1 Erstellen des Profils fehlgeschlagen: %1 - + Show tutorial? - + You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the "Help"-menu. - + Downloads in progress Download in Bearbeitung - + There are still downloads in progress, do you really want to quit? Es gibt noch unfertige Downloads, wollen Sie wirklich das Programm beenden? - + failed to read savegame: %1 Spielstand konnte nicht gelesen werden: %1 - + Plugin "%1" failed: %2 - + Failed to start "%1" - + Waiting Warte - + Please press OK once you're logged into steam. Bitte drücken sie OK sobald sie bei Steam angemeldet sind. - + "%1" not found "%1" nicht gefunden - + Start Steam? - + Steam is required to be running already to correctly start the game. Should MO try to start steam now? Steam muss laufen um das Spiel korrekt zu starten. Soll MO versuchen Steam zu starten? - + Also in: <br> Auch in: <br> - + No conflict Keine Konflikte - + <Edit...> <Bearbeiten...> - + This bsa is enabled in the ini file so it may be required! Dieses Archiv ist in der ini Konfiguration gelistet, daher ist es möglicherweise erforderlich! - + This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order! Dieses Archiv wird vom Spiel geladen werden da ein Plugin mit dem selben Namen aktiv ist aber die enthaltenen Dateien werden sich nicht an Ihre Installations-Reihenfolge halten! - + Activating Network Proxy - - + + Installation successful Installation erfolgreich - - + + Configure Mod Mod konfigurieren - - + + This mod contains ini tweaks. Do you want to configure them now? Diese Mod enthält Anpassungen für die Ini datei. Wollen Sie diese nun konfigurieren? - - + + mod "%1" not found mod "%1" nicht gefunden - - + + Installation cancelled Installation abgebrochen - - + + The mod was not installed completely. Die mod wurde nicht erfolgreich installiert. - + Some plugins could not be loaded - + + + Description missing + + + + The following Plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:<ul> - + Choose Mod Mod wählen - + Mod Archive Mod Archiv - + Start Tutorial? - + You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue? - - + + Download started Download gestartet - + failed to update mod list: %1 Aktualisieren der Modliste fehlgeschlagen: %1 - + failed to spawn notepad.exe: %1 notepad.exe konnte nicht aufgerufen werden: %1 - + failed to open %1 %1 konnte nicht geöffnet werden - + failed to change origin name: %1 konnte den Namen der Dateiquelle nicht ändern: %1 - + Multiple esps activated, please check that they don't conflict. - - + + Create Mod... - + This will move all files from overwrite into a new, regular mod. Please enter a name: - + A mod with this name already exists - + <All> <Alle> - + <Checked> <Markierte> - + Plugin "%1" failed - + failed to init plugin %1: %2 - + <Unchecked> <Nicht markierte> - + <Update> <Update> - + <No category> <Ohne Kategorie> - + <Conflicted> - + failed to rename mod: %1 konnte die Mod nicht umbenennen: %1 - + Overwrite? - + This will replace the existing mod "%1". Continue? - + failed to remove mod "%1" - - - + + + failed to rename "%1" to "%2" - - - + + + Confirm Bestätigen - + Remove the following mods?<br><ul>%1</ul> - + failed to remove mod: %1 konnte die mod nicht entfernen: %1 - - + + Failed Fehlgeschlagen - + Installation file no longer exists Installationsdatei existiert nicht mehr - + Mods installed with old versions of MO can't be reinstalled in this way. Mods die mit alten Versionen von MO installiert wurden können nicht auf diese Weise neu-installiert werden. - - + + You need to be logged in with Nexus to endorse - - + + Extract BSA BSA extrahieren - + This mod contains at least one BSA. Do you want to unpack it? (This removes the BSA after completion. If you don't know about BSAs, just select no) Diese mod enthält mindestens eine BSA datei. Soll sie entpackt werden? (Das BSA wird danach gelöscht. Wenn Sie nicht wissen was BSAs sind wählen Sie am besten \"nein\") - - - + + + failed to read %1: %2 - - + + This archive contains invalid hashes. Some files may be broken. Dieses Archiv enthält ungültige Prüfsummen. Einige Dateien sind evtl. defekt. - + Nexus ID for this Mod is unknown Nexus ID für diese Mod unbekannt @@ -2201,371 +2219,371 @@ Please enter a name: Priorität wählen - + Really enable all visible mods? Alle angezeigten Mods aktivieren? - + Really disable all visible mods? Alle angezeigten Mods deaktivieren? - + Choose what to export - + Everything - + All installed mods are included in the list - + Active Mods - + Only active (checked) mods from your current profile are included - + Visible - + All mods visible in the mod list are included - + export failed: %1 - + Install Mod... Mod installieren... - + Enable all visible Alle sichtbaren aktvieren - + Disable all visible Alle sichtbaren deaktvieren - + Check all for update Alle auf Aktualisierungen überprüfen - + Export to csv... - + Sync to Mods... Mods synchronisieren... - + Restore Backup - + Remove Backup... - + Set Category Kategorie festlegen - + Primary Category - + Rename Mod... Mod umbenennen... - + Remove Mod... Mod entfernen... - + Reinstall Mod Mod neu installieren - + Un-Endorse - - + + Endorse - + Won't endorse - + Endorsement state unknown - + Ignore missing data - + Visit on Nexus Auf Nexus besuchen - + Open in explorer In Explorer öffnen - + Information... Informationen... - - + + Exception: Ausnahme: - - + + Unknown exception Unbekannte Ausnahme - + <Multiple> - + Fix Mods... Mods reparieren... - - + + failed to remove %1 %1 konnte nicht entfernt werden - - + + failed to create %1 %1 konnte nicht erstellt werden - + Can't change download directory while downloads are in progress! Das download verzeichnis kann nicht geändert werden solange Downloads laufen! - + Download failed Download fehlgeschlagen - + failed to write to file %1 Speichern in Datei "%1" fehlgeschlagen - + %1 written "%1" gespeichert - + Select binary Binary wählen - + Binary Ausführbare Datei - + Enter Name Namen eingeben - + Please enter a name for the executable Bitte geben Sie einen Namen für die Anwendungsdatei ein - + Not an executable Datei ist nicht ausführbar - + This is not a recognized executable. - - + + Replace file? Datei ersetzen? - + There already is a hidden version of this file. Replace it? Es existiert bereits eine versteckte Variante von dieser Datei. Soll diese ersetzt werden? - - + + File operation failed Dateioperation fehlgeschlagen - - + + Failed to remove "%1". Maybe you lack the required file permissions? Konnte "%1" nicht löschen. Fehlen Ihnen evtl. die nötigen Berechtigungen? - + There already is a visible version of this file. Replace it? Es existiert bereits eine sichtbare Variante dieser Datei. Soll diese ersetzt werden? - + Update available Aktualisierung verfügbar - + Open/Execute Öffnen/Ausführen - + Add as Executable Als Anwendung hinzufügen - + Un-Hide Sichtbar machen - + Hide Verstecken - + Write To File... In Datei speichern... - + Do you want to endorse Mod Organizer on %1 now? - + Unlock load order - + Lock load order - + Request to Nexus failed: %1 - - + + login successful - + login failed: %1. Trying to download anyway login fehlgeschlagen: %1. Der Download scheitert vermutlich - + login failed: %1 login fehlgeschlagen: %1 - + login failed: %1. You need to log-in with Nexus to update MO. - + Error Fehler - + failed to extract %1 (errorcode %2) konnte "%1" nicht extrahieren (fehlercode %2) - + Extract... Extrahieren... - + Edit Categories... - + Enable all - + Disable all @@ -4593,43 +4611,59 @@ Diese Funktion ist noch in arbeit und ist sehr eingeschränkt. PluginList - + Mod Index - - + + unknown - + Name of your mods - + Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority. - + The modindex determins the formids of objects originating from this mods. - + esp not found: %1 ESP nicht gefunden: %1 - + + + Confirm + Bestätigen + + + + Really enable all plugins? + + + + + Really disable all plugins? + + + + The file containing locked plugin indices is broken - + failed to open output file: %1 konnte die Ausgabedatei nicht öffnen: %1 @@ -4663,7 +4697,7 @@ Diese Funktion ist noch in arbeit und ist sehr eingeschränkt. Ursprung: %1 - + Name Name @@ -4672,7 +4706,7 @@ Diese Funktion ist noch in arbeit und ist sehr eingeschränkt. Namen Ihrer Mods - + Priority Priorität @@ -4781,12 +4815,12 @@ p, li { white-space: pre-wrap; } - + Delete savegames? - + Do you want to delete local savegames? (If you select "No", the save games will show up again if you re-enable local savegames) @@ -5215,7 +5249,7 @@ p, li { white-space: pre-wrap; } "%1" nicht gefunden - + Please use "Help" from the toolbar to get usage instructions to all elements Bitte verwenden Sie die "Hilfe" Funktion um Hinweise zu Nutzung aller Elemete zu bekommen @@ -5228,26 +5262,25 @@ p, li { white-space: pre-wrap; } Ungültige Priorität %1 - + failed to find "%1" Konnte "%1" nicht finden - - + + <Manage...> <Verwalten...> - + failed to parse profile %1: %2 Konnte Profil %1 nicht verarbeiten: %2 - encoding error, please report this as a bug and include the file mo_interface.log! - Kodierungsfehler! Bitte melden Sie dies als Bug und fügen Sie die Datei mo_interface.log bei! + Kodierungsfehler! Bitte melden Sie dies als Bug und fügen Sie die Datei mo_interface.log bei! @@ -5417,17 +5450,17 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe - + Mod Organizer Mod Organizer - + Script Extender Script Extender - + Proxy DLL Proxy DLL @@ -5749,12 +5782,12 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe Settings - + setting for invalid plugin "%1" requested - + invalid setting "%1" requested for plugin "%2" @@ -5763,12 +5796,12 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe Admistratorrechte sind erforderlich um dies zu ändern. - + Confirm Bestätigen - + Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed? diff --git a/src/organizer_es.qm b/src/organizer_es.qm index 9b4e13bc..94abcb00 100644 Binary files a/src/organizer_es.qm and b/src/organizer_es.qm differ diff --git a/src/organizer_es.ts b/src/organizer_es.ts index 71fbcb98..acdff666 100644 --- a/src/organizer_es.ts +++ b/src/organizer_es.ts @@ -256,32 +256,42 @@ p, li { white-space: pre-wrap; } DownloadListWidget - + Placeholder Marcador de posicion - - + + 0 + + + + + KB + + + + + Done - Double Click to install Listo. Doble click para instalar - + Paused - Double Click to resume - + Installed - Double Click to re-install - + Uninstalled - Double Click to re-install @@ -290,12 +300,12 @@ p, li { white-space: pre-wrap; } DownloadListWidgetCompact - + Placeholder - + Done @@ -303,120 +313,120 @@ p, li { white-space: pre-wrap; } DownloadListWidgetCompactDelegate - - - - + + + + Are you sure? Estas seguro? - + This will remove all finished downloads from this list and from disk. Esto limpiara todas las descargas finalizadas del disco y la lista. - + This will remove all installed downloads from this list and from disk. - + Install Instalar - + Query Info - + Remove - + Cancel Cancelar - + Paused - + Fetching Info 1 - + Fetching Info 2 - + Installed - + Uninstalled - + Done - + This will permanently remove all finished downloads from this list (but NOT from disk). - + This will permanently remove all installed downloads from this list (but NOT from disk). - + Delete - + Remove from View - + Pause - + Resume - + Delete Installed... - + Delete All... - + Remove Installed... - + Remove All... Quitar todos... @@ -424,100 +434,100 @@ p, li { white-space: pre-wrap; } DownloadListWidgetDelegate - - - - + + + + Are you sure? Estas seguro? - + This will remove all finished downloads from this list and from disk. Esto limpiara todas las descargas finalizadas del disco y la lista. - + This will remove all installed downloads from this list and from disk. - + This will remove all finished downloads from this list (but NOT from disk). - + This will remove all installed downloads from this list (but NOT from disk). - + Install Instalar - + Query Info - + Delete - + Remove from View - + Remove Quitar - + Cancel Cancelar - + Fetching Info 1 - + Fetching Info 2 - + Pause - + Resume - + Delete Installed... - + Delete All... - + Remove Installed... - + Remove All... Quitar todos... @@ -525,72 +535,73 @@ p, li { white-space: pre-wrap; } DownloadManager - + failed to rename "%1" to "%2" - + Download again? - + A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name. - + failed to download %1: could not open output file: %2 error en la descarga %1: no se puede abrir el fichero de destino: %2 - + failed to delete %1 - + failed to delete meta file for %1 - - - - - + + + + + + invalid index %1 indice invalido %1 - + Information updated - - + + No matching file found on Nexus! Maybe this file is no longer available or it was renamed? - + No file on Nexus matches the selected file by name. Please manually choose the correct one. - + No download server available. Please try again later. - + Failed to request file info from nexus: %1 - + Download failed: %1 (%2) @@ -599,26 +610,27 @@ p, li { white-space: pre-wrap; } error borrando el fichero - - - - - - - - - - + + + + + + + + + + + invalid index indice invalido - + Please enter the nexus mod id - + Mod ID: @@ -627,7 +639,7 @@ p, li { white-space: pre-wrap; } Fallo la peticion de fichero de Nexus! - + failed to re-open %1 error reabriendo %1 @@ -1055,19 +1067,19 @@ p, li { white-space: pre-wrap; } Este Mod parece que ya esta instalado. Quieres agregar los ficheros de este otro mod (Sobreescribiendo los existentes)? - - - + + + Extracting files Extrayendo ficheros - + failed to open archive Error abriendo el fichero - + File format "%1" not supported Formato de archivo no soportado para "%1" @@ -1089,72 +1101,72 @@ p, li { white-space: pre-wrap; } - + failed to create backup - + Mod Name - + Name Nombre - + Invalid name - + The name you entered is invalid, please enter a different one. - + None of the available installer plugins were able to handle that archive - + no error sin error - + 7z.dll not found 7z.dll no se encuentra - + 7z.dll isn't valid 7z.dll no es valido - + archive not found archivo no encontrado - + unsupported archive type formato de fichero no soportado - + internal library error error interno de libreria - + archive invalid archivo invalido - + unknown archive error error desconocido del archivo Error de fichero desconocido @@ -1271,7 +1283,7 @@ Por favor observa que las prioridades no son guardadas para cada perfil. - + Namefilter @@ -1397,8 +1409,8 @@ BSAs checked here are loaded in such a way that your installation order is obeye - - + + Refresh Recargar @@ -1445,145 +1457,145 @@ p, li { white-space: pre-wrap; } Esta es la lista de los mods que has descargado desde Nexus. Doble Click para instalar. - + Compact - + Tool Bar Tool Bar - + Install Mod Instalar Mod - + Install &Mod Instalar &Mod - + Install a new mod from an archive Instalar un nuevo Mod desde un archivo - + Ctrl+M Ctrl+M - + Profiles Perfiles - + &Profiles &Perfiles - + Configure Profiles Configurar los perfiles - + Ctrl+P Ctrl+P - + Executables Ejecutables - + &Executables &Ejecutables - + Configure the executables that can be started through Mod Organizer Configura el ejecutable que sera iniciado desde Mod Orgenizer - + Ctrl+E Ctrl+E - + Tools - + &Tools - + Ctrl+I Ctrl+I - + Settings Configuracion - + &Settings &Configuracion - + Configure settings and workarounds Configuraciones y modos - + Ctrl+S Ctrl+S - + Nexus Nexus - + Search nexus network for more mods Buscar en la red de Nexus mas Mods - + Ctrl+N Ctrl+N - - + + Update - + Mod Organizer is up-to-date Mod Organizer esta actualizado - - + + No Problems - + This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them. !Work in progress! @@ -1591,439 +1603,445 @@ Right now this has very limited functionality - - + + Help Ayuda - + Ctrl+H Ctrl+H - + Endorse MO - - + + Endorse Mod Organizer - + Toolbar - + Desktop - + Start Menu - + Problems - + There are potential problems with your setup - + Everything seems to be in order - + Help on UI - + Documentation Wiki - + Report Issue - + Tutorials - + failed to save load order: %1 Fallo guardando el orden de carga: %1 - + failed to save archives order, do you have write access to "%1"? - + Name Nombre - + Please enter a name for the new profile Por favor introduzca un nombre para el nuevo perfil - + failed to create profile: %1 Fallo al crear el perfil: %1 - + Show tutorial? - + You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the "Help"-menu. - + Downloads in progress Descarga en progreso - + There are still downloads in progress, do you really want to quit? Aun hay descargas en progreso, estas seguro que quieres salir? - + failed to read savegame: %1 Fallo al leer la partida guardada: %1 - + Plugin "%1" failed: %2 - + Failed to start "%1" - + Waiting - + Please press OK once you're logged into steam. - + "%1" not found "%1" no encontrado - + Start Steam? - + Steam is required to be running already to correctly start the game. Should MO try to start steam now? - + Also in: <br> - + No conflict Sin conflictos - + <Edit...> <Editar...> - + This bsa is enabled in the ini file so it may be required! - + This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order! - + Activating Network Proxy - - + + Installation successful Instalacion completada - - + + Configure Mod Configurar Mod - - + + This mod contains ini tweaks. Do you want to configure them now? Este mod contiene modificaciones del Ini. Quieres configurarlas ahora? - - + + mod "%1" not found - - + + Installation cancelled - - + + The mod was not installed completely. - + Some plugins could not be loaded - + + + Description missing + + + + The following Plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:<ul> - + Choose Mod Seleccione Mod - + Mod Archive Fichero Mod - + Start Tutorial? - + You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue? - - + + Download started Descarga comenzada - + failed to update mod list: %1 Fallo al actualizar la lista de Mods: %1 - + failed to spawn notepad.exe: %1 Fallo al cargar el Bloc de notas: %1 - + failed to open %1 Fallo al abrir %1 - + failed to change origin name: %1 fallo al cambiar el nombre original del fichero %1 - + Multiple esps activated, please check that they don't conflict. - - + + Create Mod... - + This will move all files from overwrite into a new, regular mod. Please enter a name: - + A mod with this name already exists - + <All> <Todos> - + <Checked> <Marcado> - + Plugin "%1" failed - + failed to init plugin %1: %2 - + <Unchecked> <Desmarcado> - + <Update> <Actualizacion> - + <No category> - + <Conflicted> - + failed to rename mod: %1 fallo al cambiar el nombre al mod: %1 - + Overwrite? - + This will replace the existing mod "%1". Continue? - + failed to remove mod "%1" - - - + + + failed to rename "%1" to "%2" - - - + + + Confirm Confirma - + Remove the following mods?<br><ul>%1</ul> - + failed to remove mod: %1 - - + + Failed - + Installation file no longer exists - + Mods installed with old versions of MO can't be reinstalled in this way. - - + + You need to be logged in with Nexus to endorse - - + + Extract BSA - + This mod contains at least one BSA. Do you want to unpack it? (This removes the BSA after completion. If you don't know about BSAs, just select no) - - - + + + failed to read %1: %2 - - + + This archive contains invalid hashes. Some files may be broken. - + Nexus ID for this Mod is unknown @@ -2036,371 +2054,371 @@ Please enter a name: Selecciona Prioridad - + Really enable all visible mods? - + Really disable all visible mods? - + Choose what to export - + Everything - + All installed mods are included in the list - + Active Mods - + Only active (checked) mods from your current profile are included - + Visible - + All mods visible in the mod list are included - + export failed: %1 - + Install Mod... Instalar Mod... - + Enable all visible Activar todos los visibles - + Disable all visible Desactivar todos los visibles - + Check all for update Buscar Actualizaciones - + Export to csv... - + Sync to Mods... - + Restore Backup - + Remove Backup... - + Set Category Definir Categoria - + Primary Category - + Rename Mod... Cambiar nombre... - + Remove Mod... Quitar Mod... - + Reinstall Mod - + Un-Endorse - - + + Endorse - + Won't endorse - + Endorsement state unknown - + Ignore missing data - + Visit on Nexus - + Open in explorer - + Information... Informacion... - - + + Exception: - - + + Unknown exception - + <Multiple> - + Fix Mods... Activar Mods faltantes... - - + + failed to remove %1 Fallo eliminando %1 - - + + failed to create %1 - + Can't change download directory while downloads are in progress! - + Download failed - + failed to write to file %1 Fallo de escritura en el fichero %1 - + %1 written %1 escrito - + Select binary - + Binary Fichero - + Enter Name - + Please enter a name for the executable - + Not an executable - + This is not a recognized executable. - - + + Replace file? - + There already is a hidden version of this file. Replace it? - - + + File operation failed - - + + Failed to remove "%1". Maybe you lack the required file permissions? - + There already is a visible version of this file. Replace it? - + Update available Disponible actualización - + Open/Execute - + Add as Executable - + Un-Hide - + Hide - + Write To File... Escribir al fichero... - + Do you want to endorse Mod Organizer on %1 now? - + Unlock load order - + Lock load order - + Request to Nexus failed: %1 - - + + login successful - + login failed: %1. Trying to download anyway - + login failed: %1 - + login failed: %1. You need to log-in with Nexus to update MO. - + Error Error - + failed to extract %1 (errorcode %2) - + Extract... - + Edit Categories... - + Enable all - + Disable all @@ -3976,43 +3994,59 @@ Activar Mods faltantes en el menu contextual del raton intentara activar los mod PluginList - + Mod Index - - + + unknown - + Name of your mods - + Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority. - + The modindex determins the formids of objects originating from this mods. - + esp not found: %1 ESP no encontrado: %1 - + + + Confirm + Confirma + + + + Really enable all plugins? + + + + + Really disable all plugins? + + + + The file containing locked plugin indices is broken - + failed to open output file: %1 @@ -4046,7 +4080,7 @@ Activar Mods faltantes en el menu contextual del raton intentara activar los mod - + Name Nombre @@ -4055,7 +4089,7 @@ Activar Mods faltantes en el menu contextual del raton intentara activar los mod Nombres de tus Mods - + Priority Prioridad @@ -4166,12 +4200,12 @@ p, li { white-space: pre-wrap; } - + Delete savegames? - + Do you want to delete local savegames? (If you select "No", the save games will show up again if you re-enable local savegames) @@ -4600,7 +4634,7 @@ p, li { white-space: pre-wrap; } "%1" no encontrado - + Please use "Help" from the toolbar to get usage instructions to all elements Por favor utilice "Ayuda" en la barra superior para obtener informacion sobre todos los elementos @@ -4613,19 +4647,19 @@ p, li { white-space: pre-wrap; } prioridad invalida %1 - + failed to find "%1" fallo al encontrar %1 - - + + <Manage...> <Definir...> - + failed to parse profile %1: %2 no se pudo analizar el perfil % 1: %2 @@ -4637,11 +4671,6 @@ p, li { white-space: pre-wrap; } This can take a moment Esto tomara un momento - - - encoding error, please report this as a bug and include the file mo_interface.log! - - failed to access %1 @@ -4693,17 +4722,17 @@ p, li { white-space: pre-wrap; } - + Mod Organizer Mod Organizer - + Script Extender Script Extender - + Proxy DLL Proxy DLL @@ -5066,12 +5095,12 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe Settings - + setting for invalid plugin "%1" requested - + invalid setting "%1" requested for plugin "%2" @@ -5080,12 +5109,12 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe Derechos administrativos necesarios para cambiar esto. - + Confirm Confirma - + Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed? diff --git a/src/organizer_fr.qm b/src/organizer_fr.qm index 6fc11c31..4e42eedc 100644 Binary files a/src/organizer_fr.qm and b/src/organizer_fr.qm differ diff --git a/src/organizer_fr.ts b/src/organizer_fr.ts index f78a182d..ea81eb62 100644 --- a/src/organizer_fr.ts +++ b/src/organizer_fr.ts @@ -264,32 +264,42 @@ p, li { white-space: pre-wrap; } DownloadListWidget - + Placeholder Signet - - + + 0 + + + + + KB + + + + + Done - Double Click to install Terminé - Double-cliquer pour installer - + Paused - Double Click to resume - + Installed - Double Click to re-install Installé - Double-cliquer pour réinstaller - + Uninstalled - Double Click to re-install @@ -298,12 +308,12 @@ p, li { white-space: pre-wrap; } DownloadListWidgetCompact - + Placeholder Signet - + Done Terminé @@ -311,120 +321,120 @@ p, li { white-space: pre-wrap; } DownloadListWidgetCompactDelegate - - - - + + + + Are you sure? Êtes-vous certain? - + This will remove all finished downloads from this list and from disk. Ceci supprimera tous les téléchargements complétés de la liste et du disque. - + This will remove all installed downloads from this list and from disk. Ceci supprimera tous les téléchargements installés de cette liste et du disque. - + Install Installer - + Query Info Demander info - + Remove Supprimer - + Cancel Annuler - + Paused - + Fetching Info 1 - + Fetching Info 2 - + Installed - + Uninstalled - + Done Terminé - + This will permanently remove all finished downloads from this list (but NOT from disk). - + This will permanently remove all installed downloads from this list (but NOT from disk). - + Delete - + Remove from View - + Pause Interrompre - + Resume Reprendre - + Delete Installed... - + Delete All... - + Remove Installed... Supprimer installé... - + Remove All... Supprimer tout... @@ -432,100 +442,100 @@ p, li { white-space: pre-wrap; } DownloadListWidgetDelegate - - - - + + + + Are you sure? Êtes-vous certain? - + This will remove all finished downloads from this list and from disk. Ceci supprimera tous les téléchargements complétés de la liste et du disque. - + This will remove all installed downloads from this list and from disk. Ceci supprimera tous les téléchargements installés de la liste et du disque. - + This will remove all finished downloads from this list (but NOT from disk). - + This will remove all installed downloads from this list (but NOT from disk). - + Install Installer - + Query Info Demander info - + Delete - + Remove from View - + Remove Supprimer - + Cancel Annuler - + Fetching Info 1 - + Fetching Info 2 - + Pause Interrompre - + Resume Reprendre - + Delete Installed... - + Delete All... - + Remove Installed... Supprimer installé... - + Remove All... Supprimer tout... @@ -533,72 +543,73 @@ p, li { white-space: pre-wrap; } DownloadManager - + failed to rename "%1" to "%2" - + Download again? - + A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name. - + failed to download %1: could not open output file: %2 impossible de télécharger %1: impossible d'écrire le fichier %2 - + failed to delete %1 impossible de supprimer %1 - + failed to delete meta file for %1 impossible de supprimer le méta fichier pour %1 - - - - - + + + + + + invalid index %1 index invalide %1 - + Information updated Information mise à jour - - + + No matching file found on Nexus! Maybe this file is no longer available or it was renamed? Aucun fichier correspondant trouvé sur Nexus! Peut-être ce fichier n'est-il plus disponible ou a été renommé? - + No file on Nexus matches the selected file by name. Please manually choose the correct one. Aucun fichier sur Nexus ne correspond au nom du fichier sélectionné. Veuillez s'il-vous-plaît sélectionner le bon manuellement. - + No download server available. Please try again later. - + Failed to request file info from nexus: %1 Impossible de demander l'info du fichier sur Nexus: %1 - + Download failed: %1 (%2) Téléchargement échoué: %1 (%2) @@ -607,26 +618,27 @@ p, li { white-space: pre-wrap; } impossible de supprimer le fichier - - - - - - - - - - + + + + + + + + + + + invalid index index invalide - + Please enter the nexus mod id Veuillez entre l'ID Nexus du mod - + Mod ID: ID du mod: @@ -643,7 +655,7 @@ p, li { white-space: pre-wrap; } Téléchargement échoué - + failed to re-open %1 impossible d'ouvrir à nouveau %1 @@ -1059,14 +1071,14 @@ p, li { white-space: pre-wrap; } Ce mod semble déjà installé. Voulez-vous ajouter les fichiers de cette archive (et écraser les fichiers existants)? - - - + + + Extracting files Extraction des fichiers - + File format "%1" not supported Format de fichier "%1" non supporté @@ -1088,77 +1100,77 @@ p, li { white-space: pre-wrap; } - + failed to create backup - + Mod Name - + Name Nom - + Invalid name - + The name you entered is invalid, please enter a different one. - + None of the available installer plugins were able to handle that archive - + no error aucune erreur - + 7z.dll not found 7z.dll introuvable - + 7z.dll isn't valid 7z.dll invalide - + archive not found archive introuvable - + failed to open archive impossible d'ouvrir l'archive - + unsupported archive type type d'archive non supporté - + internal library error erreur de bibliothèque interne - + archive invalid archive invalide - + unknown archive error erreur d'archive inconnue @@ -1278,7 +1290,7 @@ p, li { white-space: pre-wrap; } - + Namefilter @@ -1437,8 +1449,8 @@ BSAs checked here are loaded in such a way that your installation order is obeye - - + + Refresh Actualiser @@ -1491,145 +1503,145 @@ p, li { white-space: pre-wrap; } Ceci est une liste de mods que vous avez téléchargé de Nexus. Double-cliquez en un pour l'installer. - + Compact - + Tool Bar Barre d'outils - + Install Mod Installer mod - + Install &Mod Installer &mod - + Install a new mod from an archive Installer un nouveau mod à partir d'une archive - + Ctrl+M Ctrl+M - + Profiles Profils - + &Profiles &Profils - + Configure Profiles Configurer les profils - + Ctrl+P Ctrl+P - + Executables Programmes - + &Executables Programm&es - + Configure the executables that can be started through Mod Organizer Configure les programmes pouvant être lancés via Mod Organizer - + Ctrl+E Ctrl+E - + Tools - + &Tools - + Ctrl+I Ctrl+H - + Settings Réglages - + &Settings Réglage&s - + Configure settings and workarounds Configurer les réglages et solutions de rechange - + Ctrl+S Ctrl+S - + Nexus Nexus - + Search nexus network for more mods Effectuer une recherche sur Nexus pour plus de mods - + Ctrl+N Ctrl+N - - + + Update - + Mod Organizer is up-to-date Mod Organizer est à jour - - + + No Problems - + This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them. !Work in progress! @@ -1637,439 +1649,445 @@ Right now this has very limited functionality - - + + Help Aide - + Ctrl+H Ctrl+H - + Endorse MO - - + + Endorse Mod Organizer - + Toolbar - + Desktop - + Start Menu - + Problems - + There are potential problems with your setup - + Everything seems to be in order - + Help on UI - + Documentation Wiki - + Report Issue - + Tutorials - + failed to save load order: %1 impossible d'enregistrer l'ordre de chargement: %1 - + failed to save archives order, do you have write access to "%1"? - + Name Nom - + Please enter a name for the new profile Veuillez inscrire un nom pour le nouveau profil - + failed to create profile: %1 impossible de créer le profil: %1 - + Show tutorial? - + You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the "Help"-menu. - + Downloads in progress Téléchargements en cours - + There are still downloads in progress, do you really want to quit? Il encore des téléchargements en cours, voulez-vous vraiment quitter? - + failed to read savegame: %1 impossible de lire la sauvegarde: %1 - + Plugin "%1" failed: %2 - + Failed to start "%1" - + Waiting Attente - + Please press OK once you're logged into steam. Veuillez cliquer OK une fois connecté à steam. - + "%1" not found "%1" introuvable - + Start Steam? - + Steam is required to be running already to correctly start the game. Should MO try to start steam now? - + Also in: <br> - + No conflict Aucun conflit - + <Edit...> <Modifier...> - + This bsa is enabled in the ini file so it may be required! - + This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order! - + Activating Network Proxy - - + + Installation successful Installation réussie - - + + Configure Mod Configurer mod - - + + This mod contains ini tweaks. Do you want to configure them now? Ce mod contient des ajustement pour les fichiers ini. Désirez-vous les configurer maintenant? - - + + mod "%1" not found - - + + Installation cancelled - - + + The mod was not installed completely. - + Some plugins could not be loaded - + + + Description missing + + + + The following Plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:<ul> - + Choose Mod Choisir mod - + Mod Archive Archive de mod - + Start Tutorial? - + You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue? - - + + Download started Téléchargement commencé - + failed to update mod list: %1 impossible de mettre à jour la liste de mods: %1 - + failed to spawn notepad.exe: %1 impossible de lancer notepad.exe: %1 - + failed to open %1 impossible d'ouvrir %1 - + failed to change origin name: %1 impossible de changer le nom d'origine: %1 - + Multiple esps activated, please check that they don't conflict. - - + + Create Mod... - + This will move all files from overwrite into a new, regular mod. Please enter a name: - + A mod with this name already exists - + <All> <Tous> - + <Checked> <Cochés> - + Plugin "%1" failed - + failed to init plugin %1: %2 - + <Unchecked> <Décochés> - + <Update> <Rafraichir> - + <No category> - + <Conflicted> - + failed to rename mod: %1 impossible de renommer le mod: %1 - + Overwrite? - + This will replace the existing mod "%1". Continue? - + failed to remove mod "%1" - - - + + + failed to rename "%1" to "%2" - - - + + + Confirm Confirmer - + Remove the following mods?<br><ul>%1</ul> - + failed to remove mod: %1 - - + + Failed - + Installation file no longer exists - + Mods installed with old versions of MO can't be reinstalled in this way. - - + + You need to be logged in with Nexus to endorse - - + + Extract BSA - + This mod contains at least one BSA. Do you want to unpack it? (This removes the BSA after completion. If you don't know about BSAs, just select no) - - - + + + failed to read %1: %2 Échec de lecture %1: %2 - - + + This archive contains invalid hashes. Some files may be broken. - + Nexus ID for this Mod is unknown @@ -2082,371 +2100,371 @@ Please enter a name: Choisir priorité - + Really enable all visible mods? - + Really disable all visible mods? - + Choose what to export - + Everything - + All installed mods are included in the list - + Active Mods - + Only active (checked) mods from your current profile are included - + Visible - + All mods visible in the mod list are included - + export failed: %1 - + Install Mod... Installer mod... - + Enable all visible Activer tous les mods visibles - + Disable all visible Désactiver tous les mods visibles - + Check all for update Vérifier toutes les mises à jour - + Export to csv... - + Sync to Mods... - + Restore Backup - + Remove Backup... - + Set Category Assigner catégorie - + Primary Category - + Rename Mod... Renommer mod... - + Remove Mod... Supprimer mod... - + Reinstall Mod - + Un-Endorse - - + + Endorse - + Won't endorse - + Endorsement state unknown - + Ignore missing data - + Visit on Nexus - + Open in explorer - + Information... Information... - - + + Exception: - - + + Unknown exception - + <Multiple> - + Fix Mods... Réparer mods... - - + + failed to remove %1 Impossible de supprimer %1 - - + + failed to create %1 impossible de créer %1 - + Can't change download directory while downloads are in progress! - + Download failed - + failed to write to file %1 impossible d'écrire dans le fichier %1 - + %1 written %1 écrit - + Select binary - + Binary Programme - + Enter Name - + Please enter a name for the executable - + Not an executable - + This is not a recognized executable. - - + + Replace file? - + There already is a hidden version of this file. Replace it? - - + + File operation failed - - + + Failed to remove "%1". Maybe you lack the required file permissions? - + There already is a visible version of this file. Replace it? - + Update available Mise à jour disponible - + Open/Execute - + Add as Executable - + Un-Hide - + Hide - + Write To File... Écriture du fichier... - + Do you want to endorse Mod Organizer on %1 now? - + Unlock load order - + Lock load order - + Request to Nexus failed: %1 - - + + login successful - + login failed: %1. Trying to download anyway - + login failed: %1 - + login failed: %1. You need to log-in with Nexus to update MO. - + Error Erreur - + failed to extract %1 (errorcode %2) - + Extract... - + Edit Categories... - + Enable all - + Disable all @@ -4084,43 +4102,59 @@ p, li { white-space: pre-wrap; } PluginList - + Mod Index - - + + unknown - + Name of your mods - + Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority. - + The modindex determins the formids of objects originating from this mods. - + esp not found: %1 ESP introuvable: %1 - + + + Confirm + Confirmer + + + + Really enable all plugins? + + + + + Really disable all plugins? + + + + The file containing locked plugin indices is broken - + failed to open output file: %1 @@ -4154,7 +4188,7 @@ p, li { white-space: pre-wrap; } - + Name Nom @@ -4163,7 +4197,7 @@ p, li { white-space: pre-wrap; } Les noms de vos mods - + Priority Priorité @@ -4270,12 +4304,12 @@ p, li { white-space: pre-wrap; } - + Delete savegames? - + Do you want to delete local savegames? (If you select "No", the save games will show up again if you re-enable local savegames) @@ -4673,7 +4707,7 @@ p, li { white-space: pre-wrap; } - + Mod Organizer Mod Organizer @@ -4698,32 +4732,27 @@ p, li { white-space: pre-wrap; } "%1" introuvable - + Please use "Help" from the toolbar to get usage instructions to all elements Veuillez utiliser l'aide dans la barre d'outil pour obtenir des instructions à propos de tous les éléments - - + + <Manage...> <Gérer...> - + failed to parse profile %1: %2 impossible d'analyser le profil %1: %2 - + failed to find "%1" impossible de trouver "%1" - - - encoding error, please report this as a bug and include the file mo_interface.log! - - failed to access %1 @@ -4774,12 +4803,12 @@ p, li { white-space: pre-wrap; } Français - + Script Extender Extenseur de script - + Proxy DLL DLL par procuration @@ -5117,12 +5146,12 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe Settings - + setting for invalid plugin "%1" requested - + invalid setting "%1" requested for plugin "%2" @@ -5131,12 +5160,12 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe Les droits administrateur sont requis pour changer ceci. - + Confirm Confirmer - + Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed? diff --git a/src/organizer_ru.qm b/src/organizer_ru.qm index 7bf9614e..1bae65a6 100644 Binary files a/src/organizer_ru.qm and b/src/organizer_ru.qm differ diff --git a/src/organizer_ru.ts b/src/organizer_ru.ts index 6186453f..2204198c 100644 --- a/src/organizer_ru.ts +++ b/src/organizer_ru.ts @@ -262,32 +262,42 @@ p, li { white-space: pre-wrap; } DownloadListWidget - + Placeholder Заполнитель - - + + 0 + + + + + KB + + + + + Done - Double Click to install Готово - двойной щелчок для установки. - + Paused - Double Click to resume - + Installed - Double Click to re-install Установлено - двойной клик для переустановки - + Uninstalled - Double Click to re-install @@ -296,12 +306,12 @@ p, li { white-space: pre-wrap; } DownloadListWidgetCompact - + Placeholder Заполнитель - + Done Готово @@ -309,120 +319,120 @@ p, li { white-space: pre-wrap; } DownloadListWidgetCompactDelegate - + Installed Установлено - + Uninstalled - + Done Готово - - - - + + + + Are you sure? Вы уверены? - + This will remove all finished downloads from this list and from disk. Это удалит все готовые загрузки из этого списка и с диска. - + This will remove all installed downloads from this list and from disk. Это удалит все установленные загрузки из этого списка и с диска. - + This will permanently remove all finished downloads from this list (but NOT from disk). - + This will permanently remove all installed downloads from this list (but NOT from disk). - + Install Установка - + Query Info Справочная информация - + Delete - + Remove from View - + Remove Удаление - + Cancel Отмена - + Paused - + Fetching Info 1 - + Fetching Info 2 - + Pause Пауза - + Resume Возобновить - + Delete Installed... - + Delete All... - + Remove Installed... Отменить установку - + Remove All... Удалить все @@ -430,100 +440,100 @@ p, li { white-space: pre-wrap; } DownloadListWidgetDelegate - - - - + + + + Are you sure? Вы уверены? - + This will remove all finished downloads from this list and from disk. Это удалит все готовые загрузки из этого списка и с диска. - + This will remove all installed downloads from this list and from disk. Это удалит все установленные загрузки из этого листа и с диска. - + This will remove all finished downloads from this list (but NOT from disk). - + This will remove all installed downloads from this list (but NOT from disk). - + Install Установить - + Query Info Справочная информация - + Delete - + Remove from View - + Remove Удалить - + Cancel Отмена - + Fetching Info 1 - + Fetching Info 2 - + Pause Пауза - + Resume Возобновить - + Delete Installed... - + Delete All... - + Remove Installed... Удалить установленные - + Remove All... Удалить все @@ -531,65 +541,67 @@ p, li { white-space: pre-wrap; } DownloadManager - + failed to rename "%1" to "%2" Не удалось переименовать "%1" в "%2" - + Download again? Скачать снова - + A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name. Файл с таким именем загружен. Вы хотите загрузить его снова? У него будет другое имя. - + failed to download %1: could not open output file: %2 Ошибка загрузки %1: не удалось открыть входящий файл: %2 - - - - - - - - - - + + + + + + + + + + + invalid index Неверный индекс - + failed to delete %1 Не удалось удалить %1 - + failed to delete meta file for %1 Не удалось удалить мета файл %1 - - - - - + + + + + + invalid index %1 Неверный индекс %1 - + Please enter the nexus mod id Выберите ID мода с Nexus - + Mod ID: ID мода: @@ -598,38 +610,38 @@ p, li { white-space: pre-wrap; } Недействительный алфавитный указатель %1 - + Information updated Информация обновлена - - + + No matching file found on Nexus! Maybe this file is no longer available or it was renamed? Нет соответствующих модов на Nexus! Возможно фал был удален или переименован? - + No file on Nexus matches the selected file by name. Please manually choose the correct one. Нет соответствующих фалов на Nexus. Выберите файл вручную. - + No download server available. Please try again later. Сервер недоступен. Попробуйте позже. - + Failed to request file info from nexus: %1 Не удалось получить информацию о файле: %1 - + Download failed: %1 (%2) Загрузка не удалась: %1 (%2) - + failed to re-open %1 Не удалось открыть %1 @@ -1096,9 +1108,9 @@ p, li { white-space: pre-wrap; } Заменить - - - + + + Extracting files Извлечение файлов @@ -1133,7 +1145,7 @@ Note: This installer will not be aware of other installed mods! Установка не удалась (errorcode %1) - + File format "%1" not supported Формат файла "%1" не поддерживается @@ -1147,27 +1159,27 @@ Note: This installer will not be aware of other installed mods! - + failed to create backup - + Mod Name - + Name Имя - + Invalid name - + The name you entered is invalid, please enter a different one. @@ -1184,52 +1196,52 @@ Note: This installer will not be aware of other installed mods! Установите NCC - + None of the available installer plugins were able to handle that archive - + no error Ошибки отсутствуют - + 7z.dll not found 7z.dll не найден - + 7z.dll isn't valid 7z.dll поврежден - + archive not found Архив не найден - + failed to open archive Ошибка открытия архива - + unsupported archive type Не поддерживаемый тип архива - + internal library error Внутренняя ошибка библиотеки - + archive invalid Архив поврежден - + unknown archive error Неизвестная ошибка архива @@ -1344,7 +1356,7 @@ p, li { white-space: pre-wrap; } - + Namefilter @@ -1466,8 +1478,8 @@ BSAs checked here are loaded in such a way that your installation order is obeye - - + + Refresh @@ -1514,145 +1526,145 @@ p, li { white-space: pre-wrap; } - + Compact - + Tool Bar - + Install Mod - + Install &Mod - + Install a new mod from an archive - + Ctrl+M - + Profiles - + &Profiles - + Configure Profiles - + Ctrl+P - + Executables - + &Executables - + Configure the executables that can be started through Mod Organizer - + Ctrl+E - + Tools - + &Tools - + Ctrl+I - + Settings - + &Settings - + Configure settings and workarounds - + Ctrl+S - + Nexus - + Search nexus network for more mods - + Ctrl+N - - + + Update - + Mod Organizer is up-to-date - - + + No Problems - + This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them. !Work in progress! @@ -1660,808 +1672,814 @@ Right now this has very limited functionality - - + + Help - + Ctrl+H - + Endorse MO - - + + Endorse Mod Organizer - + Toolbar - + Desktop - + Start Menu - + Problems - + There are potential problems with your setup - + Everything seems to be in order - + Help on UI - + Documentation Wiki - + Report Issue - + Tutorials - + failed to save load order: %1 - + failed to save archives order, do you have write access to "%1"? - + Name Имя - + Please enter a name for the new profile - + failed to create profile: %1 - + Show tutorial? - + You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the "Help"-menu. - + Downloads in progress - + There are still downloads in progress, do you really want to quit? - + failed to read savegame: %1 - + Plugin "%1" failed: %2 - + Failed to start "%1" - + Waiting - + Please press OK once you're logged into steam. - + "%1" not found - + Start Steam? - + Steam is required to be running already to correctly start the game. Should MO try to start steam now? - + Also in: <br> - + No conflict - + <Edit...> - + This bsa is enabled in the ini file so it may be required! - + This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order! - + Activating Network Proxy - - + + Installation successful - - + + Configure Mod - - + + This mod contains ini tweaks. Do you want to configure them now? - - + + mod "%1" not found - - + + Installation cancelled - - + + The mod was not installed completely. - + Some plugins could not be loaded - + The following Plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:<ul> - + Choose Mod - + Mod Archive - + Start Tutorial? - + You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue? - - + + Download started - + failed to update mod list: %1 - + failed to spawn notepad.exe: %1 - + failed to open %1 - + failed to change origin name: %1 - + Multiple esps activated, please check that they don't conflict. - - + + Create Mod... - + This will move all files from overwrite into a new, regular mod. Please enter a name: - + A mod with this name already exists - + <All> - + <Checked> - + Plugin "%1" failed - + failed to init plugin %1: %2 - + + + Description missing + + + + <Unchecked> - + <Update> - + <No category> - + <Conflicted> - + failed to rename mod: %1 - + Overwrite? - + This will replace the existing mod "%1". Continue? - + failed to remove mod "%1" - - - + + + failed to rename "%1" to "%2" Не удалось переименовать "%1" в "%2" - - - + + + Confirm Подтвердить - + Remove the following mods?<br><ul>%1</ul> - + failed to remove mod: %1 - - + + Failed - + Installation file no longer exists - + Mods installed with old versions of MO can't be reinstalled in this way. - - + + You need to be logged in with Nexus to endorse - - + + Extract BSA - + This mod contains at least one BSA. Do you want to unpack it? (This removes the BSA after completion. If you don't know about BSAs, just select no) - - - + + + failed to read %1: %2 Не удалось прочитать %1: %2 - - + + This archive contains invalid hashes. Some files may be broken. - + Nexus ID for this Mod is unknown - + Really enable all visible mods? - + Really disable all visible mods? - + Choose what to export - + Everything - + All installed mods are included in the list - + Active Mods - + Only active (checked) mods from your current profile are included - + Visible - + All mods visible in the mod list are included - + export failed: %1 - + Install Mod... - + Enable all visible - + Disable all visible - + Check all for update - + Export to csv... - + Sync to Mods... - + Restore Backup - + Remove Backup... - + Set Category - + Primary Category - + Rename Mod... - + Remove Mod... - + Reinstall Mod - + Un-Endorse - - + + Endorse - + Won't endorse - + Endorsement state unknown - + Ignore missing data - + Visit on Nexus - + Open in explorer - + Information... - - + + Exception: - - + + Unknown exception - + <Multiple> - + Fix Mods... - - + + failed to remove %1 - - + + failed to create %1 - + Can't change download directory while downloads are in progress! - + Download failed - + failed to write to file %1 - + %1 written - + Select binary - + Binary Двоичный - + Enter Name - + Please enter a name for the executable - + Not an executable - + This is not a recognized executable. - - + + Replace file? - + There already is a hidden version of this file. Replace it? - - + + File operation failed - - + + Failed to remove "%1". Maybe you lack the required file permissions? - + There already is a visible version of this file. Replace it? - + Update available - + Open/Execute - + Add as Executable - + Un-Hide - + Hide - + Write To File... - + Do you want to endorse Mod Organizer on %1 now? - + Unlock load order - + Lock load order - + Request to Nexus failed: %1 - - + + login successful - + login failed: %1. Trying to download anyway - + login failed: %1 - + login failed: %1. You need to log-in with Nexus to update MO. - + Error - + failed to extract %1 (errorcode %2) - + Extract... - + Edit Categories... - + Enable all - + Disable all @@ -3352,43 +3370,59 @@ p, li { white-space: pre-wrap; } PluginList - + Mod Index - - + + unknown - + Name of your mods - + Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority. - + The modindex determins the formids of objects originating from this mods. - + esp not found: %1 - + + + Confirm + Подтвердить + + + + Really enable all plugins? + + + + + Really disable all plugins? + + + + The file containing locked plugin indices is broken - + failed to open output file: %1 @@ -3414,12 +3448,12 @@ p, li { white-space: pre-wrap; } - + Name Имя - + Priority @@ -3519,12 +3553,12 @@ p, li { white-space: pre-wrap; } - + Delete savegames? - + Do you want to delete local savegames? (If you select "No", the save games will show up again if you re-enable local savegames) @@ -3862,7 +3896,7 @@ p, li { white-space: pre-wrap; } - + Mod Organizer @@ -3883,32 +3917,27 @@ p, li { white-space: pre-wrap; } - + Please use "Help" from the toolbar to get usage instructions to all elements - - + + <Manage...> - + failed to parse profile %1: %2 - + failed to find "%1" - - - encoding error, please report this as a bug and include the file mo_interface.log! - - failed to access %1 @@ -3948,12 +3977,12 @@ p, li { white-space: pre-wrap; } - + Script Extender - + Proxy DLL @@ -4265,22 +4294,22 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe Settings - + setting for invalid plugin "%1" requested - + invalid setting "%1" requested for plugin "%2" - + Confirm Подтвердить - + Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed? diff --git a/src/organizer_tr.qm b/src/organizer_tr.qm index 97474695..1069c0dc 100644 Binary files a/src/organizer_tr.qm and b/src/organizer_tr.qm differ diff --git a/src/organizer_tr.ts b/src/organizer_tr.ts index 0cf19ea1..78e719a8 100644 --- a/src/organizer_tr.ts +++ b/src/organizer_tr.ts @@ -265,32 +265,42 @@ p, li { white-space: pre-wrap; } DownloadListWidget - + Placeholder Yer tutucu - - + + 0 + + + + + KB + + + + + Done - Double Click to install Bitti - Yüklemek için çift tıklayın - + Paused - Double Click to resume - + Installed - Double Click to re-install Yüklendi - Tekrar yüklemek için çift tıklayın - + Uninstalled - Double Click to re-install @@ -299,12 +309,12 @@ p, li { white-space: pre-wrap; } DownloadListWidgetCompact - + Placeholder Yer tutucu - + Done Bitti @@ -312,120 +322,120 @@ p, li { white-space: pre-wrap; } DownloadListWidgetCompactDelegate - + Installed Yüklendi - + Uninstalled - + Done Bitti - - - - + + + + Are you sure? Emin misiniz? - + This will remove all finished downloads from this list and from disk. Bu, tüm bitmiş indirilenleri listeden ve diskten kaldıracaktır. - + This will remove all installed downloads from this list and from disk. Bu, tüm yüklenmiş indirilenleri listeden ve diskten kaldıracaktır. - + This will permanently remove all finished downloads from this list (but NOT from disk). - + This will permanently remove all installed downloads from this list (but NOT from disk). - + Install Yükle - + Query Info Sorgu Bilgisi - + Delete - + Remove from View - + Remove Kaldır - + Cancel İptal et - + Paused - + Fetching Info 1 - + Fetching Info 2 - + Pause Duraklat - + Resume Devam et - + Delete Installed... - + Delete All... - + Remove Installed... Yüklenmişleri kaldır... - + Remove All... Hepsini kaldır... @@ -433,100 +443,100 @@ p, li { white-space: pre-wrap; } DownloadListWidgetDelegate - - - - + + + + Are you sure? Emin misiniz? - + This will remove all finished downloads from this list and from disk. Bu, tüm bitmiş indirilenleri listeden ve diskten kaldıracaktır. - + This will remove all installed downloads from this list and from disk. Bu, tüm bitmiş yüklenmiş listeden ve diskten kaldıracaktır. - + This will remove all finished downloads from this list (but NOT from disk). - + This will remove all installed downloads from this list (but NOT from disk). - + Install Yükle - + Query Info Bilgi sorgula - + Delete - + Remove from View - + Remove Kaldır - + Cancel İptal et - + Fetching Info 1 - + Fetching Info 2 - + Pause Duraklat - + Resume Devam et - + Delete Installed... - + Delete All... - + Remove Installed... Yüklenmişleri kaldır - + Remove All... Hepsini kaldır... @@ -534,65 +544,67 @@ p, li { white-space: pre-wrap; } DownloadManager - + failed to rename "%1" to "%2" "%1"yi "%2" olarak yeniden adlandırma başarılı olamadı. - + Download again? Tekrar indir? - + A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name. Aynı dosya isminde bir dosya zaten indirilmiş. Tekrar indirmek istiyor musunuz? Yeni dosya farklı bir isim alacak. - + failed to download %1: could not open output file: %2 %1 indirilemedi : : çıkış dosyası %2 açılamadı - - - - - - - - - - + + + + + + + + + + + invalid index geçersiz dizin - + failed to delete %1 %1 silinemedi - + failed to delete meta file for %1 %1'in meta dosyası silinemedi - - - - - + + + + + + invalid index %1 geçeriz dizin %1 - + Please enter the nexus mod id Lütfen nexus mod kimliğini girin - + Mod ID: Mod kimliği: @@ -601,38 +613,38 @@ p, li { white-space: pre-wrap; } geçersiz alfabetik dizin %1 - + Information updated bilgi güncellendi - - + + No matching file found on Nexus! Maybe this file is no longer available or it was renamed? Nexus'ta uyan bir dosya bulunamadı! Dosya artık mevcut olmayabilir yada yeniden adlandırılmış olabilir! - + No file on Nexus matches the selected file by name. Please manually choose the correct one. Nexus'ta seçili dosyaya isim olarak uyan dosya bulunamadı. Lütfen el ile doğru olanı seçin. - + No download server available. Please try again later. - + Failed to request file info from nexus: %1 Nexus'tan dosya bilgisi istenilemedi: %1 - + Download failed: %1 (%2) İndirme başarızı: %1 (%2) - + failed to re-open %1 %1 tekrar açılamadı @@ -1109,9 +1121,9 @@ p, li { white-space: pre-wrap; } Değiştir - - - + + + Extracting files Dosyalar çıkarılıyor @@ -1146,7 +1158,7 @@ Not: Bu yükleyici diğer modlardan haberdar olmayacak! yükleme başarısız (hatakodu %1) - + File format "%1" not supported Dosya formatı "%1" desteklenmiyor. @@ -1160,27 +1172,27 @@ Not: Bu yükleyici diğer modlardan haberdar olmayacak! - + failed to create backup - + Mod Name - + Name İsim - + Invalid name - + The name you entered is invalid, please enter a different one. @@ -1197,52 +1209,52 @@ Not: Bu yükleyici diğer modlardan haberdar olmayacak! Lüttfen NCC'yi yükleyiniz. - + None of the available installer plugins were able to handle that archive - + no error hata yok - + 7z.dll not found 7z.dll bulunamadı - + 7z.dll isn't valid 7z.dll geçerli değil - + archive not found arşiv bulunamadı - + failed to open archive arşiv açılamadı - + unsupported archive type desteklenmeyen arşiv türü - + internal library error içsel kütüphane hatası - + archive invalid arşiv geçersiz - + unknown archive error bilinmeyen arşiv hatası @@ -1357,7 +1369,7 @@ p, li { white-space: pre-wrap; } - + Namefilter @@ -1479,8 +1491,8 @@ BSAs checked here are loaded in such a way that your installation order is obeye - - + + Refresh @@ -1527,145 +1539,145 @@ p, li { white-space: pre-wrap; } - + Compact - + Tool Bar - + Install Mod - + Install &Mod - + Install a new mod from an archive - + Ctrl+M - + Profiles - + &Profiles - + Configure Profiles - + Ctrl+P - + Executables - + &Executables - + Configure the executables that can be started through Mod Organizer - + Ctrl+E - + Tools - + &Tools - + Ctrl+I - + Settings - + &Settings - + Configure settings and workarounds - + Ctrl+S - + Nexus - + Search nexus network for more mods - + Ctrl+N - - + + Update - + Mod Organizer is up-to-date - - + + No Problems - + This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them. !Work in progress! @@ -1673,808 +1685,814 @@ Right now this has very limited functionality - - + + Help - + Ctrl+H - + Endorse MO - - + + Endorse Mod Organizer - + Toolbar - + Desktop - + Start Menu - + Problems - + There are potential problems with your setup - + Everything seems to be in order - + Help on UI - + Documentation Wiki - + Report Issue - + Tutorials - + failed to save load order: %1 - + failed to save archives order, do you have write access to "%1"? - + Name İsim - + Please enter a name for the new profile - + failed to create profile: %1 - + Show tutorial? - + You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the "Help"-menu. - + Downloads in progress - + There are still downloads in progress, do you really want to quit? - + failed to read savegame: %1 - + Plugin "%1" failed: %2 - + Failed to start "%1" - + Waiting - + Please press OK once you're logged into steam. - + "%1" not found - + Start Steam? - + Steam is required to be running already to correctly start the game. Should MO try to start steam now? - + Also in: <br> - + No conflict - + <Edit...> - + This bsa is enabled in the ini file so it may be required! - + This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order! - + Activating Network Proxy - - + + Installation successful - - + + Configure Mod - - + + This mod contains ini tweaks. Do you want to configure them now? - - + + mod "%1" not found - - + + Installation cancelled - - + + The mod was not installed completely. - + Some plugins could not be loaded - + The following Plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:<ul> - + Choose Mod - + Mod Archive - + Start Tutorial? - + You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue? - - + + Download started - + failed to update mod list: %1 - + failed to spawn notepad.exe: %1 - + failed to open %1 - + failed to change origin name: %1 - + Multiple esps activated, please check that they don't conflict. - - + + Create Mod... - + This will move all files from overwrite into a new, regular mod. Please enter a name: - + A mod with this name already exists - + <All> - + <Checked> - + Plugin "%1" failed - + failed to init plugin %1: %2 - + + + Description missing + + + + <Unchecked> - + <Update> - + <No category> - + <Conflicted> - + failed to rename mod: %1 - + Overwrite? - + This will replace the existing mod "%1". Continue? - + failed to remove mod "%1" - - - + + + failed to rename "%1" to "%2" "%1"yi "%2" olarak yeniden adlandırma başarılı olamadı. - - - + + + Confirm Onayla - + Remove the following mods?<br><ul>%1</ul> - + failed to remove mod: %1 - - + + Failed - + Installation file no longer exists - + Mods installed with old versions of MO can't be reinstalled in this way. - - + + You need to be logged in with Nexus to endorse - - + + Extract BSA - + This mod contains at least one BSA. Do you want to unpack it? (This removes the BSA after completion. If you don't know about BSAs, just select no) - - - + + + failed to read %1: %2 %1: %2 okunamadı - - + + This archive contains invalid hashes. Some files may be broken. - + Nexus ID for this Mod is unknown - + Really enable all visible mods? - + Really disable all visible mods? - + Choose what to export - + Everything - + All installed mods are included in the list - + Active Mods - + Only active (checked) mods from your current profile are included - + Visible - + All mods visible in the mod list are included - + export failed: %1 - + Install Mod... - + Enable all visible - + Disable all visible - + Check all for update - + Export to csv... - + Sync to Mods... - + Restore Backup - + Remove Backup... - + Set Category - + Primary Category - + Rename Mod... - + Remove Mod... - + Reinstall Mod - + Un-Endorse - - + + Endorse - + Won't endorse - + Endorsement state unknown - + Ignore missing data - + Visit on Nexus - + Open in explorer - + Information... - - + + Exception: - - + + Unknown exception - + <Multiple> - + Fix Mods... - - + + failed to remove %1 - - + + failed to create %1 - + Can't change download directory while downloads are in progress! - + Download failed - + failed to write to file %1 - + %1 written - + Select binary - + Binary İkili değer - + Enter Name - + Please enter a name for the executable - + Not an executable - + This is not a recognized executable. - - + + Replace file? - + There already is a hidden version of this file. Replace it? - - + + File operation failed - - + + Failed to remove "%1". Maybe you lack the required file permissions? - + There already is a visible version of this file. Replace it? - + Update available - + Open/Execute - + Add as Executable - + Un-Hide - + Hide - + Write To File... - + Do you want to endorse Mod Organizer on %1 now? - + Unlock load order - + Lock load order - + Request to Nexus failed: %1 - - + + login successful - + login failed: %1. Trying to download anyway - + login failed: %1 - + login failed: %1. You need to log-in with Nexus to update MO. - + Error - + failed to extract %1 (errorcode %2) - + Extract... - + Edit Categories... - + Enable all - + Disable all @@ -3326,43 +3344,59 @@ p, li { white-space: pre-wrap; } PluginList - + Mod Index - - + + unknown - + Name of your mods - + Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority. - + The modindex determins the formids of objects originating from this mods. - + esp not found: %1 - + + + Confirm + Onayla + + + + Really enable all plugins? + + + + + Really disable all plugins? + + + + The file containing locked plugin indices is broken - + failed to open output file: %1 @@ -3388,12 +3422,12 @@ p, li { white-space: pre-wrap; } - + Name İsim - + Priority @@ -3493,12 +3527,12 @@ p, li { white-space: pre-wrap; } - + Delete savegames? - + Do you want to delete local savegames? (If you select "No", the save games will show up again if you re-enable local savegames) @@ -3836,7 +3870,7 @@ p, li { white-space: pre-wrap; } - + Mod Organizer @@ -3857,32 +3891,27 @@ p, li { white-space: pre-wrap; } - + Please use "Help" from the toolbar to get usage instructions to all elements - - + + <Manage...> - + failed to parse profile %1: %2 - + failed to find "%1" - - - encoding error, please report this as a bug and include the file mo_interface.log! - - failed to access %1 @@ -3922,12 +3951,12 @@ p, li { white-space: pre-wrap; } - + Script Extender - + Proxy DLL @@ -4239,22 +4268,22 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe Settings - + setting for invalid plugin "%1" requested - + invalid setting "%1" requested for plugin "%2" - + Confirm Onayla - + Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed? diff --git a/src/organizer_zh_CN.qm b/src/organizer_zh_CN.qm index 83797725..ca363b5c 100644 Binary files a/src/organizer_zh_CN.qm and b/src/organizer_zh_CN.qm differ diff --git a/src/organizer_zh_CN.ts b/src/organizer_zh_CN.ts index 28c361d1..2ca0cc2a 100644 --- a/src/organizer_zh_CN.ts +++ b/src/organizer_zh_CN.ts @@ -264,32 +264,42 @@ p, li { white-space: pre-wrap; } DownloadListWidget - + Placeholder 占位符 - - + + 0 + + + + + KB + + + + + Done - Double Click to install 完成 - 双击进行安装 - + Paused - Double Click to resume - + Installed - Double Click to re-install 已安装 - 双击重新安装 - + Uninstalled - Double Click to re-install @@ -298,12 +308,12 @@ p, li { white-space: pre-wrap; } DownloadListWidgetCompact - + Placeholder 占位符 - + Done 完成 @@ -311,120 +321,120 @@ p, li { white-space: pre-wrap; } DownloadListWidgetCompactDelegate - + Installed 已安装 - + Uninstalled - + Done 完成 - - - - + + + + Are you sure? 确定? - + This will remove all finished downloads from this list and from disk. 这将会从列表和磁盘中移除所有已完成的下载。 - + This will remove all installed downloads from this list and from disk. 这将会从列表和磁盘中移除所有已安装的下载项目。 - + This will permanently remove all finished downloads from this list (but NOT from disk). - + This will permanently remove all installed downloads from this list (but NOT from disk). - + Install 安装 - + Query Info 查询信息 - + Delete - + Remove from View - + Remove 移除 - + Cancel 取消 - + Paused - + Fetching Info 1 - + Fetching Info 2 - + Pause 暂停 - + Resume 继续 - + Delete Installed... - + Delete All... - + Remove Installed... 移除已安装的项目... - + Remove All... 移除所有... @@ -432,100 +442,100 @@ p, li { white-space: pre-wrap; } DownloadListWidgetDelegate - - - - + + + + Are you sure? 确定? - + This will remove all finished downloads from this list and from disk. 这将会从列表和磁盘中移除所有已完成的下载。 - + This will remove all installed downloads from this list and from disk. 这将会从列表和磁盘中移除所有已安装的下载项目。 - + This will remove all finished downloads from this list (but NOT from disk). - + This will remove all installed downloads from this list (but NOT from disk). - + Install 安装 - + Query Info 查询信息 - + Delete - + Remove from View - + Remove 移除 - + Cancel 取消 - + Fetching Info 1 - + Fetching Info 2 - + Pause 暂停 - + Resume 继续 - + Delete Installed... - + Delete All... - + Remove Installed... 移除已安装的项目... - + Remove All... 移除所有... @@ -533,65 +543,67 @@ p, li { white-space: pre-wrap; } DownloadManager - + failed to rename "%1" to "%2" 重命名 "%1 "为 "%2" 时出错 - + Download again? 重新下载? - + A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name. 已存在同名文件。您确定要重新下载?新文件将使用不同的文件名。 - + failed to download %1: could not open output file: %2 下载 %1 失败: 无法打开输出文件: %2 - - - - - - - - - - + + + + + + + + + + + invalid index 无效的索引 - + failed to delete %1 无法删除 %1 - + failed to delete meta file for %1 无法从 %1 中删除 mate 文件 - - - - - + + + + + + invalid index %1 无效的索引 %1 - + Please enter the nexus mod id 请输入N网 Mod ID - + Mod ID: Mod ID: @@ -600,38 +612,38 @@ p, li { white-space: pre-wrap; } 无效的字顺索引 %1 - + Information updated 信息已更新 - - + + No matching file found on Nexus! Maybe this file is no longer available or it was renamed? 无法在N网上找到匹配的文件!也许这个文件已经不存在了或是它改名了? - + No file on Nexus matches the selected file by name. Please manually choose the correct one. 所选的文件无法在N网上找到可匹配的项目,请手动选择正确的一个。 - + No download server available. Please try again later. 没有可用的下载服务器,请稍后再尝试下载。 - + Failed to request file info from nexus: %1 无法从N网上请求文件信息: %1 - + Download failed: %1 (%2) 下载失败: %1 (%2) - + failed to re-open %1 无法重新打开 %1 @@ -1106,9 +1118,9 @@ p, li { white-space: pre-wrap; } 替换 - - - + + + Extracting files 正在解压文件 @@ -1143,7 +1155,7 @@ Note: This installer will not be aware of other installed mods! 安装失败 (错误代码 %1) - + File format "%1" not supported 暂不支持文件格式: "%1" @@ -1157,27 +1169,27 @@ Note: This installer will not be aware of other installed mods! - + failed to create backup - + Mod Name - + Name 名称 - + Invalid name - + The name you entered is invalid, please enter a different one. @@ -1194,52 +1206,52 @@ Note: This installer will not be aware of other installed mods! 请安装 NCC - + None of the available installer plugins were able to handle that archive - + no error 没有错误 - + 7z.dll not found 未找到 7z.dll - + 7z.dll isn't valid 无效的 7z.dll - + archive not found 未找到压缩包 - + failed to open archive 无法打开压缩包 - + unsupported archive type 不支持的压缩包类型 - + internal library error 内部库错误 - + archive invalid 无效的压缩包 - + unknown archive error 未知压缩包错误 @@ -1359,7 +1371,7 @@ p, li { white-space: pre-wrap; } - + Namefilter @@ -1525,8 +1537,8 @@ BSAs checked here are loaded in such a way that your installation order is obeye - - + + Refresh 刷新 @@ -1579,145 +1591,145 @@ p, li { white-space: pre-wrap; } 这是当前已下载的 Mod 的列表,双击进行安装。 - + Compact 紧凑 - + Tool Bar 工具栏 - + Install Mod 安装 Mod - + Install &Mod 安装 &Mod - + Install a new mod from an archive 通过压缩包来安装一个新 Mod - + Ctrl+M Ctrl+M - + Profiles 配置文件 - + &Profiles &配置文件 - + Configure Profiles 设置配置文件 - + Ctrl+P Ctrl+P - + Executables 可执行程序 - + &Executables &可执行程序 - + Configure the executables that can be started through Mod Organizer 配置可通过 MO 来启动的程序 - + Ctrl+E Ctrl+E - + Tools - + &Tools - + Ctrl+I Ctrl+I - + Settings 设置 - + &Settings &设置 - + Configure settings and workarounds 配置设定和解决方案 - + Ctrl+S Ctrl+S - + Nexus N网 - + Search nexus network for more mods 搜索N网以获取更多 Mod - + Ctrl+N Ctrl+N - - + + Update 更新 - + Mod Organizer is up-to-date Mod Organizer 现在是最新版本 - - + + No Problems 没有问题 - + This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them. !Work in progress! @@ -1728,54 +1740,54 @@ Right now this has very limited functionality 当前此功能所能提供的项目非常有限 - - + + Help 帮助 - + Ctrl+H - + Endorse MO - - + + Endorse Mod Organizer - + Toolbar - + Desktop - + Start Menu - + Problems 问题 - + There are potential problems with your setup 您的安装中存在潜在的问题 - + Everything seems to be in order 一切井然有序 @@ -1792,22 +1804,22 @@ Right now this has very limited functionality <li>.Net 未安装或版本过旧。想要运行 NCC 您必须先安装 .Net,您可以在以下地址中获取: <a href="%1">%1</a></li> - + Help on UI 界面帮助 - + Documentation Wiki 说明文档 (维基) - + Report Issue 报告问题 - + Tutorials @@ -1816,368 +1828,374 @@ Right now this has very limited functionality 无法保存加载顺序 - + failed to save load order: %1 无法保存加载顺序: %1 - + failed to save archives order, do you have write access to "%1"? 无法保存档案顺序,您确定您有权限更改 "%1"? - + Name 名称 - + Please enter a name for the new profile - + failed to create profile: %1 无法创建配置文件: %1 - + Show tutorial? - + You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the "Help"-menu. - + Downloads in progress 正在下载 - + There are still downloads in progress, do you really want to quit? 仍有正在进行中的下载,您确定要退出吗? - + failed to read savegame: %1 无法读取存档: %1 - + Plugin "%1" failed: %2 - + Failed to start "%1" 无法启动 "%1" - + Waiting 稍等 - + Please press OK once you're logged into steam. 当您登录 Steam 时请点击确定。 - + "%1" not found "%1" 未找到 - + Start Steam? 启动 Steam? - + Steam is required to be running already to correctly start the game. Should MO try to start steam now? 想要正确地启动遊戲,Steam 必须处于运行状态。MO 要立即启动 Steam 吗? - + Also in: <br> 也在: <br> - + No conflict 没有冲突 - + <Edit...> <编辑...> - + This bsa is enabled in the ini file so it may be required! 该 BSA 已在 Ini 文件中启用,因此它可能是必需的。 - + This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order! 此档案还是会被加载,因为存在同名插件。不过它所包含的的文件不会遵循安装顺序! - + Activating Network Proxy - - + + Installation successful 安装成功 - - + + Configure Mod 配置 Mod - - + + This mod contains ini tweaks. Do you want to configure them now? 此 Mod 中包含 Ini 设定文件,您想现在就对它们进行配置吗? - - + + mod "%1" not found Mod "%1" 未找到 - - + + Installation cancelled 安装已取消 - - + + The mod was not installed completely. Mod 没有完全安装。 - + Some plugins could not be loaded - + + + Description missing + + + + The following Plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:<ul> - + Choose Mod 选择 Mod - + Mod Archive Mod 压缩包 - + Start Tutorial? - + You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue? - - + + Download started 开始下载 - + failed to update mod list: %1 无法更新 Mod 列表: %1 - + failed to spawn notepad.exe: %1 无法生成 notepad.exe: %1 - + failed to open %1 无法打开 %1 - + failed to change origin name: %1 无法更改原始文件名: %1 - + Multiple esps activated, please check that they don't conflict. - - + + Create Mod... - + This will move all files from overwrite into a new, regular mod. Please enter a name: - + A mod with this name already exists - + <All> <全部> - + <Checked> <已勾选> - + Plugin "%1" failed - + failed to init plugin %1: %2 - + <Unchecked> <未勾选> - + <Update> <有更新> - + <No category> <无类别> - + <Conflicted> - + failed to rename mod: %1 无法重命名 Mod: %1 - + Overwrite? - + This will replace the existing mod "%1". Continue? - + failed to remove mod "%1" - - - + + + failed to rename "%1" to "%2" - - - + + + Confirm 确认 - + Remove the following mods?<br><ul>%1</ul> - + failed to remove mod: %1 无法移动 Mod: %1 - - + + Failed 失败 - + Installation file no longer exists 安装文件不复存在 - + Mods installed with old versions of MO can't be reinstalled in this way. 旧版 MO 安装的 Mod 无法使用此方法重新安装。 - - + + You need to be logged in with Nexus to endorse - - + + Extract BSA 解压 BSA - + This mod contains at least one BSA. Do you want to unpack it? (This removes the BSA after completion. If you don't know about BSAs, just select no) 此 Mod 中至少包含一个 BSA。您确定要解压吗? (解压完成后,BSA 文件将会被删除。如果您不了解 BSA 的话,请选择“否”) - - - + + + failed to read %1: %2 无法读取 %1: %2 - - + + This archive contains invalid hashes. Some files may be broken. 压缩包 Hash 值错误。部分文件可能已经损坏。 - + Nexus ID for this Mod is unknown 此 Mod 的N网 ID 未知 @@ -2190,371 +2208,371 @@ Please enter a name: 选择优先级 - + Really enable all visible mods? 确定要启用全部可见的 Mod 吗? - + Really disable all visible mods? 确定要禁用全部可见的 Mod 吗? - + Choose what to export - + Everything - + All installed mods are included in the list - + Active Mods - + Only active (checked) mods from your current profile are included - + Visible - + All mods visible in the mod list are included - + export failed: %1 - + Install Mod... 安装 Mod... - + Enable all visible 启用所有可见项目 - + Disable all visible 禁用所有可见项目 - + Check all for update 检查更新 - + Export to csv... - + Sync to Mods... 同步到 Mod... - + Restore Backup - + Remove Backup... - + Set Category 设置类别 - + Primary Category - + Rename Mod... 重命名... - + Remove Mod... 移除 Mod... - + Reinstall Mod 重新安装 Mod - + Un-Endorse - - + + Endorse - + Won't endorse - + Endorsement state unknown - + Ignore missing data - + Visit on Nexus 在N网上浏览 - + Open in explorer 在资源管理器中打开 - + Information... 信息... - - + + Exception: 例外: - - + + Unknown exception 未知的例外 - + <Multiple> - + Fix Mods... 修复 Mod... - - + + failed to remove %1 无法删除 %1 - - + + failed to create %1 无法创建 %1 - + Can't change download directory while downloads are in progress! 下载文件时不能修改下载目录! - + Download failed 下载失败 - + failed to write to file %1 无法写入文件 %1 - + %1 written 已写入 %1 - + Select binary 选择可执行文件 - + Binary - + Enter Name 输入名称 - + Please enter a name for the executable 请为程序输入一个名称 - + Not an executable 不是可执行程序 - + This is not a recognized executable. 无法识别的可执行文件 - - + + Replace file? 替换文件? - + There already is a hidden version of this file. Replace it? 已存在同名文件,但该文件被隐藏了。确定要覆盖吗? - - + + File operation failed 文件操作错误 - - + + Failed to remove "%1". Maybe you lack the required file permissions? - + There already is a visible version of this file. Replace it? - + Update available 更新可用 - + Open/Execute 打开/执行 - + Add as Executable 添加为可执行文件 - + Un-Hide 取消隐藏 - + Hide 隐藏 - + Write To File... 写入文件... - + Do you want to endorse Mod Organizer on %1 now? - + Unlock load order - + Lock load order - + Request to Nexus failed: %1 - - + + login successful 登录成功 - + login failed: %1. Trying to download anyway 登录失败: %1,请尝试使用别的方法下载 - + login failed: %1 无法登录: %1 - + login failed: %1. You need to log-in with Nexus to update MO. 登录失败: %1。您需要登录到N网才能更新 MO - + Error 错误 - + failed to extract %1 (errorcode %2) 无法解压 %1 (错误代码 %2) - + Extract... 解压... - + Edit Categories... 编辑类别... - + Enable all 全部启用 - + Disable all 全部禁用 @@ -4450,43 +4468,59 @@ Right now this has very limited functionality ESP 文件没有找到: %1 - + Mod Index - - + + unknown - + Name of your mods - + Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority. - + The modindex determins the formids of objects originating from this mods. - + esp not found: %1 - + + + Confirm + 确认 + + + + Really enable all plugins? + + + + + Really disable all plugins? + + + + The file containing locked plugin indices is broken - + failed to open output file: %1 无法打开输出文件: %1 @@ -4520,7 +4554,7 @@ Right now this has very limited functionality 隶属于: %1 - + Name 名称 @@ -4529,7 +4563,7 @@ Right now this has very limited functionality Mod 名称 - + Priority 优先级 @@ -4645,12 +4679,12 @@ p, li { white-space: pre-wrap; } - + Delete savegames? - + Do you want to delete local savegames? (If you select "No", the save games will show up again if you re-enable local savegames) @@ -5043,7 +5077,7 @@ p, li { white-space: pre-wrap; } - + Mod Organizer Mod Organizer @@ -5064,31 +5098,30 @@ p, li { white-space: pre-wrap; } 请选择想要管理的游戏 - + Please use "Help" from the toolbar to get usage instructions to all elements 请使用工具栏上的“帮助”来获得所有元素的使用说明 - - + + <Manage...> <管理...> - + failed to parse profile %1: %2 无法解析配置文件 %1: %2 - + failed to find "%1" 未能找到 "%1" - encoding error, please report this as a bug and include the file mo_interface.log! - 编码错误,请向作者汇报此 Bug 并且附上 mo_interface.log 文件! + 编码错误,请向作者汇报此 Bug 并且附上 mo_interface.log 文件! @@ -5137,12 +5170,12 @@ p, li { white-space: pre-wrap; } 无法打开 %1 - + Script Extender 脚本拓展 - + Proxy DLL 代理DLL @@ -5474,12 +5507,12 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe Settings - + setting for invalid plugin "%1" requested - + invalid setting "%1" requested for plugin "%2" @@ -5488,12 +5521,12 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe 需要管理员的权限来更改这个。 - + Confirm 确认 - + Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed? 修改 Mod 目录将会影响您的配置!新目录中不存在 (或者名称不同) 的 Mod 将在所有配置中被禁止掉。此操作无法撤销,所以执行此操作前建议先备份下自己的配置。立即执行? diff --git a/src/organizer_zh_TW.qm b/src/organizer_zh_TW.qm index cd8dedf9..73a06572 100644 Binary files a/src/organizer_zh_TW.qm and b/src/organizer_zh_TW.qm differ diff --git a/src/organizer_zh_TW.ts b/src/organizer_zh_TW.ts index a7353db7..c6868f95 100644 --- a/src/organizer_zh_TW.ts +++ b/src/organizer_zh_TW.ts @@ -264,32 +264,42 @@ p, li { white-space: pre-wrap; } DownloadListWidget - + Placeholder 占位符 - - + + 0 + + + + + KB + + + + + Done - Double Click to install 完成 - 雙擊進行安裝 - + Paused - Double Click to resume - + Installed - Double Click to re-install 已安裝 - 雙擊重新安裝 - + Uninstalled - Double Click to re-install @@ -298,12 +308,12 @@ p, li { white-space: pre-wrap; } DownloadListWidgetCompact - + Placeholder 占位符 - + Done 完成 @@ -311,120 +321,120 @@ p, li { white-space: pre-wrap; } DownloadListWidgetCompactDelegate - + Installed 已安裝 - + Uninstalled - + Done 完成 - - - - + + + + Are you sure? 確定? - + This will remove all finished downloads from this list and from disk. 這將會從列表和磁碟中移除所有已完成的下載。 - + This will remove all installed downloads from this list and from disk. 這將會從列表和磁碟中移除所有已安裝的下載項目。 - + This will permanently remove all finished downloads from this list (but NOT from disk). - + This will permanently remove all installed downloads from this list (but NOT from disk). - + Install 安裝 - + Query Info 查詢訊息 - + Delete - + Remove from View - + Remove 移除 - + Cancel 取消 - + Paused - + Fetching Info 1 - + Fetching Info 2 - + Pause 暫停 - + Resume 繼續 - + Delete Installed... - + Delete All... - + Remove Installed... 移除已安裝的項目... - + Remove All... 移除所有... @@ -432,100 +442,100 @@ p, li { white-space: pre-wrap; } DownloadListWidgetDelegate - - - - + + + + Are you sure? 確定? - + This will remove all finished downloads from this list and from disk. 這將會從列表和磁碟中移除所有已完成的下載。 - + This will remove all installed downloads from this list and from disk. 這將會從列表和磁碟中移除所有已安裝的下載項目。 - + This will remove all finished downloads from this list (but NOT from disk). - + This will remove all installed downloads from this list (but NOT from disk). - + Install 安裝 - + Query Info 查詢訊息 - + Delete - + Remove from View - + Remove 移除 - + Cancel 取消 - + Fetching Info 1 - + Fetching Info 2 - + Pause 暫停 - + Resume 繼續 - + Delete Installed... - + Delete All... - + Remove Installed... 移除已安裝的項目... - + Remove All... 移除所有... @@ -533,65 +543,67 @@ p, li { white-space: pre-wrap; } DownloadManager - + failed to rename "%1" to "%2" 重新命名 "%1 "為 "%2" 時出錯 - + Download again? 重新下載? - + A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name. 已存在同名檔案。您確定要重新下載?新檔案將使用不同的檔案名。 - + failed to download %1: could not open output file: %2 下載 %1 失敗: 無法開啟輸出檔案: %2 - - - - - - - - - - + + + + + + + + + + + invalid index 無效的索引 - + failed to delete %1 無法刪除 %1 - + failed to delete meta file for %1 無法從 %1 中刪除 mate 檔案 - - - - - + + + + + + invalid index %1 無效的索引 %1 - + Please enter the nexus mod id 請輸入N網 Mod ID - + Mod ID: Mod ID: @@ -600,38 +612,38 @@ p, li { white-space: pre-wrap; } 無效的字順索引 %1 - + Information updated 訊息已更新 - - + + No matching file found on Nexus! Maybe this file is no longer available or it was renamed? 無法在N網上找到匹配的檔案!也許這個檔案已經不存在了或是它改名了? - + No file on Nexus matches the selected file by name. Please manually choose the correct one. 所選的檔案無法在N網上找到可匹配的項目,請手動選擇正確的一個。 - + No download server available. Please try again later. 沒有可用的下載伺服器,請稍後再嘗試下載。 - + Failed to request file info from nexus: %1 無法在N網上請求檔案訊息: %1 - + Download failed: %1 (%2) 下載失敗: %1 (%2) - + failed to re-open %1 無法重新開啟 %1 @@ -1106,9 +1118,9 @@ p, li { white-space: pre-wrap; } 取代 - - - + + + Extracting files 正在解壓檔案 @@ -1143,7 +1155,7 @@ Note: This installer will not be aware of other installed mods! 安裝失敗 (錯誤代碼 %1) - + File format "%1" not supported 暫不支持檔案格式: "%1" @@ -1157,27 +1169,27 @@ Note: This installer will not be aware of other installed mods! - + failed to create backup - + Mod Name - + Name 名稱 - + Invalid name - + The name you entered is invalid, please enter a different one. @@ -1194,52 +1206,52 @@ Note: This installer will not be aware of other installed mods! 請安裝 NCC - + None of the available installer plugins were able to handle that archive - + no error 沒有錯誤 - + 7z.dll not found 未找到 7z.dll - + 7z.dll isn't valid 無效的 7z.dll - + archive not found 未找到壓縮包 - + failed to open archive 無法開啟壓縮包 - + unsupported archive type 不支持的壓縮包類型 - + internal library error 內部庫錯誤 - + archive invalid 無效的壓縮包 - + unknown archive error 未知壓縮包錯誤 @@ -1359,7 +1371,7 @@ p, li { white-space: pre-wrap; } - + Namefilter @@ -1525,8 +1537,8 @@ BSAs checked here are loaded in such a way that your installation order is obeye - - + + Refresh 重新整理 @@ -1579,145 +1591,145 @@ p, li { white-space: pre-wrap; } 這是當前已下載的 Mod 的列表,雙擊進行安裝。 - + Compact 緊湊 - + Tool Bar 工具欄 - + Install Mod 安裝 Mod - + Install &Mod 安裝 &Mod - + Install a new mod from an archive 通過壓縮包來安裝一個新 Mod - + Ctrl+M Ctrl+M - + Profiles 配置檔案 - + &Profiles &配置檔案 - + Configure Profiles 設定配置檔案 - + Ctrl+P Ctrl+P - + Executables 可執行程式 - + &Executables &可執行程式 - + Configure the executables that can be started through Mod Organizer 配置可通過 MO 來啟動的程式 - + Ctrl+E Ctrl+E - + Tools - + &Tools - + Ctrl+I Ctrl+I - + Settings 設定 - + &Settings &設定 - + Configure settings and workarounds 配置設定和解決方案 - + Ctrl+S Ctrl+S - + Nexus N網 - + Search nexus network for more mods 搜尋N網以獲取更多 Mod - + Ctrl+N Ctrl+N - - + + Update 更新 - + Mod Organizer is up-to-date Mod Organizer 現在是最新版本 - - + + No Problems 沒有問題 - + This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them. !Work in progress! @@ -1728,54 +1740,54 @@ Right now this has very limited functionality 當前此功能所能提供的項目非常有限 - - + + Help 幫助 - + Ctrl+H - + Endorse MO - - + + Endorse Mod Organizer - + Toolbar - + Desktop - + Start Menu - + Problems 問題 - + There are potential problems with your setup 您的安裝中存在潛在的問題 - + Everything seems to be in order 一切井然有序 @@ -1792,22 +1804,22 @@ Right now this has very limited functionality <li>.Net 未安裝或版本過舊。想要運行 NCC 您必須先安裝 .Net,您可以在以下地址中獲取: <a href="%1">%1</a></li> - + Help on UI 介面幫助 - + Documentation Wiki 說明文檔 (維基) - + Report Issue 報告問題 - + Tutorials @@ -1816,368 +1828,374 @@ Right now this has very limited functionality 無法儲存加載順序 - + failed to save load order: %1 無法儲存加載順序: %1 - + failed to save archives order, do you have write access to "%1"? 無法儲存檔案順序,您確定您有權限更改 "%1"? - + Name 名稱 - + Please enter a name for the new profile - + failed to create profile: %1 無法建立配置檔案: %1 - + Show tutorial? - + You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the "Help"-menu. - + Downloads in progress 正在下載 - + There are still downloads in progress, do you really want to quit? 仍有正在進行中的下載,您確定要退出嗎? - + failed to read savegame: %1 無法讀取存檔: %1 - + Plugin "%1" failed: %2 - + Failed to start "%1" 無法啟動 "%1" - + Waiting 稍等 - + Please press OK once you're logged into steam. 當您登入 Steam 時請點擊確定。 - + "%1" not found "%1" 未找到 - + Start Steam? 啟動 Steam? - + Steam is required to be running already to correctly start the game. Should MO try to start steam now? 想要正確地啟動遊戲,Steam 必須處於運行狀態,MO 要立即啟動 Steam 嗎? - + Also in: <br> 也在: <br> - + No conflict 沒有衝突 - + <Edit...> <編輯...> - + This bsa is enabled in the ini file so it may be required! 該 BSA 已在 Ini 檔案中啟用,因此它可能是必需的。 - + This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order! 此檔案還是會被加載,因為存在同名插件。不過它所包含的的檔案不會遵循安裝順序! - + Activating Network Proxy - - + + Installation successful 安裝成功 - - + + Configure Mod 配置 Mod - - + + This mod contains ini tweaks. Do you want to configure them now? 此 Mod 中包含 Ini 設定檔案,您想現在就對它們進行配置嗎? - - + + mod "%1" not found Mod "%1" 未找到 - - + + Installation cancelled 安裝已取消 - - + + The mod was not installed completely. Mod 沒有完全安裝。 - + Some plugins could not be loaded - + + + Description missing + + + + The following Plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:<ul> - + Choose Mod 選擇 Mod - + Mod Archive Mod 壓縮包 - + Start Tutorial? - + You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue? - - + + Download started 開始下載 - + failed to update mod list: %1 無法更新 Mod 列表: %1 - + failed to spawn notepad.exe: %1 無法生成 notepad.exe: %1 - + failed to open %1 無法開啟 %1 - + failed to change origin name: %1 無法更改原始檔案名: %1 - + Multiple esps activated, please check that they don't conflict. - - + + Create Mod... - + This will move all files from overwrite into a new, regular mod. Please enter a name: - + A mod with this name already exists - + <All> <全部> - + <Checked> <已勾選> - + Plugin "%1" failed - + failed to init plugin %1: %2 - + <Unchecked> <未勾選> - + <Update> <有更新> - + <No category> <無類別> - + <Conflicted> - + failed to rename mod: %1 無法重新命名 Mod: %1 - + Overwrite? - + This will replace the existing mod "%1". Continue? - + failed to remove mod "%1" - - - + + + failed to rename "%1" to "%2" - - - + + + Confirm 確認 - + Remove the following mods?<br><ul>%1</ul> - + failed to remove mod: %1 無法移動 Mod: %1 - - + + Failed 失敗 - + Installation file no longer exists 安裝檔案不複存在 - + Mods installed with old versions of MO can't be reinstalled in this way. 舊版 MO 安裝的 Mod 無法使用此方法重新安裝。 - - + + You need to be logged in with Nexus to endorse - - + + Extract BSA 解壓 BSA - + This mod contains at least one BSA. Do you want to unpack it? (This removes the BSA after completion. If you don't know about BSAs, just select no) 此 Mod 中至少包含一個 BSA。您確定要解壓嗎? (解壓完成後,BSA 檔案將會被刪除。如果您不瞭解 BSA 的話,請選擇“否”) - - - + + + failed to read %1: %2 無法讀取 %1: %2 - - + + This archive contains invalid hashes. Some files may be broken. 壓縮包 Hash 值錯誤。部分檔案可能已經損壞。 - + Nexus ID for this Mod is unknown 此 Mod 的N網 ID 未知 @@ -2190,371 +2208,371 @@ Please enter a name: 選擇優先級 - + Really enable all visible mods? 確定要啟用全部可見的 Mod 嗎? - + Really disable all visible mods? 確定要禁用全部可見的 Mod 嗎? - + Choose what to export - + Everything - + All installed mods are included in the list - + Active Mods - + Only active (checked) mods from your current profile are included - + Visible - + All mods visible in the mod list are included - + export failed: %1 - + Install Mod... 安裝 Mod... - + Enable all visible 啟用所有可見項目 - + Disable all visible 禁用所有可見項目 - + Check all for update 檢查更新 - + Export to csv... - + Sync to Mods... 同步到 Mod... - + Restore Backup - + Remove Backup... - + Set Category 設定類別 - + Primary Category - + Rename Mod... 重新命名... - + Remove Mod... 移除 Mod... - + Reinstall Mod 重新安裝 Mod - + Un-Endorse - - + + Endorse - + Won't endorse - + Endorsement state unknown - + Ignore missing data - + Visit on Nexus 在N網上流覽 - + Open in explorer 在檔案總管中開啟 - + Information... 訊息... - - + + Exception: 例外: - - + + Unknown exception 未知的例外 - + <Multiple> - + Fix Mods... 修復 Mod... - - + + failed to remove %1 無法刪除 %1 - - + + failed to create %1 無法建立 %1 - + Can't change download directory while downloads are in progress! 下載檔案時不能修改下載目錄! - + Download failed 下載失敗 - + failed to write to file %1 無法寫入檔案 %1 - + %1 written 已寫入 %1 - + Select binary 選擇可執行檔案 - + Binary - + Enter Name 輸入名稱 - + Please enter a name for the executable 請為程式輸入一個名稱 - + Not an executable 不是可執行程式 - + This is not a recognized executable. 無法識別的可執行檔案 - - + + Replace file? 取代檔案? - + There already is a hidden version of this file. Replace it? 已存在同名檔案,但該檔案被隱藏了。確定要覆蓋嗎? - - + + File operation failed 檔案操作錯誤 - - + + Failed to remove "%1". Maybe you lack the required file permissions? - + There already is a visible version of this file. Replace it? - + Update available 更新可用 - + Open/Execute 開啟/執行 - + Add as Executable 添加為可執行檔案 - + Un-Hide 取消隱藏 - + Hide 隱藏 - + Write To File... 寫入檔案... - + Do you want to endorse Mod Organizer on %1 now? - + Unlock load order - + Lock load order - + Request to Nexus failed: %1 - - + + login successful 登入成功 - + login failed: %1. Trying to download anyway 登入失敗: %1,請嘗試使用別的方法下載 - + login failed: %1 無法登入: %1 - + login failed: %1. You need to log-in with Nexus to update MO. 登入失敗: %1。您需要登入到N網才能更新 MO - + Error 錯誤 - + failed to extract %1 (errorcode %2) 無法解壓 %1 (錯誤代碼 %2) - + Extract... 解壓... - + Edit Categories... 編輯類別... - + Enable all 全部啟用 - + Disable all 全部禁用 @@ -4450,43 +4468,59 @@ Right now this has very limited functionality ESP 檔案沒有找到: %1 - + Mod Index - - + + unknown - + Name of your mods - + Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority. - + The modindex determins the formids of objects originating from this mods. - + esp not found: %1 - + + + Confirm + 確認 + + + + Really enable all plugins? + + + + + Really disable all plugins? + + + + The file containing locked plugin indices is broken - + failed to open output file: %1 無法開啟輸出檔案: %1 @@ -4520,7 +4554,7 @@ Right now this has very limited functionality 隸屬於: %1 - + Name 名稱 @@ -4529,7 +4563,7 @@ Right now this has very limited functionality Mod 名稱 - + Priority 優先級 @@ -4645,12 +4679,12 @@ p, li { white-space: pre-wrap; } - + Delete savegames? - + Do you want to delete local savegames? (If you select "No", the save games will show up again if you re-enable local savegames) @@ -5043,7 +5077,7 @@ p, li { white-space: pre-wrap; } - + Mod Organizer Mod Organizer @@ -5064,31 +5098,30 @@ p, li { white-space: pre-wrap; } 請選擇想要管理的遊戲 - + Please use "Help" from the toolbar to get usage instructions to all elements 請使用工具列上的“幫助”來獲得所有元素的使用說明 - - + + <Manage...> <管理...> - + failed to parse profile %1: %2 無法解析配置檔案 %1: %2 - + failed to find "%1" 未能找到 "%1" - encoding error, please report this as a bug and include the file mo_interface.log! - 編碼錯誤,請向作者彙報此 Bug 並且附上 mo_interface.log 檔案! + 編碼錯誤,請向作者彙報此 Bug 並且附上 mo_interface.log 檔案! @@ -5137,12 +5170,12 @@ p, li { white-space: pre-wrap; } 無法開啟 %1 - + Script Extender 腳本拓展 - + Proxy DLL 代理DLL @@ -5474,12 +5507,12 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe Settings - + setting for invalid plugin "%1" requested - + invalid setting "%1" requested for plugin "%2" @@ -5488,12 +5521,12 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe 需要管理員的權限來更改這個。 - + Confirm 確認 - + Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed? 修改 Mod 目錄將會影響您的配置!新目錄中不存在 (或者名稱不同) 的 Mod 將在所有配置中被禁止掉。此操作無法撤銷,所以執行此操作前建議先備份下自己的配置。立即執行? -- cgit v1.3.1