From 482f13a50b921e61d34d09f72a7fb4216efe742b Mon Sep 17 00:00:00 2001 From: Tannin Date: Mon, 8 Sep 2014 20:37:23 +0200 Subject: - re-enabled building of loot_cli and started developing against the new api - extended set of default categories - more tolerand bbcode parser - added a few colors for the bbcode parser - more fixes to qt5 compatibility - started work on ability to unloading (and thus re-loading) of plugins - names of plugins are no longer localizable (because those names are also used to store settings) - added settings to disable individual diagnosis settings - path of dependencies is now configured in a .pri file instead of environment variablees - bugfix: if the modid-input is canceled, the id was saved as -1 and wasn't re-requested from the user - bugfix: moving files with the SHFileOperation-Api didn't update the vfs correctly (still not perfect but better) - bugfix: attempt to remove the deleter-file seems to have caused error messages for some users - bugfix: fixed a couple of cases that might have caused the tutorial to hang --- src/ModOrganizer.pro | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/ModOrganizer.pro') diff --git a/src/ModOrganizer.pro b/src/ModOrganizer.pro index 9907d086..9b2d998b 100644 --- a/src/ModOrganizer.pro +++ b/src/ModOrganizer.pro @@ -1,6 +1,5 @@ TEMPLATE = subdirs - SUBDIRS = bsatk \ shared \ uibase \ @@ -13,9 +12,10 @@ SUBDIRS = bsatk \ nxmhandler \ BossDummy \ pythonRunner \ + loot_cli \ esptk -plugins.depends = pythonRunner +plugins.depends = pythonRunner uibase hookdll.depends = shared organizer.depends = shared uibase plugins @@ -30,7 +30,7 @@ DLLSPATH = $${DESTDIR}\\dlls otherlibs.path = $$DLLSPATH otherlibs.files += $${STATICDATAPATH}\\7z.dll \ - $$(BOOSTPATH)\\stage\\lib\\boost_python-vc*-mt-1*.dll + $${BOOSTPATH}\\stage\\lib\\boost_python-vc*-mt-1*.dll qtlibs.path = $$DLLSPATH -- cgit v1.3.1 From 53896e66f113519253892903404264b4e49ab8a6 Mon Sep 17 00:00:00 2001 From: Tannin Date: Tue, 11 Nov 2014 23:48:22 +0100 Subject: - updated staging script to use qt5 and to fetch translations from transifex - removed call to function unavailable in Windows XP --- src/ModOrganizer.pro | 1 + src/mainwindow.cpp | 20 +- src/organizer_es.ts | 1247 ++++++++++++++------------- src/organizer_fr.ts | 2232 +++++++++++++++++++++++++----------------------- src/organizer_ru.ts | 1132 ++++++++++++------------ src/organizer_zh_CN.ts | 1692 ++++++++++++++++++------------------ src/organizer_zh_TW.ts | 2138 ++++++++++++++++++++++++---------------------- 7 files changed, 4336 insertions(+), 4126 deletions(-) (limited to 'src/ModOrganizer.pro') diff --git a/src/ModOrganizer.pro b/src/ModOrganizer.pro index 9b2d998b..a8f7f53e 100644 --- a/src/ModOrganizer.pro +++ b/src/ModOrganizer.pro @@ -15,6 +15,7 @@ SUBDIRS = bsatk \ loot_cli \ esptk +pythonRunner.depends = uibase plugins.depends = pythonRunner uibase hookdll.depends = shared organizer.depends = shared uibase plugins diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index d6d4ebe3..024e2510 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -226,8 +226,8 @@ MainWindow::MainWindow(const QString &exeName, QSettings &initSettings, QWidget ui->modList->header()->restoreState(initSettings.value("mod_list_state").toByteArray()); // hack: force the resize-signal to be triggered because restoreState doesn't seem to do that - ui->modList->header()->resizeSection(ModList::COL_CONTENT, sectionSize + 1); - ui->modList->header()->resizeSection(ModList::COL_CONTENT, sectionSize - 1); + ui->modList->header()->resizeSection(ModList::COL_CONTENT, ui->modList->header()->sectionSize(ModList::COL_CONTENT) + 1); + ui->modList->header()->resizeSection(ModList::COL_CONTENT, ui->modList->header()->sectionSize(ModList::COL_CONTENT) - 1); } else { // hide these columns by default ui->modList->header()->setSectionHidden(ModList::COL_CONTENT, true); @@ -1425,10 +1425,18 @@ std::wstring getProcessName(DWORD processId) { HANDLE process = ::OpenProcess(PROCESS_QUERY_INFORMATION, false, processId); - DWORD value = MAX_PATH; wchar_t buffer[MAX_PATH]; - ::QueryFullProcessImageNameW(process, 0, buffer, &value); - return buffer; + if (::GetProcessImageFileNameW(process, buffer, MAX_PATH) != 0) { + wchar_t *fileName = wcsrchr(buffer, L'\\'); + if (fileName == nullptr) { + fileName = buffer; + } else { + fileName += 1; + } + return fileName; + } else { + return std::wstring(L"unknown"); + } } void MainWindow::spawnBinary(const QFileInfo &binary, const QString &arguments, const QDir ¤tDirectory, bool closeAfterStart, const QString &steamAppID) @@ -1460,12 +1468,12 @@ void MainWindow::spawnBinary(const QFileInfo &binary, const QString &arguments, if (isJobHandle) { if (::QueryInformationJobObject(processHandle, JobObjectBasicProcessIdList, &info, sizeof(info), &retLen) > 0) { if (info.NumberOfProcessIdsInList == 0) { + break; } else { if (info.ProcessIdList[0] != currentProcess) { currentProcess = info.ProcessIdList[0]; dialog->setProcessName(ToQString(getProcessName(currentProcess))); } - break; } } else { // the info-object I passed only provides space for 1 process id. but since this code only cares about whether there diff --git a/src/organizer_es.ts b/src/organizer_es.ts index cf6f18a6..1803ca7f 100644 --- a/src/organizer_es.ts +++ b/src/organizer_es.ts @@ -1,6 +1,4 @@ - - - + AboutDialog @@ -62,7 +60,7 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a list of esps and esms that were active when the save game was created.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">For each esp, the right column contains the mod (or mods) that can be enabled to make the missing esps/esms available.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> @@ -159,22 +157,22 @@ Si existe un componente que es requerido llamado "00 Core" . Las opcio Some Page - + Alguna Página Search - + Búsqueda new - + nuevo failed to start download - + Error al iniciar descarga @@ -225,20 +223,16 @@ Si existe un componente que es requerido llamado "00 Core" . Las opcio <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">You can match one or multiple nexus categories to a internal ID. Whenever you download a mod from a Nexus Page, Mod Organizer will try to resolve the category defined on the Nexus to one available in MO.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">To find out a category id used by the nexus, visit the categories list of the nexus page and hover over the links there.</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Puede coincidir con una o varias categorías de una ID interna de Nexus. Cada vez que se descarga un mod de la página de Nexus, Mod Organizador tratará de resolver la categoría definida en Nexus a una disponible en MO</span></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { espacio blanco: pre envoltura; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Se puede sincronizar una o varias categorías de nexo a un ID interno. Cada vez que se descarga un mod de la Página Nexus, Mod Organizer tratará de resolver la categoría definida en el Nexus a uno disponible en MO.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Para saber la categoria de una ID usada por nexo, visitar la lista de categorías de la página nexo y discernir sobre los enlaces de allí.</span></p></body></html> Parent ID - Parent ID + ID Paternal @@ -461,7 +455,7 @@ p, li { white-space: pre-wrap; } Un-Hide - Un-Hide + Hacer Visible @@ -577,7 +571,7 @@ p, li { white-space: pre-wrap; } Un-Hide - Un-Hide + Hacer Visible @@ -622,7 +616,7 @@ p, li { white-space: pre-wrap; } Remove All... - Quitar todos... + Eliminando todos... @@ -635,7 +629,7 @@ p, li { white-space: pre-wrap; } Memory allocation error (in refreshing directory). - + Error de asignación de memoria (en directorio refrescante). @@ -705,7 +699,7 @@ p, li { white-space: pre-wrap; } No known download urls. Sorry, this download can't be resumed. - + No se conocen descarga urls. Lo sentimos, esta descarga no se puede reanudar. @@ -750,12 +744,12 @@ p, li { white-space: pre-wrap; } Memory allocation error (in processing progress event). - + Error de asignación de memoria (en el procesamiento de eventos de progreso). Memory allocation error (in processing downloaded data). - + Error de asignación de memoria (en el procesamiento de datos descargados). @@ -830,13 +824,13 @@ p, li { white-space: pre-wrap; } Binary - Fichero + Binario Binary to run - Fiechero para ser ejecutado + Binario para funcionar @@ -846,18 +840,18 @@ p, li { white-space: pre-wrap; } Browse filesystem for the executable to run. - Examinar en busca del ejecutable. + Explorar sistema de archivos para hacer funcionar el ejecutable. ... - Examinar + ... Start in - Comienzo en + Comenzar en @@ -956,7 +950,7 @@ En este momento el único caso que conozco donde esto debe ser sobreescrito es p Java (32-bit) required - Java (32-bit) requeredo + Java (32-bit) requerido @@ -1006,12 +1000,12 @@ En este momento el único caso que conozco donde esto debe ser sobreescrito es p Find - Buscar + Encontrar: Find what: - Buscar: + Encuentra en: @@ -1028,7 +1022,7 @@ En este momento el único caso que conozco donde esto debe ser sobreescrito es p &Find Next - &Encontrar + &Buscar siguiente @@ -1133,7 +1127,7 @@ En este momento el único caso que conozco donde esto debe ser sobreescrito es p <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This displays the content of the archive. &lt;data&gt; represents the base directory which will map to the game's data directory. You can change the base directory via the right-click context menu and you can move around files via drag&amp;drop</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -1177,87 +1171,87 @@ p, li { white-space: pre-wrap; } - + Extracting files Extrayendo ficheros - + failed to create backup fallo al crear copia de seguridad - + Mod Name Nombre del Mod - + Name Nombre - + Invalid name Nombre inválido - + The name you entered is invalid, please enter a different one. El nombre introducido no es válido, por favor introduzca uno diferente. - + File format "%1" not supported Formato de archivo no soportado para "%1" - + None of the available installer plugins were able to handle that archive Ninguno de los plugins del instalador disponible son capaces de manejar este archivo - + 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 - + failed to open archive Error abriendo el fichero - + unsupported archive type formato de fichero no soportado - + internal library error error interno de libreria - + archive invalid archivo invalido - + unknown archive error Error de fichero desconocido @@ -1277,7 +1271,7 @@ p, li { white-space: pre-wrap; } MO is locked while the executable is running. - MO esta bloqueado mientras se ejecute el programa. + MO esta bloqueado mientras se ejecuta el programa. @@ -1317,27 +1311,27 @@ p, li { white-space: pre-wrap; } Click blank area to deselect - + Púlsar en el área en blanco para anular la selección If checked, only mods that match all selected categories are displayed. - + Si se selecciona, sólo mods que responden a todas las categorías seleccionadas son mostrados. And - + Y If checked, all mods that match at least one of the selected categories are displayed. - + Si se selecciona, se muestran todos los mods que coincidan con al menos una de las categorías seleccionadas. Or - + O @@ -1354,7 +1348,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Create profiles here. Each profile contains its own list of active mods and esps. This way you can quickly switch between setups for different play throughs.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Please note that right now your esp load order is not kept seperate for different profiles.</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -1364,6 +1358,11 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Crear perfiles aquí. Cada perfil contiene su propia lista de mods activos y esps. De esta manera puedes cambiar rápidamente entre configuraciones para diferentes juegos.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Ten en cuenta que en estos momentos tu carga de esp no se mantiene separado para diferentes perfiles.</span></p></body></html> + + + Open list options... + Abrir Opciones de la lista... + Refresh list. This is usually not necessary unless you modified data outside the program. @@ -1373,13 +1372,13 @@ p, li { white-space: pre-wrap; } Restore Backup... - Restaurar copia de seguridad + Restaurar copia de seguridad... Create Backup - + Crear Copia de Seguridad @@ -1423,7 +1422,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Choose the program to run. Once you start using ModOrganizer, you should always run your game and tools from here or through shortcuts created here, otherwise mods installed through MO will not be visible.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">You can add new Tools to this list, but I can't promise tools I haven't tested will work.</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -1443,7 +1442,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Run the selected program with ModOrganizer enabled.</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -1466,7 +1465,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This creates a start menu shortcut that directly starts the selected program with the MO active.</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -1484,6 +1483,11 @@ p, li { white-space: pre-wrap; } Plugins Plugins + + + Sort + Ordenar + List of available esp/esm files @@ -1494,7 +1498,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This list contains the esps and esms contained in the active mods. These require their own load order. Use drag&amp;drop to modify this load order. Please note that MO will only save the load order for mods that are active/checked.<br />There is a great tool named &quot;BOSS&quot; to automatically sort these files.</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -1502,30 +1506,20 @@ p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Esta lista contiene los ESP y ESMS contenidos en los mods activos. Requieren su propio orden de carga. Utilice arrastrar y soltar para modificar este orden de carga. Tenga en cuenta que MO sólo salvará el orden de carga de los mods que están activos/comprobados.<br />Hay una gran herramienta llamada &quot;BOSS&quot; para ordenar automáticamente los archivos.</span></p></body></html> - - - Sort - Ordenar - - - - Open list options... - - Archives - + Archivos <html><head/><body><p>BSAs are bundles of game assets (textures, scripts, ...). By default, the engine loads these bundles in a separate step from loose files. MO can manage those archives to align their load order with that of loose files:</p><p>If archives are <span style=" font-weight:600;">managed</span>, their load order is specified by the priority of the corresponding mod (left pane), the same as the loose files. You can manually enable any BSA that has no corresponding plugin active.<br/></p><p>If archives are <span style=" font-weight:600;">not managed</span> their load order is specified by the priority of the corresponding plugin (right pane, plugins tab). You can then not manually enable BSAs where the plugin isn't active.</p><p>In either case you can not disable archives if there is a matching plugin, the game will load them no matter what.</p></body></html> - + <html><head/><body><p>BSAs son paquetes de activos de juego (texturas, scripts, ...). Por defecto, el motor carga estos paquetes en una etapa distinta de archivos sueltos. MO puede gestionar esos archivos para alinear su orden de carga con la de archivos sueltos:</p><p>Si los archivos son <span style=" font-weight:600;">gestionados</span>, se especifica el orden de carga por la prioridad del mod correspondiente (panel izquierdo), lo mismo que los archivos sueltos. Puede activar manualmente cualquier BSA que no tiene un plugin correspondiente activo<br/></p><p>Si los archivos no son <span style=" font-weight:600;">gestionados</span> su orden de carga es especificado por la prioridad del plugin correspondiente (panel de la derecha, pestaña plugins). No podras, activar manualmente BSAs donde el plugin no está activo.</p><p>En cualquiera de los casos no se puede deshabilitar archivos si hay un plugin coincidente, el juego los cargará cueste lo que cueste.</p></body></html> <html><head/><body><p>Have MO manage archives (<a href="#"><span style=" text-decoration: underline; color:#0000ff;">read more</span></a>)</p></body></html> - + <html><head/><body><p>Dejar MO manejar archivos (<a href="#"><span style=" text-decoration: underline; color:#0000ff;">leer más</span></a>)</p></body></html> @@ -1566,8 +1560,8 @@ BSA marcado aquí se cargan de tal manera que su orden de instalación se cumple - - + + Refresh Recargar @@ -1602,8 +1596,8 @@ BSA marcado aquí se cargan de tal manera que su orden de instalación se cumple <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a list of all savegames for this game. Hover over a list entry to get detailed information about the save including a list of esps/esms that were used at the time this save was created but aren't active now.</span></p> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a list of all savegames for this game. Hover over a list entry to get detailed information about the save including a list of esps/esms that were used at the time this save was created but aren't active now.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you click &quot;Fix Mods...&quot; in the context menu, MO will try to activate all mods and esps to fix those missing esps. It will not disable anything!</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -1747,7 +1741,7 @@ p, li { white-space: pre-wrap; } - + Update Actualizacion @@ -1791,19 +1785,19 @@ Ahora esto tiene una funcionalidad muy limitada - + Endorse Mod Organizer Avalar Mod Organizer Copy Log to Clipboard - Copiar al Portapapeles + Copiar Log al Portapapeles Ctrl+C - Ctrl+M + Ctrl+C @@ -1920,6 +1914,25 @@ Ahora esto tiene una funcionalidad muy limitada Plugin "%1" failed Plugin "%1" fallido + + + Download? + Descarga? + + + + A download has been started but no installed page plugin recognizes it. +If you download anyway no information (i.e. version) will be associated with the download. +Continue? + Una descarga se ha iniciado, pero no hay página de plugin instalado reconocido. +Si lo descarga de todos modos ninguna información (ej. la versión) se asociará con la descarga. +Continuar? + + + + Browse Mod Page + Explorar Página de Mod + failed to init plugin %1: %2 @@ -1952,6 +1965,11 @@ Ahora esto tiene una funcionalidad muy limitada Please press OK once you're logged into steam. Por favor, pulsa OK una vez que hayas iniciado sesión en steam. + + + Executable "%1" not found + Ejecutable "%1" no encontrado + Start Steam? @@ -1963,924 +1981,889 @@ Ahora esto tiene una funcionalidad muy limitada Steam es requerido para iniciar correctamente el juego. ¿Debería MO tratar de iniciar ahora steam? - + Also in: <br> También en: <br> - + No conflict Sin conflictos - + <Edit...> <Editar...> - + + Failed to refresh list of esps: %1 + Fallo al actualizar la lista de esps: %1 + + + This bsa is enabled in the ini file so it may be required! Esta bsa está habilitada en el archivo ini, por lo que puede ser necesario - + Activating Network Proxy Activación de proxy de red - - - Installation successful - Instalacion completada - - - - - Configure Mod - Configurar Mod + + + Failed to write settings + Error al escribir la configuración - - - This mod contains ini tweaks. Do you want to configure them now? - Este mod contiene ajustes del ini. ¿Quieres configurarlos ahora? + + + An error occured trying to write back MO settings: %1 + Ha ocurrido un error tratando de escribir de nuevo la configuración de MO: %1 - - - mod "%1" not found - mod "%1" no encontrado + + File is write protected + El archivo está protegido contra escritura - - - Installation cancelled - Instalación cancelada + + Invalid file format (probably a bug) + Formato de archivo no válido (probablemente sea un bug) - - - The mod was not installed completely. - El mod no fue instalado completamente. + + Unknown error %1 + Error desconocido %1 - + Some plugins could not be loaded Algún plugins no se pudo cargar - + Too many esps and esms enabled Demasiados esps y esms habilitado - - + + Description missing Falta la descripción - + The following plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version: Los siguientes plugins no se pudieron cargar. La razón puede ser dependencias faltantes (es decir python) o una versión obsoleta: - + The game doesn't allow more than 255 active plugins (including the official ones) to be loaded. You have to disable some unused plugins or merge some plugins into one. You can find a guide here: <a href="http://wiki.step-project.com/Guide:Merging_Plugins">http://wiki.step-project.com/Guide:Merging_Plugins</a> El juego no permite cargar más de 255 plugins activos (incluidos los oficiales). Tienes que desactivar algunos plugins no utilizados o fusionar algunos plugins en uno solo. Aquí podras encontrar una guía: <a href="http://wiki.step-project.com/Guide:Merging_Plugins">http://wiki.step-project.com/Guide:Merging_Plugins</a> - + Choose Mod Seleccione Mod - + Mod Archive Archivo Mod - + + + Installation successful + Instalacion completada + + + + + Configure Mod + Configurar Mod + + + + + This mod contains ini tweaks. Do you want to configure them now? + Este mod contiene ajustes del ini. ¿Quieres configurarlos ahora? + + + + + mod "%1" not found + mod "%1" no encontrado + + + + + Installation cancelled + Instalación cancelada + + + + + The mod was not installed completely. + El mod no fue instalado completamente. + + + Start Tutorial? Iniciar tutorial? - + You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue? Estás a punto de iniciar un tutorial. Por razones técnicas, no es posible terminar el tutorial antes de tiempo. ¿Desea continuar? - - + + Download started Descarga iniciada - + 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 - - Executable "%1" not found - Ejecutable "%1" no encontrado - - - - Failed to refresh list of esps: %1 - Fallo al actualizar la lista de esps: %1 + + failed to move "%1" from mod "%2" to "%3": %4 + Error al mover "%1" desde mod "%2" to "%3": %4 - - failed to move "%1" from mod "%2" to "%3": %4 - + + <Contains %1> + <Contiene %1> - + <Checked> <Marcado> - + <Unchecked> <Desmarcado> - + <Update> <Actualizacion> - + + <Managed by MO> + <Gestionado por MO> + + + + <Managed outside MO> + <Gestionado fuera MO> + + + <No category> <No categoría> - + <Conflicted> <En conflicto> - + <Not Endorsed> <No Avalado> - + failed to rename mod: %1 fallo al renombrar el mod: %1 - + Overwrite? - ¿Sobrescribir? + Sobrescribir? - + This will replace the existing mod "%1". Continue? Esto reemplazará el vigente mod "%1". ¿Desea continuar? - + failed to remove mod "%1" Fallo eliminando mod "%1" - - - + + + failed to rename "%1" to "%2" Fallo al renombrar "%1" a "%2" - + Multiple esps activated, please check that they don't conflict. Múltiples esps activados, por favor verifique que no entren en conflicto. - - - - + + + + Confirm Confirmar - + Remove the following mods?<br><ul>%1</ul> ¿Quitar el siguiente mods?<br><ul>%1</ul> - + failed to remove mod: %1 fallo al eliminar mod: %1 - - + + Failed Fallo - + Installation file no longer exists El archivo de instalación ya no existe - + Mods installed with old versions of MO can't be reinstalled in this way. Mods instalados con las viejas versiones de MO no pueden ser instalados de nuevo de este modo. - - - You need to be logged in with Nexus to endorse - Necesita estar conectado con Nexus para avalar - - - - Are you sure you want to remove the following %n save(s)?<br><ul>%1</ul><br>Removed saves will be sent to the Recycle Bin. - - - - - - - - Delete %n save(s) - - - - - - - - Extract BSA - Extraer BSA + + You need to be logged in with Nexus to resume a download + Tienes que estar conectado con Nexus para reanudar una descarga - - - failed to read %1: %2 - fallo al leer %1: %2 + + + You need to be logged in with Nexus to endorse + Necesita estar conectado con Nexus para avalar - - This archive contains invalid hashes. Some files may be broken. - Este archivo contiene hashes no válidos. Algunos archivos pueden estar rotos. + + Failed to display overwrite dialog: %1 + No se pudo mostrar diálogo de sobreescritura: %1 - + Nexus ID for this Mod is unknown Se desconoce la ID en Nexus para este Mod - - Download? - Descargas - - - - A download has been started but no installed page plugin recognizes it. -If you download anyway no information (i.e. version) will be associated with the download. -Continue? - - - - - Browse Mod Page - - - - - - Failed to write settings - - - - - - An error occured trying to write back MO settings: %1 - - - - - File is write protected - - - - - Invalid file format (probably a bug) - - - - - Unknown error %1 - - - - - <Managed by MO> - - - - - <Managed outside MO> - - - - - You need to be logged in with Nexus to resume a download - Necesita estar conectado con Nexus para avalar - - - - Failed to display overwrite dialog: %1 - - - - - + + Create Mod... Crear Mod... - + This will move all files from overwrite into a new, regular mod. Please enter a name: Esto moverá todos los archivos de sobrescritura en un nuevo mod, regular. Por favor, introduzca un nombre: - + A mod with this name already exists Ya existe un mod con este nombre - + Continue? ¿Continuar? - + The versioning scheme decides which version is considered newer than another. This function will guess the versioning scheme under the assumption that the installed version is outdated. El esquema de versiones decide qué versión es considerada más nueva una que otra. Esta función adivinará el esquema de versiones bajo el supuesto de que la versión instalada es obsoleta. - - + + Sorry Lo siento - + I don't know a versioning scheme where %1 is newer than %2. Se desconoce un esquema de versiones donde %1 es más reciente que %2. - + Really enable all visible mods? ¿Permitir realmente todos los mods visibles? - + Really disable all visible mods? ¿Realmente desactivar todos los mods visibles? - + Choose what to export Elija un archivo a exportar - + Everything Todo - + All installed mods are included in the list Todos los mods instalados están incluidos en la lista - + Active Mods Mods Activos - + Only active (checked) mods from your current profile are included Mods sólo activos (Marcados) es incluido de su perfil actual - + Visible Visible - + All mods visible in the mod list are included Todo mods visible en la lista de mod son incluidos - + export failed: %1 Falló al exportar: %1 - + Install Mod... Instalar Mod... - + Enable all visible Activar todos los visibles - + Disable all visible Desactivar todo lo visible - + Check all for update Comprobar todo para actualizar - + Export to csv... Exportar a CSV... - + All Mods - + Todo los Mods - + Sync to Mods... Sincronizar con Mods... - + Restore Backup Restaurar copia de seguridad - + Remove Backup... Eliminar copia de seguridad... - + Add/Remove Categories Añadir/Quitar Categorías - + Replace Categories Remplazar Categorías - + Primary Category Categoría Primaria - + Change versioning scheme Cambiar esquema de versiones - + Un-ignore update No ignorar actualización - + Ignore update No Ignorar actualización - + Rename Mod... Renombrar Mod... - + Remove Mod... Quitar Mod... - + Reinstall Mod Reinstalar Mod - + Un-Endorse No Avalado - - + + Endorse Avalado - + Won't endorse - No avalar + No avalado - + Endorsement state unknown Estado de avalado desconocido - + Ignore missing data Ignorar data desaparecido - + Visit on Nexus Visite Nexus - + Open in explorer Abrir en explorador - + Information... Informacion... - - + + Exception: Excepción: - - + + Unknown exception Excepción desconocida - + <All> <Todo> - + <Multiple> <Multiple> - - - Please wait while LOOT is running - + + + Are you sure you want to remove the following %n save(s)?<br><ul>%1</ul><br>Removed saves will be sent to the Recycle Bin. + Seguro que desea eliminar el siguiente %n salvado(s)?<br><ul>%1</ul><br>Los salvados Eliminados serán enviados a la papelera de reciclaje.Seguro que desea eliminar el siguiente %n salvado(s)?<br><ul>%1</ul><br>Los salvados Eliminados serán enviados a la papelera de reciclaje. - Really delete "%1"? - Realmente desea borrar "%1"? + + Please wait while LOOT is running + Por favor espera mientras se está ejecutando LOOT - + Fix Mods... - Fix Mods... + Arreglar Mods... - - Delete - Eliminar + + + Delete %n save(s) + Eliminar %n guardado(s)Eliminar %n guardo(s) - + failed to remove %1 Fallo eliminando %1 - - + + failed to create %1 Fallo al crear %1 - + Can't change download directory while downloads are in progress! No se puede cambiar el directorio de descarga, mientras que las descargas están en curso - + Download failed Descarga fallida - + failed to write to file %1 Fallo de escritura en el fichero %1 - + %1 written %1 escrito - + Select binary Selecciona el binario - + Binary Binario - + Enter Name Introducir Nombre - + Please enter a name for the executable Por favor, introduce un nombre para el ejecutable - + Not an executable No es un ejecutable - + This is not a recognized executable. Esto no es un ejecutable reconocido. - - + + Replace file? ¿Reemplazar archivo? - + There already is a hidden version of this file. Replace it? Ya existe una versión oculta de este archivo. Reemplazarlo? - - + + File operation failed La operación del archivo falló - - + + Failed to remove "%1". Maybe you lack the required file permissions? Fallo al eliminar "%1". ¿Tal vez no tengas los permisos necesarios? - + There already is a visible version of this file. Replace it? Ya existe una versión visible de este archivo. ¿Reemplazarlo? - + file not found: %1 archivo no encontrado: %1 - + failed to generate preview for %1 fallo al generar vista anticipada para %1 - + Sorry, can't preview anything. This function currently does not support extracting from bsas. Lo sentimos, no se puede obtener una vista previa de nada. Esta función no admite la extracción de bsas. - + Update available Actualización disponible - + Open/Execute Abrir/Ejecutar - + Add as Executable Añadir un ejecutable - + Preview Previsualizar - + Un-Hide Desocultar - + Hide Ocultar - + Write To File... Escribir al fichero... - + Do you want to endorse Mod Organizer on %1 now? ¿Quieres avalar Mod Organizer en %1 ahora? - + Thank you! - + Gracias! - + Thank you for your endorsement! - + Gracias por su respaldo! - + Request to Nexus failed: %1 Solicitud de Nexus ha fallado: %1 - - + + login successful login correcto - + login failed: %1. Trying to download anyway login fallado: %1. Intentando descarga de todos modos - + login failed: %1 Falló el inicio de sesión: %1 - + login failed: %1. You need to log-in with Nexus to update MO. login fallido: %1. Necesitas hacer login con Nexus para actualizar MO. - + + + failed to read %1: %2 + fallo al leer %1: %2 + + + Error Error - + failed to extract %1 (errorcode %2) fallo al extraer %1 (Código de error %2) - + + Extract BSA + Extraer BSA + + + + This archive contains invalid hashes. Some files may be broken. + Este archivo contiene hashes no válidos. Algunos archivos pueden estar rotos. + + + Extract... Extraer... - + Edit Categories... Editar Categorías... - + Deselect filter - + Deselecciona filtro - + Remove Eliminar - + Enable all Activar todo - + Disable all Desactivar todos - + Unlock load order Desbloquear el orden de carga - + Lock load order Orden de carga bloqueado - + depends on missing "%1" - + depende de que falta "%1" - + incompatible with "%1" - + incompatible con "%1" - + No profile set - + No conjunto de perfil - LOOT working - BOSS trabajando - - - + loot failed. Exit code was: %1 - + loot falló. Código de salida fue: %1 - + failed to start loot - + Error al iniciar loot - + failed to run loot: %1 - fallo al ejecutar boss: %1 + Error al ejecutar loot: %1 - + Errors occured - + Se han producido errores - + Backup of load order created - + Copia de seguridad de orden de carga creado - + Choose backup to restore - + Elije copia de seguridad para restaurar - + No Backups - + No hay copias de seguridad - + There are no backups to restore - + No hay copias de seguridad para restaurar - - + + Restore failed - + Error en la restauración - - + + Failed to restore the backup. Errorcode: %1 - + Error al restaurar la copia de seguridad. Código de error: %1 - + Backup of modlist created - + Copia de seguridad de la lista de mod creado @@ -2895,8 +2878,63 @@ Esta función adivinará el esquema de versiones bajo el supuesto de que la vers ModInfo - - + + Plugins + Plugins + + + + Textures + Texturas + + + + Meshes + Meshes + + + + UI Changes + UI Cambios + + + + Music + Music + + + + Sound Effects + Efectos de Sonido + + + + Scripts + Scripts + + + + SKSE Plugins + SKSE Plugins + + + + SkyProc Tools + SkyProc Tools + + + + Strings + Strings + + + + invalid content type %1 + tipo de contenido inválido %1 + + + + invalid index %1 indice invalido %1 @@ -2904,7 +2942,7 @@ Esta función adivinará el esquema de versiones bajo el supuesto de que la vers ModInfoBackup - + This is the backup of a mod Esta es la copia de seguridad de un mod @@ -2945,7 +2983,7 @@ Esta función adivinará el esquema de versiones bajo el supuesto de que la vers Ini Files - + Archivos Ini @@ -2960,17 +2998,17 @@ Esta función adivinará el esquema de versiones bajo el supuesto de que la vers Ini Tweaks - + Ini Tweaks This is a list of ini tweaks (ini modifications that can be toggled). - + Esta es una lista de ajustes ini (modificaciones INI que pueden activarse). This is a list of ini tweaks. Ini Tweaks are (usually small) fragments of ini files that are applied over existing settings in skyrim.ini/skyrimprefs.ini. Each tweak can be toggled individually. You should check the description of the mod wether the tweaks are really optional. - + Esta es una lista de ajustes ini. los ajustes Ini son (generalmente pequeños) fragmentos de archivos ini que se aplican sobre los valores existentes en el skyrim.ini/skyrimprefs.ini. Cada truco se puede activar de forma individual. Debes comprobar la descripción del mod los ajustes son opcionales. @@ -3120,7 +3158,7 @@ La mayoría de los mods no tienen esps opcionales, por lo que es muy probable qu <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Mod ID for this mod on Nexus. This is filled in automatically if you downloaded and installed the mod from inside MO. Otherwise you can enter it manually. To find the correct id, find the mod on nexus. The URL will look like this: </span><a href=" http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://skyrim.nexusmods.com/downloads/file.php?id=1334</span></a><a href="http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" font-size:8pt; color:#000000;">. In this example, 1334 is the id you're looking for. Besides: The above is the link to Mod Organizer on the Nexus. Why not go there now and endorse?</span></a></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -3133,7 +3171,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Installed Version of the Mod. The tooltip will contain the current version available on nexus. The installed version is only set if you installed the mod through MO.</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -3149,12 +3187,12 @@ p, li { white-space: pre-wrap; } Refresh - Recargar + Refrescar Refresh all information from Nexus. - Recargar toda la información de Nexus. + Refrescar toda la información de Nexus. @@ -3166,7 +3204,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><br /></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -3187,7 +3225,7 @@ p, li { white-space: pre-wrap; } Filetree - Contenido + Árbol de archivo @@ -3199,14 +3237,14 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a modifiable directory view of the mod directory. You can move around files using drag &amp; drop and rename them (double click).</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Changes happen immediately on disc, so do</span><span style=" font-size:8pt; font-weight:600;"> be careful</span><span style=" font-size:8pt;">.</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } +p, li { espacio blanco: pre envoltura; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a modifiable directory view of the mod directory. You can move around files using drag &amp; drop and rename them (double click).</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Esta es una vista de directorio modificable del directorio mod. Puedes moverte por archivos mediante arrastrar y soltar; y cambiar su nombre con (doble clic).</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Los cambios pasan inmediatamente sobre el disco, también hacen</span><span style=" font-size:8pt; font-weight:600;"> ser cuidadoso</span><span style=" font-size:8pt;">.</span></p></body></html> @@ -3225,227 +3263,227 @@ p, li { white-space: pre-wrap; } Cerrar - + &Delete - &Delete + &Borrar - + &Rename - &Rename + &Renombrar - + &Hide &Ocultar - + &Unhide &Mostrar - + &Open &Abrir - + &New Folder &Nueva Carpeta - - + + Save changes? - ¿Guardar cambios? + Guardar cambios? - - + + Save changes to "%1"? - ¿Guardar cambios a %1? + Guardar cambios a %1? - + File Exists - Existe el fichero + Archivo Existe - + A file with that name exists, please enter a new one Un fichero con ese nombre ya existe, por favor selecciona otro nombre - + failed to move file Error al mover el fichero - + failed to create directory "optional" Error al crear el directorio "optional" - - + + Info requested, please wait Informacion solicitada, por favor espere - + Main Principal - + Update Actualizacion - + Optional Opcional - + Old Antiguo - + Misc Misc - + Unknown Desconocido - + Current Version: %1 Version actual: %1 - + No update available Sin actualizacion - + (description incomplete, please visit nexus) (descripción incompleta, por favor visite nexus) - + <a href="%1">Visit on Nexus</a> <a href="%1">Visite en Nexus</a> - + Failed to delete %1 Error borrando %1 - - + + Confirm Confirma - + Are sure you want to delete "%1"? Estas seguro de querer borrar "%1"? - + Are sure you want to delete the selected files? Etas seguro de querer borrar los ficheros seleccionados? - - + + New Folder Nueva Carpeta - + Failed to create "%1" Fallo al crear "%1" - - + + Replace file? ¿Reemplazar archivo? - + There already is a hidden version of this file. Replace it? Ya existe una versión oculta de este archivo. Reemplazarlo? - - + + File operation failed La operación de archivo falló. - - + + Failed to remove "%1". Maybe you lack the required file permissions? Fallo al eliminar "%1". Tal vez no tienes los permisos necesarios? - - + + failed to rename %1 to %2 Fallo al renombrar %1 a %2 - + There already is a visible version of this file. Replace it? Ya existe una versión visible de este archivo. ¿Reemplazarlo? - + Un-Hide Desocultar - + Hide Ocultar - + Name Nombre - + Please enter a name Por favor, introduzca un nombre - - + + Error Error - + Invalid name. Must be a valid file name Nombre no válido. Debe ser un nombre de archivo válido - + A tweak by that name exists Existe un ajuste con ese nombre - + Create Tweak Crear Ajuste Fino @@ -3453,15 +3491,15 @@ p, li { white-space: pre-wrap; } ModInfoForeign - + This pseudo mod represents content managed outside MO. It isn't modified by MO. - + Esta seudo mod representa contenido administrado fuera MO. No se modifica por MO. ModInfoOverwrite - + This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit) Esta pseudo-mod contiene archivos en el árbol de datos virtual que fue modificado (es decir, mediante el kit de construcción) @@ -3469,18 +3507,18 @@ p, li { white-space: pre-wrap; } ModInfoRegular - - + + failed to write %1/meta.ini: error %2 - fallo al escribir %1/meta.ini: %2 + error al escribir %1/meta.ini: error %2 - + %1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory %1 no contiene ningún esp/esm y ningún directorio activo (textures, meshes, interface, ...) - + Categories: <br> Categorias: <br> @@ -3490,52 +3528,52 @@ p, li { white-space: pre-wrap; } Game plugins (esp/esm) - + Plugins de Juego (esp/esm) Interface - + Interfaz Meshes - + Meshes Music - + Music Scripts (Papyrus) - + Scripts (Papyrus) Script Extender Plugin - + Script Extender Plugin SkyProc Patcher - + SkyProc Patcher Sound - + Sound Strings - + Strings Textures - + Texturas @@ -3580,7 +3618,7 @@ p, li { white-space: pre-wrap; } Non-MO - + Non-MO @@ -3590,7 +3628,6 @@ p, li { white-space: pre-wrap; } installed version: "%1", newest version: "%2" - installed version: %1, newest version: %2 version instalada: "%1", nueva version: "%2" @@ -3631,7 +3668,7 @@ p, li { white-space: pre-wrap; } Content - Contenido + Contenido @@ -3702,7 +3739,7 @@ p, li { white-space: pre-wrap; } Depicts the content of the mod:<br><img src=":/MO/gui/content/plugin" width=32/>Game plugins (esp/esm)<br><img src=":/MO/gui/content/interface" width=32/>interface<br><img src=":/MO/gui/content/mesh" width=32/>Meshes<br><img src=":/MO/gui/content/texture" width=32/>Textures<br><img src=":/MO/gui/content/sound" width=32/>Sounds<br><img src=":/MO/gui/content/music" width=32/>Music<br><img src=":/MO/gui/content/string" width=32/>Strings<br><img src=":/MO/gui/content/script" width=32/>Scripts (Papyrus)<br><img src=":/MO/gui/content/skse" width=32/>Script Extender plugins<br><img src=":/MO/gui/content/skyproc" width=32/>SkyProc Patcher<br> - + Representa el contenido del mod:<br><img src=":/MO/gui/content/plugin" width=32/>Game plugins (esp/esm)<br><img src=":/MO/gui/content/interface" width=32/>interface<br><img src=":/MO/gui/content/mesh" width=32/>Meshes<br><img src=":/MO/gui/content/texture" width=32/>Textures<br><img src=":/MO/gui/content/sound" width=32/>Sounds<br><img src=":/MO/gui/content/music" width=32/>Music<br><img src=":/MO/gui/content/string" width=32/>Strings<br><img src=":/MO/gui/content/script" width=32/>Scripts (Papyrus)<br><img src=":/MO/gui/content/skse" width=32/>Script Extender plugins<br><img src=":/MO/gui/content/skyproc" width=32/>SkyProc Patcher<br> @@ -3739,22 +3776,22 @@ p, li { white-space: pre-wrap; } NXMAccessManager - + Logging into Nexus Inicio de sesión en Nexus - + timeout Tiempo de espera - + Unknown error - + Error desconocido - + Please check your password Por favor introduzca su contraseña @@ -3812,7 +3849,7 @@ p, li { white-space: pre-wrap; } %1 not found - %1 no encontrado + %1 no encontrado @@ -3850,114 +3887,114 @@ p, li { white-space: pre-wrap; } PluginList - + Name Nombre - + Priority Prioridad - + Mod Index Índice de Mod - + Flags Banderas - - + + unknown Desconocido - + Name of your mods Nombre de tus mods - + Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority. Prioridad de carga de tu mod. Cuanto mayor sea, más "importante" es y por lo tanto sobrescribe los datos del plugins con menor prioridad. - + The modindex determins the formids of objects originating from this mods. El índice de mod determins la forma ids de objetos que provienen de este mods. - + failed to update esp info for file %1 (source id: %2), error: %3 fallo al actualizar información del esp del archivo %1 (fuente id: %2), error: %3 - + esp not found: %1 ESP no encontrado: %1 - - + + Confirm Confirmar - + Really enable all plugins? ¿Realmente habilitar todos los plugins? - + Really disable all plugins? ¿Realmente deshabilitar todos los plugins? - + The file containing locked plugin indices is broken El fichero que contiene los índices del plugin están bloqueados o rotos - + Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them. Algunos de los plugins tienen nombres no válidos! Estos plugins no pueden ser cargados por el juego. Por favor, consulte mo_interface.log para ver una lista de plugins afectados y cambiarles el nombre. - <b>Origin</b>: %1 - + This plugin can't be disabled (enforced by the game) + Este plugin no se puede desactivar (impuesto por el juego) + <b>Origin</b>: %1 + <b>Origen</b>: %1 + + + Author Autor - + Description Descripcion - - This plugin can't be disabled (enforced by the game) - Este plugin no se puede desactivar (impuesto por el juego) - - - + Missing Masters Maestros Desaparecidos - + Enabled Masters Activar Maestros - + failed to restore load order for %1 fallo al restaurar el orden de carga %1 @@ -3987,7 +4024,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -4042,7 +4079,7 @@ p, li { white-space: pre-wrap; } "%1" is missing or inaccessible - + "%1" no se encuentra o inaccesible @@ -4135,7 +4172,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This is the list of profiles. Each Profile contains its own list and installation order of enabled mods (from a shared pool), a configuration of enabled esps/esms, a copy of the games ini-file and an optional savegame filter.</p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Note</span> For technical reasons it's currently not possible to have seperate load-orders for esps. This means you can't load moda.esp before modb.esp in one profile and the other way around in another.</p></body></html> @@ -4168,7 +4205,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The games Oblivion, Fallout 3 and Fallout NV contain a bug which prevents texture and mesh replacers (that is: all modifications to meshes and textures already in game) from working.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The Mod Organizer uses a workaround called &quot;BSA redirection&quot; (google is your friend) to fix this issue reliably and without further work. Simply activate and forget.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> @@ -4469,62 +4506,62 @@ p, li { white-space: pre-wrap; } Fallo al configurar la carga por proxy-dll - + Permissions required Se requieren permisos - + The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights. La cuenta de usuario actual no tiene los permisos de acceso requeridos para ejecutar Mod Organizer. Los cambios necesarios se pueden hacer de forma automática (el directorio MO hará escritura para la cuenta de usuario actual). Se le pedirá ejecutar "helper.exe" con derechos administrativos. - - + + Woops Woops - + ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file (%1) to sherb@gmx.net, the bug is a lot more likely to be fixed. Please include a short description of what you were doing when the crash happened ¡ModOrganizer se ha estrellado! ¿Se debe crear un archivo de diagnóstico? Si me envía el fichero (%1) a sherb@gmx.net, el error es mucho más probable que se arregle. Por favor, incluya una breve descripción de lo que estaba haciendo cuando ocurrió el accidente - + ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1 ¡ModOrganizer se ha estrellado! Lamentablemente no fue capaz de escribir un archivo de diagnóstico: %1 - + Mod Organizer Mod Organizer - + An instance of Mod Organizer is already running Ya se está ejecutando una instancia de Mod Organizer - + No game identified in "%1". The directory is required to contain the game binary and its launcher. Juego no identificado en "%1". Se requiere que el directorio contenga el binario del juego y su lanzador. - - + + Please select the game to manage Por favor seleccione el juego - + Please select the game edition you have (MO can't start the game correctly if this is set incorrectly!) Por favor selecciona la edición del juego que tienes (MO no puede iniciar el juego correctamente si esto está mal ajustado!) - + failed to start application: %1 - + Error al iniciar la aplicación: %1 @@ -4532,28 +4569,28 @@ p, li { white-space: pre-wrap; } Por favor utilice "Ayuda" en la barra superior para obtener informacion sobre todos los elementos - - + + <Manage...> - <Definir...> + <Gestionar...> - + failed to parse profile %1: %2 no se pudo analizar el perfil %1: %2 - + failed to find "%1" fallo al encontrar %1 - + failed to access %1 Fallo al acceder %1 - + failed to set file time %1 Fallo al definir la hora al fihcero %1 @@ -4565,8 +4602,7 @@ p, li { white-space: pre-wrap; } "%1" is missing or inaccessible - "%1" is missing - + "%1" no se encuentra o inaccesible @@ -4579,6 +4615,11 @@ p, li { white-space: pre-wrap; } Error Error + + + failed to open temporary file + Fallo al abrir el archivo temporal + @@ -4602,17 +4643,17 @@ p, li { white-space: pre-wrap; } Proxy DLL - + failed to spawn "%1" Fallo al crear "%1" - + Elevation required Elevación requerida - + This process requires elevation to run. This is a potential security risk so I highly advice you to investigate if "%1" @@ -4627,30 +4668,25 @@ puede ser instalado para trabajar sin elevación. ¿Comenzar elevación de todos modos? (se le preguntará si desea permitir a Mod Organizer.exe realizar cambios en el sistema) - + failed to spawn "%1": %2 Fallo al crear "%1": %2 - + "%1" doesn't exist "%1" no existe - + failed to inject dll into "%1": %2 Fallo al injectar la dll en "%1": %2 - + failed to run "%1" Fallo al abrir %1 - - - failed to open temporary file - Fallo al abrir el archivo temporal - QueryOverwriteDialog @@ -4868,12 +4904,12 @@ puede ser instalado para trabajar sin elevación. Failed - Fallo + Error Sorry, failed to start the helper application - + Lo sentimos, no se pudo iniciar la aplicación auxiliar @@ -4919,7 +4955,7 @@ puede ser instalado para trabajar sin elevación. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The display language. This will only displaye languages for which you have a translation installed.</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -5013,27 +5049,27 @@ p, li { white-space: pre-wrap; } User interface - + Interfaz de usuario If checked, the download interface will be more compact. - + Si se marca, la interfaz de descarga será más compacto. Compact Download Interface - + Interfaz de Descarga Compacto If checked, the download list will display meta information instead of file names. - + Si se selecciona, la lista de descargas mostrará la información de metadatos en lugar de nombres de archivo. Download Meta Information - + Descarga Información Meta @@ -5077,7 +5113,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Allows automatic log-in when the Nexus-Page for the game is clicked. Please note that the obfuscation with which the password is stored in modorganizer.ini is not very strong. If you're worried someone might steal your password, don't store it here.</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -5205,7 +5241,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The Steam App ID is required to directly start some games. For Skyrim, if this is not set or wrong, the &quot;Mod Organizer&quot; load mechanism may not work properly.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The preset for this is the App ID of the &quot;regular&quot; version so in most cases, you should be set.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you think you have a different version (GotY or something), follow these steps to get to the id:</span></p> @@ -5243,7 +5279,7 @@ p, li { white-space: pre-wrap; } There are several means to do this: *Mod Organizer* (default) In this mode the Mod Organizer itself injects the dll. The disadvantage is that you always have to start the game through MO or a link created by it. *Script Extender* In this mode, MO is installed as a Script Extender (obse, fose, nvse, skse) plugin. -*Proxy DLL* In this mode, MO replaces one of the game's dlls with one that loads MO (and the original dll of course). This will ONLY work with Steam games and it has only been tested with Skyrim. Please use this only if the other mechanisms don't work. +*Proxy DLL* In this mode, MO replaces one of the game's dlls with one that loads MO (and the original dll of course). This will ONLY work with Steam games and it has only been tested with Skyrim. Please use this only if the other mechanisms don't work. If you use the Steam version of Oblivion the default will NOT work. In this case, please install obse and use "Script Extender" as the load mechanism. Also you can then not start Oblivion from MO. Instead, use MO only to set up your mods, then quit and start Oblivion through Steam. Mod Organizer necesita una dll que se inyecta en el juego para que todos los mods sean visibles a ella. @@ -5267,8 +5303,8 @@ Si utilizas la versión Steam de Oblivion por defecto NO funcionará. En este ca Mod Organizer uses an API provided by the Nexus to provide features like checking for updates and downloading files. Unfortunately this API has not been made available officially to third party tools like MO so we have to impersonate the Nexus Mod Manager to be allowed in. -On top of this Nexus has used the client identification to lock out outdated versions of NMM to force users to update. This means that MO also needs to impersonate the new version of NMM even if MO doesn't need an update. Therefore you can configure the version to identify as here. -Please note that MO does identify itself as MO to the webserver, it's not lying about what it is. It is merely adding a "compatible" NMM version to the user agent. +On top of this Nexus has used the client identification to lock out outdated versions of NMM to force users to update. This means that MO also needs to impersonate the new version of NMM even if MO doesn't need an update. Therefore you can configure the version to identify as here. +Please note that MO does identify itself as MO to the webserver, it's not lying about what it is. It is merely adding a "compatible" NMM version to the user agent. tl;dr-version: If Nexus-features don't work, insert the current version number of NMM here and try again. Mod Organizer utiliza una API proporcionada por Nexus para proporcionar características como la comprobación de actualizaciones y descarga de archivos. Por desgracia, esta API no ha sido puesta a disposición oficialmente a terceros, como MO por lo que tenemos que pasar por el Nexus Mod Manager para ser permitido. @@ -5284,7 +5320,7 @@ tl;dr-version: Si Nexus-features no funciona, introduzca el número de la versi - It seems that the Games occasionally load ESP or ESM files even if they haven't been activated as plugins. + It seems that the Games occasionally load ESP or ESM files even if they haven't been activated as plugins. I don't yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded. Parece que los juegos ocasionalmente cargan archivos ESP o ESM, incluso si ellos todavía no se ha activado como plugins. No, pero sabe cuáles son las circunstancias, pero informes de usuario implican en algunos casos no deseados. Si esto se comprueba, ESPs ESMs no marcadas en la lista son invisibles para el juego y no se pueden cargar. @@ -5314,20 +5350,23 @@ Desactiva esta opción si deseas utilizar Mod Organizer con conversiones totales Disable this to no longer display mods installed outside MO in the mod list (left pane). Assets from those mods will then be treated as having lowest mod priority together with the original game content. - + Desactiva esto para más no mostrar mods instalado fuera de MO en la lista de mod (panel izquierdo). El activo de esos mods entonces serán tratados como si tuvieran prioridad más baja junto con el contenido original del juego. By default Mod Organizer will display esp+bsa bundles installed with foreign tools as mods (left pane). This allows you to control their priority in relation to other mods. This is particularly useful if you also use Steam Workshop to install mods. -However, if you installed loose file mods outside MO which conflict with BSAs also installed outside MO those conflicts can't be resolved correctly. +However, if you installed loose file mods outside MO which conflict with BSAs also installed outside MO those conflicts can't be resolved correctly. If you disable this feature, MO will only display official DLCs this way. Please note that plugins (esps and esms) displayed in the right pane are completely unaffected by this feature. - + Por defecto Mod Organizer mostrará esp+bsa instalados con herramientas extranjeras como mods (panel izquierdo). Esto le permite controlar su prioridad en relación con otros mods. Esto es particularmente útil si también usas Steam Workshop para instalar mods. +Sin embargo, si has instalado mods de archivos sueltos fuera de MO que están en conflicto con BSA también instalara fuera de MO esos conflictos no se pueden resolver correctamente. + +i se desactiva esta función, MO sólo mostrará DLCs oficiales de esta manera. Tenga en cuenta que los plugins (ESP y ESM) que aparecen en el panel derecho seran completamente afectado por esta característica. Display mods installed outside MO - + Mostrar mods instalados fuera MO @@ -5422,7 +5461,7 @@ Para el resto de los juegos no es un sustituto suficiente para AI failed to communicate with running instance: %1 - Error al conectarse a la instancia en ejecución: %1 + Error al comunicarse con instancia en ejecución: %1 @@ -5585,4 +5624,4 @@ C:\Documents and Settings[UserName]\My Documents\My Games\Skyrim\Saves Mover todas las partidas guardadas "%1" para la localización global? Tenga en cuenta que esto se hace un lío con el número consecutivo de juegos salvados. - + \ No newline at end of file diff --git a/src/organizer_fr.ts b/src/organizer_fr.ts index 9e5af1af..004499e8 100644 --- a/src/organizer_fr.ts +++ b/src/organizer_fr.ts @@ -1,48 +1,46 @@ - - - + AboutDialog About - + A propros Revision: - + Révision : Used Software - + Logiciel utilisé Credits - + Crédits Translators - + Traducteurs Others - + Autres Close - Fermer + Fermer No license - + Pas de license @@ -62,7 +60,7 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a list of esps and esms that were active when the save game was created.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">For each esp, the right column contains the mod (or mods) that can be enabled to make the missing esps/esms available.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> @@ -159,22 +157,22 @@ Si un composant est nommée "00 Core"; il est habituellement nécessai Some Page - + Quelques pages Search - + Rechercher new - + nouveau failed to start download - + échec du lancement du téléchargement @@ -225,7 +223,7 @@ Si un composant est nommée "00 Core"; il est habituellement nécessai <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">You can match one or multiple nexus categories to a internal ID. Whenever you download a mod from a Nexus Page, Mod Organizer will try to resolve the category defined on the Nexus to one available in MO.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">To find out a category id used by the nexus, visit the categories list of the nexus page and hover over the links there.</span></p></body></html> @@ -296,7 +294,7 @@ p, li { white-space: pre-wrap; } failed to read bsa: %1 - Échec de lecture bsa: %1 + échec de lecture du bsa: %1 @@ -314,7 +312,7 @@ p, li { white-space: pre-wrap; } Done - Terminé + Terminé @@ -324,7 +322,7 @@ p, li { white-space: pre-wrap; } pending download - + téléchargement en attente @@ -333,7 +331,7 @@ p, li { white-space: pre-wrap; } Placeholder - substitut + *Substitut* @@ -367,7 +365,7 @@ p, li { white-space: pre-wrap; } Placeholder - *substitut* + *Substitut* @@ -380,17 +378,17 @@ p, li { white-space: pre-wrap; } < mod %1 file %2 > - + < mod %1 file %2 > Pending - + En attente Paused - En pause + En pause @@ -458,17 +456,17 @@ p, li { white-space: pre-wrap; } Delete - Supprimer + Supprimer Un-Hide - + Montrer Remove from View - Enlever de la liste + Cacher de la liste @@ -493,7 +491,7 @@ p, li { white-space: pre-wrap; } Delete Installed... - Supprimer ceux installés... + Supprimer ceux installés... @@ -516,12 +514,12 @@ p, li { white-space: pre-wrap; } < mod %1 file %2 > - + < mod %1 file %2 > Pending - + En attente @@ -539,7 +537,7 @@ p, li { white-space: pre-wrap; } Are you sure? - Êtes-vous certain? + Êtes-vous certain ? @@ -574,17 +572,17 @@ p, li { white-space: pre-wrap; } Delete - Supprimer + Supprimer Un-Hide - + Montrer Remove from View - Enlever de la liste + Cacher de la liste @@ -619,12 +617,12 @@ p, li { white-space: pre-wrap; } Remove Installed... - Enlever de la liste ceux installés... + Enlever ceux installés de la liste ... Remove All... - Enlever tout de la liste... + Tour enlever de la liste... @@ -632,12 +630,12 @@ p, li { white-space: pre-wrap; } failed to rename "%1" to "%2" - Impossible de renommer "%1" en "%2" + impossible de renommer "%1" en "%2" Memory allocation error (in refreshing directory). - + Erreur d'allocation de la mémoire (dans le répertoire d'actualisation). @@ -652,17 +650,17 @@ p, li { white-space: pre-wrap; } failed to download %1: could not open output file: %2 - impossible de télécharger %1: impossible d'écrire le fichier: %2 + impossible de télécharger %1: l'écriture sur le fichier à échouée : %2 Wrong Game - + Jeu incorrect The download link is for a mod for "%1" but this instance of MO has been set up for "%2". - + Le lien de téléchargement est pour un mod pour "%1", mais cette instance de MO à été installée pour "%2". @@ -707,7 +705,7 @@ p, li { white-space: pre-wrap; } No known download urls. Sorry, this download can't be resumed. - + Aucune adresse de téléchargement connue. Désolé, ce téléchargement ne peut être repris. @@ -722,42 +720,42 @@ p, li { white-space: pre-wrap; } Main - Principal + Principal Update - + Mise à jour Optional - Optionnel + Optionnel Old - Ancien + Obsolète Misc - Divers + Divers Unknown - Inconnu + Inconnu Memory allocation error (in processing progress event). - + Erreur d'allocation de la mémoire (lors du traitement de la progression événementielle). Memory allocation error (in processing downloaded data). - + Erreur d'allocation de la mémoire (lors du traitement des données de téléchargement). @@ -783,12 +781,12 @@ p, li { white-space: pre-wrap; } Failed to request file info from nexus: %1 - Impossible de demander l'info du fichier sur Nexus: %1 + Impossible de demander l'information du fichier sur Nexus: %1 Download failed. Server reported: %1 - + Téléchargement échoué : rapport du serveur : %1 @@ -943,7 +941,7 @@ Actuellement le seul cas à ma connaissance ou ceci est nécessaire est le Creat Close - Fermer + Fermer @@ -953,7 +951,7 @@ Actuellement le seul cas à ma connaissance ou ceci est nécessaire est le Creat Executable (%1) - Executable (%1) + Exécutable (%1) @@ -989,13 +987,13 @@ Actuellement le seul cas à ma connaissance ou ceci est nécessaire est le Creat Save Changes? - + Enregistrer les changements ? You made changes to the current executable, do you want to save them? - + Vous avez appliqué des modifications aux exécutables courants, voulez vous les enregistrer ? @@ -1013,19 +1011,19 @@ Actuellement le seul cas à ma connaissance ou ceci est nécessaire est le Creat Find what: - Rechercher: + Rechercher : Search term - Expression à rechercher + Terme à rechercher Find next occurence from current file position. - Rechercher le suivant à partir de l'emplacement présent. + Rechercher l’occurrence suivante à partir de l'emplacement présent. @@ -1135,7 +1133,7 @@ Actuellement le seul cas à ma connaissance ou ceci est nécessaire est le Creat <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This displays the content of the archive. &lt;data&gt; represents the base directory which will map to the game's data directory. You can change the base directory via the right-click context menu and you can move around files via drag&amp;drop</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -1146,7 +1144,7 @@ p, li { white-space: pre-wrap; } Placeholder - *substitut* + *Substitut* @@ -1179,87 +1177,87 @@ p, li { white-space: pre-wrap; } - + Extracting files Extraction des fichiers - + failed to create backup - Impossible de créer une sauvegarde + Impossible de créer une sauvegarde de backup - + Mod Name Nom du mod - + Name Nom - + Invalid name Nom incorrect - + The name you entered is invalid, please enter a different one. Le nom que vous avez entré est invalide, essayez-en un autre SVP. - + File format "%1" not supported Format de fichier "%1" non supporté - + None of the available installer plugins were able to handle that archive Aucun des plugins installés n'arrive à traiter cette 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 @@ -1319,27 +1317,27 @@ p, li { white-space: pre-wrap; } Click blank area to deselect - + Cliquer sur une zone blanche pour désélectionner If checked, only mods that match all selected categories are displayed. - + Si coché, seul les mods correspondants à toutes les catégories sélectionnées sont affichés. And - + Et If checked, all mods that match at least one of the selected categories are displayed. - + Si coché, tout les mods correspondants à au moins une des catégories sélectionnées sont affichés. Or - + Ou @@ -1356,7 +1354,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Create profiles here. Each profile contains its own list of active mods and esps. This way you can quickly switch between setups for different play throughs.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Please note that right now your esp load order is not kept seperate for different profiles.</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -1366,6 +1364,11 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Créez les profils ici. Chaque profil contient sa propre liste de mods et d'ESPs activés. Vous pouvez ainsi basculer rapidement entre les configurations pour différentes parties.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Veuillez noter que pour l'instant, l'ordre de chargement des ESPs est commun à tous les profils.</span></p></body></html> + + + Open list options... + Ouvre les options de liste... + Refresh list. This is usually not necessary unless you modified data outside the program. @@ -1375,13 +1378,13 @@ p, li { white-space: pre-wrap; } Restore Backup... - + Restaurer Sauvegarde Create Backup - + Créer Sauvegarde @@ -1425,7 +1428,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Choose the program to run. Once you start using ModOrganizer, you should always run your game and tools from here or through shortcuts created here, otherwise mods installed through MO will not be visible.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">You can add new Tools to this list, but I can't promise tools I haven't tested will work.</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -1445,7 +1448,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Run the selected program with ModOrganizer enabled.</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -1468,7 +1471,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This creates a start menu shortcut that directly starts the selected program with the MO active.</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -1484,7 +1487,12 @@ p, li { white-space: pre-wrap; } Plugins - + Plugins + + + + Sort + Ordonner @@ -1496,7 +1504,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This list contains the esps and esms contained in the active mods. These require their own load order. Use drag&amp;drop to modify this load order. Please note that MO will only save the load order for mods that are active/checked.<br />There is a great tool named &quot;BOSS&quot; to automatically sort these files.</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -1504,35 +1512,25 @@ p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Cette liste contient tous les ESPs et ESMs contenus dans les mods actifs. Ceux-ci requièrent leur propre ordre de chargement. Utilisez le glisser-déposer pour modifier cet ordre. Veuillez noter que MO enregistre l'ordre de chargement seulement pour les mods actif/cochés.<br />Il y a un excellent outil nommé &quot;BOSS&quot; qui classe automatiquement ces fichiers.</span></p></body></html> - - - Sort - - - - - Open list options... - - Archives - + Archives <html><head/><body><p>BSAs are bundles of game assets (textures, scripts, ...). By default, the engine loads these bundles in a separate step from loose files. MO can manage those archives to align their load order with that of loose files:</p><p>If archives are <span style=" font-weight:600;">managed</span>, their load order is specified by the priority of the corresponding mod (left pane), the same as the loose files. You can manually enable any BSA that has no corresponding plugin active.<br/></p><p>If archives are <span style=" font-weight:600;">not managed</span> their load order is specified by the priority of the corresponding plugin (right pane, plugins tab). You can then not manually enable BSAs where the plugin isn't active.</p><p>In either case you can not disable archives if there is a matching plugin, the game will load them no matter what.</p></body></html> - + <html><head/><body><p>Have MO manage archives (<a href="#"><span style=" text-decoration: underline; color:#0000ff;">read more</span></a>)</p></body></html> - + List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order. - + Liste des Besthesda Softworks Archives. Les archives non cochées ici ne sont pas gérées par MO et ignorent l’ordre d'installation. @@ -1540,226 +1538,223 @@ p, li { white-space: pre-wrap; } By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored! BSAs checked here are loaded in such a way that your installation order is obeyed properly. - + Les fichiers BSA sont des archives (comparables aux fichiers .zip) qui contiennent les données de ressource (meshes, textures,...) qui sont utilisées par le jeu. Ainsi, ils sont en "compétition" avec les fichiers "lâches" -non compressés- dans votre répertoire DATA. +Par défaut, les BSAs qui partagent leur nom de base avec un ESP actif (ex : plugin.esp et plugin.bsa) sont automatiquement chargés et ont la précédence sur tout les fichiers lâches; l'ordre d'installation que vous établissez sur la partie gauche est alors ignoré ! + +Les BSAs cochés ici sont chargés d'une telle manière que votre ordre d'installation est correctement respecté. File - Fichier + Fichier Data - DATA + Data refresh data-directory overview - Actualiser la vue d'ensemble du dossier DATA + actualiser la vue d’ensemble du répertoire data Refresh the overview. This may take a moment. - Actualiser la vue d'ensemble. Ceci peut demander un moment. + Actualiser la vue d'ensemble. Ceci peut prendre un moment. - - + + Refresh - Actualiser + Actualiser This is an overview of your data directory as visible to the game (and tools). - Ceci est une vue d'ensemble du dossier DATA tel qu'il apparaît pour le jeu (et les outils). + Ceci est une vue d’ensemble du répertoire Data, tel qu'il apparaît à votre jeu (et outils) lancés dans MO. Mod - Mod + Mod Filter the above list so that only conflicts are displayed. - Filtrer la liste ci-dessus pour afficher seulement les conflits. + Filtrer la liste ci-dessus afin que seuls les conflits soient affichés. Show only conflicts - Afficher seulement les conflits + Uniquement afficher les conflits Saves - Sauvegardes + Sauvegardes <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a list of all savegames for this game. Hover over a list entry to get detailed information about the save including a list of esps/esms that were used at the time this save was created but aren't active now.</span></p> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a list of all savegames for this game. Hover over a list entry to get detailed information about the save including a list of esps/esms that were used at the time this save was created but aren't active now.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you click &quot;Fix Mods...&quot; in the context menu, MO will try to activate all mods and esps to fix those missing esps. It will not disable anything!</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Ceci est une liste de toutes les parties sauvegardées pour ce jeu. Survolez une entrée de la liste pour obtenir des informations détaillées sur la sauvegarde, incluant une liste de tous les ESPs/EMSs utilisés lors de la sauvegarde mais actuellement désactivés ou absents.</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Si vous cliquez &quot;Réparer Mods...&quot; dans le menu contextuel, MO tentera d'activer tous les mods, ESPs et ESMs nécessaires pour résoudre le problème. Rien ne sera désactivé!</span></p></body></html> + Downloads - Téléchargements + Téléchargements This is a list of mods you downloaded from Nexus. Double click one to install it. - Ceci est une liste de mods que vous avez téléchargé de Nexus. Double-cliquez en un pour l'installer. + Ceci est une liste de mods que vous avez téléchargé depuis de Nexus. Double-clic sur un mod pour l'installer. Show Hidden - + Montrer les éléments cachés Tool Bar - Barre d'outils + Barre d'outil Install Mod - Installer mod + Installer le Mod Install &Mod - Installer &mod + Installer &Mod Install a new mod from an archive - Installer un nouveau mod à partir d'une archive + Installe un nouveau mod depuis une archive Ctrl+M - Ctrl+M + Ctrl+M Profiles - Profils + Profils &Profiles - &Profils + &Profils Configure Profiles - Configurer les profils + Configurer les Profils Ctrl+P - Ctrl+P + Ctrl+P Executables - Programmes + Exécutables &Executables - Programm&es + &Exécutables Configure the executables that can be started through Mod Organizer - Configure les programmes pouvant être lancés via Mod Organizer + Configure les exécutables qui peuvent êtres lancés à travers Mod Organizer Ctrl+E - Ctrl+E + Ctrl+E Tools - + Outils &Tools - + &Outils Ctrl+I - Ctrl+H + Ctrl+I Settings - Réglages + Paramètres &Settings - Réglage&s + &Paramètres Configure settings and workarounds - Configurer les réglages et solutions de rechange + Configure les paramètres et solutions alternatives Ctrl+S - Ctrl+S + Ctrl+S Nexus - Nexus + Nexus Search nexus network for more mods - Effectuer une recherche sur Nexus pour plus de mods + Recherche sur le réseau nexus pour plus de mods Ctrl+N - Ctrl+N + Ctrl+N - + Update Mise-à-jour Mod Organizer is up-to-date - Mod Organizer est à jour + Mod Organizer est à jour. No Problems - + Aucun problèmes @@ -1767,1101 +1762,1107 @@ p, li { white-space: pre-wrap; } !Work in progress! Right now this has very limited functionality - + Ce bouton apparaît en surbrillance si MO découvre des problèmes potentiels avec votre configuration et offre une aide pour les résoudre. +!Work in progress! +Actuellement une fonctionnalité encore très limitée. Help - Aide + Aide Ctrl+H - Ctrl+H + Ctrl+H Endorse MO - + Recommander MO - + Endorse Mod Organizer - + Recommander Mod Organizer Copy Log to Clipboard - + Copier les Logs dans le Presse-papier Ctrl+C - + Ctrl+C Toolbar - Barre d'outils + Barre d'outil Desktop - + Bureau Start Menu - + Menu démarrer Problems - + Problèmes There are potential problems with your setup - + Il y a des problèmes potentiels dans votre configuration Everything seems to be in order - + Tout semble en ordre Help on UI - + Aide sur l'interface Documentation Wiki - + Wiki de Documentation Report Issue - + Reporter un problème Tutorials - + Tutoriels About - + A propos About Qt - + A propos de Qt failed to save load order: %1 - impossible d'enregistrer l'ordre de chargement: %1 + Échec de l'enregistrement de l’ordre de chargement : %1 Name - Nom + Nom Please enter a name for the new profile - Veuillez inscrire un nom pour le nouveau profil + Veuillez entrer un nom pour le nouveau profil failed to create profile: %1 - impossible de créer le profil: %1 + création de profil échouée : %1 Show tutorial? - + Afficher le tutoriel ? 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. - + Vous lancez Mod Organizer pour la première fois. Voulez-vous afficher un tutoriel concernant ses fonctionnalité élémentaires ? Si vous choisissez non, vous pouvez toujours démarrer le tutoriel depuis le menu "Aide". Downloads in progress - Téléchargements en cours + Téléchargement 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? + Il y a toujours des téléchargements en cours, voulez vous vraiment quitter ? failed to read savegame: %1 - impossible de lire la sauvegarde: %1 + échec de lecture de la sauvegarde : %1 Plugin "%1" failed: %2 - + Le Plugin "%1" à échoué: %2 Plugin "%1" failed - + Le Plugin "%1" à échoué + + + + Download? + Télécharger ? + + + + A download has been started but no installed page plugin recognizes it. +If you download anyway no information (i.e. version) will be associated with the download. +Continue? + + + + + Browse Mod Page + Consulter la page-web du Mod failed to init plugin %1: %2 - + impossible d'initialiser le plugin %1: %2 Plugin error - + Erreur de plugin It appears the plugin "%1" failed to load last startup and caused MO to crash. Do you want to disable it? (Please note: If this is the first time you see this message for this plugin you may want to give it another try. The plugin may be able to recover from the problem) - + Il semble que le plugin "%1" n'a pas pu être chargé lors du démarrage précédent, provoquant un crash de MO. Voulez vous le désactiver ? +(Note : si il s'agit de la première fois que vous voyez ce message pour ce plugin, vous devriez tenter à nouveau l'opération. Le plugin pourrait cette fois être en mesure de corriger le problème). Failed to start "%1" - impossible de lancer "%1" + Échec du lancement de "%1" Waiting - Attente + Attente Please press OK once you're logged into steam. - Veuillez cliquer OK une fois connecté à steam. + Veuillez appuyer sur OK une fois connecté à Steam. + + + + Executable "%1" not found + Exécutable "%1" introuvable Start Steam? - + Démarrer Steam ? Steam is required to be running already to correctly start the game. Should MO try to start steam now? - + Steam doit être déjà démarré afin de correctement lancer le jeu. MO devrait-il essayer de lancer Steam maintenant ? - + Also in: <br> - + Aussi dans : <br> - + No conflict - Aucun conflit + Aucun conflit - + <Edit...> - <Modifier...> + <Editer...> - - This bsa is enabled in the ini file so it may be required! - + + Failed to refresh list of esps: %1 + Impossible d'actualiser la liste des esps : %1 - - Activating Network Proxy - + + This bsa is enabled in the ini file so it may be required! + Ce bsa étant activé dans le fichier ini, cela devrait être requis ! - - - Installation successful - Installation réussie + + Activating Network Proxy + Activation du Proxy de Réseau. - - - Configure Mod - Configurer mod + + + Failed to write settings + Échec de l'écriture des paramètres - - - 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? + + + An error occured trying to write back MO settings: %1 + Une erreur est survenue lors de la récupération des paramètres de MO : %1 - - - mod "%1" not found - "%1" introuvable + + File is write protected + Le fichier est protégé en écriture - - - Installation cancelled - + + Invalid file format (probably a bug) + Format de fichier invalide (probablement un bug) - - - The mod was not installed completely. - + + Unknown error %1 + Erreur inconnue %1 - + Some plugins could not be loaded - + Certains plugins n'ont pas pu être chargés - + Too many esps and esms enabled - + Trop d'esps et d'esms activés - - + + Description missing - + Description manquante - + The following plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version: - + Les plugins suivants n'ont pas pu être chargés. Cela peut être dû à des dépendances manquantes (ex : python) ou une version obsolète : - + The game doesn't allow more than 255 active plugins (including the official ones) to be loaded. You have to disable some unused plugins or merge some plugins into one. You can find a guide here: <a href="http://wiki.step-project.com/Guide:Merging_Plugins">http://wiki.step-project.com/Guide:Merging_Plugins</a> - + Le jeu n'autorise pas le plus de 255 plugins actifs (plugins officiels inclus) à être chargés. Vous devriez désactiver les plugins inusités ou fusionner certains plugins dans un seul. Vous pouvez trouver un guide ici : <a href="http://wiki.step-project.com/Guide:Merging_Plugins">http://wiki.step-project.com/Guide:Merging_Plugins</a> - + Choose Mod - Choisir mod + Choisissez un Mod - + Mod Archive - Archive de mod + Archive de Mod + + + + + Installation successful + Installation réussie - + + + Configure Mod + Configurer le Mod + + + + + This mod contains ini tweaks. Do you want to configure them now? + Ce mod contient des ini tweaks. Désirez-vous les configurer maintenant? + + + + + mod "%1" not found + mod "%1" introuvable + + + + + Installation cancelled + Installation annulée + + + + + The mod was not installed completely. + Le mod n'a pas été installé complètement + + + Start Tutorial? - + Démarrer le Tutoriel ? - + You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue? - + Vous allez commencer un tutoriel. Pour des raisons techniques, il n'est pas possible de quitter le tutoriel en cours de route. Continuer ? - - + + Download started - Téléchargement commencé + Le téléchargement vient de démarrer - + failed to update mod list: %1 - impossible de mettre à jour la liste de mods: %1 + échec lors de l'actualisation de la liste de Mod: %1 - + failed to spawn notepad.exe: %1 - impossible de lancer notepad.exe: %1 + impossible d'invoquer notepad.exe : %1 - + failed to open %1 - impossible d'ouvrir %1 + impossible d'ouvrir %1 - + failed to change origin name: %1 - impossible de changer le nom d'origine: %1 + impossible de changer le nom d'origine : %1 - - Executable "%1" not found - - - - - Failed to refresh list of esps: %1 - + + failed to move "%1" from mod "%2" to "%3": %4 + impossible de déplacer "%1" depuis le mod "%2" vers "%3" : %4 - - failed to move "%1" from mod "%2" to "%3": %4 - + + <Contains %1> + <Contient %1> - + <Checked> - <Cochés> + <Coché> - + <Unchecked> - <Décochés> + <Décoché> - + <Update> - <Rafraichir> + <Mise à jour disponible> - + + <Managed by MO> + <Géré par MO> + + + + <Managed outside MO> + <Géré à l’extérieur de MO> + + + <No category> - + <Sans catégorie> - + <Conflicted> - + <Conflits> - + <Not Endorsed> - + <Non Recommandé> - + failed to rename mod: %1 - impossible de renommer le mod: %1 + impossible de renommer le Mod: %1 - + Overwrite? - + Écraser ? - + This will replace the existing mod "%1". Continue? - + Cela va remplacer le Mod existant "%1". Continuer ? - + failed to remove mod "%1" - Impossible de supprimer %1 + Impossible de supprimer le Mod "%1" - - - + + + failed to rename "%1" to "%2" - Impossible de renommer %1 en %2 + Impossible de renommer "%1" en "%2" - + Multiple esps activated, please check that they don't conflict. - + Plusieurs esps activés, veuillez vérifier qu'ils n'entrent pas en conflit. - - - - + + + + Confirm - Confirmer + Confirmer - + Remove the following mods?<br><ul>%1</ul> - + Supprimer les Mods suivants?<br><ul>%1</ul> - + failed to remove mod: %1 - impossible de renommer le mod: %1 + Impossible de supprimer le Mod: %1 - - + + Failed - + Échec - + Installation file no longer exists - + Les fichiers d'installations n'existent plus - + Mods installed with old versions of MO can't be reinstalled in this way. - - - - - - You need to be logged in with Nexus to endorse - - - - - Are you sure you want to remove the following %n save(s)?<br><ul>%1</ul><br>Removed saves will be sent to the Recycle Bin. - - - - - - - - Delete %n save(s) - - - - + Les Mods installés avec une anciennes versions de MO ne peuvent être réinstaller de cette manière. - - Extract BSA - + + You need to be logged in with Nexus to resume a download + Vous devez être connecté à Nexus pour continuer le téléchargement - - - failed to read %1: %2 - Échec de lecture %1: %2 + + + You need to be logged in with Nexus to endorse + Vous devez être connecté à Nexus pour recommander un mod. - - This archive contains invalid hashes. Some files may be broken. - + + Failed to display overwrite dialog: %1 + Impossible d'afficher la boite de dialogue overwrite : %1 - + Nexus ID for this Mod is unknown - - - - - Download? - - - - - A download has been started but no installed page plugin recognizes it. -If you download anyway no information (i.e. version) will be associated with the download. -Continue? - - - - - Browse Mod Page - - - - - - Failed to write settings - - - - - - An error occured trying to write back MO settings: %1 - - - - - File is write protected - - - - - Invalid file format (probably a bug) - - - - - Unknown error %1 - - - - - <Managed by MO> - - - - - <Managed outside MO> - - - - - You need to be logged in with Nexus to resume a download - - - - - Failed to display overwrite dialog: %1 - + L'ID Nexus de ce Mod est inconnu - - + + Create Mod... - + Crée le Mod... - + This will move all files from overwrite into a new, regular mod. Please enter a name: - + Ceci va déplacer tout les fichiers présent dans Overwrite dans un nouveau mod ordinaire. +Veuillez nommer ce mod : - + A mod with this name already exists - + Un Mod avec ce nom existe déjà - + Continue? - + Continuer ? - + The versioning scheme decides which version is considered newer than another. This function will guess the versioning scheme under the assumption that the installed version is outdated. - + Le système de syntaxe de version décide quelle version est considérée plus récente qu'une autre. +Cette fonction va deviner quel système de version utiliser dans l'hypothèse que la version installée est obsolète. - - + + Sorry - + Désolé - + I don't know a versioning scheme where %1 is newer than %2. - + Je ne connait pas un système de version dans lequel %1 est plus récent que %2. - + Really enable all visible mods? - + Voulez vous vraiment activer tout les mods visibles ? - + Really disable all visible mods? - + Voulez vous vraiment désactiver tout les mods visibles ? - + Choose what to export - + Choisissez ce que vous voulez exporter - + Everything - + Tout - + All installed mods are included in the list - + Tous les Mods installés sont inclus dans cette liste - + Active Mods - Activer Mods + Mods actifs - + Only active (checked) mods from your current profile are included - + Seuls les mods actifs (cochés) de votre profil actif seront inclus - + Visible - + Visible - + All mods visible in the mod list are included - + Tout les mods visible dans la liste de mod sont inclus - + export failed: %1 - + échec de l'exportation : %1 - + Install Mod... - Installer mod... + Installer le Mod... - + Enable all visible - Activer tous les mods visibles + Activer tout mod visible - + Disable all visible - Désactiver tous les mods visibles + Désactiver tout mod visible - + Check all for update - Vérifier toutes les mises à jour + Vérifier toutes les mises à jour - + Export to csv... - + Exporter en csv... - + All Mods - + Tout les Mods - + Sync to Mods... - + Synchroniser vers les Mods... - + Restore Backup - + Restaurer la sauvegarde - + Remove Backup... - + Supprimer la sauvegarde... - + Add/Remove Categories - + Ajouter/Enlever des catégories - + Replace Categories - + Remplacer les catégories - + Primary Category - + Catégorie primaire - + Change versioning scheme - + Changer le système de version - + Un-ignore update - + Ne plus ignorer les mises à jour - + Ignore update - + Ignorer la MàJ - + Rename Mod... - Renommer mod... + Renommer le Mod... - + Remove Mod... - Supprimer mod... + Supprimer le Mod... - + Reinstall Mod - Installer mod + Réinstaller le Mod - + Un-Endorse - + Ne plus recommander - - + + Endorse - + Recommander - + Won't endorse - + Ne vais pas recommander - + Endorsement state unknown - + Statut de recommandation inconnu - + Ignore missing data - + Ignorer les données manquantes - + Visit on Nexus - + Aller à la page Nexus - + Open in explorer - + Ouvrir dans l'exploreur - + Information... - Information... + Informations... - - + + Exception: - + Exception : - - + + Unknown exception - + Exception Inconnue - + <All> - <Tous> + <Tous> - + <Multiple> - + <Multiple> + + + + Are you sure you want to remove the following %n save(s)?<br><ul>%1</ul><br>Removed saves will be sent to the Recycle Bin. + Voulez vraiment supprimer les/la sauvegarde(s) suivante %n ?<br> +<ul>%1</ul> <br>Les sauvegardes supprimées seront envoyée dans la corbeille.Voulez vraiment supprimer les/la sauvegarde(s) suivante %n ?<br> +<ul>%1</ul> <br>Les sauvegardes supprimées seront envoyée dans la corbeille. - + Please wait while LOOT is running - + Veuillez patienter pendant que LOOT s'exécute - + Fix Mods... - Réparer mods... + Corriger les Mods... + + + + Delete %n save(s) + Supprimer %n sauvegarde(s)Supprimer %n sauvegarde(s) - + failed to remove %1 - Impossible de supprimer %1 + Impossible d'enlever %1 - - + + failed to create %1 - impossible de créer %1 + Impossible de créer %1 - + Can't change download directory while downloads are in progress! - + Vous ne pouvez pas changer le répertoire de téléchargement pendant qu'un téléchargement est en cours ! - + Download failed - Téléchargement commencé + Téléchargement échoué - + failed to write to file %1 - impossible d'écrire dans le fichier %1 + Échec de l'écriture sur le fichier %1 - + %1 written - %1 écrit + %1 écrit - + Select binary - Choisir un programme + Sélectionner un exécutable binaire - + Binary - Programme + Exécutable binaire - + Enter Name - + Entrez un nom - + Please enter a name for the executable - Veuillez inscrire un nom pour le nouveau profil + Veuillez entrer un nom pour l'exécutable - + Not an executable - Ajouter un programme + Pas un exécutable - + This is not a recognized executable. - + Ceci n'est pas un exécutable reconnu. - - + + Replace file? - + Remplacer le fichier? - + There already is a hidden version of this file. Replace it? - + Ceci est déjà une version cachée de ce fichier. La remplacer ? - - + + File operation failed - + Échec de l'opération sur les fichiers - - + + Failed to remove "%1". Maybe you lack the required file permissions? - + Impossible de retirer "%1". Peut-être n'avez vous pas les permissions nécessaires sur le fichier. - + There already is a visible version of this file. Replace it? - + Il existe déjà une version visible de ce fichier. La remplacer ? - + file not found: %1 - + fichier introuvable : %1 - + failed to generate preview for %1 - + impossible de générer l'aperçu de %1 - + Sorry, can't preview anything. This function currently does not support extracting from bsas. - + Désolé, impossible de générer tout aperçu. Cette fonction ne supporte actuellement pas l'extraction d'un bsa. - + Update available - Mise à jour disponible + Mise à jour disponible - + Open/Execute - + Ouvrir/Exécuter - + Add as Executable - Ajouter un programme + Ajouter en tant qu'Exécutable - + Preview - + Aperçu - + Un-Hide - + Montrer - + Hide - + Cacher - + Write To File... - Écriture du fichier... + Écriture du fichier... - + Do you want to endorse Mod Organizer on %1 now? - + Désirez vous recommander Mod Organizer sur %1 maintenant ? - + Thank you! - + Merci ! - + Thank you for your endorsement! - + Merci de votre recommandation ! - + Request to Nexus failed: %1 - + La requête au Nexus à échouée : %1 - - + + login successful - + connexion réussie - + login failed: %1. Trying to download anyway - + échec de login : %1. Tentative de téléchargement malgré tout - + login failed: %1 - + échec de login : %1 - + login failed: %1. You need to log-in with Nexus to update MO. - + échec de login : %1. Vous devez vous connecter au Nexus pour mettre à jour MO. - + + + failed to read %1: %2 + impossible de lire %1 : %2 + + + Error - Erreur + Erreur - + failed to extract %1 (errorcode %2) - + impossible d'extraire %1 (code d'erreur %2) - + + Extract BSA + Extraire le BSA + + + + This archive contains invalid hashes. Some files may be broken. + Cette archive contient des données de hachages invalides. Certains fichiers peuvent être corrompus. + + + Extract... - + Extraire... - + Edit Categories... - + Modfier les catégories - + Deselect filter - + Filtre de déselection - + Remove Supprimer - + Enable all - + Activer tout - + Disable all - + Désactiver tout - + Unlock load order - + Déverrouiller l'ordre de chargement - + Lock load order - + Verrouiller l’ordre de chargement - + depends on missing "%1" - + dépend de "%1" manquant - + incompatible with "%1" - + incompatible avec "%1" - + No profile set - + Aucun profil - + loot failed. Exit code was: %1 - + échec de LOOT. Le code de fermeture était : %1 - + failed to start loot - + impossible de démarrer LOOT - + failed to run loot: %1 - + impossible d'exécuter LOOT : %1 - + Errors occured - + Erreurs survenues - + Backup of load order created - + Backup de l'ordre de chargement créé - + Choose backup to restore - + Choisissez le backup à restaurer - + No Backups - + Aucun Backups - + There are no backups to restore - + Il n'y a aucun backup à restaurer - - + + Restore failed - + Restauration échouée - - + + Failed to restore the backup. Errorcode: %1 - + Échec de la restauration du backup. Code d'erreur : %1 - + Backup of modlist created - + Backup de la liste de mods créé @@ -2870,14 +2871,69 @@ This function will guess the versioning scheme under the assumption that the ins Placeholder - Signet + *Substitut* ModInfo - - + + Plugins + Plugins + + + + Textures + Textures + + + + Meshes + Meshes + + + + UI Changes + Modifications de l'UI + + + + Music + Musiques + + + + Sound Effects + Sons + + + + Scripts + Scripts + + + + SKSE Plugins + Plugins SKSE + + + + SkyProc Tools + Outils SkyProc + + + + Strings + Strings + + + + invalid content type %1 + type de contenu invalide %1 + + + + invalid index %1 index invalide %1 @@ -2885,9 +2941,9 @@ This function will guess the versioning scheme under the assumption that the ins ModInfoBackup - + This is the backup of a mod - + Ceci est le backup d'un mod @@ -2926,7 +2982,7 @@ This function will guess the versioning scheme under the assumption that the ins Ini Files - + Fichiers INI @@ -2941,17 +2997,17 @@ This function will guess the versioning scheme under the assumption that the ins Ini Tweaks - + Tweaks INI This is a list of ini tweaks (ini modifications that can be toggled). - + Ceci est une liste des tweaks ini (modifications d'ini qui peuvent être activées). This is a list of ini tweaks. Ini Tweaks are (usually small) fragments of ini files that are applied over existing settings in skyrim.ini/skyrimprefs.ini. Each tweak can be toggled individually. You should check the description of the mod wether the tweaks are really optional. - + Ceci est une liste des tweaks ini. Les tweaks ini sont des fragments de fichiers INI (usuellement petits) qui sont appliqués par dessus les paramètres existants dans skyrim.ini/skyrimprefs.ini. Chaque tweak peut être activé individuellement. Vous devriez vérifier la description du mod quand à savoir si les tweaks sont réellement optionnels. @@ -2976,7 +3032,7 @@ This function will guess the versioning scheme under the assumption that the ins This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view. - + Ceci liste toutes les images (.jpg et .png) présentes dans le répertoire du mod, comme les screenshots et autres. Cliquez sur l'objet pour obtenir une vue plus large. @@ -2995,7 +3051,7 @@ This function will guess the versioning scheme under the assumption that the ins They usually contain optional functionality, see the readme. Most mods do not have optional esps, so chances are good you are looking at an empty list. - + @@ -3035,48 +3091,48 @@ Most mods do not have optional esps, so chances are good you are looking at an e Conflicts - + Conflits The following conflicted files are provided by this mod - + Les fichiers conflictuels suivants sont originaire de ce mod File - Fichier + Fichier Overwritten Mods - + Mods écrasés The following conflicted files are provided by other mods - + Les fichiers conflictuels suivants sont originaires d'autres mods Providing Mod - + Mod source Non-Conflicted files - + Fichiers non conflictuels Categories - Catégories + Catégories Primary Category - + Catégorie primaire @@ -3098,20 +3154,16 @@ Most mods do not have optional esps, so chances are good you are looking at an e <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Mod ID for this mod on Nexus. This is filled in automatically if you downloaded and installed the mod from inside MO. Otherwise you can enter it manually. To find the correct id, find the mod on nexus. The URL will look like this: </span><a href=" http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://skyrim.nexusmods.com/downloads/file.php?id=1334</span></a><a href="http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" font-size:8pt; color:#000000;">. In this example, 1334 is the id you're looking for. Besides: The above is the link to Mod Organizer on the Nexus. Why not go there now and endorse?</span></a></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">ID de ce mod sur Nexus. Rempli automatiquement si vous téléchargez et installez un mod à partir de MO. Sinon, vous pouvez l'inscrire manuellement. Pour connaître le bon ID, trouvez le mod sur Nexus. L'URL ressemblera à ceci: <a href=" http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" text-decoration: underline; color:#0000ff;">http://www.skyrimnexus.com/downloads/file.php?id=1334</span></a><a href="http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" color:#000000;">. Dans cet example, 1334 est l'ID que vous cherchez. En passant: Ce lien est celui de Mod Organizer sur le Nexus. Pourquoi ne pas le visiter et lui donner votre aval?</span></a></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Installed Version of the Mod. The tooltip will contain the current version available on nexus. The installed version is only set if you installed the mod through MO.</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -3127,12 +3179,12 @@ p, li { white-space: pre-wrap; } Refresh - Actualiser + Actualiser Refresh all information from Nexus. - + Actualiser toutes les informations provenant du Nexus @@ -3144,19 +3196,23 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><br /></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><br /></p></body></html> Endorse - + Recommander Notes - + Notes @@ -3173,7 +3229,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a modifiable directory view of the mod directory. You can move around files using drag &amp; drop and rename them (double click).</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Changes happen immediately on disc, so do</span><span style=" font-size:8pt; font-weight:600;"> be careful</span><span style=" font-size:8pt;">.</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -3186,7 +3242,7 @@ p, li { white-space: pre-wrap; } Previous - + Précédant @@ -3199,264 +3255,264 @@ p, li { white-space: pre-wrap; } Fermer - + &Delete Supprimer - + &Rename &Renommer - + &Hide - + &Cacher - + &Unhide - + &Ne plus cacher - + &Open &Ouvrir - + &New Folder &Nouveau dossier - - + + Save changes? - Enregistrer les changements? + Enregistrer les changements? - - + + Save changes to "%1"? - + Enregistrer les changements sur "%1" ? - + File Exists Un fichier du même nom existe - + A file with that name exists, please enter a new one Un fichier ainsi nommé existe déjà, veuillez entrer un nouveau nom - + failed to move file impossible de déplacer le fchier - + failed to create directory "optional" - Impossible de créer le dossier "optional" + impossible de créer le dossier "optional" - - + + Info requested, please wait Info demandée, veuillez patienter - + Main Principal - + Update Mise-à-jour - + Optional Optionnel - + Old Ancien - + Misc Divers - + Unknown Inconnu - + Current Version: %1 Version courante: %1 - + No update available Aucune mise-à-jour disponible - + (description incomplete, please visit nexus) - + (description incomplète, veuillez aller sur le Nexus) - + <a href="%1">Visit on Nexus</a> <a href="%1">Visiter sur Nexus</a> - + Failed to delete %1 - impossible d'effacer %1 + Impossible d'effacer %1 - - + + Confirm Confirmer - + Are sure you want to delete "%1"? - Voulez-vous vraiment supprimer "%1"? + Voulez-vous vraiment supprimer "%1" ? - + Are sure you want to delete the selected files? - Voulez-vous vraiment supprimer les fichiers sélectionnés? + Voulez-vous vraiment supprimer les fichiers sélectionnés ? - - + + New Folder Nouveau dossier - + Failed to create "%1" Impossible de créer "%1" - - + + Replace file? - + Remplacer le fichier ? - + There already is a hidden version of this file. Replace it? - + Ceci est déjà une version cachée de ce fichier. La remplacer ? - - + + File operation failed - + Opération de fichier échouée - - + + Failed to remove "%1". Maybe you lack the required file permissions? - + Impossible de supprimer "%1". Peut-être n'avez vous pas les permissions nécessaires sur le fichier. - - + + failed to rename %1 to %2 - Impossible de renommer %1 en %2 + impossible de renommer %1 en %2 - + There already is a visible version of this file. Replace it? - + Il existe déjà une version visible de ce fichier. La remplacer ? - + Un-Hide - + Ne plus cacher - + Hide - + Cacher - + Name Nom - + Please enter a name - + Veuillez entrer un nom - - + + Error - Erreur + Erreur - + Invalid name. Must be a valid file name - + Nom invalide. Veuillez entrer un nom valide - + A tweak by that name exists - + Un tweak de ce nom existe déjà - + Create Tweak - + Créer un Tweak ModInfoForeign - + This pseudo mod represents content managed outside MO. It isn't modified by MO. - + Ce pseudo mod représente un contenu géré à l’extérieur de MO. Il n'est pas modifié par MO. ModInfoOverwrite - + This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit) - + Ce pseudo mod contient des fichiers provenant du répertoire Data virtualisé qui ont été modifiés (ex : par le construction kit) ModInfoRegular - - + + failed to write %1/meta.ini: error %2 - + impossible d'écrire %1/meta.ini : erreur %2 - + %1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory - %1 ne contient ni esp/esm, ni dossier d'éléments de jeu (textures, meshes, interface, ...) + %1 ne contient ni esp/esm, ni dossier d'éléments de jeu (textures, meshes, interface, ...) - + Categories: <br> - + Catégories : <br> @@ -3464,118 +3520,117 @@ p, li { white-space: pre-wrap; } Game plugins (esp/esm) - + Elder Scrolls Plugins (esp/esm) Interface - + Interface Meshes - + Meshes Music - + Music Scripts (Papyrus) - + Scripts (Papyrus) Script Extender Plugin - + Script Extender Plugin SkyProc Patcher - + SkyProc Patcher Sound - + Sound Strings - + Strings Textures - + Textures This entry contains files that have been created inside the virtual data tree (i.e. by the construction kit) - + Cette entrée contient des fichiers qui ont été créés à l'intérieur du répertoire Data virtualisé (ex : par le construction kit) Backup - + Backup No valid game data - + Aucune donnée de jeu valide Not endorsed yet - + Pas encore recommandé Overwrites files - + Fichiers d'Overwrite Overwritten files - + Fichiers écrasés Overwrites & Overwritten - + Overwrites & Overwritten Redundant - + Redondant Non-MO - + Non-MO invalid - + invalide installed version: "%1", newest version: "%2" - installed version: %1, newest version: %2 - + version installée : "%1", nouvelle version : "%2" The newest version on Nexus seems to be older than the one you have installed. This could either mean the version you have has been withdrawn (i.e. due to a bug) or the author uses a non-standard versioning scheme and that newest version is actually newer. Either way you may want to "upgrade". - + La version la plus récente disponible sur le Nexus semble être plus ancienne que celle que vous avez installée. Ceci peut signifier que la version que vous utiliser à été retirée (ex : pour cause de bug) ou que l'auteur utilise une syntaxe de version non standardisée et que la dernière version est en fait plus récente. D'une manière ou d'une autre vous pourriez vouloir "mettre à jour". Categories: <br> - + Catégories : <br> @@ -3585,7 +3640,7 @@ p, li { white-space: pre-wrap; } drag&drop failed: %1 - + le glissé&déposé à échoué : %1 @@ -3600,12 +3655,12 @@ p, li { white-space: pre-wrap; } Flags - + Flags Content - Contenu + Contenu @@ -3625,28 +3680,28 @@ p, li { white-space: pre-wrap; } Category - + Catégorie Nexus ID - IDs Nexus + ID Nexus Installation - + Installation unknown - Inconnu + inconnu Name of your mods - + Nom de vos mods @@ -3661,27 +3716,27 @@ p, li { white-space: pre-wrap; } Category of the mod. - + Catégorie du mod. Id of the mod as used on Nexus. - + ID du mod sur le Nexus Emblemes to highlight things that might require attention. - + Emblèmes pour mettre en évidence les choses qui pourraient devoir retenir votre attention. Depicts the content of the mod:<br><img src=":/MO/gui/content/plugin" width=32/>Game plugins (esp/esm)<br><img src=":/MO/gui/content/interface" width=32/>interface<br><img src=":/MO/gui/content/mesh" width=32/>Meshes<br><img src=":/MO/gui/content/texture" width=32/>Textures<br><img src=":/MO/gui/content/sound" width=32/>Sounds<br><img src=":/MO/gui/content/music" width=32/>Music<br><img src=":/MO/gui/content/string" width=32/>Strings<br><img src=":/MO/gui/content/script" width=32/>Scripts (Papyrus)<br><img src=":/MO/gui/content/skse" width=32/>Script Extender plugins<br><img src=":/MO/gui/content/skyproc" width=32/>SkyProc Patcher<br> - + Représente le contenu du mod ::<br><img src=":/MO/gui/content/plugin" width=32/>Plugins de jeu (esp/esm)<br><img src=":/MO/gui/content/interface" width=32/>interface<br><img src=":/MO/gui/content/mesh" width=32/>Meshes<br><img src=":/MO/gui/content/texture" width=32/>Textures<br><img src=":/MO/gui/content/sound" width=32/>Sounds<br><img src=":/MO/gui/content/music" width=32/>Music<br><img src=":/MO/gui/content/string" width=32/>Strings<br><img src=":/MO/gui/content/script" width=32/>Scripts (Papyrus)<br><img src=":/MO/gui/content/skse" width=32/>Script Extender plugins<br><img src=":/MO/gui/content/skyproc" width=32/>SkyProc Patcher<br> Time this mod was installed - + Date à laquelle le mod a été installé @@ -3689,12 +3744,12 @@ p, li { white-space: pre-wrap; } Message of the Day - + Message du Jour OK - OK + OK @@ -3702,35 +3757,35 @@ p, li { white-space: pre-wrap; } Overwrites - + Overwrites not implemented - + non implémenté NXMAccessManager - + Logging into Nexus - + Connexion au Nexus - + timeout - + session expirée - + Unknown error - + Erreur inconnue - + Please check your password - + Veuillez vérifier votre mot de passe @@ -3738,17 +3793,17 @@ p, li { white-space: pre-wrap; } Failed to guess mod id for "%1", please pick the correct one - + Impossible de deviner l'ID de mod pour "%1", veuillez déterminer la bonne empty response - + réponse nulle invalid response - + réponse invalide @@ -3756,184 +3811,184 @@ p, li { white-space: pre-wrap; } Overwrite - + Overwrite You can use drag&drop to move files and directories to regular mods. - + Vous pouvez glisser&déposer pour déplacer les fichiers et les répertoires dans les mods usuels. &Delete - Supprimer + &Supprimer &Rename - &Renommer + &Renommer &Open - &Ouvrir + &Ouvrir &New Folder - &Nouveau dossier + &Nouveau dossier %1 not found - %1 introuvable + %1 introuvable Failed to delete "%1" - impossible d'effacer %1 + impossible d'effacer "%1" Confirm - Confirmer + Confirmer Are sure you want to delete "%1"? - Voulez-vous vraiment supprimer "%1"? + Voulez-vous vraiment supprimer "%1" ? Are sure you want to delete the selected files? - Voulez-vous vraiment supprimer les fichiers sélectionnés? + Voulez-vous vraiment supprimer les fichiers sélectionnés ? New Folder - Nouveau dossier + Nouveau dossier Failed to create "%1" - Impossible de créer "%1" + Impossible de créer "%1" PluginList - + Name Nom - + Priority Priorité - + Mod Index - + Index du mod - + Flags - + Flags - - + + unknown - Inconnu + inconnu - + Name of your mods - + Nom de vos mods - + Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority. - + Priorité de chargement de votre mod. Plus elle est élevée, plus le mod est "important" et écrasera donc les fichiers des mods de priorité inférieure. - + The modindex determins the formids of objects originating from this mods. - + L'index des mods détermine les "formids" des objets provenant de ces mods. - + failed to update esp info for file %1 (source id: %2), error: %3 - + impossible de mettre à jour les informations d'esp pour le fichier %1 (source ID : %2), erreur : %3 - + esp not found: %1 ESP introuvable: %1 - - + + Confirm Confirmer - + Really enable all plugins? - + Voulez vous vraiment activer tout les plugins ? - + Really disable all plugins? - + Voulez vous vraiment désactiver tout les plugins ? - + The file containing locked plugin indices is broken - + Le fichier contenant l'indice des plugins verrouillés est corrompu - + Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them. - + Certains de vos plugins ont un nom invalide ! Ces plugions ne peuvent pas être chargés par le jeu. Veuillez vous référer à mo_interface.log pour la liste de tout les plugins affectés et les renommer. - <b>Origin</b>: %1 - + This plugin can't be disabled (enforced by the game) + Ce plugin ne peut être désactivé (forcé par le jeu) - Author - Auteur + <b>Origin</b>: %1 + <b>Origine</b> : %1 - - Description - Description + + Author + Auteur - - This plugin can't be disabled (enforced by the game) - + + Description + Description - + Missing Masters - + Masters manquants - + Enabled Masters - + Masters activés - + failed to restore load order for %1 - + La restauration de l’ordre de chargement à échouée pour %1 @@ -3941,12 +3996,12 @@ p, li { white-space: pre-wrap; } Preview - + Aperçu Close - Fermer + Fermer @@ -3954,16 +4009,20 @@ p, li { white-space: pre-wrap; } Problems - + Problèmes <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html> - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html> @@ -3974,12 +4033,12 @@ p, li { white-space: pre-wrap; } Fix - + Corriger No guided fix - + Aucune guide de correction @@ -3987,32 +4046,32 @@ p, li { white-space: pre-wrap; } invalid profile name %1 - + nom du profil invalide %1 failed to create %1 - impossible de créer %1 + impossible de créer %1 failed to write mod list: %1 - impossible de mettre à jour la liste de mods: %1 + impossible d'écrire la liste de mod : %1 failed to update tweaked ini file, wrong settings may be used: %1 - + impossible de mettre à jour le fichier de tweak ini : des paramètres incorrects pourraient être utilisés : %1 failed to create tweaked ini: %1 - + impossible de créer le fichier de tweak ini : %1 "%1" is missing or inaccessible - + "%1" est manquant ou inaccessible @@ -4026,7 +4085,7 @@ p, li { white-space: pre-wrap; } Overwrite directory couldn't be parsed - + le répertoire Overwrite n'a pas pu être traité @@ -4041,23 +4100,23 @@ p, li { white-space: pre-wrap; } failed to parse ini file (%1): %2 - impossible d'analyser le profil %1: %2 + impossible de traiter le fichier ini (%1) : %2 failed to modify "%1" - impossible de trouver "%1" + impossible de modifier "%1" Delete savegames? - + Supprimer les sauvegardes ? Do you want to delete local savegames? (If you select "No", the save games will show up again if you re-enable local savegames) - + @@ -4065,27 +4124,27 @@ p, li { white-space: pre-wrap; } Dialog - + Dialogue Please enter a name for the new profile - Veuillez inscrire un nom pour le nouveau profil + Veuillez entrer un nom pour le nouveau profil If checked, the new profile will use the default game settings. - + Si coché, le nouveau profil utilisera les paramètres de jeu par défaut. If checked, the new profile will use the default game settings instead of the "global" settings. Global settings are the settings you configure when running the game launcher directly, without MO. - + Default Game Settings - + Paramètres de jeu par défaut @@ -4105,7 +4164,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This is the list of profiles. Each Profile contains its own list and installation order of enabled mods (from a shared pool), a configuration of enabled esps/esms, a copy of the games ini-file and an optional savegame filter.</p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Note</span> For technical reasons it's currently not possible to have seperate load-orders for esps. This means you can't load moda.esp before modb.esp in one profile and the other way around in another.</p></body></html> @@ -4121,12 +4180,12 @@ p, li { white-space: pre-wrap; } If checked, savegames are local to this profile and will not appear when starting with a different profile. - + Local Savegames - + Sauvegardes locales @@ -4138,7 +4197,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The games Oblivion, Fallout 3 and Fallout NV contain a bug which prevents texture and mesh replacers (that is: all modifications to meshes and textures already in game) from working.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The Mod Organizer uses a workaround called &quot;BSA redirection&quot; (google is your friend) to fix this issue reliably and without further work. Simply activate and forget.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> @@ -4147,7 +4206,7 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Les jeux Oblivion, Fallout 3 et Fallout NV contiennent un bug empêchant le fonctionnement des textures et modèles remplaceant ceux déjà existants dans le jeu.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Les jeux Oblivion, Fallout 3 et Fallout NV contiennent un bug empêchant le fonctionnement des textures et modèles remplaçant ceux déjà existants dans le jeu.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Mod Organizer utilise une méthode nommée &quot;BSA redirection&quot; (google est votre ami) pour circonvenir le problème une fois pour toute. Activez simplement et n'y pensez plus.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Avec Skyrim, le problème semble partiellement résolu, mais l'activation d'un mod dans le jeu dépends toujours des dates des fichiers. Il est donc encore préférable de l'activer..</span></p></body></html> @@ -4197,18 +4256,18 @@ p, li { white-space: pre-wrap; } Rename - &Renommer + Renommer Transfer save games to the selected profile. - + Transférer les sauvegardes de jeu vers le profil sélectionné. Transfer Saves - + Transférer les Sauvegardes @@ -4239,7 +4298,7 @@ p, li { white-space: pre-wrap; } failed to copy profile: %1 - impossible de copier le profil: %1 + impossible de copier le profil : %1 @@ -4249,7 +4308,7 @@ p, li { white-space: pre-wrap; } Invalid profile name - + Nom de profil invalide @@ -4259,27 +4318,27 @@ p, li { white-space: pre-wrap; } Are you sure you want to remove this profile (including local savegames if any)? - + Voulez-vous vraiment supprimer ce profil (y compris ses sauvegardes locales s'il y en a) ? Profile broken - + Profil corrompu This profile you're about to delete seems to be broken or the path is invalid. I'm about to delete the following folder: "%1". Proceed? - + Rename Profile - + Renommer le Profil New Name - + Nouveau Nom @@ -4310,52 +4369,52 @@ p, li { white-space: pre-wrap; } invalid category id %1 - + ID de catégorie invalide %1 invalid field name "%1" - + nom de champ invalide "%1" invalid type for "%1" (should be integer) - + type invalide pour "%1" (devrait être entier) invalid type for "%1" (should be string) - + type invalide pour "%1" (devrait être un "string") invalid type for "%1" (should be float) - + type invalide pour "%1" (devrait être "flottant") no fields set up yet! - + encore aucun champs installé ! field not set "%1" - + champ non déterminé "%1" invalid character in field "%1" - + caractère invalide dans le champ "%1" empty field name - + nom du champ vide invalid game type %1 - + type de jeu invalide %1 @@ -4439,62 +4498,62 @@ p, li { white-space: pre-wrap; } Impossible de mettre en place le chargement via DLL par procuration - + Permissions required Permissions requises - + The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights. - + - - + + Woops - + Oups - + ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file (%1) to sherb@gmx.net, the bug is a lot more likely to be fixed. Please include a short description of what you were doing when the crash happened - + - + ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1 - + - + Mod Organizer Mod Organizer - + An instance of Mod Organizer is already running Une copie du Mod Organizer tourne déjà - + No game identified in "%1". The directory is required to contain the game binary and its launcher. - + - - + + Please select the game to manage Veuillez choisir le jeu à gérer - + Please select the game edition you have (MO can't start the game correctly if this is set incorrectly!) - + - + failed to start application: %1 - + impossible de démarrer l'application : %1 @@ -4502,28 +4561,28 @@ p, li { white-space: pre-wrap; } 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" - + failed to access %1 impossible d'accéder à %1 - + failed to set file time %1 impossible de changer la date du fichier %1 @@ -4535,13 +4594,12 @@ p, li { white-space: pre-wrap; } "%1" is missing or inaccessible - "%1" is missing - + "%1" est manquant ou innacessible Before you can use ModOrganizer, you need to create at least one profile. ATTENTION: Run the game at least once before creating a profile! - + Avant de pouvoir utiliser ModOrganizer, vous devez créer au moins un profile. ATTENTION : Lancer le jeu une fois avant de créer un profile! @@ -4549,6 +4607,11 @@ p, li { white-space: pre-wrap; } Error Erreur + + + failed to open temporary file + impossible d'ouvrir le fichier temporaire + @@ -4564,7 +4627,7 @@ p, li { white-space: pre-wrap; } Script Extender - Extenseur de script + Script Extender @@ -4572,87 +4635,82 @@ p, li { white-space: pre-wrap; } DLL par procuration - + failed to spawn "%1" impossible de lancer "%1" - + Elevation required - + Permissions requises - + This process requires elevation to run. This is a potential security risk so I highly advice you to investigate if "%1" can be installed to work without elevation. Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe to make changes to the system) - + - + failed to spawn "%1": %2 impossible de lancer "%1": %2 - + "%1" doesn't exist "%1" inexistant - + failed to inject dll into "%1": %2 impossible d'injecter le DLL dans "%1": %2 - + failed to run "%1" impossible de lancer "%1" - - - failed to open temporary file - - QueryOverwriteDialog Mod Exists - + Le Mod existe déjà This mod seems to be installed already. Do you want to add files from this archive (overwriting existing ones) or do you want to completely replace the existing files (old files are deleted)? Alternatively you can install this mod under a different name. - + Ce Mod semble déjà installé. Voulez-vous ajouter les fichiers provenants de cette archive (écrase les fichiers existants) ou voulez-vous remplacer complètement les fichiers existants (les vieux fichiers seront effacés)? Alternativement vous pouvez installer ce Mod sous un nom différend. Keep Backup - + Garder une sauvegarde Merge - + Fusionner Replace - + Remplacer Rename - &Renommer + Renommer Cancel - Annuler + Annuler @@ -4660,27 +4718,27 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe Save # - + Enregistrer # Character - + Personnage Level - + Niveau Location - + Location Date - DATA + Date @@ -4688,7 +4746,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe Missing ESPs - ESP manquant + ESPs manquants @@ -4696,37 +4754,37 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe Dialog - + Dialogue Copy To Clipboard - + Copier dans le presse papier Save As... - + Sauvegarder en tant que... Close - Fermer + Fermer Save CSV - + Sauvegarder le CSV Text Files - Fichiers texte + Fichiers Textes failed to open "%1" for writing - + impossible d'ouvrir "%1" pour écriture @@ -4734,17 +4792,17 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe Select - + Sélectionner Placeholder - Signet + *Substitut* Cancel - Annuler + Annuler @@ -4790,7 +4848,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe failed to move outdated files: %1. Please update manually. - + impossible de déplacer les fichiers obsolètes : %1. Veuillez les mettre à jour manuellement. @@ -4805,22 +4863,22 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe Failed to parse response. Please report this as a bug and include the file mo_interface.log. - + Échec du traitement de la réponse. Veuillez s'il vous plait reporter ceci comme un bug, en incluant le fichier mo_interface.log. No incremental update available for this version, the complete package needs to be downloaded (%1 kB) - + no file for update found. Please update manually. - + aucun fichier de mise à jour trouvé. Veuillez mettre à jour manuellement. Failed to retrieve update information: %1 - + Impossible de récupérer les informations de mise à jour : %1 @@ -4833,28 +4891,28 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe Failed - + Échec Sorry, failed to start the helper application - + Désolé, impossible de démarrer l'application d'aide attempt to store setting for unknown plugin "%1" - + Confirm - Confirmer + Confimer 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? - + @@ -4862,7 +4920,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe Settings - Réglages + Paramètres @@ -4884,7 +4942,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The display language. This will only displaye languages for which you have a translation installed.</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -4895,124 +4953,124 @@ p, li { white-space: pre-wrap; } Style - + Style graphical style - + Style graphique graphical style of the MO user interface - + Style graphique de l'interface utilise de MO Log Level - + Niveau de log Decides the amount of data printed to "ModOrganizer.log" - + Décide de la quantité de donnée écrite dans "ModOrganizer.log" Decides the amount of data printed to "ModOrganizer.log". "Debug" produces very useful information for finding problems. There is usually no noteworthy performance impact but the file may become rather large. If this is a problem you may prefer the "Info" level for regluar use. On the "Error" level the log file usually remains empty. - + Debug - + Débogage Info - + Information Error - Erreur + Erreur Advanced - + Avancé Directory where downloads are stored. - + Répertoire où les Mods sont stockés Mod Directory - + Répertoire de Mod Directory where mods are stored. - + Répertoire où les Mods sont stockés. Directory where mods are stored. Please note that changing this will break all associations of profiles with mods that don't exist in the new location (with the same name). - + Download Directory - + Répertoire de téléchargement Cache Directory - + Répertoire en cache User interface - + Interface utiliser If checked, the download interface will be more compact. - + Si coché, l'interface des téléchargements sera plus compacte. Compact Download Interface - + Interface de téléchargent compacte If checked, the download list will display meta information instead of file names. - + Download Meta Information - + Télécharger les Informations Meta Reset stored information from dialogs. - + This will make all dialogs show up again where you checked the "Remember selection"-box. - + Reset Dialogs - + Réinitialiser les dialogues @@ -5041,7 +5099,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Allows automatic log-in when the Nexus-Page for the game is clicked. Please note that the obfuscation with which the password is stored in modorganizer.ini is not very strong. If you're worried someone might steal your password, don't store it here.</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -5052,7 +5110,7 @@ p, li { white-space: pre-wrap; } If checked and if correct credentials are entered below, log-in to Nexus (for browsing and downloading) is automatic. - + @@ -5072,82 +5130,82 @@ p, li { white-space: pre-wrap; } Disable automatic internet features - + Désactive les fonctionnalités automatiques nécessitant une connexion internet Disable automatic internet features. This does not affect features that are explicitly invoked by the user (like checking mods for updates, endorsing, opening the web browser) - + Offline Mode - + Mode hors-connection Use a proxy for network connections. - + Utiliser un proxy pour les connections sur le réseau. Use a proxy for network connections. This uses the system-wide settings which can be configured in Internet Explorer. Please note that MO will start up a few seconds slower on some systems when using a proxy. - + Use HTTP Proxy (Uses System Settings) - + Utiliser un Proxy HTTP (Utilise les propriétés du système) Associate with "Download with manager" links - + Associer avec les liens "Download with manager" Known Servers (updated on download) - + Serveurs connus (MàJ tout les téléchargements) Preferred Servers (Drag & Drop) - + Serveurs préférés (Glisser & Déposer) Plugins - + Plugins Author: - Auteur + Auteur: Version: - Version + Version: Description: - Description + Description: Key - + Clé Value - + Valeur Blacklisted Plugins (use <del> to remove): - + Plugin black-listé (utilisez <del> pour le supprimer) : @@ -5169,7 +5227,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The Steam App ID is required to directly start some games. For Skyrim, if this is not set or wrong, the &quot;Mod Organizer&quot; load mechanism may not work properly.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The preset for this is the App ID of the &quot;regular&quot; version so in most cases, you should be set.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you think you have a different version (GotY or something), follow these steps to get to the id:</span></p> @@ -5207,29 +5265,29 @@ p, li { white-space: pre-wrap; } There are several means to do this: *Mod Organizer* (default) In this mode the Mod Organizer itself injects the dll. The disadvantage is that you always have to start the game through MO or a link created by it. *Script Extender* In this mode, MO is installed as a Script Extender (obse, fose, nvse, skse) plugin. -*Proxy DLL* In this mode, MO replaces one of the game's dlls with one that loads MO (and the original dll of course). This will ONLY work with Steam games and it has only been tested with Skyrim. Please use this only if the other mechanisms don't work. +*Proxy DLL* In this mode, MO replaces one of the game's dlls with one that loads MO (and the original dll of course). This will ONLY work with Steam games and it has only been tested with Skyrim. Please use this only if the other mechanisms don't work. If you use the Steam version of Oblivion the default will NOT work. In this case, please install obse and use "Script Extender" as the load mechanism. Also you can then not start Oblivion from MO. Instead, use MO only to set up your mods, then quit and start Oblivion through Steam. - + NMM Version - + Version de NMM The Version of Nexus Mod Manager to impersonate. - + La Version de Nexus Mod Manager à impersonnaliser. Mod Organizer uses an API provided by the Nexus to provide features like checking for updates and downloading files. Unfortunately this API has not been made available officially to third party tools like MO so we have to impersonate the Nexus Mod Manager to be allowed in. -On top of this Nexus has used the client identification to lock out outdated versions of NMM to force users to update. This means that MO also needs to impersonate the new version of NMM even if MO doesn't need an update. Therefore you can configure the version to identify as here. -Please note that MO does identify itself as MO to the webserver, it's not lying about what it is. It is merely adding a "compatible" NMM version to the user agent. +On top of this Nexus has used the client identification to lock out outdated versions of NMM to force users to update. This means that MO also needs to impersonate the new version of NMM even if MO doesn't need an update. Therefore you can configure the version to identify as here. +Please note that MO does identify itself as MO to the webserver, it's not lying about what it is. It is merely adding a "compatible" NMM version to the user agent. tl;dr-version: If Nexus-features don't work, insert the current version number of NMM here and try again. - + @@ -5238,7 +5296,7 @@ tl;dr-version: If Nexus-features don't work, insert the current version num - It seems that the Games occasionally load ESP or ESM files even if they haven't been activated as plugins. + It seems that the Games occasionally load ESP or ESM files even if they haven't been activated as plugins. I don't yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded. Il semble que les jeux chargent parfois des fichiers ESP ou ESM même s'ils ne sont pas activés. Je n'en connais pas encore les circonstances, mais les rapports des usagers impliquent que dans certains cas, ce comportement est indésirable. Si vous cochez ceci, les ESPs et ESMs qui ne sotn pas cochés seront invisible pour le jeu et ne pourront pas être chargés. @@ -5251,36 +5309,36 @@ Je n'en connais pas encore les circonstances, mais les rapports des usagers If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on) - + If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on) Uncheck this if you want to use Mod Organizer with total conversions (like Nehrim) but be aware that the game will crash if required files are not enabled. - + Force-enable game files - + Forcer l'activation des fichiers de jeu. Disable this to no longer display mods installed outside MO in the mod list (left pane). Assets from those mods will then be treated as having lowest mod priority together with the original game content. - + By default Mod Organizer will display esp+bsa bundles installed with foreign tools as mods (left pane). This allows you to control their priority in relation to other mods. This is particularly useful if you also use Steam Workshop to install mods. -However, if you installed loose file mods outside MO which conflict with BSAs also installed outside MO those conflicts can't be resolved correctly. +However, if you installed loose file mods outside MO which conflict with BSAs also installed outside MO those conflicts can't be resolved correctly. If you disable this feature, MO will only display official DLCs this way. Please note that plugins (esps and esms) displayed in the right pane are completely unaffected by this feature. - + Display mods installed outside MO - + Affichers les Mods qui n'ont pas été installer par MO @@ -5298,32 +5356,32 @@ Pour les autres jeux, ceci ne suffit pas à remplacer l'invalidation des ar These are workarounds for problems with Mod Organizer. Please make sure you read the help text before changing anything here. - + Il s'agit de solutions alternatives pour des problèmes internes à Mod Organizer. Veuillez d'abord vous assurer de lire le texte d'aide avant de modifier quoi que ce soit ici. Select download directory - Sélectionnez un répertoire + Sélectionner le répertoire de téléchargement Select mod directory - Sélectionnez un répertoire + Sélectionner le répertoire de Mod Select cache directory - Sélectionnez un répertoire + Sélectionner le répertoire en cache Confirm? - Confirmer + Confirmer ? This will make all dialogs show up again where you checked the "Remember selection"-box. Continue? - + @@ -5375,7 +5433,7 @@ Pour les autres jeux, ceci ne suffit pas à remplacer l'invalidation des ar failed to communicate with running instance: %1 - + Communication échouée avec l'instance active: %1 @@ -5388,32 +5446,32 @@ Pour les autres jeux, ceci ne suffit pas à remplacer l'invalidation des ar Sync Overwrite - + Synchroniser Overwrite Name - Nom + Nom Sync To - + Synchroniser Vers <don't sync> - + <ne pas synchroniser> failed to remove %1 - Impossible de supprimer %1 + Impossible de supprimer %1 failed to move %1 to %2 - impossible de copier %1 vers %2 + Impossible de déplacer de %1 à %1 @@ -5421,17 +5479,17 @@ Pour les autres jeux, ceci ne suffit pas à remplacer l'invalidation des ar Transfer Savegames - + Transférer les sauvegardes de jeux Global Characters - + Personnages Globaux This is a list of characters in the global location. - + Ceci est une liste des personnages globaux. @@ -5443,7 +5501,7 @@ On Windows Vista/Windows 7: On Windows XP: C:\Documents and Settings\[UserName]\My Documents\My Games\Skyrim\Saves - + @@ -5456,47 +5514,47 @@ On Windows XP: C:\Documents and Settings[UserName]\My Documents\My Games\Skyrim\Saves - + Move -> - + Déplacer -> Copy -> - + Copier -> <- Move - + <- Déplacer <- Copy - + <- Copier Done - Terminé + Terminé Profile Characters - + Profil des personnages Overwrite - + Écraser Overwrite the file "%1" - + Écraser le fichier "%1" @@ -5504,23 +5562,23 @@ On Windows XP: Confirm - Confirmer + Confirmer Copy all save games of character "%1" to the profile? - + Copier toutes les sauvegardes du personnage "%1" vers le profil ? Move all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games. - + Copy all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games. - + - + \ No newline at end of file diff --git a/src/organizer_ru.ts b/src/organizer_ru.ts index 47978e40..7fc47167 100644 --- a/src/organizer_ru.ts +++ b/src/organizer_ru.ts @@ -1,6 +1,4 @@ - - - + AboutDialog @@ -62,7 +60,7 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a list of esps and esms that were active when the save game was created.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">For each esp, the right column contains the mod (or mods) that can be enabled to make the missing esps/esms available.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> @@ -225,7 +223,7 @@ If there is a component called "00 Core" it is usually required. Optio <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">You can match one or multiple nexus categories to a internal ID. Whenever you download a mod from a Nexus Page, Mod Organizer will try to resolve the category defined on the Nexus to one available in MO.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">To find out a category id used by the nexus, visit the categories list of the nexus page and hover over the links there.</span></p></body></html> @@ -989,7 +987,7 @@ Right now the only case I know of where this needs to be overwritten is for the Save Changes? - Сохранить изменения? + Сохранить изменения? @@ -1135,7 +1133,7 @@ Right now the only case I know of where this needs to be overwritten is for the <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This displays the content of the archive. &lt;data&gt; represents the base directory which will map to the game's data directory. You can change the base directory via the right-click context menu and you can move around files via drag&amp;drop</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -1156,7 +1154,7 @@ p, li { white-space: pre-wrap; } Cancel - Отмена + Отмена @@ -1179,87 +1177,87 @@ 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 Формат файла "%1" не поддерживается - + 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 неизвестная ошибка архива @@ -1314,7 +1312,7 @@ p, li { white-space: pre-wrap; } Categories - Категории + Категории @@ -1356,7 +1354,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Create profiles here. Each profile contains its own list of active mods and esps. This way you can quickly switch between setups for different play throughs.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Please note that right now your esp load order is not kept seperate for different profiles.</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -1366,6 +1364,11 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Создать профили здесь. Каждый профиль включает свой собственный список активных модов и esp. Таким образом, вы можете быстро переключаться между установками для различных прохождений игры.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Обратите внимание, что порядок загрузки esp одинаков для всех профилей.</span></p></body></html> + + + Open list options... + Открыть список вариантов... + Refresh list. This is usually not necessary unless you modified data outside the program. @@ -1425,7 +1428,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Choose the program to run. Once you start using ModOrganizer, you should always run your game and tools from here or through shortcuts created here, otherwise mods installed through MO will not be visible.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">You can add new Tools to this list, but I can't promise tools I haven't tested will work.</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -1445,7 +1448,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Run the selected program with ModOrganizer enabled.</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -1468,7 +1471,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This creates a start menu shortcut that directly starts the selected program with the MO active.</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -1486,6 +1489,11 @@ p, li { white-space: pre-wrap; } Plugins Плагины + + + Sort + Сортировать + List of available esp/esm files @@ -1496,7 +1504,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This list contains the esps and esms contained in the active mods. These require their own load order. Use drag&amp;drop to modify this load order. Please note that MO will only save the load order for mods that are active/checked.<br />There is a great tool named &quot;BOSS&quot; to automatically sort these files.</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -1504,16 +1512,6 @@ p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Этот список содержит esp и esm файлы активных модов. Для них требуется определенный порядок загрузки. Используйте перетаскивание для изменения порядка загрузки. Обратите внимание, что MO сохранит порядок загрузки только для активными/проверенных модов.<br />Существует замечательная утилита, называющаяся &quot;BOSS&quot; , которая автоматически сортирует эти файлы.</span></p></body></html> - - - Sort - Сортировать - - - - Open list options... - Открыть список вариантов... - Archives @@ -1549,7 +1547,7 @@ BSA, отмеченные здесь, загружаются так, чтобы File - Файл + Файл @@ -1568,8 +1566,8 @@ BSA, отмеченные здесь, загружаются так, чтобы - - + + Refresh Обновить @@ -1581,7 +1579,7 @@ BSA, отмеченные здесь, загружаются так, чтобы Mod - Мод + Мод @@ -1604,8 +1602,8 @@ BSA, отмеченные здесь, загружаются так, чтобы <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a list of all savegames for this game. Hover over a list entry to get detailed information about the save including a list of esps/esms that were used at the time this save was created but aren't active now.</span></p> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a list of all savegames for this game. Hover over a list entry to get detailed information about the save including a list of esps/esms that were used at the time this save was created but aren't active now.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you click &quot;Fix Mods...&quot; in the context menu, MO will try to activate all mods and esps to fix those missing esps. It will not disable anything!</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -1749,7 +1747,7 @@ p, li { white-space: pre-wrap; } - + Update Обновление @@ -1793,7 +1791,7 @@ Right now this has very limited functionality - + Endorse Mod Organizer Одобрить Mod Organizer @@ -1875,7 +1873,7 @@ Right now this has very limited functionality Name - Имя + Имя @@ -1922,6 +1920,25 @@ Right now this has very limited functionality Plugin "%1" failed Плагин "%1" не удалось + + + Download? + Загрузить? + + + + A download has been started but no installed page plugin recognizes it. +If you download anyway no information (i.e. version) will be associated with the download. +Continue? + Загрузка началась, но не была установлена страница плагина. +Если вы все равно загрузите, то никакой информации (т.е. версия) не будет ассоциировано с загрузкой. +Продолжить? + + + + Browse Mod Page + Смотреть страницу мода + failed to init plugin %1: %2 @@ -1954,6 +1971,11 @@ Right now this has very limited functionality Please press OK once you're logged into steam. Нажмите OK как только вы войдете в Steam. + + + Executable "%1" not found + Исполняемый файл "%1" не найден + Start Steam? @@ -1965,926 +1987,887 @@ Right now this has very limited functionality Требуется запущенный Steam, для корректного запуска игры. Должен ли MO попытаться запустить Steam сейчас? - + Also in: <br> Также в: <br> - + No conflict Конфликтов нет - + <Edit...> <Правка...> - + + Failed to refresh list of esps: %1 + Не удалось обновить список esp: %1 + + + This bsa is enabled in the ini file so it may be required! Этот bsa подключен через ini, так что он может быть необходим! - + Activating Network Proxy Подключение сетевого прокси - - - Installation successful - Установка завершена - - - - - Configure Mod - Настройка мода + + + Failed to write settings + Не удалось записать настройки - - - This mod contains ini tweaks. Do you want to configure them now? - Этот мод включает настройки ini. Вы хотите настроить их сейчас? + + + An error occured trying to write back MO settings: %1 + Ошибка при попытке записать обратно настройки MO: %1 - - - mod "%1" not found - мод "%1" не найден + + File is write protected + Файл защищён от записи - - - Installation cancelled - Установка отменена + + Invalid file format (probably a bug) + Неверный формат файла (возможно баг) - - - The mod was not installed completely. - Мод не был установлен полностью. + + Unknown error %1 + Неизвестная ошибка %1 - + Some plugins could not be loaded Некоторые плагины не могут быть загружены - + Too many esps and esms enabled Подключено слишком много esp и esm - - + + Description missing Описание отсутствует - + The following plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version: Следующие плагины не могут быть загружены. Причина возможно в отсутствующих зависимостях (таких как python) или в устаревшей версии: - + The game doesn't allow more than 255 active plugins (including the official ones) to be loaded. You have to disable some unused plugins or merge some plugins into one. You can find a guide here: <a href="http://wiki.step-project.com/Guide:Merging_Plugins">http://wiki.step-project.com/Guide:Merging_Plugins</a> Игра не позволяет загрузить больше 255 активных плагинов (включая официальные). Вам нужно отключить некоторые ненужные плагины или объединить несколько небольших плагинов в один. Инструкция может быть найдена здесь: <a href="http://wiki.step-project.com/Guide:Merging_Plugins">http://wiki.step-project.com/Guide:Merging_Plugins</a> - + Choose Mod Выберете мод - + Mod Archive Архив мода - + + + Installation successful + Установка завершена + + + + + Configure Mod + Настройка мода + + + + + This mod contains ini tweaks. Do you want to configure them now? + Этот мод включает настройки ini. Вы хотите настроить их сейчас? + + + + + mod "%1" not found + мод "%1" не найден + + + + + Installation cancelled + Установка отменена + + + + + The mod was not installed completely. + Мод не был установлен полностью. + + + 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 не удалось обновить список модов: %1 - + failed to spawn notepad.exe: %1 не удалось вызвать notepad.exe: %1 - + failed to open %1 не удалось открыть %1 - + failed to change origin name: %1 не удалось изменить оригинальное имя: %1 - - Executable "%1" not found - Исполняемый файл "%1" не найден - - - - Failed to refresh list of esps: %1 - Не удалось обновить список esp: %1 - - - + failed to move "%1" from mod "%2" to "%3": %4 не удалось переместить "%1" из мода "%2" в "%3": %4 - + + <Contains %1> + <Содержит %1> + + + <Checked> <Подключен> - + <Unchecked> <Отключен> - + <Update> <Обновлен> - + + <Managed by MO> + <Управляется в MO> + + + + <Managed outside MO> + <Управляется вне MO> + + + <No category> <Без категории> - + <Conflicted> <Конфликтует> - + <Not Endorsed> <Не одобрено> - + failed to rename mod: %1 не удалось переименовать мод: %1 - + Overwrite? Перезаписать? - + This will replace the existing mod "%1". Continue? Это заменит существующий мод "%1". Продолжить? - + failed to remove mod "%1" не удалось удалить мод "%1" - - - + + + failed to rename "%1" to "%2" не удалось переименовать "%1" в "%2" - + Multiple esps activated, please check that they don't conflict. Подключено несколько esp, выберете из них не конфликтующие. - - - - + + + + Confirm Подтверждение - + Remove the following mods?<br><ul>%1</ul> Удалить следующие моды?<br><ul>%1</ul> - + failed to remove mod: %1 не удалось удалить мод: %1 - - + + Failed Неудача - + Installation file no longer exists Установочный файл больше не существует - + Mods installed with old versions of MO can't be reinstalled in this way. Моды, установленные с использованием старых версий MO не могут быть переустановленны таким образом. - - - You need to be logged in with Nexus to endorse - Вы должны быть авторизированы на Nexus, чтобы одобрять. - - - - Are you sure you want to remove the following %n save(s)?<br><ul>%1</ul><br>Removed saves will be sent to the Recycle Bin. - - - - - - - - - Delete %n save(s) - - - - - - - - - Extract BSA - Распаковать BSA + + You need to be logged in with Nexus to resume a download + Вы должны быть авторизированы на Nexus, чтобы продолжить загрузку - - - failed to read %1: %2 - не удалось прочесть %1: %2 + + + You need to be logged in with Nexus to endorse + Вы должны быть авторизированы на Nexus, чтобы одобрять. - - This archive contains invalid hashes. Some files may be broken. - Архив содержит неверные хеш-суммы. Некоторые файлы могут быть испорчены. + + Failed to display overwrite dialog: %1 + Ошибка при отображении диалогового окна перезаписи: %1 - + Nexus ID for this Mod is unknown Nexus ID для этого мода неизвестен - - Download? - Загрузить? - - - - A download has been started but no installed page plugin recognizes it. -If you download anyway no information (i.e. version) will be associated with the download. -Continue? - Загрузка началась, но не была установлена страница плагина. -Если вы все равно загрузите, то никакой информации (т.е. версия) не будет ассоциировано с загрузкой. -Продолжить? - - - - Browse Mod Page - Смотреть страницу мода - - - - - Failed to write settings - Не удалось записать настройки - - - - - An error occured trying to write back MO settings: %1 - Ошибка при попытке записать обратно настройки MO: %1 - - - - File is write protected - Файл защищён от записи - - - - Invalid file format (probably a bug) - Неверный формат файла (возможно баг) - - - - Unknown error %1 - Неизвестная ошибка %1 - - - - <Managed by MO> - <Управляется в MO> - - - - <Managed outside MO> - <Управляется вне MO> - - - - You need to be logged in with Nexus to resume a download - Вы должны быть авторизированы на Nexus, чтобы продолжить загрузку - - - - Failed to display overwrite dialog: %1 - - - - - + + 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 Мод с таким именем уже существует - + Continue? Продолжить? - + The versioning scheme decides which version is considered newer than another. This function will guess the versioning scheme under the assumption that the installed version is outdated. Схема управления версиями принимает решение, какая версия считается новее другой. Функция может попробовать угадать схему управления версиями, при условии, что установленная версия является устаревшей. - - + + Sorry Извините - + I don't know a versioning scheme where %1 is newer than %2. Мне неизвестна схема управления версиями, где %1 новее %2. - + 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 экспорт не удался: %1 - + Install Mod... Установить мод... - + Enable all visible Включить все видимые - + Disable all visible Отключить все видимые - + Check all for update Проверить все на обновления - + Export to csv... Экспорт в csv... - + All Mods Все моды - + Sync to Mods... Синхронизировать с модами... - + Restore Backup Восстановить из резервной копии - + Remove Backup... Удалить резервную копию... - + Add/Remove Categories Добавить/Удалить категории - + Replace Categories Заменить категории - + Primary Category Основная категория - + Change versioning scheme Изменить схему управления версиями - + Un-ignore update Снять игнорирование обновления - + Ignore update Игнорировать обновление - + Rename Mod... Переименовать мод... - + Remove Mod... Удалить мод... - + Reinstall Mod Переустановить мод - + Un-Endorse Отменить одобрение - - + + Endorse Одобрить - + Won't endorse Не одобрять - + Endorsement state unknown Статус одобрения неизвестен - + Ignore missing data Игнорировать отсутствующие данные - + Visit on Nexus Перейти на Nexus - + Open in explorer Открыть в проводнике - + Information... Информация... - - + + Exception: Исключение: - - + + Unknown exception Неизвестное исключение - + <All> <Все> - + <Multiple> <Несколько> - - - Please wait while LOOT is running - + + + Are you sure you want to remove the following %n save(s)?<br><ul>%1</ul><br>Removed saves will be sent to the Recycle Bin. + Вы уверены, что хотите удалить следующие %n сохранения?<br><ul>%1</ul><br>Удаленные сохранения будут помещены в Корзину.Вы уверены, что хотите удалить следующие %n сохранения?<br><ul>%1</ul><br>Удаленные сохранения будут помещены в Корзину.Вы уверены, что хотите удалить следующие %n сохранения?<br><ul>%1</ul><br>Удаленные сохранения будут помещены в Корзину. - Really delete "%1"? - Действительно удалить "%1"? + + Please wait while LOOT is running + Пожалуйста, подождите, пока LOOT работает - + Fix Mods... Исправить моды... - - Delete - Удалить + + + Delete %n save(s) + Удалить сохранение(я)Удалить сохранение(я)Удалить сохранение(я) - + 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? Не удалось удалить "%1". Может быть, вам не хватает необходимых прав доступа к файлу? - + There already is a visible version of this file. Replace it? Видимая версия этого файла уже существует. Заменить? - + file not found: %1 файл не найден: %1 - + failed to generate preview for %1 не удалось получить предосмотр для %1 - + Sorry, can't preview anything. This function currently does not support extracting from bsas. Невозможно получить предосмотр чего-либо. Функция на данный момент не поддерживает извлечение из bsa. - + Update available Доступно обновление - + Open/Execute Открыть/Выполнить - + Add as Executable Добавить как исполняемый - + Preview Предосмотр - + Un-Hide Показать - + Hide Скрыть - + Write To File... Записать в файл... - + Do you want to endorse Mod Organizer on %1 now? Вы хотите одобрить Mod Organizer на %1 сейчас? - + Thank you! Спасибо Вам! - + Thank you for your endorsement! Спасибо Вам за одобрение! - + Request to Nexus failed: %1 Запрос на Nexus не удался: %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. Вам нужно войти на Nexus, чтобы обновить MO. - + + + failed to read %1: %2 + не удалось прочесть %1: %2 + + + Error Ошибка - + failed to extract %1 (errorcode %2) не удалось распаковать %1 (код ошибки %2) - + + Extract BSA + Распаковать BSA + + + + This archive contains invalid hashes. Some files may be broken. + Архив содержит неверные хеш-суммы. Некоторые файлы могут быть испорчены. + + + Extract... Распаковать... - + Edit Categories... Изменить категории... - + Deselect filter Снять выбор с фильтра - + Remove Удалить - + Enable all Включить все - + Disable all Отключить все - + Unlock load order Снять фиксацию порядка загрузки - + Lock load order Зафиксировать порядок загрузки - + depends on missing "%1" зависит от отсутствующего "%1" - + incompatible with "%1" - + несовместимый с "%1" - + No profile set Нет установленного профиля - LOOT working - LOOT работает - - - + loot failed. Exit code was: %1 Запуск LOOT не удался. Код завершения: %1 - + failed to start loot - + Не удалось запустить LOOT - + failed to run loot: %1 не удалось запустить LOOT: %1 - + Errors occured Возникли ошибки - + Backup of load order created Резервная копия порядка загрузки создана - + Choose backup to restore Выберите резервную копию для восстановления - + No Backups Резервных копий нет - + There are no backups to restore Резервные копии для восстановления отсутствуют - - + + Restore failed Восстановление не удалось - - + + Failed to restore the backup. Errorcode: %1 Не удалось восстановить резервную копию. Код ошибки: %1 - + Backup of modlist created Резервная копия списка модов создана @@ -2901,8 +2884,63 @@ This function will guess the versioning scheme under the assumption that the ins ModInfo - - + + Plugins + Плагины + + + + Textures + Текстуры + + + + Meshes + Полигональные сетки + + + + UI Changes + Изменения интерфейса + + + + Music + Музыка + + + + Sound Effects + Звуковые эффекты + + + + Scripts + Скрипты + + + + SKSE Plugins + Плагины SKSE + + + + SkyProc Tools + Инструменты SkyProc + + + + Strings + Строки + + + + invalid content type %1 + Некорректный тип содержания %1 + + + + invalid index %1 неверный индекс %1 @@ -2910,7 +2948,7 @@ This function will guess the versioning scheme under the assumption that the ins ModInfoBackup - + This is the backup of a mod Это резервная копия мода @@ -3126,7 +3164,7 @@ Most mods do not have optional esps, so chances are good you are looking at an e <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Mod ID for this mod on Nexus. This is filled in automatically if you downloaded and installed the mod from inside MO. Otherwise you can enter it manually. To find the correct id, find the mod on nexus. The URL will look like this: </span><a href=" http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://skyrim.nexusmods.com/downloads/file.php?id=1334</span></a><a href="http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" font-size:8pt; color:#000000;">. In this example, 1334 is the id you're looking for. Besides: The above is the link to Mod Organizer on the Nexus. Why not go there now and endorse?</span></a></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -3139,7 +3177,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Installed Version of the Mod. The tooltip will contain the current version available on nexus. The installed version is only set if you installed the mod through MO.</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -3172,7 +3210,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><br /></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -3205,7 +3243,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a modifiable directory view of the mod directory. You can move around files using drag &amp; drop and rename them (double click).</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Changes happen immediately on disc, so do</span><span style=" font-size:8pt; font-weight:600;"> be careful</span><span style=" font-size:8pt;">.</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -3228,230 +3266,230 @@ p, li { white-space: pre-wrap; } Close - Закрыть + Закрыть - + &Delete &Удалить - + &Rename &Переименовать - + &Hide &Скрыть - + &Unhide &Показать - + &Open - &Открыть + &Открыть - + &New Folder &Новая папка - - + + Save changes? Сохранить изменения? - - + + Save changes to "%1"? Сохранить изменения в "%1"? - + File Exists Файл уже существует - + A file with that name exists, please enter a new one Файл с таким именем уже существует, укажите другое - + failed to move file не удалось переместить файл - + failed to create directory "optional" не удалось создать папку "optional" - - + + Info requested, please wait Информация запрошена, пожалуйста, подождите - + Main Главное - + Update Обновление - + Optional Опционально - + Old Старые - + Misc Разное - + Unknown Неизвестно - + Current Version: %1 Текущая версия: %1 - + No update available Нет доступных обновлений - + (description incomplete, please visit nexus) (описание не завершено, смотрите на nexus) - + <a href="%1">Visit on Nexus</a> <a href="%1">Перейти на Nexus</a> - + Failed to delete %1 - Не удалось удалить %1 + Не удалось удалить %1 - - + + Confirm Подтверждение - + Are sure you want to delete "%1"? Вы уверены, что хотите удалить "%1"? - + Are sure you want to delete the selected files? Вы уверены, что хотите удалить выбранные файлы? - - + + New Folder Новая папка - + Failed to create "%1" Не удалось создать "%1" - - + + 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? Не удалось удалить "%1". Может быть, вам не хватает необходимых прав доступа к файлу? - - + + failed to rename %1 to %2 не удалось переименовать %1 в %2 - + There already is a visible version of this file. Replace it? Видимая версия этого файла уже существует. Заменить? - + Un-Hide Показать - + Hide Скрыть - + Name Имя - + Please enter a name Пожалуйста, введите имя - - + + Error Ошибка - + Invalid name. Must be a valid file name Неверное имя. Необходимо допустимое имя файла. - + A tweak by that name exists Настройка с таким именем существует - + Create Tweak Создать настройку @@ -3459,7 +3497,7 @@ p, li { white-space: pre-wrap; } ModInfoForeign - + This pseudo mod represents content managed outside MO. It isn't modified by MO. Этот псевдо-мод отображает содержимое, управляемое из вне MO. Оно не модифицировано в MO. @@ -3467,7 +3505,7 @@ p, li { white-space: pre-wrap; } ModInfoOverwrite - + This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit) Этот псевдо-мод содержит файлы из виртуального древа данных, которые были изменены (в Construction Kit и других программах) @@ -3475,18 +3513,18 @@ p, li { white-space: pre-wrap; } ModInfoRegular - - + + failed to write %1/meta.ini: error %2 не удалось записать %1/meta.ini: ошибка %2 - + %1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory %1 не содержит ни esp/esm, ни папок ресурсов (textures, meshes, interface, ...) - + Categories: <br> Категории: <br> @@ -3496,52 +3534,52 @@ p, li { white-space: pre-wrap; } Game plugins (esp/esm) - + Игровые плагины (esp/esm) Interface - + Интерфейс Meshes - + Полигональные сетки Music - + Музыка Scripts (Papyrus) - + Скрипты (Papyrus) Script Extender Plugin - + Script Extender плагин SkyProc Patcher - + Патч SkyProc Sound - + Звук Strings - + Строки Textures - + Текстуры @@ -3596,7 +3634,6 @@ p, li { white-space: pre-wrap; } installed version: "%1", newest version: "%2" - installed version: %1, newest version: %2 установлена версия: %1, новейшая версия: %2 @@ -3637,7 +3674,7 @@ p, li { white-space: pre-wrap; } Content - Содержание + Содержание @@ -3647,7 +3684,7 @@ p, li { white-space: pre-wrap; } Version - Версия + Версия @@ -3708,7 +3745,7 @@ p, li { white-space: pre-wrap; } Depicts the content of the mod:<br><img src=":/MO/gui/content/plugin" width=32/>Game plugins (esp/esm)<br><img src=":/MO/gui/content/interface" width=32/>interface<br><img src=":/MO/gui/content/mesh" width=32/>Meshes<br><img src=":/MO/gui/content/texture" width=32/>Textures<br><img src=":/MO/gui/content/sound" width=32/>Sounds<br><img src=":/MO/gui/content/music" width=32/>Music<br><img src=":/MO/gui/content/string" width=32/>Strings<br><img src=":/MO/gui/content/script" width=32/>Scripts (Papyrus)<br><img src=":/MO/gui/content/skse" width=32/>Script Extender plugins<br><img src=":/MO/gui/content/skyproc" width=32/>SkyProc Patcher<br> - + Показывает содержимое мода:<br><img src=":/MO/gui/content/plugin" width=32/>Плагины (esp/esm)<br><img src=":/MO/gui/content/interface" width=32/>интерфейс<br><img src=":/MO/gui/content/mesh" width=32/>Полигональные сетки<br><img src=":/MO/gui/content/texture" width=32/>Текстуры<br><img src=":/MO/gui/content/sound" width=32/>Звуки<br><img src=":/MO/gui/content/music" width=32/>Музыка<br><img src=":/MO/gui/content/string" width=32/>Строки<br><img src=":/MO/gui/content/script" width=32/>Скрипты (Papyrus)<br><img src=":/MO/gui/content/skse" width=32/>Плагины Script Extender<br><img src=":/MO/gui/content/skyproc" width=32/>Патч SkyProc<br> @@ -3745,22 +3782,22 @@ p, li { white-space: pre-wrap; } NXMAccessManager - + Logging into Nexus Авторизация на Nexus - + timeout задержка - + Unknown error Неизвестная ошибка - + Please check your password Проверьте ваш пароль @@ -3808,7 +3845,7 @@ p, li { white-space: pre-wrap; } &Open - &Открыть + &Открыть @@ -3818,7 +3855,7 @@ p, li { white-space: pre-wrap; } %1 not found - %1 не найден + %1 не найден @@ -3856,114 +3893,114 @@ p, li { white-space: pre-wrap; } PluginList - + Name - Имя + Имя - + Priority Приоритет - + Mod Index Индекс - + Flags Флаги - - + + 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. Индекс модов, определяющий formid объектов, происходящих из этих модов. - + failed to update esp info for file %1 (source id: %2), error: %3 не удалось обновить информацию о esp для файла %1 (id источника: %2), ошибка: %3 - + esp not found: %1 esp не найден: %1 - - + + Confirm Подтвердить - + Really enable all plugins? Действительно подключить все плагины? - + Really disable all plugins? Действительно отключить все плагины? - + The file containing locked plugin indices is broken Файл, содержащий индексы заблокированного плагина, не работает. - + Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them. Некоторые из ваших плагинов имеют неверные имена. Эти плагины не могут быть загружены игрой. Смотрите mo_interface.log для получения списка таких плагинов и переименуйте их. + This plugin can't be disabled (enforced by the game) + Этот плагин не может быть отключен (грузится игрой принудительно) + + + <b>Origin</b>: %1 <b>Источник</b>: %1 - + Author Автор - + Description Описание - - This plugin can't be disabled (enforced by the game) - Этот плагин не может быть отключен (грузится игрой принудительно) - - - + Missing Masters Отсутствующие мастерфайлы - + Enabled Masters Подключенные мастерфайлы - + failed to restore load order for %1 не удалось восстановить порядок загрузки для %1 @@ -3993,7 +4030,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -4141,7 +4178,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This is the list of profiles. Each Profile contains its own list and installation order of enabled mods (from a shared pool), a configuration of enabled esps/esms, a copy of the games ini-file and an optional savegame filter.</p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Note</span> For technical reasons it's currently not possible to have seperate load-orders for esps. This means you can't load moda.esp before modb.esp in one profile and the other way around in another.</p></body></html> @@ -4174,7 +4211,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The games Oblivion, Fallout 3 and Fallout NV contain a bug which prevents texture and mesh replacers (that is: all modifications to meshes and textures already in game) from working.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The Mod Organizer uses a workaround called &quot;BSA redirection&quot; (google is your friend) to fix this issue reliably and without further work. Simply activate and forget.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> @@ -4249,7 +4286,7 @@ p, li { white-space: pre-wrap; } Close - Закрыть + Закрыть @@ -4265,7 +4302,7 @@ p, li { white-space: pre-wrap; } Name - Имя + Имя @@ -4424,7 +4461,7 @@ p, li { white-space: pre-wrap; } Failed to delete %1 - Не удалось удалить %1 + Не удалось удалить %1 @@ -4475,60 +4512,60 @@ p, li { white-space: pre-wrap; } Не удалось установить загрузку proxy-dll - + Permissions required Требуются права доступа - + The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights. Текущий аккаунт пользователя не имеет требуемых прав доступа для запуска Mod Organizer. Необходимые изменения могут быть сделаны автоматически (папка MO будет сделана записываемой для текущего аккаунта пользователя). Вы получите запрос о запуске "helper.exe" с правами администратора. - - + + Woops Упс - + ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file (%1) to sherb@gmx.net, the bug is a lot more likely to be fixed. Please include a short description of what you were doing when the crash happened Mod Organizer вышел из строя! Нужно ли создать диагностический файл? Если вы вышлите файл (%1) по адресу sherb@gmx.net, ошибка с намного большей вероятностью будет исправлена. Пожалуйста, добавьте краткое описание своих действий, перед тем, как произошла ошибка - + ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1 ModOrganizer вышел из строя! К сожалению не удалось записать диагностический файл: %1 - + Mod Organizer Mod Organizer - + An instance of Mod Organizer is already running Другой экземпляр Mod Organizer уже запущен - + No game identified in "%1". The directory is required to contain the game binary and its launcher. Игра не обнаружена в "%1". Требуется, чтобы папка содержала исполняемые файлы игры. - - + + Please select the game to manage Выберете игру для управления - + Please select the game edition you have (MO can't start the game correctly if this is set incorrectly!) Пожалуйста, выберете редакцию игры, которую вы имеете (MO не сможет правильно запустить игру, если это будет установлено неверно!) - + failed to start application: %1 не удалось запустить приложение: %1 @@ -4538,28 +4575,28 @@ p, li { white-space: pre-wrap; } Используйте пункт "Справка" на панели инструментов, чтобы получить инструкции по использованию всех элементов. - - + + <Manage...> <Управлять...> - + failed to parse profile %1: %2 не удалось обработать профиль %1: %2 - + failed to find "%1" не удалось найти "%1" - + failed to access %1 не удалось получить доступ к %1 - + failed to set file time %1 не удалось изменить дату модификации для %1 @@ -4571,7 +4608,6 @@ p, li { white-space: pre-wrap; } "%1" is missing or inaccessible - "%1" is missing "%1" отсутствует или недоступен @@ -4585,6 +4621,11 @@ p, li { white-space: pre-wrap; } Error Ошибка + + + failed to open temporary file + не удалось открыть временный файл + @@ -4608,17 +4649,17 @@ p, li { white-space: pre-wrap; } Proxy DLL - + failed to spawn "%1" не удалось вызвать "%1" - + Elevation required Требуется повышение прав - + This process requires elevation to run. This is a potential security risk so I highly advice you to investigate if "%1" @@ -4633,30 +4674,25 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe Запустить с повышенными правами в любом случае? (будет выведен запрос о разрешении ModOrganizer.exe сделать изменения в системе) - + failed to spawn "%1": %2 не удалось вызвать "%1": %2 - + "%1" doesn't exist "%1" не существует - + failed to inject dll into "%1": %2 не удалось подключить dll к "%1": %2 - + failed to run "%1" не удалось запустить "%1" - - - failed to open temporary file - не удалось открыть временный файл - QueryOverwriteDialog @@ -4683,7 +4719,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe Replace - Заменить + Заменить @@ -4693,7 +4729,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe Cancel - Отмена + Отмена @@ -4752,7 +4788,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe Close - Закрыть + Закрыть @@ -4762,7 +4798,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe Text Files - Текстовые файлы + Текстовые файлы @@ -4780,12 +4816,12 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe Placeholder - Заполнитель + Метка-заполнитель Cancel - Отмена + Отмена @@ -4874,12 +4910,12 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe Failed - Неудача + Неудача Sorry, failed to start the helper application - + Не удалось запустить программу-помощник @@ -4925,7 +4961,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The display language. This will only displaye languages for which you have a translation installed.</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -5083,7 +5119,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Allows automatic log-in when the Nexus-Page for the game is clicked. Please note that the obfuscation with which the password is stored in modorganizer.ini is not very strong. If you're worried someone might steal your password, don't store it here.</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -5104,12 +5140,12 @@ p, li { white-space: pre-wrap; } Username - Имя пользователя + Имя пользователя Password - Пароль + Пароль @@ -5211,7 +5247,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The Steam App ID is required to directly start some games. For Skyrim, if this is not set or wrong, the &quot;Mod Organizer&quot; load mechanism may not work properly.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The preset for this is the App ID of the &quot;regular&quot; version so in most cases, you should be set.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you think you have a different version (GotY or something), follow these steps to get to the id:</span></p> @@ -5249,7 +5285,7 @@ p, li { white-space: pre-wrap; } There are several means to do this: *Mod Organizer* (default) In this mode the Mod Organizer itself injects the dll. The disadvantage is that you always have to start the game through MO or a link created by it. *Script Extender* In this mode, MO is installed as a Script Extender (obse, fose, nvse, skse) plugin. -*Proxy DLL* In this mode, MO replaces one of the game's dlls with one that loads MO (and the original dll of course). This will ONLY work with Steam games and it has only been tested with Skyrim. Please use this only if the other mechanisms don't work. +*Proxy DLL* In this mode, MO replaces one of the game's dlls with one that loads MO (and the original dll of course). This will ONLY work with Steam games and it has only been tested with Skyrim. Please use this only if the other mechanisms don't work. If you use the Steam version of Oblivion the default will NOT work. In this case, please install obse and use "Script Extender" as the load mechanism. Also you can then not start Oblivion from MO. Instead, use MO only to set up your mods, then quit and start Oblivion through Steam. Mod Organizer необходимо подключить dll к игре, чтобы все моды были видны в ней. @@ -5273,8 +5309,8 @@ If you use the Steam version of Oblivion the default will NOT work. In this case Mod Organizer uses an API provided by the Nexus to provide features like checking for updates and downloading files. Unfortunately this API has not been made available officially to third party tools like MO so we have to impersonate the Nexus Mod Manager to be allowed in. -On top of this Nexus has used the client identification to lock out outdated versions of NMM to force users to update. This means that MO also needs to impersonate the new version of NMM even if MO doesn't need an update. Therefore you can configure the version to identify as here. -Please note that MO does identify itself as MO to the webserver, it's not lying about what it is. It is merely adding a "compatible" NMM version to the user agent. +On top of this Nexus has used the client identification to lock out outdated versions of NMM to force users to update. This means that MO also needs to impersonate the new version of NMM even if MO doesn't need an update. Therefore you can configure the version to identify as here. +Please note that MO does identify itself as MO to the webserver, it's not lying about what it is. It is merely adding a "compatible" NMM version to the user agent. tl;dr-version: If Nexus-features don't work, insert the current version number of NMM here and try again. Mod Organizer использует API Nexus , для использования таких возможностей, как проверка обновлений и загрузка файлов. К сожалению этот API не был сделан официально доступным прочим утилитам, вроде MO, так что нужно представляться как Nexus Mod Manager, чтобы получить доступ. @@ -5290,7 +5326,7 @@ tl;dr-версия: Если возможности Nexus не работают, - It seems that the Games occasionally load ESP or ESM files even if they haven't been activated as plugins. + It seems that the Games occasionally load ESP or ESM files even if they haven't been activated as plugins. I don't yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded. Кажется, что иногда игры загружают ESP и ESM файлы, даже если они не были не подключены как плагины Обстоятельства этого пока не известны, но отчеты пользователей подразумевают, что это в ряде случаев нежелательно. Если этот флажок отмечен, не отмеченные в списке ESP и ESM не будут видимы в списке и не будут загружены. @@ -5325,7 +5361,7 @@ Uncheck this if you want to use Mod Organizer with total conversions (like Nehri By default Mod Organizer will display esp+bsa bundles installed with foreign tools as mods (left pane). This allows you to control their priority in relation to other mods. This is particularly useful if you also use Steam Workshop to install mods. -However, if you installed loose file mods outside MO which conflict with BSAs also installed outside MO those conflicts can't be resolved correctly. +However, if you installed loose file mods outside MO which conflict with BSAs also installed outside MO those conflicts can't be resolved correctly. If you disable this feature, MO will only display official DLCs this way. Please note that plugins (esps and esms) displayed in the right pane are completely unaffected by this feature. По умолчанию Mod Organizer отобразит пакеты esp+bsa, установленные из других инструментов, как моды (левая панель). Это позволяет вам контроллировать их приоритет по отношению к другим модам. Это особенно полезно, если вы используете Steam Workshop, для установки модов. @@ -5392,7 +5428,7 @@ For the other games this is not a sufficient replacement for AI! Name - Имя + Имя @@ -5413,7 +5449,7 @@ For the other games this is not a sufficient replacement for AI! Cancel - Отмена + Отмена @@ -5431,7 +5467,7 @@ For the other games this is not a sufficient replacement for AI! failed to communicate with running instance: %1 - не удалось подключиться к запущенному экземпляру: %1 + Не удалось подключиться к запущенному экземпляру: %1 @@ -5449,7 +5485,7 @@ For the other games this is not a sufficient replacement for AI! Name - Имя + Имя @@ -5477,7 +5513,7 @@ For the other games this is not a sufficient replacement for AI! Transfer Savegames - Передать сохранения + Перенести сохранения @@ -5552,7 +5588,7 @@ On Windows XP: Done - Готово + Готово @@ -5594,4 +5630,4 @@ On Windows XP: Скопировать все сохранения с персонажем "%1" в общее месторасположение? Имейте ввиду, что это запутает текущую нумерацию сохранений. - + \ No newline at end of file diff --git a/src/organizer_zh_CN.ts b/src/organizer_zh_CN.ts index 9b8754bb..ae964233 100644 --- a/src/organizer_zh_CN.ts +++ b/src/organizer_zh_CN.ts @@ -1,38 +1,36 @@ - - - + AboutDialog About - + 关于 Revision: - + 版本 Used Software - + 用到的软件 Credits - + 制作组 Translators - + 翻译机 Others - + 其它 @@ -42,7 +40,7 @@ No license - + 无授权 @@ -62,7 +60,7 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a list of esps and esms that were active when the save game was created.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">For each esp, the right column contains the mod (or mods) that can be enabled to make the missing esps/esms available.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> @@ -160,22 +158,22 @@ If there is a component called "00 Core" it is usually required. Optio Some Page - + 某些页面 Search - + 搜索 new - + 新建 failed to start download - + 启动下载失败 @@ -226,7 +224,7 @@ If there is a component called "00 Core" it is usually required. Optio <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">You can match one or multiple nexus categories to a internal ID. Whenever you download a mod from a Nexus Page, Mod Organizer will try to resolve the category defined on the Nexus to one available in MO.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">To find out a category id used by the nexus, visit the categories list of the nexus page and hover over the links there.</span></p></body></html> @@ -289,7 +287,7 @@ p, li { white-space: pre-wrap; } Never ask again - 无法读取bsa + 不再过问 @@ -325,7 +323,7 @@ p, li { white-space: pre-wrap; } pending download - + 挂起下载 @@ -381,12 +379,12 @@ p, li { white-space: pre-wrap; } < mod %1 file %2 > - + < mod %1 file %2 > Pending - + 挂起 @@ -401,12 +399,12 @@ p, li { white-space: pre-wrap; } Fetching Info 2 - 抓取信息 2 + 抓取信息 2 Installed - 抓取信息 2 + 已安装 @@ -459,7 +457,7 @@ p, li { white-space: pre-wrap; } Delete - &删除 + 删除 @@ -517,22 +515,22 @@ p, li { white-space: pre-wrap; } < mod %1 file %2 > - + < mod %1 file %2 > Pending - + 挂起 Fetching Info 1 - 抓取信息 1 + 抓取信息 1 Fetching Info 2 - 抓取信息 2 + 抓取信息 2 @@ -638,7 +636,7 @@ p, li { white-space: pre-wrap; } Memory allocation error (in refreshing directory). - + 地址分配错误(刷新目录时). @@ -658,12 +656,12 @@ p, li { white-space: pre-wrap; } Wrong Game - + 错误的游戏 The download link is for a mod for "%1" but this instance of MO has been set up for "%2". - + @@ -708,7 +706,7 @@ p, li { white-space: pre-wrap; } No known download urls. Sorry, this download can't be resumed. - + 未知的下载地址。很抱歉,下载无法继续。 @@ -728,7 +726,7 @@ p, li { white-space: pre-wrap; } Update - 更新 + 更新 @@ -753,12 +751,12 @@ p, li { white-space: pre-wrap; } Memory allocation error (in processing progress event). - + 地址分配错误(处理程序事件时). Memory allocation error (in processing downloaded data). - + 地址分配错误(处理下载数据时). @@ -789,7 +787,7 @@ p, li { white-space: pre-wrap; } Download failed. Server reported: %1 - + 下载失败。服务器报告: %1 @@ -964,7 +962,7 @@ Right now the only case I know of where this needs to be overwritten is for the MO requires 32-bit java to run this application. If you already have it installed, select javaw.exe from that installation as the binary. - + MO需要32位java来运行该应用程序。如果你已经安装,在安装目录下选择javaw.exe。 @@ -990,13 +988,13 @@ Right now the only case I know of where this needs to be overwritten is for the Save Changes? - 保存更改吗? + 保存修改? You made changes to the current executable, do you want to save them? - + 当前可执行文件被修改,是否需要保存? @@ -1136,7 +1134,7 @@ Right now the only case I know of where this needs to be overwritten is for the <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This displays the content of the archive. &lt;data&gt; represents the base directory which will map to the game's data directory. You can change the base directory via the right-click context menu and you can move around files via drag&amp;drop</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -1180,87 +1178,87 @@ 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 暂不支持文件格式: "%1" - + 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 未知压缩包错误 @@ -1301,7 +1299,7 @@ p, li { white-space: pre-wrap; } an error occured: %1 - 发生错误: %1 + 发生错误: %1 @@ -1320,27 +1318,27 @@ p, li { white-space: pre-wrap; } Click blank area to deselect - + 点击空白处取消选择 If checked, only mods that match all selected categories are displayed. - + 如果选中,仅匹配所有选定类别的 Mod 会被显示。 And - + If checked, all mods that match at least one of the selected categories are displayed. - + 如果选中,匹配任意一个选定类别的 Mod 会被显示。 Or - + @@ -1350,22 +1348,22 @@ p, li { white-space: pre-wrap; } Pick a module collection - 选择一个配置文件 + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Create profiles here. Each profile contains its own list of active mods and esps. This way you can quickly switch between setups for different play throughs.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Please note that right now your esp load order is not kept seperate for different profiles.</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">在这里创建配置文件,每个配置文件都包含了它们自己的 Mod 和 esp 的激活方案。这样您就可以通过快速切换设置来体验不同的游戏历程了。</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">请注意: 当前您的配置文件的 esp 加载顺序并不是分开保存的。</span></p></body></html> + + + + + Open list options... + 打开选项列表... @@ -1376,13 +1374,13 @@ p, li { white-space: pre-wrap; } Restore Backup... - 还原备份 + 还原备份 Create Backup - + 创建备份 @@ -1397,7 +1395,7 @@ p, li { white-space: pre-wrap; } Filter - 过滤器 + 过滤器 @@ -1426,15 +1424,10 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Choose the program to run. Once you start using ModOrganizer, you should always run your game and tools from here or through shortcuts created here, otherwise mods installed through MO will not be visible.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">You can add new Tools to this list, but I can't promise tools I haven't tested will work.</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">选择要运行的程序。一旦您开始使用 Mod Organizer,您应该始终从这里或通过在这里创建的快捷方式来运行您的游戏和工具,否则任何经由 MO 安装的 Mod 都会变得不可见。</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">您可以添加新的工具到此列表中,但我不能保证一些我没有测试过的工具能够正常工作。</span></p></body></html> + @@ -1446,13 +1439,9 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Run the selected program with ModOrganizer enabled.</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">在 Mod Organizer 启用的状态下运行指定的程序。</span></p></body></html> + @@ -1469,13 +1458,9 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This creates a start menu shortcut that directly starts the selected program with the MO active.</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">创建一个开始菜单快捷方式,使您可以直接在 MO 激活状态下运行指定的程序。</span></p></body></html> + @@ -1487,6 +1472,11 @@ p, li { white-space: pre-wrap; } Plugins 插件 + + + Sort + 排序 + List of available esp/esm files @@ -1497,43 +1487,29 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This list contains the esps and esms contained in the active mods. These require their own load order. Use drag&amp;drop to modify this load order. Please note that MO will only save the load order for mods that are active/checked.<br />There is a great tool named &quot;BOSS&quot; to automatically sort these files.</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">这个列表中包含了位于已激活 Mod 里的 esp 和 esm 文件。这些文件都需要它们自己的加载顺序,您可以使用拖放来修改加载顺序。请注意: MO 将只保存已激活或已勾选状态的 Mod 的加载顺序。<br />有个非常棒的工具叫作 &quot;BOSS&quot;,它可以自动对这些文件进行排序。</span></p></body></html> - - - - Sort - - - - - Open list options... - + Archives - + 压缩包 <html><head/><body><p>BSAs are bundles of game assets (textures, scripts, ...). By default, the engine loads these bundles in a separate step from loose files. MO can manage those archives to align their load order with that of loose files:</p><p>If archives are <span style=" font-weight:600;">managed</span>, their load order is specified by the priority of the corresponding mod (left pane), the same as the loose files. You can manually enable any BSA that has no corresponding plugin active.<br/></p><p>If archives are <span style=" font-weight:600;">not managed</span> their load order is specified by the priority of the corresponding plugin (right pane, plugins tab). You can then not manually enable BSAs where the plugin isn't active.</p><p>In either case you can not disable archives if there is a matching plugin, the game will load them no matter what.</p></body></html> - + <html><head/><body><p>Have MO manage archives (<a href="#"><span style=" text-decoration: underline; color:#0000ff;">read more</span></a>)</p></body></html> - + <html><head/><body><p>使用 MO 管理压缩包 (<a href="#"><span style=" text-decoration: underline; color:#0000ff;">查看更多</span></a>)</p></body></html> List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order. - 可用 BSA 文件的列表。未勾选的项目不会被 MO 管理并且会忽略安装顺序。 + 可用 BSA 压缩包的列表。未勾选的项目不会被 MO 管理并且会忽略安装顺序。 @@ -1541,10 +1517,7 @@ p, li { white-space: pre-wrap; } By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored! BSAs checked here are loaded in such a way that your installation order is obeyed properly. - BSA 文件是 Bethesda 专用的压缩包文件 (区别于 .zip 文件),里面包含了游戏所用的 Data 内的文件 (meshes, textures 等)。这与 Data 目录里分散的文件是不同的。 -默认情况下,BSA 文件的名称取决于 ESP 插件的名称 (例: plugins.esp 对应 plugins.bsa)。游戏运行时,ESP 对应的 BSA 将会自动加载,并且比所有分散的文件优先级都高,左边您设置的安装顺序最终会被忽略掉。 - -这里勾选的 BSA 将会依从您的安装顺序,并且会自行调整加载顺序。 + @@ -1555,7 +1528,7 @@ BSAs checked here are loaded in such a way that your installation order is obeye Data - Data + Data @@ -1569,8 +1542,8 @@ BSAs checked here are loaded in such a way that your installation order is obeye - - + + Refresh 刷新 @@ -1605,17 +1578,11 @@ BSAs checked here are loaded in such a way that your installation order is obeye <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a list of all savegames for this game. Hover over a list entry to get detailed information about the save including a list of esps/esms that were used at the time this save was created but aren't active now.</span></p> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a list of all savegames for this game. Hover over a list entry to get detailed information about the save including a list of esps/esms that were used at the time this save was created but aren't active now.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you click &quot;Fix Mods...&quot; in the context menu, MO will try to activate all mods and esps to fix those missing esps. It will not disable anything!</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">这是此游戏所有存档的列表,将鼠标悬停在项目上来获取该存档的详细信息,里面包含了现在没有被激活但是当存档被创建时所使用的 esp 或 esm 的清单。</span></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">如果您在右键菜单中点击“修复 Mod”,那么 MO 便会尝试激活所有 Mod 和 esp 来修复那些缺失的 esp,它并不会禁用任何东西!</span></p></body></html> + @@ -1630,7 +1597,7 @@ p, li { white-space: pre-wrap; } Show Hidden - + 显示隐藏 @@ -1645,7 +1612,7 @@ p, li { white-space: pre-wrap; } Install &Mod - 安装 &Mod + 安装 &Mod @@ -1665,12 +1632,12 @@ p, li { white-space: pre-wrap; } &Profiles - &配置文件 + &配置文件 Configure Profiles - 设置配置文件 + 设置配置文件 @@ -1685,7 +1652,7 @@ p, li { white-space: pre-wrap; } &Executables - &可执行程序 + &可执行程序 @@ -1706,7 +1673,7 @@ p, li { white-space: pre-wrap; } &Tools - 工具(&T) + &工具 @@ -1721,12 +1688,12 @@ p, li { white-space: pre-wrap; } &Settings - &设置 + &设置 Configure settings and workarounds - 配置设定和解决方案 + 配置设定和解决方案 @@ -1750,9 +1717,9 @@ p, li { white-space: pre-wrap; } - + Update - 更新 + 更新 @@ -1763,7 +1730,7 @@ p, li { white-space: pre-wrap; } No Problems - 没有问题 + 没有问题 @@ -1794,19 +1761,19 @@ Right now this has very limited functionality - + Endorse Mod Organizer 称赞 Mod Organizer Copy Log to Clipboard - 复制到剪贴板 + 复制到剪贴板 Ctrl+C - Ctrl+M + Ctrl+C @@ -1826,7 +1793,7 @@ Right now this has very limited functionality Problems - 问题 + 问题 @@ -1836,17 +1803,17 @@ Right now this has very limited functionality Everything seems to be in order - 一切井然有序 + Help on UI - 界面帮助 + 界面帮助 Documentation Wiki - 说明文档 (维基) + 说明文档 (维基) @@ -1861,17 +1828,17 @@ Right now this has very limited functionality About - + About Qt - + 关于 Qt failed to save load order: %1 - 无法保存加载顺序: %1 + 无法保存加载顺序: %1 @@ -1886,7 +1853,7 @@ Right now this has very limited functionality failed to create profile: %1 - 无法创建配置文件: %1 + 无法创建配置文件: %1 @@ -1911,49 +1878,71 @@ Right now this has very limited functionality failed to read savegame: %1 - 无法读取存档: %1 + 无法读取存档: %1 Plugin "%1" failed: %2 - 插件 "%1" 失败: %2 + 插件 "%1" 失败: %2 Plugin "%1" failed - 插件 "%1" 失败 + 插件 "%1" 失败 + + + + Download? + 下载? + + + + A download has been started but no installed page plugin recognizes it. +If you download anyway no information (i.e. version) will be associated with the download. +Continue? + + + + + Browse Mod Page + failed to init plugin %1: %2 - 插件初始化失败 %1: %2 + 插件初始化失败 %1: %2 Plugin error - + 插件错误 It appears the plugin "%1" failed to load last startup and caused MO to crash. Do you want to disable it? (Please note: If this is the first time you see this message for this plugin you may want to give it another try. The plugin may be able to recover from the problem) - + Failed to start "%1" - 无法启动 "%1" + 无法启动 "%1" Waiting - 稍等 + 稍等 Please press OK once you're logged into steam. 当您登录 Steam 时请点击确定。 + + + Executable "%1" not found + 可执行程序 "%1" 未找到 + Start Steam? @@ -1965,912 +1954,888 @@ Right now this has very limited functionality 想要正确地启动游戏,Steam 必须处于运行状态。需要MO尝试启动 Steam 吗? - + Also in: <br> - 也在: <br> + 也在: <br> - + No conflict 没有冲突 - + <Edit...> - <编辑...> + <编辑...> - + + Failed to refresh list of esps: %1 + 无法刷新 esp 列表 : %1 + + + This bsa is enabled in the ini file so it may be required! 该 BSA 已在 ini 文件中启用,因此它可能是必需的。 - + Activating Network Proxy 激活网络代理 - - - Installation successful - 安装成功 - - - - - Configure Mod - 配置 Mod + + + Failed to write settings + 无法写入设置 - - - This mod contains ini tweaks. Do you want to configure them now? - 此 Mod 中包含 ini 设定文件,您想现在就对它们进行配置吗? + + + An error occured trying to write back MO settings: %1 + - - - mod "%1" not found - Mod "%1" 未找到 + + File is write protected + - - - Installation cancelled - 安装已取消 + + Invalid file format (probably a bug) + - - - The mod was not installed completely. - 该模组没有完全安装。 + + Unknown error %1 + 未知错误 %1 - + Some plugins could not be loaded 一些插件无法载入 - + Too many esps and esms enabled - + esp 和 esm 开启太多 - - + + Description missing - + 描述丢失 - + The following plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version: - + - + The game doesn't allow more than 255 active plugins (including the official ones) to be loaded. You have to disable some unused plugins or merge some plugins into one. You can find a guide here: <a href="http://wiki.step-project.com/Guide:Merging_Plugins">http://wiki.step-project.com/Guide:Merging_Plugins</a> - + - + Choose Mod 选择模组 - + Mod Archive - Mod 压缩包 + + + + + + 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. + 该模组没有完全安装。 + + + 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 + 无法更新 Mod 列表: %1 - + failed to spawn notepad.exe: %1 - 无法生成 notepad.exe: %1 + 无法生成 notepad.exe: %1 - + failed to open %1 - 无法打开 %1 + - + failed to change origin name: %1 - 无法更改原始文件名: %1 - - - - Executable "%1" not found - + 无法更改原始文件名: %1 - - Failed to refresh list of esps: %1 - + + failed to move "%1" from mod "%2" to "%3": %4 + 无法移动 "%1" 从 mod "%2" 到 "%3": %4 - - failed to move "%1" from mod "%2" to "%3": %4 - + + <Contains %1> + <Contains %1> - + <Checked> - <已勾选> + <Checked> - + <Unchecked> - <未勾选> + - + <Update> - <有更新> + - + + <Managed by MO> + + + + + <Managed outside MO> + + + + <No category> - <无类别> + - + <Conflicted> - <有冲突> + - + <Not Endorsed> - + - + failed to rename mod: %1 - 无法重命名 Mod: %1 + 无法重命名 Mod: %1 - + Overwrite? 覆盖 - + This will replace the existing mod "%1". Continue? - 这将会覆盖已存在的mod "%1"。是否继续? + 这将会覆盖已存在的mod "%1"。是否继续? - + failed to remove mod "%1" - 无法移动 Mod: %1 + 无法移动 mod %1 - - - + + + failed to rename "%1" to "%2" 重命名 "%1 "为 "%2" 时出错 - + Multiple esps activated, please check that they don't conflict. 多个esp已激活,请检查以确保不冲突。 - - - - + + + + Confirm 确认 - + Remove the following mods?<br><ul>%1</ul> - 是否删除下列mod?<br><ul>%1</ul> + 是否删除下列mod?<br><ul>%1</ul> - + failed to remove mod: %1 - 无法移动 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 无法使用此方法重新安装。 + 旧版 MO 安装的 Mod 无法使用此方法重新安装。 - - - You need to be logged in with Nexus to endorse + + You need to be logged in with Nexus to resume a download 你必须登录 Nexus 才能点“称赞” - - - Are you sure you want to remove the following %n save(s)?<br><ul>%1</ul><br>Removed saves will be sent to the Recycle Bin. - - - - - - - Delete %n save(s) - - - - - - - Extract BSA - 解压 BSA - - - - failed to read %1: %2 - 无法读取 %1: %2 + + + You need to be logged in with Nexus to endorse + 你必须登录 Nexus 才能点“称赞” - - This archive contains invalid hashes. Some files may be broken. - 压缩包 Hash 值错误。部分文件可能已经损坏。 + + Failed to display overwrite dialog: %1 + 无法显示 overwrite 对话: %1 - + Nexus ID for this Mod is unknown 此模组的Nexus ID未知 - - Download? - 下载 - - - - A download has been started but no installed page plugin recognizes it. -If you download anyway no information (i.e. version) will be associated with the download. -Continue? - - - - - Browse Mod Page - - - - - - Failed to write settings - - - - - - An error occured trying to write back MO settings: %1 - - - - - File is write protected - - - - - Invalid file format (probably a bug) - - - - - Unknown error %1 - - - - - <Managed by MO> - - - - - <Managed outside MO> - - - - - You need to be logged in with Nexus to resume a download - 你必须登录 Nexus 才能点“称赞” - - - - Failed to display overwrite dialog: %1 - - - - - + + Create Mod... 创建Mod... - + This will move all files from overwrite into a new, regular mod. Please enter a name: - + 这会移动所有的 overwirite 文件成为一个新建的 mod。 +请输入名称: - + A mod with this name already exists 同名模组已存在。 - + Continue? - + 继续? - + The versioning scheme decides which version is considered newer than another. This function will guess the versioning scheme under the assumption that the installed version is outdated. - + - - + + Sorry - + 抱歉 - + I don't know a versioning scheme where %1 is newer than %2. - + - + Really enable all visible mods? 确定要启用全部可见的模组吗? - + Really disable all visible mods? 确定要禁用全部可见的模组吗? - + Choose what to export 选择要导出的内容 - + Everything - 全部 + 全部 - + All installed mods are included in the list - 所有包含在列表的已安装mod + 所有包含在列表的已安装mod - + Active Mods 激活模组 - + Only active (checked) mods from your current profile are included 仅包含当前配置文件中已激活(打勾)的mod - + Visible - 可见的 + 可见的 - + All mods visible in the mod list are included - 包含列表中所有可见的mod + 包含列表中所有可见的mod - + export failed: %1 - 导出失败: %1 + 导出失败: %1 - + Install Mod... 安装模组... - + Enable all visible 启用所有可见项目 - + Disable all visible 禁用所有可见项目 - + Check all for update 检查所有更新 - + Export to csv... 导出为 CSV... - + All Mods - + 所有模组 - + Sync to Mods... - 同步到 Mod... + 同步到模组... - + Restore Backup 还原备份 - + Remove Backup... - 还原备份... + 移除备份 - + Add/Remove Categories - + 添加/移除 类别 - + Replace Categories - + 更换类别 - + Primary Category 主分类 - + Change versioning scheme - + - + Un-ignore update - + - + Ignore update - + - + Rename Mod... 重命名模组... - + Remove Mod... 移除模组... - + Reinstall Mod 重新安装模组 - + Un-Endorse 取消称赞 - - + + Endorse 称赞 - + Won't endorse 不想称赞 - + Endorsement state unknown 称赞状态不明 - + Ignore missing data 忽略丢失的数据 - + Visit on Nexus 在Nexus上浏览 - + Open in explorer 在资源管理器中打开 - + Information... - 信息... + - - + + Exception: - 例外: + - - + + Unknown exception - 未知的例外 + - + <All> - <全部> + - + <Multiple> - XX + + + + + Are you sure you want to remove the following %n save(s)?<br><ul>%1</ul><br>Removed saves will be sent to the Recycle Bin. + - + Please wait while LOOT is running - + - + Fix Mods... 修复模组... - - Delete - &删除 + + + Delete %n save(s) + - + 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? 无法移除 "%1"。也许您需要足够的文件权限? - + There already is a visible version of this file. Replace it? 已存在同名文件。确定要覆盖吗? - + file not found: %1 - esp未找到:%1 + - + failed to generate preview for %1 - + - + Sorry, can't preview anything. This function currently does not support extracting from bsas. - + - + Update available 更新可用 - + Open/Execute 打开/执行 - + Add as Executable 添加为可执行文件 - + Preview - + - + Un-Hide 取消隐藏 - + Hide 隐藏 - + Write To File... - 写入文件... + - + Do you want to endorse Mod Organizer on %1 now? - 是否现在就在 %1 点赞支持 Mod Organizer? + - + Thank you! - + - + Thank you for your endorsement! - + - + Request to Nexus failed: %1 - 发往 Nexus 的请求失败: %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 + - + + + failed to read %1: %2 + + + + Error 错误 - + failed to extract %1 (errorcode %2) - 无法解压 %1 (错误代码 %2) + + + + + Extract BSA + 解压 BSA - + + This archive contains invalid hashes. Some files may be broken. + + + + Extract... 解压... - + Edit Categories... 编辑类别... - + Deselect filter - + - + Remove 移除 - + Enable all 全部启用 - + Disable all 全部禁用 - + Unlock load order 解锁加载顺序 - + Lock load order 锁定加载顺序 - + depends on missing "%1" - + - + incompatible with "%1" - + - + No profile set - + - + loot failed. Exit code was: %1 - + - + failed to start loot - + - + failed to run loot: %1 - + - + Errors occured - + - + Backup of load order created - + - + Choose backup to restore - + - + No Backups - + - + There are no backups to restore - + - - + + Restore failed - + - - + + Failed to restore the backup. Errorcode: %1 - + - + Backup of modlist created - + @@ -2885,8 +2850,63 @@ This function will guess the versioning scheme under the assumption that the ins ModInfo - - + + Plugins + + + + + Textures + + + + + Meshes + + + + + UI Changes + + + + + Music + + + + + Sound Effects + + + + + Scripts + + + + + SKSE Plugins + + + + + SkyProc Tools + + + + + Strings + + + + + invalid content type %1 + + + + + invalid index %1 无效的索引 %1 @@ -2894,7 +2914,7 @@ This function will guess the versioning scheme under the assumption that the ins ModInfoBackup - + This is the backup of a mod 这是模组的备份 @@ -2935,7 +2955,7 @@ This function will guess the versioning scheme under the assumption that the ins Ini Files - + @@ -2950,17 +2970,17 @@ This function will guess the versioning scheme under the assumption that the ins Ini Tweaks - + This is a list of ini tweaks (ini modifications that can be toggled). - + This is a list of ini tweaks. Ini Tweaks are (usually small) fragments of ini files that are applied over existing settings in skyrim.ini/skyrimprefs.ini. Each tweak can be toggled individually. You should check the description of the mod wether the tweaks are really optional. - + @@ -2985,7 +3005,7 @@ This function will guess the versioning scheme under the assumption that the ins This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view. - + @@ -3004,7 +3024,7 @@ This function will guess the versioning scheme under the assumption that the ins They usually contain optional functionality, see the readme. Most mods do not have optional esps, so chances are good you are looking at an empty list. - + @@ -3107,7 +3127,7 @@ Most mods do not have optional esps, so chances are good you are looking at an e <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Mod ID for this mod on Nexus. This is filled in automatically if you downloaded and installed the mod from inside MO. Otherwise you can enter it manually. To find the correct id, find the mod on nexus. The URL will look like this: </span><a href=" http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://skyrim.nexusmods.com/downloads/file.php?id=1334</span></a><a href="http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" font-size:8pt; color:#000000;">. In this example, 1334 is the id you're looking for. Besides: The above is the link to Mod Organizer on the Nexus. Why not go there now and endorse?</span></a></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -3120,7 +3140,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Installed Version of the Mod. The tooltip will contain the current version available on nexus. The installed version is only set if you installed the mod through MO.</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -3153,19 +3173,19 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><br /></p></body></html> - + Endorse - 称赞 + Notes - 笔记 + @@ -3182,7 +3202,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a modifiable directory view of the mod directory. You can move around files using drag &amp; drop and rename them (double click).</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Changes happen immediately on disc, so do</span><span style=" font-size:8pt; font-weight:600;"> be careful</span><span style=" font-size:8pt;">.</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -3208,264 +3228,264 @@ p, li { white-space: pre-wrap; } 关闭 - + &Delete &删除 - + &Rename &重命名 - + &Hide &隐藏 - + &Unhide &取消隐藏 - + &Open &打开 - + &New Folder &新建文件夹 - - + + Save changes? 保存更改吗? - - + + Save changes to "%1"? - 将更改保存到“%1”吗? + - + File Exists 文件已存在 - + A file with that name exists, please enter a new one 文件名已存在,请输入其它名称 - + failed to move file 无法移动文件 - + failed to create directory "optional" 无法创建 "optional" 目录 - - + + Info requested, please wait 请求信息已发出,请稍后 - + Main 主要文件 - + Update 更新 - + Optional 可选文件 - + Old 旧档 - + Misc 杂项 - + Unknown 未知 - + Current Version: %1 当前版本: %1 - + No update available 没有可用的更新 - + (description incomplete, please visit nexus) (描述信息不完整,请访问N网) - + <a href="%1">Visit on Nexus</a> <a href="%1">访问N网</a> - + Failed to delete %1 无法删除 %1 - - + + Confirm 确认 - + Are sure you want to delete "%1"? 确定要删除 "%1" 吗? - + Are sure you want to delete the selected files? 确定要删除所选的文件吗? - - + + New Folder 新建文件夹 - + Failed to create "%1" 无法创建 "%1" - - + + 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? 无法移除 "%1"。也许您需要足够的文件权限? - - + + failed to rename %1 to %2 无法重命名 %1 为 %2 - + There already is a visible version of this file. Replace it? 已存在同名文件。确定要覆盖吗? - + Un-Hide 取消隐藏 - + Hide 隐藏 - + Name 名称 - + Please enter a name - + - - + + Error 错误 - + Invalid name. Must be a valid file name - + - + A tweak by that name exists - + - + Create Tweak - + ModInfoForeign - + This pseudo mod represents content managed outside MO. It isn't modified by MO. - + ModInfoOverwrite - + This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit) - 此虚拟安装包内包含来自虚拟 Data 树的文件,但文件发生了变化 (例: 被CK修改了) + ModInfoRegular - - + + failed to write %1/meta.ini: error %2 - 无法写入 %1/meta.ini: %2 + - + %1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory - %1 中未包含 esp 或 esm 和有效的目录 (textures, meshes, interface, ...) + - + Categories: <br> - 种类: <br> + @@ -3473,52 +3493,52 @@ p, li { white-space: pre-wrap; } Game plugins (esp/esm) - + Interface - + Meshes - + Music - + Scripts (Papyrus) - + Script Extender Plugin - + SkyProc Patcher - + Sound - + Strings - + Textures - + @@ -3543,12 +3563,12 @@ p, li { white-space: pre-wrap; } Overwrites files - Overwrites文件 + Overwritten files - 覆盖的 Mod + @@ -3558,12 +3578,12 @@ p, li { white-space: pre-wrap; } Redundant - 冗余 + Non-MO - + @@ -3573,13 +3593,12 @@ p, li { white-space: pre-wrap; } installed version: "%1", newest version: "%2" - installed version: %1, newest version: %2 - 当前版本: %1,最新版本: %2 + The newest version on Nexus seems to be older than the one you have installed. This could either mean the version you have has been withdrawn (i.e. due to a bug) or the author uses a non-standard versioning scheme and that newest version is actually newer. Either way you may want to "upgrade". - + @@ -3594,7 +3613,7 @@ p, li { white-space: pre-wrap; } drag&drop failed: %1 - 拖拽失败: %1 + @@ -3609,12 +3628,12 @@ p, li { white-space: pre-wrap; } Flags - 标志 + Content - 内容 + @@ -3644,7 +3663,7 @@ p, li { white-space: pre-wrap; } Installation - 安装 + @@ -3680,17 +3699,17 @@ p, li { white-space: pre-wrap; } Emblemes to highlight things that might require attention. - 需要注意被标记为高亮的 + Depicts the content of the mod:<br><img src=":/MO/gui/content/plugin" width=32/>Game plugins (esp/esm)<br><img src=":/MO/gui/content/interface" width=32/>interface<br><img src=":/MO/gui/content/mesh" width=32/>Meshes<br><img src=":/MO/gui/content/texture" width=32/>Textures<br><img src=":/MO/gui/content/sound" width=32/>Sounds<br><img src=":/MO/gui/content/music" width=32/>Music<br><img src=":/MO/gui/content/string" width=32/>Strings<br><img src=":/MO/gui/content/script" width=32/>Scripts (Papyrus)<br><img src=":/MO/gui/content/skse" width=32/>Script Extender plugins<br><img src=":/MO/gui/content/skyproc" width=32/>SkyProc Patcher<br> - + Time this mod was installed - + @@ -3722,22 +3741,22 @@ p, li { white-space: pre-wrap; } NXMAccessManager - + Logging into Nexus - + - + timeout 超时 - + Unknown error - + - + Please check your password 请检查您的密码 @@ -3747,7 +3766,7 @@ p, li { white-space: pre-wrap; } Failed to guess mod id for "%1", please pick the correct one - 提取mod "%1"的ID编号失败,请自行选择正确项。 + @@ -3795,7 +3814,7 @@ p, li { white-space: pre-wrap; } %1 not found - 找不到 %1 + @@ -3833,116 +3852,116 @@ p, li { white-space: pre-wrap; } PluginList - + Name 名称 - + Priority 优先级 - + Mod Index Mod 索引 - + Flags - 标志 + - - + + unknown - 未知 + - + Name of your mods 你的mod名称 - + 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. - + - + failed to update esp info for file %1 (source id: %2), error: %3 - + - + esp not found: %1 - esp未找到:%1 + - - + + Confirm 确认 - + Really enable all plugins? - + - + Really disable all plugins? - + - + The file containing locked plugin indices is broken - + - + Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them. 您的一些插件名称无效!这些插件无法被游戏载入。请查看 mo_interface.log 来确认那些受影响的插件并重命名它们。 - <b>Origin</b>: %1 - + This plugin can't be disabled (enforced by the game) + 这个插件不能被禁用 (由游戏执行) + <b>Origin</b>: %1 + + + + Author 作者 - + Description 描述 - - This plugin can't be disabled (enforced by the game) - 这个插件不能被禁用 (由游戏执行) - - - + Missing Masters - + - + Enabled Masters - + - + failed to restore load order for %1 - 恢复 %1 加载顺序失败 + @@ -3950,7 +3969,7 @@ p, li { white-space: pre-wrap; } Preview - + @@ -3963,16 +3982,16 @@ p, li { white-space: pre-wrap; } Problems - 问题 + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html> - + @@ -3983,12 +4002,12 @@ p, li { white-space: pre-wrap; } Fix - 修复 + No guided fix - + @@ -3996,32 +4015,32 @@ p, li { white-space: pre-wrap; } invalid profile name %1 - + failed to create %1 - 无法创建 %1 + failed to write mod list: %1 - 无法更新 Mod 列表: %1 + failed to update tweaked ini file, wrong settings may be used: %1 - 更新tweaked ini文件失败,可能会应用错误的设置: %1 + failed to create tweaked ini: %1 - 创建 tweaked ini: %1 失败 + "%1" is missing or inaccessible - + @@ -4045,7 +4064,7 @@ p, li { white-space: pre-wrap; } failed to parse ini file (%1) - 无法解析 Ini 文件 (%1) + @@ -4056,7 +4075,7 @@ p, li { white-space: pre-wrap; } failed to modify "%1" - 未能找到 "%1" + @@ -4114,7 +4133,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This is the list of profiles. Each Profile contains its own list and installation order of enabled mods (from a shared pool), a configuration of enabled esps/esms, a copy of the games ini-file and an optional savegame filter.</p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Note</span> For technical reasons it's currently not possible to have seperate load-orders for esps. This means you can't load moda.esp before modb.esp in one profile and the other way around in another.</p></body></html> @@ -4147,7 +4166,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The games Oblivion, Fallout 3 and Fallout NV contain a bug which prevents texture and mesh replacers (that is: all modifications to meshes and textures already in game) from working.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The Mod Organizer uses a workaround called &quot;BSA redirection&quot; (google is your friend) to fix this issue reliably and without further work. Simply activate and forget.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> @@ -4206,7 +4225,7 @@ p, li { white-space: pre-wrap; } Rename - &重命名 + @@ -4258,7 +4277,7 @@ p, li { white-space: pre-wrap; } Invalid profile name - + @@ -4268,17 +4287,17 @@ p, li { white-space: pre-wrap; } Are you sure you want to remove this profile (including local savegames if any)? - + Profile broken - + This profile you're about to delete seems to be broken or the path is invalid. I'm about to delete the following folder: "%1". Proceed? - + @@ -4324,47 +4343,47 @@ p, li { white-space: pre-wrap; } invalid field name "%1" - 无效的名称 "%1" + invalid type for "%1" (should be integer) - 无效的类型 "%1" (应该是整数) + invalid type for "%1" (should be string) - 无效的类型 "%1" (应该是字符串) + invalid type for "%1" (should be float) - 无效的类型 "%1" (应该是浮点数) + no fields set up yet! - + field not set "%1" - + invalid character in field "%1" - + empty field name - + invalid game type %1 - + @@ -4448,62 +4467,62 @@ p, li { white-space: pre-wrap; } 无法设置代理DLL加载 - + Permissions required 需要权限 - + The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights. - + - - + + Woops 糟糕 - + ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file (%1) to sherb@gmx.net, the bug is a lot more likely to be fixed. Please include a short description of what you were doing when the crash happened - ModOrganizer已经崩溃。诊断文件是否已经产生?如果你将文件(%1)发送至 sherb@gmx.net ,这个bug有可能会被修复。最好加入崩溃发生时情况的简短说明(用英文吧)。 + - + ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1 Mod Organizer 崩溃了!遗憾的是,我无法生成诊断文件: %1 - + Mod Organizer Mod Organizer - + An instance of Mod Organizer is already running Mod Organizer 的一个实例正在运行 - + No game identified in "%1". The directory is required to contain the game binary and its launcher. "%1" 中未检测到游戏。请确保该路径中包含游戏执行程序以及对应的 Launcher 文件。 - - + + Please select the game to manage 请选择想要管理的游戏 - + Please select the game edition you have (MO can't start the game correctly if this is set incorrectly!) - + - + failed to start application: %1 - + @@ -4511,28 +4530,28 @@ p, li { white-space: pre-wrap; } 请使用工具栏上的“帮助”来获得所有元素的使用说明 - - + + <Manage...> <管理...> - + failed to parse profile %1: %2 无法解析配置文件 %1: %2 - + failed to find "%1" 未能找到 "%1" - + failed to access %1 无法访问 %1 - + failed to set file time %1 无法设置文件时间 %1 @@ -4544,8 +4563,7 @@ p, li { white-space: pre-wrap; } "%1" is missing or inaccessible - "%1" is missing - + @@ -4558,6 +4576,11 @@ p, li { white-space: pre-wrap; } Error 错误 + + + failed to open temporary file + + @@ -4581,62 +4604,57 @@ p, li { white-space: pre-wrap; } 代理DLL - + failed to spawn "%1" 无法生成 "%1" - + Elevation required - + - + This process requires elevation to run. This is a potential security risk so I highly advice you to investigate if "%1" can be installed to work without elevation. Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe to make changes to the system) - + - + failed to spawn "%1": %2 无法生成 "%1": %2 - + "%1" doesn't exist "%1" 不存在 - + failed to inject dll into "%1": %2 无法注入 dll 到 "%1": %2 - + failed to run "%1" 无法运行 "%1" - - - failed to open temporary file - - QueryOverwriteDialog Mod Exists - Mod 已存在 + This mod seems to be installed already. Do you want to add files from this archive (overwriting existing ones) or do you want to completely replace the existing files (old files are deleted)? Alternatively you can install this mod under a different name. - 这个mod看上去已经存在。你是希望将本次压缩包文件添加(覆盖已存在文件)或完全覆盖(旧的文件全删除)?另外你还可以起别的名称安装本mod。 + @@ -4651,17 +4669,17 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe Replace - 替换 + Rename - &重命名 + Cancel - 取消 + @@ -4669,27 +4687,27 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe Save # - + Character - + Level - 等级 + Location - 位置 + Date - 时间 + @@ -4697,7 +4715,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe Missing ESPs - 缺失的 ESP + @@ -4705,7 +4723,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe Dialog - 对话框 + @@ -4730,12 +4748,12 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe Text Files - 文本文件 + failed to open "%1" for writing - + @@ -4761,7 +4779,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe archive.dll not loaded: "%1" - archive.dll 没有载入: "%1" + @@ -4799,7 +4817,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe failed to move outdated files: %1. Please update manually. - 移除过时文件失败: %1。请手动更新 + @@ -4824,7 +4842,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe no file for update found. Please update manually. - 没有发现可更新。请手动更新。 + @@ -4842,18 +4860,18 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe Failed - 失败 + Sorry, failed to start the helper application - + attempt to store setting for unknown plugin "%1" - + @@ -4893,7 +4911,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The display language. This will only displaye languages for which you have a translation installed.</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -4904,12 +4922,12 @@ p, li { white-space: pre-wrap; } Style - + graphical style - 界面样式 + @@ -4919,23 +4937,23 @@ p, li { white-space: pre-wrap; } Log Level - + Decides the amount of data printed to "ModOrganizer.log" - + Decides the amount of data printed to "ModOrganizer.log". "Debug" produces very useful information for finding problems. There is usually no noteworthy performance impact but the file may become rather large. If this is a problem you may prefer the "Info" level for regluar use. On the "Error" level the log file usually remains empty. - + Debug - + @@ -4986,37 +5004,37 @@ p, li { white-space: pre-wrap; } User interface - + If checked, the download interface will be more compact. - + Compact Download Interface - + If checked, the download list will display meta information instead of file names. - + Download Meta Information - + Reset stored information from dialogs. - 重设对话框信息。 + This will make all dialogs show up again where you checked the "Remember selection"-box. - 全部对话框将全部重新显示,包括你已勾取过“记住选择”的对话框。 + @@ -5050,7 +5068,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Allows automatic log-in when the Nexus-Page for the game is clicked. Please note that the obfuscation with which the password is stored in modorganizer.ini is not very strong. If you're worried someone might steal your password, don't store it here.</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -5061,7 +5079,7 @@ p, li { white-space: pre-wrap; } If checked and if correct credentials are entered below, log-in to Nexus (for browsing and downloading) is automatic. - 勾取并在下面输入正确账户,将自动登录Nexus (浏览和下载)。 + @@ -5086,7 +5104,7 @@ p, li { white-space: pre-wrap; } Disable automatic internet features. This does not affect features that are explicitly invoked by the user (like checking mods for updates, endorsing, opening the web browser) - 取消自动联网功能。这并不影响用户调用功能(如检查mod更新,点赞支持mod,打开网页浏览)。 + @@ -5101,7 +5119,7 @@ p, li { white-space: pre-wrap; } Use a proxy for network connections. This uses the system-wide settings which can be configured in Internet Explorer. Please note that MO will start up a few seconds slower on some systems when using a proxy. - + @@ -5111,12 +5129,12 @@ p, li { white-space: pre-wrap; } Associate with "Download with manager" links - + Known Servers (updated on download) - + @@ -5146,17 +5164,17 @@ p, li { white-space: pre-wrap; } Key - 关键 + Value - + Blacklisted Plugins (use <del> to remove): - + @@ -5178,7 +5196,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The Steam App ID is required to directly start some games. For Skyrim, if this is not set or wrong, the &quot;Mod Organizer&quot; load mechanism may not work properly.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The preset for this is the App ID of the &quot;regular&quot; version so in most cases, you should be set.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you think you have a different version (GotY or something), follow these steps to get to the id:</span></p> @@ -5216,10 +5234,10 @@ p, li { white-space: pre-wrap; } There are several means to do this: *Mod Organizer* (default) In this mode the Mod Organizer itself injects the dll. The disadvantage is that you always have to start the game through MO or a link created by it. *Script Extender* In this mode, MO is installed as a Script Extender (obse, fose, nvse, skse) plugin. -*Proxy DLL* In this mode, MO replaces one of the game's dlls with one that loads MO (and the original dll of course). This will ONLY work with Steam games and it has only been tested with Skyrim. Please use this only if the other mechanisms don't work. +*Proxy DLL* In this mode, MO replaces one of the game's dlls with one that loads MO (and the original dll of course). This will ONLY work with Steam games and it has only been tested with Skyrim. Please use this only if the other mechanisms don't work. If you use the Steam version of Oblivion the default will NOT work. In this case, please install obse and use "Script Extender" as the load mechanism. Also you can then not start Oblivion from MO. Instead, use MO only to set up your mods, then quit and start Oblivion through Steam. - + @@ -5234,8 +5252,8 @@ If you use the Steam version of Oblivion the default will NOT work. In this case Mod Organizer uses an API provided by the Nexus to provide features like checking for updates and downloading files. Unfortunately this API has not been made available officially to third party tools like MO so we have to impersonate the Nexus Mod Manager to be allowed in. -On top of this Nexus has used the client identification to lock out outdated versions of NMM to force users to update. This means that MO also needs to impersonate the new version of NMM even if MO doesn't need an update. Therefore you can configure the version to identify as here. -Please note that MO does identify itself as MO to the webserver, it's not lying about what it is. It is merely adding a "compatible" NMM version to the user agent. +On top of this Nexus has used the client identification to lock out outdated versions of NMM to force users to update. This means that MO also needs to impersonate the new version of NMM even if MO doesn't need an update. Therefore you can configure the version to identify as here. +Please note that MO does identify itself as MO to the webserver, it's not lying about what it is. It is merely adding a "compatible" NMM version to the user agent. tl;dr-version: If Nexus-features don't work, insert the current version number of NMM here and try again. Mod Organizer 使用了一个N网所提供的 API 来进行类似于检查更新和下载文件这样的操作。遗憾的是这个 API 并没有给第三方工具 (比如 MO) 正式的授权,所以我们需要模拟 NMM 来进行这些操作。 @@ -5251,7 +5269,7 @@ tl;dr-version: If Nexus-features don't work, insert the current version num - It seems that the Games occasionally load ESP or ESM files even if they haven't been activated as plugins. + It seems that the Games occasionally load ESP or ESM files even if they haven't been activated as plugins. I don't yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded. 看来,游戏偶尔会加载一些没有被激活成插件的 ESP 或 ESM 文件。 我还尚不知道它在什么情况下会这样,但是有用户报告说它在某些情况下是很不必要的。如果这个选项被选中,那么在列表中没有被勾选的 ESP 和 ESM 将不会在游戏中出现,并且也不会被载入。 @@ -5264,36 +5282,36 @@ I don't yet know what the circumstances are, but user reports imply it is i If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on) - + If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on) Uncheck this if you want to use Mod Organizer with total conversions (like Nehrim) but be aware that the game will crash if required files are not enabled. - + Force-enable game files - + Disable this to no longer display mods installed outside MO in the mod list (left pane). Assets from those mods will then be treated as having lowest mod priority together with the original game content. - + By default Mod Organizer will display esp+bsa bundles installed with foreign tools as mods (left pane). This allows you to control their priority in relation to other mods. This is particularly useful if you also use Steam Workshop to install mods. -However, if you installed loose file mods outside MO which conflict with BSAs also installed outside MO those conflicts can't be resolved correctly. +However, if you installed loose file mods outside MO which conflict with BSAs also installed outside MO those conflicts can't be resolved correctly. If you disable this feature, MO will only display official DLCs this way. Please note that plugins (esps and esms) displayed in the right pane are completely unaffected by this feature. - + Display mods installed outside MO - + @@ -5311,7 +5329,7 @@ For the other games this is not a sufficient replacement for AI! These are workarounds for problems with Mod Organizer. Please make sure you read the help text before changing anything here. - + @@ -5388,7 +5406,7 @@ For the other games this is not a sufficient replacement for AI! failed to communicate with running instance: %1 - 无法连接到正在运行的实例: %1 + @@ -5434,17 +5452,17 @@ For the other games this is not a sufficient replacement for AI! Transfer Savegames - 转移存档 + Global Characters - + This is a list of characters in the global location. - 这里是全局位置存档角色列表。 + @@ -5456,7 +5474,7 @@ On Windows Vista/Windows 7: On Windows XP: C:\Documents and Settings\[UserName]\My Documents\My Games\Skyrim\Saves - + @@ -5469,7 +5487,7 @@ On Windows XP: C:\Documents and Settings[UserName]\My Documents\My Games\Skyrim\Saves - + @@ -5499,17 +5517,17 @@ On Windows XP: Profile Characters - 配置文件中角色 + Overwrite - 覆盖 + Overwrite the file "%1" - 覆盖文件 "%1" + @@ -5523,17 +5541,17 @@ On Windows XP: Copy all save games of character "%1" to the profile? - 是否复制角色 "%1" 的所有游戏存档到这个配置中? + Move all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games. - 是否移动角色 "%1" 的所有游戏存档到全局路径?请注意这将使游戏存档的运行编号变得混乱。 + Copy all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games. - 是否拷贝角色 "%1" 的所有游戏存档到全局路径?请注意这将使游戏存档的运行编号变得混乱。 + - + \ No newline at end of file diff --git a/src/organizer_zh_TW.ts b/src/organizer_zh_TW.ts index 00cb02ae..08c9ed2e 100644 --- a/src/organizer_zh_TW.ts +++ b/src/organizer_zh_TW.ts @@ -1,38 +1,36 @@ - - - + AboutDialog About - + 關於 Revision: - + 版本: Used Software - + 使用的軟體 Credits - + 歸功於 Translators - + 翻譯者 Others - + 其他 @@ -42,7 +40,7 @@ No license - + @@ -50,19 +48,19 @@ Activate Mods - 激活 Mod + 啟動 Mod This is a list of esps and esms that were active when the save game was created. - 這是 esp 和 esm 檔案的列表,當您的存檔被建立時將會被激活。 + 這是 esp 和 esm 檔案的列表,當您的存檔被建立時將會被啟動。 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a list of esps and esms that were active when the save game was created.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">For each esp, the right column contains the mod (or mods) that can be enabled to make the missing esps/esms available.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> @@ -71,11 +69,11 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">這是 esp 和 esm 檔案的列表,當您的存檔被建立時將會被激活。</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">這是 esp 和 esm 檔案的列表,當您的存檔被建立時將會被啟動。</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">對於每個 esp,右列中包含了可以通過啟用來使缺失的 esp 或 esm 變得可用的 Mod。</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">如果您點擊確定,那麼所有在右列中已選的並且可用的 Mod 和缺失的 esp 都將會被激活。</span></p></body></html> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">如果您點擊確定,那麼所有在右列中已選的並且可用的 Mod 和缺失的 esp 都將會被啟動。</span></p></body></html> @@ -160,22 +158,22 @@ If there is a component called "00 Core" it is usually required. Optio Some Page - + Search - + 搜尋 new - + failed to start download - + 下載失敗 @@ -226,7 +224,7 @@ If there is a component called "00 Core" it is usually required. Optio <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">You can match one or multiple nexus categories to a internal ID. Whenever you download a mod from a Nexus Page, Mod Organizer will try to resolve the category defined on the Nexus to one available in MO.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">To find out a category id used by the nexus, visit the categories list of the nexus page and hover over the links there.</span></p></body></html> @@ -315,7 +313,7 @@ p, li { white-space: pre-wrap; } Done - 完成 + 完成 @@ -325,7 +323,7 @@ p, li { white-space: pre-wrap; } pending download - + 等待中的下載 @@ -334,7 +332,7 @@ p, li { white-space: pre-wrap; } Placeholder - 占位符 + 預留位置 @@ -347,7 +345,7 @@ p, li { white-space: pre-wrap; } Paused - Double Click to resume - + 暫停 - 雙擊以回復 @@ -359,7 +357,7 @@ p, li { white-space: pre-wrap; } Uninstalled - Double Click to re-install - 已安裝 - 雙擊重新安裝 + 解除安裝 - 雙擊重新安裝 @@ -368,7 +366,7 @@ p, li { white-space: pre-wrap; } Placeholder - 占位符 + 預留位置 @@ -381,27 +379,27 @@ p, li { white-space: pre-wrap; } < mod %1 file %2 > - + Pending - + 等待 Paused - 暫停 + 暫停 Fetching Info 1 - + Fetching Info 2 - + @@ -411,7 +409,7 @@ p, li { white-space: pre-wrap; } Uninstalled - + 已解除安裝 @@ -439,12 +437,12 @@ p, li { white-space: pre-wrap; } 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). - + 這將會從列表中永久移除所有已安裝的下載(但不會從硬碟中移除)。 @@ -459,17 +457,17 @@ p, li { white-space: pre-wrap; } Delete - &刪除 + 刪除 Un-Hide - 取消隱藏 + 取消隱藏 Remove from View - + @@ -494,12 +492,12 @@ p, li { white-space: pre-wrap; } Delete Installed... - 移除已安裝的項目... + 刪除已安裝的項目... Delete All... - + 刪除所有... @@ -517,22 +515,22 @@ p, li { white-space: pre-wrap; } < mod %1 file %2 > - + Pending - + 等待 Fetching Info 1 - + Fetching Info 2 - + @@ -555,12 +553,12 @@ p, li { white-space: pre-wrap; } 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). - 這將會從列表和磁碟中移除所有已安裝的下載項目。 + 這將會從列表中移除所有已安裝的下載(但不會從硬碟中移除)。 @@ -575,17 +573,17 @@ p, li { white-space: pre-wrap; } Delete - &刪除 + 刪除 Un-Hide - 取消隱藏 + 取消隱藏 Remove from View - + @@ -610,12 +608,12 @@ p, li { white-space: pre-wrap; } Delete Installed... - 移除已安裝的項目... + 刪除已安裝的項目... Delete All... - + 刪除所有... @@ -638,7 +636,7 @@ p, li { white-space: pre-wrap; } Memory allocation error (in refreshing directory). - + 記憶體分配錯誤(於重新整理目錄時)。 @@ -658,12 +656,12 @@ p, li { white-space: pre-wrap; } Wrong Game - + The download link is for a mod for "%1" but this instance of MO has been set up for "%2". - + @@ -708,7 +706,7 @@ p, li { white-space: pre-wrap; } No known download urls. Sorry, this download can't be resumed. - + 沒有已知的下載url。抱歉,無法回復這個下載。 @@ -728,7 +726,7 @@ p, li { white-space: pre-wrap; } Update - 更新 + 更新 @@ -753,12 +751,12 @@ p, li { white-space: pre-wrap; } Memory allocation error (in processing progress event). - + 記憶體分配錯誤(於處理程序時)。 Memory allocation error (in processing downloaded data). - + 記憶體分配錯誤(於處理已下載資料時)。 @@ -789,7 +787,7 @@ p, li { white-space: pre-wrap; } Download failed. Server reported: %1 - + 下載失敗。伺服器回報: %1 @@ -959,12 +957,12 @@ Right now the only case I know of where this needs to be overwritten is for the Java (32-bit) required - + 需要Java (32位元) MO requires 32-bit java to run this application. If you already have it installed, select javaw.exe from that installation as the binary. - + MO需要32位元java來執行這個程式。如果你已經安裝了,選擇那個安裝下的binary中的javaw.exe。 @@ -990,13 +988,13 @@ Right now the only case I know of where this needs to be overwritten is for the Save Changes? - 儲存更改嗎? + 儲存修改? You made changes to the current executable, do you want to save them? - + 你對現在的可執行檔案做出了改變,你想要保存它們嗎? @@ -1104,7 +1102,7 @@ Right now the only case I know of where this needs to be overwritten is for the New Mod - 新增 + 新增 Mod @@ -1136,7 +1134,7 @@ Right now the only case I know of where this needs to be overwritten is for the <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This displays the content of the archive. &lt;data&gt; represents the base directory which will map to the game's data directory. You can change the base directory via the right-click context menu and you can move around files via drag&amp;drop</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -1147,17 +1145,17 @@ p, li { white-space: pre-wrap; } Placeholder - 占位符 + 預留位置 OK - 確定 + 確定 Cancel - 取消 + 取消 @@ -1165,7 +1163,7 @@ p, li { white-space: pre-wrap; } archive.dll not loaded: "%1" - + archive.dll 並未載入: "%1" @@ -1180,87 +1178,87 @@ p, li { white-space: pre-wrap; } - + Extracting files 正在解壓檔案 - + failed to create backup - + 產生備份失敗 - + Mod Name - + Mod 名稱 - + Name - 名稱 + 名稱 - + Invalid name - + 無效的名稱 - + The name you entered is invalid, please enter a different one. - + 你輸入的名稱是無效的,請輸入不同的名稱。 - + File format "%1" not supported 暫不支持檔案格式: "%1" - + 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 未知壓縮包錯誤 @@ -1301,12 +1299,12 @@ p, li { white-space: pre-wrap; } an error occured: %1 - 發生錯誤: %1 + 發生錯誤: %1 an error occured - 發生錯誤 + 發生錯誤 @@ -1320,89 +1318,94 @@ p, li { white-space: pre-wrap; } Click blank area to deselect - + 點擊空白區域以取消選擇 If checked, only mods that match all selected categories are displayed. - + 如果打勾,符合所有選擇的類別的mod會被顯示。 And - + 以及 If checked, all mods that match at least one of the selected categories are displayed. - + 如果打勾,符合至少一項選擇的類別的mod會被顯示。 Or - + 或者 Profile - 配置檔案 + 配置檔案 Pick a module collection - 選擇一個配置檔案 + 選擇一個配置檔案 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Create profiles here. Each profile contains its own list of active mods and esps. This way you can quickly switch between setups for different play throughs.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Please note that right now your esp load order is not kept seperate for different profiles.</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">在這裡建立配置檔案,每個配置檔案都包含了它們自己的 Mod 和 esp 的激活方案。這樣您就可以通過快速切換設定來體驗不同的遊戲歷程了。</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">請注意: 當前您的配置檔案的 esp 加載順序並不是分開儲存的。</span></p></body></html> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">在這裡建立配置檔案,每個配置檔案都包含了它們自己的 Mod 和 esp 的啟動方案。這樣您就可以通過快速切換設定來體驗不同的遊戲歷程了。</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">請注意: 當前您的配置檔案的 esp 載入順序並不是分開儲存的。</span></p></body></html> + + + + Open list options... + 打開名單選項... Refresh list. This is usually not necessary unless you modified data outside the program. - 重新整理列表,這通常不是必須的,除非您在程式之外修改了檔案的數據。 + 重新整理列表,除非您在程式之外修改了檔案的資料,否則這通常是不必要的。 Restore Backup... - + 回復備份... Create Backup - + 產生備份 List of available mods. - + 可用 Mod 名單 This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag & drop mods to change their "installation" orders. - + 這是已安裝的 Mod 名單。使用複選框來啟動/關閉 Mod 並拖曳 Mod 來改變它們的"安裝"順序。 Filter - 過濾器 + 篩選 No groups - + 無群組 @@ -1414,126 +1417,121 @@ p, li { white-space: pre-wrap; } Namefilter - + Pick a program to run. - 選擇要運行的程式。 + 選擇要執行的程式。 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Choose the program to run. Once you start using ModOrganizer, you should always run your game and tools from here or through shortcuts created here, otherwise mods installed through MO will not be visible.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">You can add new Tools to this list, but I can't promise tools I haven't tested will work.</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">選擇要運行的程式。一旦您開始使用 Mod Organizer,您應該始終從這裡或通過在這裡建立的捷徑來運行您的遊戲和工具,否則任何經由 MO 安裝的 Mod 都會變得不可見。</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">您可以添加新的工具到此列表中,但我不能保證一些我沒有測試過的工具能够正常工作。</span></p></body></html> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">選擇要執行的程式。一旦您開始使用 Mod Organizer,您應該始終從這裡或通過在這裡建立的捷徑來運行您的遊戲和工具,否則任何經由 MO 安裝的 Mod 都會變得不可見。</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">您可以添加新的工具到此列表中,但我不能保證一些我沒有測試過的工具能夠正常工作。</span></p></body></html> Run program - 運行程式 + 執行程式 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Run the selected program with ModOrganizer enabled.</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">在 Mod Organizer 啟用的狀態下運行指定的程式。</span></p></body></html> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">在 Mod Organizer 啟用的狀態下執行指定的程式。</span></p></body></html> Run - 運行 + 執行 Create a shortcut in your start menu or on the desktop to the specified program - + 為特定的程式在開始功能列或桌面上產生一個捷徑 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This creates a start menu shortcut that directly starts the selected program with the MO active.</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">建立一個開始菜單捷徑,使您可以直接在 MO 激活狀態下運行指定的程式。</span></p></body></html> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">建立一個開始功能列捷徑,使您可以直接在 MO 啟動狀態下執行指定的程式。</span></p></body></html> Shortcut - + 捷徑 Plugins - + 插件 + + + + Sort + 排序 List of available esp/esm files - 可用 esp 或 esm 檔案的列表 + 可用 esp/esm 檔案名單 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This list contains the esps and esms contained in the active mods. These require their own load order. Use drag&amp;drop to modify this load order. Please note that MO will only save the load order for mods that are active/checked.<br />There is a great tool named &quot;BOSS&quot; to automatically sort these files.</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">這個列表中包含了位于已激活 Mod 裡的 esp 和 esm 檔案。這些檔案都需要它們自己的加載順序,您可以使用拖放來修改加載順序。請注意: MO 將只儲存已激活或已勾選狀態的 Mod 的加載順序。<br />有個非常棒的工具叫作 &quot;BOSS&quot;,它可以自動對這些檔案進行排序。</span></p></body></html> - - - - Sort - - - - - Open list options... - +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">這個列表中包含了位於已啟動 Mod 裡的 esp 和 esm 檔案。這些檔案都需要它們自己的載入順序,您可以拖曳來修改載入順序。請注意: MO 將只儲存已啟動或已勾選狀態的 Mod 的載入順序。<br />有個非常棒的工具叫作 "BOSS",它可以自動對這些檔案進行排序。</span></p></body></html> Archives - + 壓縮包 <html><head/><body><p>BSAs are bundles of game assets (textures, scripts, ...). By default, the engine loads these bundles in a separate step from loose files. MO can manage those archives to align their load order with that of loose files:</p><p>If archives are <span style=" font-weight:600;">managed</span>, their load order is specified by the priority of the corresponding mod (left pane), the same as the loose files. You can manually enable any BSA that has no corresponding plugin active.<br/></p><p>If archives are <span style=" font-weight:600;">not managed</span> their load order is specified by the priority of the corresponding plugin (right pane, plugins tab). You can then not manually enable BSAs where the plugin isn't active.</p><p>In either case you can not disable archives if there is a matching plugin, the game will load them no matter what.</p></body></html> - + <html><head/><body><p>BSA 檔案是遊戲資源的包裹(材質、腳本......)。預設情況下,遊戲引擎自分散的檔案中分別載入這些包裹。MO 可以透過分散的檔案來管理這些壓縮包以調整它們的載入順序:</p><p>如果壓縮包<span style=" font-weight:600;">有被管理</span>,它們的載入順序是被對應的 Mod(左側的面板)決定其優先程度,分散的檔案也是如此。您可以手動啟用任何沒有對應插件於啟動狀態的 BSA 檔案。<br/></p><p>如果壓縮包 <span style=" font-weight:600;">沒有被管理</span>,它們的載入順序是被對應的插件(右側的面板,插件選項)決定其優先程度。您就不可以手動啟用沒有插件於啟動狀態的 BSA 檔案。</p><p>在兩種狀況下您都不可以關閉有對應插件的壓縮包,遊戲仍然會載入它們。</p></body></html> <html><head/><body><p>Have MO manage archives (<a href="#"><span style=" text-decoration: underline; color:#0000ff;">read more</span></a>)</p></body></html> - + List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order. - 可用 BSA 檔案的列表。未勾選的項目不會被 MO 管理並且會忽略安裝順序。 + 可用 BSA 檔案的列表。未勾選的項目不會被 MO 管理並且會忽略安裝順序。 @@ -1541,229 +1539,229 @@ p, li { white-space: pre-wrap; } By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored! BSAs checked here are loaded in such a way that your installation order is obeyed properly. - BSA 檔案是 Bethesda 專用的壓縮包檔案 (區別於 .zip 檔案),裡面包含了遊戲所用的 Data 內的檔案 (meshes, textures 等)。這與 Data 目錄裡分散的檔案是不同的。 + BSA 檔案是 Bethesda 專用的壓縮包檔案 (區別於 .zip 檔案),裡面包含了遊戲所用的 Data 內的檔案 (meshes, textures 等)。這與 Data 目錄裡分散的檔案是不同的。 默認情況下,BSA 檔案的名稱取決於 ESP 插件的名稱 (例: plugins.esp 對應 plugins.bsa)。遊戲運行時,ESP 對應的 BSA 將會自動加載,並且比所有分散的檔案優先級都高,左邊您設定的安裝順序最終會被忽略掉。 -這裡勾選的 BSA 將會依從您的安裝順序,並且會自行調整加載順序。 +這裡勾選的 BSA 將會依從您的安裝順序,並且會自行調整載入順序。 File - 檔案 + 檔案 Data - Data + 資料 refresh data-directory overview - 重新整理 Data 目錄總覽 + 重新整理 Data 目錄總覽 Refresh the overview. This may take a moment. - 重新整理總覽,這可能需要一些時間。 + 重新整理總覽,這可能需要一些時間。 - - + + Refresh - 重新整理 + 重新整理 This is an overview of your data directory as visible to the game (and tools). - 這是在遊戲中可見的 Data 目錄 (和工具) 的總覽。 + 這是在遊戲中可見的 Data 目錄 (和工具) 的總覽。 Mod - Mod + Mod Filter the above list so that only conflicts are displayed. - 過濾上面的列表,使您只能看到有衝突的檔案。 + 篩選上面的列表,使您只能看到有衝突的檔案。 Show only conflicts - 只顯示衝突 + 只顯示衝突 Saves - 存檔 + 存檔 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a list of all savegames for this game. Hover over a list entry to get detailed information about the save including a list of esps/esms that were used at the time this save was created but aren't active now.</span></p> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a list of all savegames for this game. Hover over a list entry to get detailed information about the save including a list of esps/esms that were used at the time this save was created but aren't active now.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you click &quot;Fix Mods...&quot; in the context menu, MO will try to activate all mods and esps to fix those missing esps. It will not disable anything!</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">這是此遊戲所有存檔的列表,將滑鼠懸停在項目上來獲取該存檔的詳細信息,裡面包含了現在沒有被激活但是當存檔被建立時所使用的 esp 或 esm 的清單。</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">這是此遊戲所有存檔的列表,將滑鼠懸停在項目上來獲取該存檔的詳細信息,裡面包含了現在沒有被啟動但是當存檔被建立時所使用的 esp 或 esm 的清單。</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">如果您在右鍵菜單中點擊“修復 Mod”,那麼 MO 便會嘗試激活所有 Mod 和 esp 來修復那些缺失的 esp,它並不會禁用任何東西!</span></p></body></html> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">如果您在右鍵選項中點擊“修復 Mod”,那麼 MO 便會嘗試啟動所有 Mod 和 esp 來修復那些缺失的 esp,它並不會禁用任何東西!</span></p></body></html> Downloads - 下載 + 下載 This is a list of mods you downloaded from Nexus. Double click one to install it. - 這是當前已下載的 Mod 的列表,雙擊進行安裝。 + 這是自N網下載的 Mod 的列表,雙擊進行安裝。 Show Hidden - + 顯示隱藏 Tool Bar - 工具欄 + 工具欄 Install Mod - 安裝 Mod + 安裝 Mod Install &Mod - 安裝 &Mod + 安裝 &Mod Install a new mod from an archive - 通過壓縮包來安裝一個新 Mod + 通過壓縮包來安裝一個新 Mod Ctrl+M - Ctrl+M + Ctrl+M Profiles - 配置檔案 + 配置檔案 &Profiles - &配置檔案 + &配置檔案 Configure Profiles - 設定配置檔案 + 設定配置檔案 Ctrl+P - Ctrl+P + Ctrl+P Executables - 可執行程式 + 可執行程式 &Executables - &可執行程式 + &可執行程式 Configure the executables that can be started through Mod Organizer - 配置可通過 MO 來啟動的程式 + 配置可透過 Mod Organizer 來啟動的程式 Ctrl+E - Ctrl+E + Ctrl+E Tools - + 工具 &Tools - + &工具 Ctrl+I - Ctrl+I + Ctrl+I Settings - 設定 + 設定 &Settings - &設定 + &設定 Configure settings and workarounds - 配置設定和解決方案 + 配置設定和解決方案 Ctrl+S - Ctrl+S + Ctrl+S Nexus - N網 + N網 Search nexus network for more mods - 搜尋N網以獲取更多 Mod + 搜尋N網以獲取更多 Mod Ctrl+N - Ctrl+N + Ctrl+N - + Update - 更新 + 更新 Mod Organizer is up-to-date - Mod Organizer 現在是最新版本 + Mod Organizer 現在是最新版本 No Problems - 沒有問題 + 沒有問題 @@ -1771,7 +1769,7 @@ p, li { white-space: pre-wrap; } !Work in progress! Right now this has very limited functionality - 如果 MO 檢測到您的安裝中存在潛在的問題,那麼此按鈕將會高亮顯示,同時 MO 也會給您相應的修復提示。 + 如果 MO 檢測到您的安裝中存在潛在的問題,那麼此按鈕將會高亮顯示,同時 MO 也會給您相應的修復提示。 !此功能尚未完善! 當前此功能所能提供的項目非常有限 @@ -1780,103 +1778,103 @@ Right now this has very limited functionality Help - 幫助 + 幫助 Ctrl+H - Ctrl+M + Ctrl+M Endorse MO - + 贊同 MO - + Endorse Mod Organizer - + 贊同 Mod Organizer Copy Log to Clipboard - + 複製紀錄到剪貼簿上 Ctrl+C - Ctrl+M + Ctrl+C Toolbar - 工具欄 + 工具欄 Desktop - + 桌面 Start Menu - + 開始功能列 Problems - 問題 + 問題 There are potential problems with your setup - 您的安裝中存在潛在的問題 + 您的安裝中存在潛在的問題 Everything seems to be in order - 一切井然有序 + 一切看來井然有序 Help on UI - 介面幫助 + 使用者介面幫助 Documentation Wiki - 說明文檔 (維基) + 說明文檔 (Wiki) Report Issue - 報告問題 + 回報問題 Tutorials - + 教學 About - + 關於 About Qt - + 關於 Qt failed to save load order: %1 - 無法儲存加載順序: %1 + 儲存加載順序失敗: %1 Name - 名稱 + 名稱 @@ -1886,991 +1884,990 @@ Right now this has very limited functionality failed to create profile: %1 - 無法建立配置檔案: %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. - + 您正第一次啟動 Mod Organizer。您想要顯示其基本功能的教學嗎?如果你選擇不要,您仍然可以自"幫助"選單開啟教學。 Downloads in progress - 正在下載 + 正在下載 There are still downloads in progress, do you really want to quit? - 仍有正在進行中的下載,您確定要退出嗎? + 仍有正在進行中的下載,您確定要退出嗎? failed to read savegame: %1 - 無法讀取存檔: %1 + 讀取存檔失敗: %1 Plugin "%1" failed: %2 - + 插件 "%1" 無效: %2 Plugin "%1" failed - + 插件 "%1" 無效 + + + + Download? + 下載? + + + + A download has been started but no installed page plugin recognizes it. +If you download anyway no information (i.e. version) will be associated with the download. +Continue? + + + + + Browse Mod Page + 瀏覽 Mod 頁面 failed to init plugin %1: %2 - + 初始化插件 %1 失敗: %2 Plugin error - + 插件錯誤 It appears the plugin "%1" failed to load last startup and caused MO to crash. Do you want to disable it? (Please note: If this is the first time you see this message for this plugin you may want to give it another try. The plugin may be able to recover from the problem) - + 插件 "%1" 在開始時載入失敗並導致 MO 崩潰。您想要關閉它嗎? +(請注意:如果這是您第一次看到有關這個插件的訊息,您最好再讓它試一次。這個插件可能有辦法自問題中修復。) Failed to start "%1" - 無法啟動 "%1" + 啟動 "%1" 失敗 Waiting - 稍等 + 稍等 Please press OK once you're logged into steam. - 當您登入 Steam 時請點擊確定。 + 當您登入 Steam 後請點擊確定。 + + + + Executable "%1" not found + 找不到可執行程式 "%1" Start Steam? - 啟動 Steam? + 啟動 Steam? Steam is required to be running already to correctly start the game. Should MO try to start steam now? - 想要正確地啟動遊戲,Steam 必須處於運行狀態,MO 要立即啟動 Steam 嗎? + Steam 必須處於運行狀態以正確地啟動遊戲,MO 要立即啟動 Steam 嗎? - + Also in: <br> - 也在: <br> + 也在: <br> - + No conflict - 沒有衝突 + 沒有衝突 - + <Edit...> - <編輯...> + <編輯...> - - This bsa is enabled in the ini file so it may be required! - 該 BSA 已在 Ini 檔案中啟用,因此它可能是必需的。 + + Failed to refresh list of esps: %1 + 重新整理 esp 列表失敗: %1 - - Activating Network Proxy - + + This bsa is enabled in the ini file so it may be required! + 該 BSA 已在 Ini 檔案中啟用,因此它可能是必需的。 - - - Installation successful - 安裝成功 + + Activating Network Proxy + - - - Configure Mod - 配置 Mod + + + Failed to write settings + 寫入設定失敗 - - - This mod contains ini tweaks. Do you want to configure them now? - 此 Mod 中包含 Ini 設定檔案,您想現在就對它們進行配置嗎? + + + An error occured trying to write back MO settings: %1 + - - - mod "%1" not found - Mod "%1" 未找到 + + File is write protected + 檔案是唯獨的狀態 - - - Installation cancelled - 安裝已取消 + + Invalid file format (probably a bug) + 無效的檔案格式 (可能是 bug) - - - The mod was not installed completely. - Mod 沒有完全安裝。 + + Unknown error %1 + 未知錯誤 %1 - + Some plugins could not be loaded - + 有些插件無法被載入 - + Too many esps and esms enabled - + 過多的 esp 和 esm 啟動 - - + + Description missing - + 描述遺失 - + The following plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version: - + 以下的插件無法被載入。原因可能是因為遺失了它的依存檔案(例如 python)或是過期的版本: - + The game doesn't allow more than 255 active plugins (including the official ones) to be loaded. You have to disable some unused plugins or merge some plugins into one. You can find a guide here: <a href="http://wiki.step-project.com/Guide:Merging_Plugins">http://wiki.step-project.com/Guide:Merging_Plugins</a> - + 遊戲不允許超過 255 個啟動的插件(包括正式的)被載入。您必須關閉一些未使用的插件或是合併一些插件。您可以在此找到導覽:<a href="http://wiki.step-project.com/Guide:Merging_Plugins">http://wiki.step-project.com/Guide:Merging_Plugins</a> - + Choose Mod - 選擇 Mod + 選擇 Mod - + Mod Archive - Mod 壓縮包 + Mod 壓縮包 + + + + + 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 沒有完全安裝。 - + 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 + 更新 Mod 列表失敗: %1 - + failed to spawn notepad.exe: %1 - 無法生成 notepad.exe: %1 + 生成 notepad.exe 失敗: %1 - + failed to open %1 - 無法開啟 %1 + 開啟 %1 失敗 - + failed to change origin name: %1 - 無法更改原始檔案名: %1 + 更改原始檔名失敗: %1 - - Executable "%1" not found - - - - - Failed to refresh list of esps: %1 - + + failed to move "%1" from mod "%2" to "%3": %4 + 自 Mod "%2" 移動 "%1" 到 Mod "%3" 失敗: %4 - - failed to move "%1" from mod "%2" to "%3": %4 - + + <Contains %1> + - + <Checked> - <已勾選> + <已勾選> - + <Unchecked> - <未勾選> + <未勾選> - + <Update> - <有更新> + <有更新> + + + + <Managed by MO> + <由 MO 管理> - + + <Managed outside MO> + <非由 MO 管理> + + + <No category> - <無類別> + <無類別> - + <Conflicted> - + <有衝突> - + <Not Endorsed> - + <尚未贊同> - + failed to rename mod: %1 - 無法重新命名 Mod: %1 + 重新命名 Mod 失敗: %1 - + Overwrite? - 覆蓋 + 覆蓋? - + This will replace the existing mod "%1". Continue? - + 即將取代已存在的 Mod "%1"。繼續? - + failed to remove mod "%1" - 無法移動 Mod: %1 + 移除 Mod 失敗 "%1" - - - + + + failed to rename "%1" to "%2" 重新命名 "%1 "為 "%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 - 無法移動 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 - - - - - Are you sure you want to remove the following %n save(s)?<br><ul>%1</ul><br>Removed saves will be sent to the Recycle Bin. - - - - - - - Delete %n save(s) - - - + 舊版 MO 安裝的 Mod 無法使用此方法重新安裝。 - - Extract BSA - 解壓 BSA + + You need to be logged in with Nexus to resume a download + 您必須登入N網以回復下載。 - - - failed to read %1: %2 - 無法讀取 %1: %2 + + + You need to be logged in with Nexus to endorse + 您必須登入N網以贊同。 - - This archive contains invalid hashes. Some files may be broken. - 壓縮包 Hash 值錯誤。部分檔案可能已經損壞。 + + Failed to display overwrite dialog: %1 + 顯示覆蓋的對話失敗: %1 - + Nexus ID for this Mod is unknown - 此 Mod 的N網 ID 未知 - - - - Download? - 下載 - - - - A download has been started but no installed page plugin recognizes it. -If you download anyway no information (i.e. version) will be associated with the download. -Continue? - - - - - Browse Mod Page - - - - - - Failed to write settings - - - - - - An error occured trying to write back MO settings: %1 - - - - - File is write protected - - - - - Invalid file format (probably a bug) - - - - - Unknown error %1 - - - - - <Managed by MO> - - - - - <Managed outside MO> - - - - - You need to be logged in with Nexus to resume a download - - - - - Failed to display overwrite dialog: %1 - + 此 Mod 的N網 ID 未知 - - + + Create Mod... - + 創造 Mod... - + This will move all files from overwrite into a new, regular mod. Please enter a name: - + 即將移動所有在 overwrite 的檔案到一個新的、正常的 Mod。 +請輸入一個名稱: - + A mod with this name already exists - + - + Continue? - + 繼續? - + The versioning scheme decides which version is considered newer than another. This function will guess the versioning scheme under the assumption that the installed version is outdated. - + - - + + Sorry - + 抱歉 - + I don't know a versioning scheme where %1 is newer than %2. - + - + Really enable all visible mods? - 確定要啟用全部可見的 Mod 嗎? + 確定要啟用所有可見的 Mod 嗎? - + Really disable all visible mods? - 確定要禁用全部可見的 Mod 嗎? + 確定要禁用所有可見的 Mod 嗎? - + Choose what to export - + - + Everything - + - + All installed mods are included in the list - + - + Active Mods - 激活 Mod + 啟動 Mod - + 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... + 安裝 Mod... - + Enable all visible - 啟用所有可見項目 + 啟用所有可見項目 - + Disable all visible - 禁用所有可見項目 + 禁用所有可見項目 - + Check all for update - 檢查更新 + 檢查所有的更新 - + Export to csv... - + - + All Mods - + 所有 Mod - + Sync to Mods... - 同步到 Mod... + 同步到 Mod... - + Restore Backup - + 回復備份 - + Remove Backup... - + 移除備份 - + Add/Remove Categories - + 增加/移除類別 - + Replace Categories - + 取代類別 - + Primary Category - + 主要類別 - + Change versioning scheme - + - + Un-ignore update - + 取消忽略更新 - + Ignore update - + 忽略更新 - + Rename Mod... - 重新命名... + 重新命名 Mod... - + Remove Mod... - 移除 Mod... + 移除 Mod... - + Reinstall Mod - 重新安裝 Mod + 重新安裝 Mod - + Un-Endorse - + 取消贊同 - - + + Endorse - + 贊同 - + Won't endorse - + 拒絕贊同 - + Endorsement state unknown - + 贊同狀態不明 - + Ignore missing data - + 忽略遺失的檔案 - + Visit on Nexus - 在N網上流覽 + 在N網上訪問 - + Open in explorer - 在檔案總管中開啟 + 在檔案總管中開啟 - + Information... - 訊息... + 訊息... - - + + Exception: - 例外: + 例外: - - + + Unknown exception - 未知的例外 + 未知的例外 - + <All> - <全部> + <全部> - + <Multiple> - + + + + + Are you sure you want to remove the following %n save(s)?<br><ul>%1</ul><br>Removed saves will be sent to the Recycle Bin. + - + Please wait while LOOT is running - + 在 LOOT 執行時請等待 - + Fix Mods... - 修復 Mod... + 修復 Mod... - - Delete - &刪除 + + + Delete %n save(s) + 刪除存檔 %n - + failed to remove %1 - 無法刪除 %1 + 刪除 %1 失敗 - - + + failed to create %1 - 無法建立 %1 + 建立 %1 失敗 - + Can't change download directory while downloads are in progress! - 下載檔案時不能修改下載目錄! + 下載檔案時不能修改下載路徑! - + Download failed - 下載失敗 + 下載失敗 - + failed to write to file %1 - 無法寫入檔案 %1 + 寫入檔案 %1 失敗 - + %1 written - 已寫入 %1 + 已寫入 %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? 無法移除 "%1"。也許您需要足夠的檔案權限? - + There already is a visible version of this file. Replace it? 已存在同名檔案。確定要覆蓋嗎? - + file not found: %1 - + 找不到檔案: %1 - + failed to generate preview for %1 - + - + Sorry, can't preview anything. This function currently does not support extracting from bsas. - + - + Update available - 更新可用 + 有可用的更新 - + Open/Execute - 開啟/執行 + 開啟/執行 - + Add as Executable - 添加為可執行檔案 + 添加為可執行檔案 - + Preview - + 預覽 - + Un-Hide - 取消隱藏 + 取消隱藏 - + Hide - 隱藏 + 隱藏 - + Write To File... - 寫入檔案... + 寫入檔案... - + Do you want to endorse Mod Organizer on %1 now? - + - + Thank you! - + 謝謝您! - + Thank you for your endorsement! - + 感謝您的贊同! - + Request to Nexus failed: %1 - + - - + + login successful - 登入成功 + 登入成功 - + login failed: %1. Trying to download anyway - 登入失敗: %1,請嘗試使用別的方法下載 + 登入失敗: %1,仍然嘗試下載 - + login failed: %1 無法登入: %1 - + login failed: %1. You need to log-in with Nexus to update MO. - 登入失敗: %1。您需要登入到N網才能更新 MO + 登入失敗: %1。您需要登入到N網才能更新 MO - + + + failed to read %1: %2 + 讀取 %1 失敗: %2 + + + Error - 錯誤 + 錯誤 - + failed to extract %1 (errorcode %2) - 無法解壓 %1 (錯誤代碼 %2) + 解壓 %1 失敗(錯誤代碼 %2) + + + + Extract BSA + 解壓 BSA + + + + This archive contains invalid hashes. Some files may be broken. + 壓縮包的 Hash 值錯誤。部分檔案可能已經損壞。 - + Extract... - 解壓... + 解壓... - + Edit Categories... - 編輯類別... + 編輯類別... - + Deselect filter - + - + Remove 移除 - + Enable all - 全部啟用 + 全部啟用 - + Disable all - 全部禁用 + 全部禁用 - + Unlock load order - + 解鎖載入順序 - + Lock load order - + 鎖定載入順序 - + depends on missing "%1" - + - + incompatible with "%1" - + 與 "%1" 不相容 - + No profile set - + - + loot failed. Exit code was: %1 - + - + failed to start loot - + - + failed to run loot: %1 - + - + Errors occured - + - + Backup of load order created - + 產生的載入順序備份 - + Choose backup to restore - + - + No Backups - + - + There are no backups to restore - + - - + + Restore failed - + - - + + Failed to restore the backup. Errorcode: %1 - + - + Backup of modlist created - + @@ -2879,14 +2876,69 @@ This function will guess the versioning scheme under the assumption that the ins Placeholder - 占位符 + 預留位置 ModInfo - - + + Plugins + + + + + Textures + + + + + Meshes + + + + + UI Changes + + + + + Music + + + + + Sound Effects + + + + + Scripts + + + + + SKSE Plugins + + + + + SkyProc Tools + + + + + Strings + + + + + invalid content type %1 + + + + + invalid index %1 無效的索引 %1 @@ -2894,9 +2946,9 @@ This function will guess the versioning scheme under the assumption that the ins ModInfoBackup - + This is the backup of a mod - + @@ -2935,7 +2987,7 @@ This function will guess the versioning scheme under the assumption that the ins Ini Files - + @@ -2950,17 +3002,17 @@ This function will guess the versioning scheme under the assumption that the ins Ini Tweaks - + This is a list of ini tweaks (ini modifications that can be toggled). - + This is a list of ini tweaks. Ini Tweaks are (usually small) fragments of ini files that are applied over existing settings in skyrim.ini/skyrimprefs.ini. Each tweak can be toggled individually. You should check the description of the mod wether the tweaks are really optional. - + @@ -2985,7 +3037,7 @@ This function will guess the versioning scheme under the assumption that the ins This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view. - + @@ -3004,7 +3056,7 @@ This function will guess the versioning scheme under the assumption that the ins They usually contain optional functionality, see the readme. Most mods do not have optional esps, so chances are good you are looking at an empty list. - + @@ -3024,7 +3076,7 @@ Most mods do not have optional esps, so chances are good you are looking at an e This moves a esp to the esp directory so it can be enabled in the main window. Please note that the ESP merely becomes "available", it will not necessarily be loaded! That is configured in the main window of omo. - 移動一個 esp 檔案到 esp 目錄,這樣它就可以在主窗口中啟用了。請注意: ESP 只是變得“可用”,它并不一定會被載入!想要载入请在 MO 的主窗口中勾選。 + 移動一個 esp 檔案到 esp 目錄,這樣它就可以在主視窗中啟用了。請注意: ESP 只是變得“可用”,它並不一定會被載入!想要載入請在 MO 的主視窗中調整。 @@ -3085,7 +3137,7 @@ Most mods do not have optional esps, so chances are good you are looking at an e Primary Category - + @@ -3107,7 +3159,7 @@ Most mods do not have optional esps, so chances are good you are looking at an e <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Mod ID for this mod on Nexus. This is filled in automatically if you downloaded and installed the mod from inside MO. Otherwise you can enter it manually. To find the correct id, find the mod on nexus. The URL will look like this: </span><a href=" http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">http://skyrim.nexusmods.com/downloads/file.php?id=1334</span></a><a href="http://www.skyrimnexus.com/downloads/file.php?id=1334"><span style=" font-size:8pt; color:#000000;">. In this example, 1334 is the id you're looking for. Besides: The above is the link to Mod Organizer on the Nexus. Why not go there now and endorse?</span></a></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -3120,7 +3172,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Installed Version of the Mod. The tooltip will contain the current version available on nexus. The installed version is only set if you installed the mod through MO.</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -3136,12 +3188,12 @@ p, li { white-space: pre-wrap; } Refresh - 重新整理 + Refresh all information from Nexus. - + @@ -3153,19 +3205,19 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><br /></p></body></html> - + Endorse - + Notes - + @@ -3182,7 +3234,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">This is a modifiable directory view of the mod directory. You can move around files using drag &amp; drop and rename them (double click).</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Changes happen immediately on disc, so do</span><span style=" font-size:8pt; font-weight:600;"> be careful</span><span style=" font-size:8pt;">.</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -3195,7 +3247,7 @@ p, li { white-space: pre-wrap; } Previous - + @@ -3208,264 +3260,264 @@ p, li { white-space: pre-wrap; } 關閉 - + &Delete &刪除 - + &Rename &重新命名 - + &Hide &隱藏 - + &Unhide &取消隱藏 - + &Open &開啟 - + &New Folder &新增資料夾 - - + + Save changes? 儲存更改嗎? - - + + Save changes to "%1"? - + - + File Exists 檔案已存在 - + A file with that name exists, please enter a new one 檔案名已存在,請輸入其它名稱 - + failed to move file 無法移動檔案 - + failed to create directory "optional" 無法建立 "optional" 目錄 - - + + Info requested, please wait 請求訊息已發出,請稍後 - + Main 主要檔案 - + Update 更新 - + Optional 可選檔案 - + Old 舊檔 - + Misc 雜項 - + Unknown 未知 - + Current Version: %1 當前版本: %1 - + No update available 沒有可用的更新 - + (description incomplete, please visit nexus) (描述訊息不完整,請訪問N網) - + <a href="%1">Visit on Nexus</a> <a href="%1">訪問N網</a> - + Failed to delete %1 無法刪除 %1 - - + + Confirm 確認 - + Are sure you want to delete "%1"? 確定要刪除 "%1" 嗎? - + Are sure you want to delete the selected files? 確定要刪除所選的檔案嗎? - - + + New Folder 新增資料夾 - + Failed to create "%1" 無法建立 "%1" - - + + 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? 無法移除 "%1"。也許您需要足夠的檔案權限? - - + + failed to rename %1 to %2 無法重新命名 %1 為 %2 - + There already is a visible version of this file. Replace it? 已存在同名檔案。確定要覆蓋嗎? - + Un-Hide 取消隱藏 - + Hide 隱藏 - + Name 名稱 - + Please enter a name - + - - + + Error - 錯誤 + - + Invalid name. Must be a valid file name - + - + A tweak by that name exists - + - + Create Tweak - + ModInfoForeign - + This pseudo mod represents content managed outside MO. It isn't modified by MO. - + ModInfoOverwrite - + This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit) - 此虛擬安裝包內包含來自虛擬 Data 樹的檔案,但檔案發生了變化 (例: 被CK修改了) + ModInfoRegular - - + + failed to write %1/meta.ini: error %2 - 無法寫入 %1/meta.ini: %2 + - + %1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory - %1 中未包含 esp 或 esm 和有效的目錄 (textures, meshes, interface, ...) + - + Categories: <br> - 種類: <br> + @@ -3473,52 +3525,52 @@ p, li { white-space: pre-wrap; } Game plugins (esp/esm) - + Interface - + Meshes - + Music - + Scripts (Papyrus) - + Script Extender Plugin - + SkyProc Patcher - + Sound - + Strings - + Textures - + @@ -3528,58 +3580,57 @@ p, li { white-space: pre-wrap; } Backup - + No valid game data - + 無有效的遊戲資料 Not endorsed yet - + Overwrites files - 覆蓋的 Mod + 覆蓋檔案 Overwritten files - 覆蓋的 Mod + Overwrites & Overwritten - + 覆蓋與被覆蓋 Redundant - + Non-MO - + invalid - + installed version: "%1", newest version: "%2" - installed version: %1, newest version: %2 - 當前版本: %1,最新版本: %2 + The newest version on Nexus seems to be older than the one you have installed. This could either mean the version you have has been withdrawn (i.e. due to a bug) or the author uses a non-standard versioning scheme and that newest version is actually newer. Either way you may want to "upgrade". - + @@ -3589,12 +3640,12 @@ p, li { white-space: pre-wrap; } Invalid name - + drag&drop failed: %1 - + @@ -3609,17 +3660,17 @@ p, li { white-space: pre-wrap; } Flags - + Content - 內容 + Mod Name - + @@ -3634,28 +3685,28 @@ p, li { white-space: pre-wrap; } Category - + Nexus ID - N網 ID + Installation - + unknown - 未知 + Name of your mods - + @@ -3670,27 +3721,27 @@ p, li { white-space: pre-wrap; } Category of the mod. - + Id of the mod as used on Nexus. - + Emblemes to highlight things that might require attention. - + Depicts the content of the mod:<br><img src=":/MO/gui/content/plugin" width=32/>Game plugins (esp/esm)<br><img src=":/MO/gui/content/interface" width=32/>interface<br><img src=":/MO/gui/content/mesh" width=32/>Meshes<br><img src=":/MO/gui/content/texture" width=32/>Textures<br><img src=":/MO/gui/content/sound" width=32/>Sounds<br><img src=":/MO/gui/content/music" width=32/>Music<br><img src=":/MO/gui/content/string" width=32/>Strings<br><img src=":/MO/gui/content/script" width=32/>Scripts (Papyrus)<br><img src=":/MO/gui/content/skse" width=32/>Script Extender plugins<br><img src=":/MO/gui/content/skyproc" width=32/>SkyProc Patcher<br> - + Time this mod was installed - + @@ -3722,22 +3773,22 @@ p, li { white-space: pre-wrap; } NXMAccessManager - + Logging into Nexus - + - + timeout 超時 - + Unknown error - + - + Please check your password 請檢查您的密碼 @@ -3747,7 +3798,7 @@ p, li { white-space: pre-wrap; } Failed to guess mod id for "%1", please pick the correct one - + @@ -3770,7 +3821,7 @@ p, li { white-space: pre-wrap; } You can use drag&drop to move files and directories to regular mods. - + @@ -3795,7 +3846,7 @@ p, li { white-space: pre-wrap; } %1 not found - 找不到 %1 + @@ -3833,116 +3884,116 @@ p, li { white-space: pre-wrap; } PluginList - + Name 名稱 - + Priority 優先級 - + Mod Index - + - + Flags - + - - + + 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. - + - + failed to update esp info for file %1 (source id: %2), error: %3 - + - + esp not found: %1 - + - - + + Confirm 確認 - + Really enable all plugins? - + - + Really disable all plugins? - + - + The file containing locked plugin indices is broken - + - + Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them. 您的一些插件名稱無效!這些插件無法被遊戲載入。請查看 mo_interface.log 來確認那些受影響的插件並重新命名它們。 - <b>Origin</b>: %1 - + This plugin can't be disabled (enforced by the game) + 這個插件不能被禁用 (由遊戲執行) + <b>Origin</b>: %1 + + + + Author 作者 - + Description 描述 - - This plugin can't be disabled (enforced by the game) - 這個插件不能被禁用 (由遊戲執行) - - - + Missing Masters - + - + Enabled Masters - + - + failed to restore load order for %1 - + 為 %1 回復載入順序失敗 @@ -3950,7 +4001,7 @@ p, li { white-space: pre-wrap; } Preview - + @@ -3963,16 +4014,16 @@ p, li { white-space: pre-wrap; } Problems - 問題 + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html> - + @@ -3983,12 +4034,12 @@ p, li { white-space: pre-wrap; } Fix - + No guided fix - + @@ -3996,32 +4047,32 @@ p, li { white-space: pre-wrap; } invalid profile name %1 - + failed to create %1 - 無法建立 %1 + failed to write mod list: %1 - 無法更新 Mod 列表: %1 + failed to update tweaked ini file, wrong settings may be used: %1 - + failed to create tweaked ini: %1 - + "%1" is missing or inaccessible - + @@ -4035,7 +4086,7 @@ p, li { white-space: pre-wrap; } Overwrite directory couldn't be parsed - + @@ -4045,7 +4096,7 @@ p, li { white-space: pre-wrap; } failed to parse ini file (%1) - 無法解析 Ini 檔案 (%1) + @@ -4056,17 +4107,17 @@ p, li { white-space: pre-wrap; } failed to modify "%1" - 未能找到 "%1" + 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) - + @@ -4114,28 +4165,28 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This is the list of profiles. Each Profile contains its own list and installation order of enabled mods (from a shared pool), a configuration of enabled esps/esms, a copy of the games ini-file and an optional savegame filter.</p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Note</span> For technical reasons it's currently not possible to have seperate load-orders for esps. This means you can't load moda.esp before modb.esp in one profile and the other way around in another.</p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">這是配置檔案的列表,每個配置檔案都包含了它們自己的已激活 Mod 的列表和安裝順序 (從共享區域)、一個已激活的 esp 或 esm 的配置、一個遊戲 Ini 檔案的拷貝和一個可選的存檔過濾器。</p> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">這是配置檔案的列表,每個配置檔案都包含了它們自己的已啟動 Mod 的列表和安裝順序 (從共享區域)、一個已啟動的 esp 或 esm 的配置、一個遊戲 Ini 檔案的拷貝和一個可選的存檔過濾器。</p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">注意: </span>由于技術上的原因,目前不可能有分開儲存的插件加載順序。這意味著您不能同时在兩個配置檔案裡使用兩種不同的插件配置方案。</p></body></html> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">注意: </span>由於技術上的原因,目前不可能有分開儲存的插件載入順序。這意味著您不能同時在兩個配置檔案裡使用兩種不同的插件配置方案。</p></body></html> If checked, savegames are local to this profile and will not appear when starting with a different profile. - + Local Savegames - + @@ -4147,7 +4198,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The games Oblivion, Fallout 3 and Fallout NV contain a bug which prevents texture and mesh replacers (that is: all modifications to meshes and textures already in game) from working.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The Mod Organizer uses a workaround called &quot;BSA redirection&quot; (google is your friend) to fix this issue reliably and without further work. Simply activate and forget.</span></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"></p> @@ -4206,18 +4257,18 @@ p, li { white-space: pre-wrap; } Rename - &重新命名 + Transfer save games to the selected profile. - + Transfer Saves - + @@ -4253,12 +4304,12 @@ p, li { white-space: pre-wrap; } Invalid name - + Invalid profile name - + @@ -4268,27 +4319,27 @@ p, li { white-space: pre-wrap; } Are you sure you want to remove this profile (including local savegames if any)? - + Profile broken - + This profile you're about to delete seems to be broken or the path is invalid. I'm about to delete the following folder: "%1". Proceed? - + Rename Profile - + New Name - + @@ -4324,47 +4375,47 @@ p, li { white-space: pre-wrap; } invalid field name "%1" - + invalid type for "%1" (should be integer) - + invalid type for "%1" (should be string) - + invalid type for "%1" (should be float) - + no fields set up yet! - + field not set "%1" - + invalid character in field "%1" - + empty field name - + invalid game type %1 - + @@ -4402,7 +4453,7 @@ p, li { white-space: pre-wrap; } Failed to deactivate script extender loading - 無法停用脚本扩展加載 + 停用腳本擴充載入失敗 @@ -4418,7 +4469,7 @@ p, li { white-space: pre-wrap; } Failed to deactivate proxy-dll loading - 無法停用代理DLL加載 + 停用代理DLL載入失敗 @@ -4430,7 +4481,7 @@ p, li { white-space: pre-wrap; } Failed to set up script extender loading - 無法設定腳本拓展加載 + 設定腳本擴充載入失敗 @@ -4445,65 +4496,65 @@ p, li { white-space: pre-wrap; } Failed to set up proxy-dll loading - 無法設定代理DLL加載 + 設定代理DLL載入失敗 - + Permissions required 需要權限 - + The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights. - + - - + + Woops 糟糕 - + ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file (%1) to sherb@gmx.net, the bug is a lot more likely to be fixed. Please include a short description of what you were doing when the crash happened - + - + ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1 Mod Organizer 崩潰了!遺憾的是,我無法生成診斷檔案: %1 - + Mod Organizer Mod Organizer - + An instance of Mod Organizer is already running Mod Organizer 的一個實例正在運行 - + No game identified in "%1". The directory is required to contain the game binary and its launcher. "%1" 中未檢測到遊戲。請確保該路徑中包含遊戲執行程式以及對應的 Launcher 檔案。 - - + + Please select the game to manage 請選擇想要管理的遊戲 - + Please select the game edition you have (MO can't start the game correctly if this is set incorrectly!) - + - + failed to start application: %1 - + @@ -4511,28 +4562,28 @@ p, li { white-space: pre-wrap; } 請使用工具列上的“幫助”來獲得所有元素的使用說明 - - + + <Manage...> <管理...> - + failed to parse profile %1: %2 無法解析配置檔案 %1: %2 - + failed to find "%1" 未能找到 "%1" - + failed to access %1 無法訪問 %1 - + failed to set file time %1 無法設定檔案時間 %1 @@ -4544,8 +4595,7 @@ p, li { white-space: pre-wrap; } "%1" is missing or inaccessible - "%1" is missing - + @@ -4558,6 +4608,11 @@ p, li { white-space: pre-wrap; } Error 錯誤 + + + failed to open temporary file + + @@ -4581,87 +4636,82 @@ p, li { white-space: pre-wrap; } 代理DLL - + failed to spawn "%1" 無法生成 "%1" - + Elevation required - + - + This process requires elevation to run. This is a potential security risk so I highly advice you to investigate if "%1" can be installed to work without elevation. Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe to make changes to the system) - + - + failed to spawn "%1": %2 無法生成 "%1": %2 - + "%1" doesn't exist "%1" 不存在 - + failed to inject dll into "%1": %2 無法注入 dll 到 "%1": %2 - + failed to run "%1" 無法運行 "%1" - - - failed to open temporary file - - QueryOverwriteDialog Mod Exists - + This mod seems to be installed already. Do you want to add files from this archive (overwriting existing ones) or do you want to completely replace the existing files (old files are deleted)? Alternatively you can install this mod under a different name. - + Keep Backup - + Merge - + Replace - 取代 + Rename - &重新命名 + Cancel - 取消 + @@ -4669,27 +4719,27 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe Save # - + Character - + Level - + Location - + Date - Data + @@ -4697,7 +4747,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe Missing ESPs - 缺失的 ESP + @@ -4705,37 +4755,37 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe Dialog - 對話方塊 + Copy To Clipboard - + Save As... - + Close - 關閉 + Save CSV - + Text Files - 文字文件 + failed to open "%1" for writing - + @@ -4748,7 +4798,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe Placeholder - 占位符 + 預留位置 @@ -4761,7 +4811,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe archive.dll not loaded: "%1" - + archive.dll 並未載入: "%1" @@ -4799,7 +4849,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe failed to move outdated files: %1. Please update manually. - + @@ -4819,12 +4869,12 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe No incremental update available for this version, the complete package needs to be downloaded (%1 kB) - 沒有可用于此版本的更新檔案,需要下載完整的安裝包 (%1 KB) + 沒有可用於此版本的更新檔案,需要下載完整的安裝包 (%1 kB) no file for update found. Please update manually. - + @@ -4834,7 +4884,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe No download server available. Please try again later. - 沒有可用的下載伺服器,請稍後再嘗試下載。 + 沒有可用的下載伺服器,請稍後再嘗試下載。 @@ -4842,18 +4892,18 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe Failed - 失敗 + Sorry, failed to start the helper application - + attempt to store setting for unknown plugin "%1" - + @@ -4893,7 +4943,7 @@ Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The display language. This will only displaye languages for which you have a translation installed.</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -4904,48 +4954,48 @@ p, li { white-space: pre-wrap; } Style - + graphical style - + graphical style of the MO user interface - + Log Level - + Decides the amount of data printed to "ModOrganizer.log" - + Decides the amount of data printed to "ModOrganizer.log". "Debug" produces very useful information for finding problems. There is usually no noteworthy performance impact but the file may become rather large. If this is a problem you may prefer the "Info" level for regluar use. On the "Error" level the log file usually remains empty. - + Debug - + Info - + Error - 錯誤 + @@ -4986,37 +5036,37 @@ p, li { white-space: pre-wrap; } User interface - + If checked, the download interface will be more compact. - + 如果勾選,下載介面將會更簡潔。 Compact Download Interface - + 壓縮下載介面 If checked, the download list will display meta information instead of file names. - + Download Meta Information - + Reset stored information from dialogs. - + This will make all dialogs show up again where you checked the "Remember selection"-box. - + @@ -5050,7 +5100,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Allows automatic log-in when the Nexus-Page for the game is clicked. Please note that the obfuscation with which the password is stored in modorganizer.ini is not very strong. If you're worried someone might steal your password, don't store it here.</span></p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -5061,7 +5111,7 @@ p, li { white-space: pre-wrap; } If checked and if correct credentials are entered below, log-in to Nexus (for browsing and downloading) is automatic. - + @@ -5081,82 +5131,82 @@ p, li { white-space: pre-wrap; } Disable automatic internet features - + Disable automatic internet features. This does not affect features that are explicitly invoked by the user (like checking mods for updates, endorsing, opening the web browser) - + Offline Mode - + Use a proxy for network connections. - + Use a proxy for network connections. This uses the system-wide settings which can be configured in Internet Explorer. Please note that MO will start up a few seconds slower on some systems when using a proxy. - + Use HTTP Proxy (Uses System Settings) - + Associate with "Download with manager" links - + Known Servers (updated on download) - + Preferred Servers (Drag & Drop) - + Plugins - + Author: - 作者 + Version: - 版本 + Description: - 描述 + Key - + Value - + Blacklisted Plugins (use <del> to remove): - + @@ -5178,7 +5228,7 @@ p, li { white-space: pre-wrap; } <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The Steam App ID is required to directly start some games. For Skyrim, if this is not set or wrong, the &quot;Mod Organizer&quot; load mechanism may not work properly.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">The preset for this is the App ID of the &quot;regular&quot; version so in most cases, you should be set.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">If you think you have a different version (GotY or something), follow these steps to get to the id:</span></p> @@ -5191,8 +5241,8 @@ p, li { white-space: pre-wrap; } <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">Steam App ID 是必須的,它被用來直接啟動一些遊戲。對於天際,如果沒有設定或設定錯誤,&quot;Mod Organizer&quot; 的加載機制可能會無法正常工作。</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">此預設是應用程式 ID 的“常規”版本,因此在大多數情況下,您應該要重新設定一下。</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">Steam App ID 是必須的,它被用來直接啟動一些遊戲。對於 Skyrim,如果沒有設定或設定錯誤,&quot;Mod Organizer&quot; 的加載機制可能會無法正常工作。</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">此預設是應用程式 ID 的“正常”版本,因此在大多數情況下,您應該要重新設定一下。</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">如果您認為您有不同的版本 (年度版或其它版本),那麼請參照下列的步驟來獲取 ID: </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">1. 進入 Steam 裡的遊戲庫</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">2. 右鍵點擊您想要獲取 ID 的遊戲,選擇</span><span style=" font-size:9pt; font-weight:600;">建立桌面捷徑</span></p> @@ -5203,12 +5253,12 @@ p, li { white-space: pre-wrap; } Load Mechanism - 加載機制 + 載入機制 Select loading mechanism. See help for details. - 選擇加載機制,使用幫助查看更多細節。 + 選擇載入機制,使用幫助查看更多細節。 @@ -5216,10 +5266,10 @@ p, li { white-space: pre-wrap; } There are several means to do this: *Mod Organizer* (default) In this mode the Mod Organizer itself injects the dll. The disadvantage is that you always have to start the game through MO or a link created by it. *Script Extender* In this mode, MO is installed as a Script Extender (obse, fose, nvse, skse) plugin. -*Proxy DLL* In this mode, MO replaces one of the game's dlls with one that loads MO (and the original dll of course). This will ONLY work with Steam games and it has only been tested with Skyrim. Please use this only if the other mechanisms don't work. +*Proxy DLL* In this mode, MO replaces one of the game's dlls with one that loads MO (and the original dll of course). This will ONLY work with Steam games and it has only been tested with Skyrim. Please use this only if the other mechanisms don't work. If you use the Steam version of Oblivion the default will NOT work. In this case, please install obse and use "Script Extender" as the load mechanism. Also you can then not start Oblivion from MO. Instead, use MO only to set up your mods, then quit and start Oblivion through Steam. - + @@ -5234,11 +5284,11 @@ If you use the Steam version of Oblivion the default will NOT work. In this case Mod Organizer uses an API provided by the Nexus to provide features like checking for updates and downloading files. Unfortunately this API has not been made available officially to third party tools like MO so we have to impersonate the Nexus Mod Manager to be allowed in. -On top of this Nexus has used the client identification to lock out outdated versions of NMM to force users to update. This means that MO also needs to impersonate the new version of NMM even if MO doesn't need an update. Therefore you can configure the version to identify as here. -Please note that MO does identify itself as MO to the webserver, it's not lying about what it is. It is merely adding a "compatible" NMM version to the user agent. +On top of this Nexus has used the client identification to lock out outdated versions of NMM to force users to update. This means that MO also needs to impersonate the new version of NMM even if MO doesn't need an update. Therefore you can configure the version to identify as here. +Please note that MO does identify itself as MO to the webserver, it's not lying about what it is. It is merely adding a "compatible" NMM version to the user agent. tl;dr-version: If Nexus-features don't work, insert the current version number of NMM here and try again. - Mod Organizer 使用了一個N網所提供的 API 來進行類似於檢查更新和下載檔案這樣的操作。遺憾的是這個 API 並沒有給第三方工具 (比如 MO) 正式的授權,所以我們需要模擬 NMM 來進行這些操作。 + Mod Organizer 使用了N網所提供的 API 來進行類似於檢查更新和下載檔案這樣的操作。遺憾的是這個 API 並沒有給第三方工具 (比如 MO) 正式的授權,所以我們需要模擬 NMM 來進行這些操作。 在此之前,N網使用了客戶端辨識系統鎖定了舊版本的 NMM,強制用戶更新版本。這意味著 MO 也要模擬新版本的 NMM,即便 MO 自己並不需要更新。因此您需要在這裡配置版本號來進行辨識。 請注意: MO 辨識自己為 MO 到網路伺服器,這並不是欺騙。它僅僅是為用戶代理添加了一個“兼容”的 NMM 版本。 @@ -5247,13 +5297,13 @@ tl;dr-version: If Nexus-features don't work, insert the current version num Enforces that inactive ESPs and ESMs are never loaded. - 強制執行,未激活的 ESP 和 ESM 將不會被加載。 + 強制執行,未啟用的 ESP 和 ESM 將不會被載入。 - It seems that the Games occasionally load ESP or ESM files even if they haven't been activated as plugins. + It seems that the Games occasionally load ESP or ESM files even if they haven't been activated as plugins. I don't yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded. - 看來,遊戲偶爾會加載一些沒有被激活成插件的 ESP 或 ESM 檔案。 + 看來遊戲偶爾會載入一些沒有被啟動成插件的 ESP 或 ESM 檔案。 我還尚不知道它在什麼情況下會這樣,但是有用戶報告說它在某些情況下是很不必要的。如果這個選項被選中,那麼在列表中沒有被勾選的 ESP 和 ESM 將不會在遊戲中出現,並且也不會被載入。 @@ -5264,36 +5314,36 @@ I don't yet know what the circumstances are, but user reports imply it is i If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on) - + If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on) Uncheck this if you want to use Mod Organizer with total conversions (like Nehrim) but be aware that the game will crash if required files are not enabled. - + Force-enable game files - + Disable this to no longer display mods installed outside MO in the mod list (left pane). Assets from those mods will then be treated as having lowest mod priority together with the original game content. - + By default Mod Organizer will display esp+bsa bundles installed with foreign tools as mods (left pane). This allows you to control their priority in relation to other mods. This is particularly useful if you also use Steam Workshop to install mods. -However, if you installed loose file mods outside MO which conflict with BSAs also installed outside MO those conflicts can't be resolved correctly. +However, if you installed loose file mods outside MO which conflict with BSAs also installed outside MO those conflicts can't be resolved correctly. If you disable this feature, MO will only display official DLCs this way. Please note that plugins (esps and esms) displayed in the right pane are completely unaffected by this feature. - + Display mods installed outside MO - + @@ -5311,7 +5361,7 @@ For the other games this is not a sufficient replacement for AI! These are workarounds for problems with Mod Organizer. Please make sure you read the help text before changing anything here. - + @@ -5388,7 +5438,7 @@ For the other games this is not a sufficient replacement for AI! failed to communicate with running instance: %1 - 無法連接到正在運行的實例: %1 + @@ -5434,17 +5484,17 @@ For the other games this is not a sufficient replacement for AI! Transfer Savegames - + Global Characters - + This is a list of characters in the global location. - + @@ -5456,7 +5506,7 @@ On Windows Vista/Windows 7: On Windows XP: C:\Documents and Settings\[UserName]\My Documents\My Games\Skyrim\Saves - + @@ -5469,47 +5519,47 @@ On Windows XP: C:\Documents and Settings[UserName]\My Documents\My Games\Skyrim\Saves - + Move -> - + Copy -> - + <- Move - + <- Copy - + Done - 完成 + 完成 Profile Characters - + Overwrite - 覆蓋 + 覆蓋 Overwrite the file "%1" - + 覆蓋檔案 "%1" @@ -5517,23 +5567,23 @@ On Windows XP: Confirm - 確認 + 確認 Copy all save games of character "%1" to the profile? - + Move all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games. - + Copy all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games. - + - + \ No newline at end of file -- cgit v1.3.1