diff --git a/launcher/firstLaunch/firstlaunch_moc.cpp b/launcher/firstLaunch/firstlaunch_moc.cpp index c5f7646d1..2958d7cbc 100644 --- a/launcher/firstLaunch/firstlaunch_moc.cpp +++ b/launcher/firstLaunch/firstlaunch_moc.cpp @@ -97,12 +97,6 @@ void FirstLaunchView::on_pushButtonDataCopy_clicked() copyHeroesData(); } -void FirstLaunchView::on_pushButtonDataHelp_clicked() -{ - static const QUrl vcmibuilderWiki("https://github.com/vcmi/vcmi/blob/master/docs/players/Installation_Linux.md#install-data-using-vcmibuilder-script"); - QDesktopServices::openUrl(vcmibuilderWiki); -} - void FirstLaunchView::on_pushButtonGogInstall_clicked() { extractGogData(); @@ -142,11 +136,9 @@ void FirstLaunchView::activateTabHeroesData() ui->buttonTabHeroesData->setChecked(true); ui->buttonTabModPreset->setChecked(false); - if(!hasVCMIBuilderScript) - { - ui->pushButtonDataHelp->hide(); - ui->labelDataHelp->hide(); - } +#ifndef ENABLE_INNOEXTRACT + ui->labelDataHelp->hide(); +#endif if(heroesDataUpdate()) return; @@ -212,11 +204,9 @@ void FirstLaunchView::heroesDataMissing() ui->labelDataFound->setVisible(false); ui->pushButtonDataNext->setEnabled(false); - if(hasVCMIBuilderScript) - { - ui->pushButtonDataHelp->setVisible(true); - ui->labelDataHelp->setVisible(true); - } +#ifdef ENABLE_INNOEXTRACT + ui->labelDataHelp->setVisible(true); +#endif } void FirstLaunchView::heroesDataDetected() @@ -233,11 +223,9 @@ void FirstLaunchView::heroesDataDetected() ui->labelDataCopy->setVisible(false); ui->pushButtonGogInstall->setVisible(false); - if(hasVCMIBuilderScript) - { - ui->pushButtonDataHelp->setVisible(false); +#ifdef ENABLE_INNOEXTRACT ui->labelDataHelp->setVisible(false); - } +#endif ui->labelDataFound->setVisible(true); ui->pushButtonDataNext->setEnabled(true); @@ -301,7 +289,7 @@ void FirstLaunchView::extractGogData() QString titleSel = tr("Select %1 file...", "param is file extension").arg(filter); QString titleErr = tr("You have to select %1 file!", "param is file extension").arg(filter); #if defined(VCMI_MOBILE) - filter = "GOG file (*.*)"; + filter = tr("GOG file (*.*)"); QMessageBox::information(this, tr("File selection"), titleSel); #endif QString file = QFileDialog::getOpenFileName(this, titleSel, startPath.isEmpty() ? QDir::homePath() : startPath, filter); @@ -359,7 +347,7 @@ void FirstLaunchView::extractGogData() if(dirData.empty() || QDir(tempDir.filePath(dirData.front())).entryList({"*.lod"}, QDir::Filter::Files).empty()) { QMessageBox::critical(this, tr("No Heroes III data!"), tr("Selected files do not contain Heroes III data!"), QMessageBox::Ok, QMessageBox::Ok); - ui->pushButtonGogInstall->setText(tr("Install GOG files")); + ui->pushButtonGogInstall->setText(tr("Install gog.com files")); return; } copyHeroesData(dir.path(), true); diff --git a/launcher/firstLaunch/firstlaunch_moc.h b/launcher/firstLaunch/firstlaunch_moc.h index 71dd4329b..3bd3be3cb 100644 --- a/launcher/firstLaunch/firstlaunch_moc.h +++ b/launcher/firstLaunch/firstlaunch_moc.h @@ -21,13 +21,6 @@ class FirstLaunchView : public QWidget { Q_OBJECT - // vcmibuilder script is not available on these platforms -#if defined(VCMI_WINDOWS) || defined(VCMI_MOBILE) || defined(VCMI_APPLE) - static constexpr bool hasVCMIBuilderScript = false; -#else - static constexpr bool hasVCMIBuilderScript = true; -#endif - void changeEvent(QEvent *event); CModListView * getModView(); @@ -87,8 +80,6 @@ private slots: void on_pushButtonDataCopy_clicked(); - void on_pushButtonDataHelp_clicked(); - void on_pushButtonGogInstall_clicked(); void on_comboBoxLanguage_currentIndexChanged(int index); diff --git a/launcher/firstLaunch/firstlaunch_moc.ui b/launcher/firstLaunch/firstlaunch_moc.ui index e8518408f..9ce418ec2 100644 --- a/launcher/firstLaunch/firstlaunch_moc.ui +++ b/launcher/firstLaunch/firstlaunch_moc.ui @@ -285,20 +285,7 @@ Heroes® of Might and Magic® III HD is currently not supported! - Install GOG files - - - - - - - - 25 - 0 - - - - Open help in browser + Install gog.com files @@ -356,7 +343,7 @@ Heroes® of Might and Magic® III HD is currently not supported! - If you don't have a copy of Heroes III installed, you can use our automatic installation tool 'vcmibuilder', which only requires the GoG.com Heroes III installer. Please visit our wiki for detailed instructions. + If you don't have a copy of Heroes III installed, VCMI can import Heroes III data using offline installer from gog.com true diff --git a/launcher/modManager/cmodlist.cpp b/launcher/modManager/cmodlist.cpp index 21058da5e..304ec1551 100644 --- a/launcher/modManager/cmodlist.cpp +++ b/launcher/modManager/cmodlist.cpp @@ -17,14 +17,20 @@ QString CModEntry::sizeToString(double size) { - static const std::array sizes { "%1 B", "%1 KiB", "%1 MiB", "%1 GiB", "%1 TiB" }; + static const std::array sizes { + QT_TRANSLATE_NOOP("File size", "%1 B"), + QT_TRANSLATE_NOOP("File size", "%1 KiB"), + QT_TRANSLATE_NOOP("File size", "%1 MiB"), + QT_TRANSLATE_NOOP("File size", "%1 GiB"), + QT_TRANSLATE_NOOP("File size", "%1 TiB") + }; size_t index = 0; while(size > 1024 && index < sizes.size()) { size /= 1024; index++; } - return sizes[index].arg(QString::number(size, 'f', 1)); + return QCoreApplication::translate("File size", sizes[index]).arg(QString::number(size, 'f', 1)); } CModEntry::CModEntry(QVariantMap repository, QVariantMap localData, QVariantMap modSettings, QString modname) diff --git a/launcher/modManager/cmodlistmodel_moc.cpp b/launcher/modManager/cmodlistmodel_moc.cpp index 5ec35e400..bdc07e937 100644 --- a/launcher/modManager/cmodlistmodel_moc.cpp +++ b/launcher/modManager/cmodlistmodel_moc.cpp @@ -169,11 +169,11 @@ QVariant CModListModel::headerData(int section, Qt::Orientation orientation, int { static const QString header[ModFields::COUNT] = { - QT_TR_NOOP("Name"), - QT_TR_NOOP(""), // status icon - QT_TR_NOOP(""), // status icon - QT_TR_NOOP("Type"), - QT_TR_NOOP("Version"), + QT_TRANSLATE_NOOP("ModFields", "Name"), + QT_TRANSLATE_NOOP("ModFields", ""), // status icon + QT_TRANSLATE_NOOP("ModFields", ""), // status icon + QT_TRANSLATE_NOOP("ModFields", "Type"), + QT_TRANSLATE_NOOP("ModFields", "Version"), }; if(role == Qt::DisplayRole && orientation == Qt::Horizontal) diff --git a/launcher/modManager/cmodlistview_moc.cpp b/launcher/modManager/cmodlistview_moc.cpp index a966a95db..97315794f 100644 --- a/launcher/modManager/cmodlistview_moc.cpp +++ b/launcher/modManager/cmodlistview_moc.cpp @@ -179,7 +179,7 @@ void CModListView::loadRepositories() auto hashed = QCryptographicHash::hash(entry.toUtf8(), QCryptographicHash::Md5); auto hashedStr = QString::fromUtf8(hashed.toHex()); - downloadFile(hashedStr + ".json", entry, "repository index"); + downloadFile(hashedStr + ".json", entry, tr("mods repository index")); } } @@ -307,9 +307,9 @@ QString CModListView::genModInfoText(CModEntry & mod) if(minStr.isEmpty() || maxStr.isEmpty()) { if(minStr.isEmpty()) - result += supportedVersions.arg(tr("Supported VCMI version"), maxStr, ", ", "please upgrade mod"); + result += supportedVersions.arg(tr("Supported VCMI version"), maxStr, ", ", tr("please upgrade mod")); else - result += supportedVersions.arg(tr("Required VCMI version"), minStr, " ", "or above"); + result += supportedVersions.arg(tr("Required VCMI version"), minStr, " ", tr("or newer")); } else result += supportedVersions.arg(tr("Supported VCMI versions"), minStr, " - ", maxStr); @@ -574,7 +574,7 @@ void CModListView::on_updateButton_clicked() auto mod = modModel->getMod(name); // update required mod, install missing (can be new dependency) if(mod.isUpdateable() || !mod.isInstalled()) - downloadFile(name + ".zip", mod.getValue("download").toString(), "mods", mbToBytes(mod.getValue("downloadSize").toDouble())); + downloadFile(name + ".zip", mod.getValue("download").toString(), name, mbToBytes(mod.getValue("downloadSize").toDouble())); } } @@ -604,7 +604,7 @@ void CModListView::on_installButton_clicked() { auto mod = modModel->getMod(name); if(!mod.isInstalled()) - downloadFile(name + ".zip", mod.getValue("download").toString(), "mods", mbToBytes(mod.getValue("downloadSize").toDouble())); + downloadFile(name + ".zip", mod.getValue("download").toString(), name, mbToBytes(mod.getValue("downloadSize").toDouble())); else if(!mod.isEnabled()) enableModByName(name); } @@ -669,7 +669,7 @@ void CModListView::manualInstallFile(QUrl url) } } else - downloadFile(fileName, urlStr, "mods", 0); + downloadFile(fileName, urlStr, fileName, 0); } void CModListView::downloadFile(QString file, QString url, QString description, qint64 size) @@ -793,7 +793,7 @@ void CModListView::installFiles(QStringList files) auto modjson = repoData[key].toMap().value("mod"); if(!modjson.isNull()) { - downloadFile(key + ".json", modjson.toString(), "repository index"); + downloadFile(key + ".json", modjson.toString(), tr("mods repository index")); } } } @@ -957,7 +957,7 @@ void CModListView::loadScreenshots() if(pixmap.isNull()) { // image file not exists or corrupted - try to redownload - downloadFile(fileName, url, "screenshots"); + downloadFile(fileName, url, tr("screenshots")); } else { @@ -994,7 +994,7 @@ void CModListView::doInstallMod(const QString & modName) { auto mod = modModel->getMod(name); if(!mod.isInstalled()) - downloadFile(name + ".zip", mod.getValue("download").toString(), "mods", mbToBytes(mod.getValue("downloadSize").toDouble())); + downloadFile(name + ".zip", mod.getValue("download").toString(), name, mbToBytes(mod.getValue("downloadSize").toDouble())); } } diff --git a/launcher/modManager/cmodmanager.cpp b/launcher/modManager/cmodmanager.cpp index 003a83295..a3a4839c4 100644 --- a/launcher/modManager/cmodmanager.cpp +++ b/launcher/modManager/cmodmanager.cpp @@ -157,10 +157,10 @@ bool CModManager::canInstallMod(QString modname) auto mod = modList->getMod(modname); if(mod.isSubmod()) - return addError(modname, "Can not install submod"); + return addError(modname, tr("Can not install submod")); if(mod.isInstalled()) - return addError(modname, "Mod is already installed"); + return addError(modname, tr("Mod is already installed")); return true; } @@ -169,10 +169,10 @@ bool CModManager::canUninstallMod(QString modname) auto mod = modList->getMod(modname); if(mod.isSubmod()) - return addError(modname, "Can not uninstall submod"); + return addError(modname, tr("Can not uninstall submod")); if(!mod.isInstalled()) - return addError(modname, "Mod is not installed"); + return addError(modname, tr("Mod is not installed")); return true; } @@ -182,24 +182,24 @@ bool CModManager::canEnableMod(QString modname) auto mod = modList->getMod(modname); if(mod.isEnabled()) - return addError(modname, "Mod is already enabled"); + return addError(modname, tr("Mod is already enabled")); if(!mod.isInstalled()) - return addError(modname, "Mod must be installed first"); + return addError(modname, tr("Mod must be installed first")); //check for compatibility if(!mod.isCompatible()) - return addError(modname, "Mod is not compatible, please update VCMI and checkout latest mod revisions"); + return addError(modname, tr("Mod is not compatible, please update VCMI and checkout latest mod revisions")); for(auto modEntry : mod.getDependencies()) { if(!modList->hasMod(modEntry)) // required mod is not available - return addError(modname, QString("Required mod %1 is missing").arg(modEntry)); + return addError(modname, tr("Required mod %1 is missing").arg(modEntry)); CModEntry modData = modList->getMod(modEntry); if(!modData.isCompatibilityPatch() && !modData.isEnabled()) - return addError(modname, QString("Required mod %1 is not enabled").arg(modEntry)); + return addError(modname, tr("Required mod %1 is not enabled").arg(modEntry)); } for(QString modEntry : modList->getModList()) @@ -208,14 +208,14 @@ bool CModManager::canEnableMod(QString modname) // "reverse conflict" - enabled mod has this one as conflict if(mod.isEnabled() && mod.getConflicts().contains(modname)) - return addError(modname, QString("This mod conflicts with %1").arg(modEntry)); + return addError(modname, tr("This mod conflicts with %1").arg(modEntry)); } for(auto modEntry : mod.getConflicts()) { // check if conflicting mod installed and enabled if(modList->hasMod(modEntry) && modList->getMod(modEntry).isEnabled()) - return addError(modname, QString("This mod conflicts with %1").arg(modEntry)); + return addError(modname, tr("This mod conflicts with %1").arg(modEntry)); } return true; } @@ -225,17 +225,17 @@ bool CModManager::canDisableMod(QString modname) auto mod = modList->getMod(modname); if(mod.isDisabled()) - return addError(modname, "Mod is already disabled"); + return addError(modname, tr("Mod is already disabled")); if(!mod.isInstalled()) - return addError(modname, "Mod must be installed first"); + return addError(modname, tr("Mod must be installed first")); for(QString modEntry : modList->getModList()) { auto current = modList->getMod(modEntry); if(current.getDependencies().contains(modname) && current.isEnabled()) - return addError(modname, QString("This mod is needed to run %1").arg(modEntry)); + return addError(modname, tr("This mod is needed to run %1").arg(modEntry)); } return true; } @@ -311,7 +311,7 @@ bool CModManager::doInstallMod(QString modname, QString archivePath) if(!futureExtract.get()) { removeModDir(destDir + modDirName); - return addError(modname, "Failed to extract mod data"); + return addError(modname, tr("Failed to extract mod data")); } //rename folder and fix the path @@ -339,11 +339,11 @@ bool CModManager::doUninstallMod(QString modname) QString modDir = pathToQString(*CResourceHandler::get()->getResourceName(resID)); if(!QDir(modDir).exists()) - return addError(modname, "Data with this mod was not found"); + return addError(modname, tr("Data with this mod was not found")); QDir modFullDir(modDir); if(!removeModDir(modDir)) - return addError(modname, "Mod is located in protected directory, please remove it manually:\n" + modFullDir.absolutePath()); + return addError(modname, tr("Mod is located in protected directory, please remove it manually:\n") + modFullDir.absolutePath()); CResourceHandler::get("initial")->updateFilteredFiles([](const std::string &){ return true; }); loadMods(); diff --git a/launcher/translation/chinese.ts b/launcher/translation/chinese.ts index 0582a05c1..2859a080f 100644 --- a/launcher/translation/chinese.ts +++ b/launcher/translation/chinese.ts @@ -193,21 +193,6 @@ AI AI - - - Name - 名称 - - - - Type - 类型 - - - - Version - 版本 - CModListView @@ -254,7 +239,7 @@ - + Description 详细介绍 @@ -269,27 +254,32 @@ 截图 - + + Install from file + + + + Uninstall 卸载 - + Enable 激活 - + Disable 禁用 - + Update 更新 - + Install 安装 @@ -304,125 +294,181 @@ 终止 - + Mod name 模组名称 - + Installed version 已安装的版本 - + Latest version 最新版本 - + Size 大小 - + Download size 下载大小 - + Authors 作者 - + License 授权许可 - + Contact 联系方式 - + Compatibility 兼容性 - - + + Required VCMI version 需要VCMI版本 - + Supported VCMI version 支持的VCMI版本 - + + please upgrade mod + + + + + + mods repository index + + + + + or newer + + + + Supported VCMI versions 支持的VCMI版本 - + Languages 语言 - + Required mods Mod统一翻译为模组 前置模组 - + Conflicting mods Mod统一翻译为模组 冲突的模组 - + This mod can not be installed or enabled because the following dependencies are not present 这个模组无法被安装或者激活,因为下列依赖项未满足 - + This mod can not be enabled because the following mods are incompatible with it 这个模组无法被激活,因为下列模组与其不兼容 - + This mod cannot be disabled because it is required by the following mods 这个模组无法被禁用,因为它被下列模组所依赖 - + This mod cannot be uninstalled or updated because it is required by the following mods 这个模组无法被卸载或者更新,因为它被下列模组所依赖 - + This is a submod and it cannot be installed or uninstalled separately from its parent mod 这是一个附属模组它无法在所属模组外被直接被安装或者卸载 - + Notes 笔记注释 - + + All supported files + + + + + Maps + 地图 + + + + Campaigns + + + + + Configs + + + + + Mods + 模组 + + + + Select files (configs, mods, maps, campaigns) to install... + + + + + Replace config file? + + + + + Do you want to replace %1? + + + + Downloading %s%. %p% (%v MB out of %m MB) finished 下载进度 %s%. %p% (%v MB 共 %m MB) 已完成 - + Download failed 下载失败 - + Unable to download all files. Encountered errors: @@ -435,7 +481,7 @@ Encountered errors: - + Install successfully downloaded? @@ -444,34 +490,135 @@ Install successfully downloaded? 安装下载成功的部分? - + Installing mod %1 正在安装模组 %1 - + Operation failed 操作失败 - + Encountered errors: 遇到问题: - + + screenshots + + + + Screenshot %1 截图 %1 - + Mod is incompatible Mod统一翻译为模组 模组不兼容 + + CModManager + + + Can not install submod + + + + + Mod is already installed + + + + + Can not uninstall submod + + + + + Mod is not installed + + + + + Mod is already enabled + + + + + + Mod must be installed first + + + + + Mod is not compatible, please update VCMI and checkout latest mod revisions + + + + + Required mod %1 is missing + + + + + Required mod %1 is not enabled + + + + + + This mod conflicts with %1 + + + + + Mod is already disabled + + + + + This mod is needed to run %1 + + + + + Mod archive is missing + + + + + Mod with such name is already installed + + + + + Mod archive is invalid or corrupted + + + + + Failed to extract mod data + + + + + Data with this mod was not found + + + + + Mod is located in protected directory, please remove it manually: + + + + CSettingsView @@ -687,31 +834,59 @@ Fullscreen Exclusive Mode - game will cover entirety of your screen and will use 显示开场动画 - + Active 激活 - + Disabled 禁用 - + Enable 启用 - + Not Installed 未安装 - + Install 安装 + + File size + + + %1 B + + + + + %1 KiB + + + + + %1 MiB + + + + + %1 GiB + + + + + %1 TiB + + + FirstLaunchView @@ -762,9 +937,10 @@ Heroes® of Might and Magic® III HD is currently not supported! 定位英雄无敌3数据文件 - - If you don't have a copy of Heroes III installed, you can use our automatic installation tool 'vcmibuilder', which only requires the GoG.com Heroes III installer. Please visit our wiki for detailed instructions. - 如果你还没有安装《英雄无敌3》的游戏,你可以使用我们的自动安装工具“vcmibuilder”,它只需要GoG.com的《英雄无敌3》安装程序。请访问我们的维基了解详细说明。 + + + Install gog.com files + @@ -842,16 +1018,16 @@ Heroes® of Might and Magic® III HD is currently not supported! Next 下一步 - - - Open help in browser - 在浏览器中打开帮助 - Search again 再次搜索 + + + If you don't have a copy of Heroes III installed, VCMI can import your Heroes III data using the offline installer from gog.com. + + Heroes III data files @@ -900,15 +1076,94 @@ Heroes® of Might and Magic® III HD is currently not supported! 追随神迹 - + Heroes III installation found! 英雄无敌3安装目录已找到! - + Copy data to VCMI folder? 复制数据到VCMI文件夹吗? + + + Select %1 file... + param is file extension + + + + + You have to select %1 file! + param is file extension + + + + + GOG file (*.*) + + + + + File selection + + + + + Invalid file selected + + + + + GOG installer + + + + + GOG data + + + + + Installing... Please wait! + + + + + No Heroes III data! + + + + + Selected files do not contain Heroes III data! + + + + + + + + Heroes III data not found! + + + + + + Failed to detect valid Heroes III data in chosen directory. +Please select directory with installed Heroes III data. + + + + + Heroes III: HD Edition files are not supported by VCMI. +Please select directory with Heroes III: Complete Edition or Heroes III: Shadow of Death. + + + + + Unknown or unsupported Heroes III version found. +Please select directory with Heroes III: Complete Edition or Heroes III: Shadow of Death. + + ImageViewer @@ -1059,6 +1314,24 @@ Heroes® of Might and Magic® III HD is currently not supported! 模组 + + ModFields + + + Name + 名称 + + + + Type + 类型 + + + + Version + 版本 + + UpdateDialog @@ -1076,5 +1349,15 @@ Heroes® of Might and Magic® III HD is currently not supported! Check for updates on startup 在启动时检查更新 + + + Network error + + + + + Cannot read JSON from url or incorrect JSON data + + diff --git a/launcher/translation/czech.ts b/launcher/translation/czech.ts index 38b38a4e9..cf08ca260 100644 --- a/launcher/translation/czech.ts +++ b/launcher/translation/czech.ts @@ -192,21 +192,6 @@ AI AI - - - Name - Název - - - - Type - Druh - - - - Version - Verze - CModListView @@ -252,7 +237,7 @@ - + Description Popis @@ -267,27 +252,32 @@ Snímky obrazovky - + + Install from file + + + + Uninstall Odinstalovat - + Enable Povolit - + Disable Zakázat - + Update Aktualizovat - + Install Instalovat @@ -302,123 +292,179 @@ Zrušit - + Mod name Název modifikace - + Installed version Nainstalovaná verze - + Latest version Nejnovější verze - + Size Velikost - + Download size Velikost ke stažení - + Authors Autoři - + License Licence - + Contact Kontakt - + Compatibility Kompabilita - - + + Required VCMI version Vyžadovaná verze VCMI - + Supported VCMI version Podporovaná verze VCMI - + + please upgrade mod + + + + + + mods repository index + + + + + or newer + + + + Supported VCMI versions Podporované verze VCMI - + Languages Jazyky - + Required mods Vyžadované modifikace VCMI - + Conflicting mods Modifikace v kolizi - + This mod can not be installed or enabled because the following dependencies are not present Tato modifikace nemůže být nainstalována nebo povolena, protože následující závislosti nejsou přítomny - + This mod can not be enabled because the following mods are incompatible with it Tato modifikace nemůže být povolena, protože následující modifikace s ní nejsou kompatibilní - + This mod cannot be disabled because it is required by the following mods Tato modifikace nemůže být zakázána, protože je vyžadována následujícími modifikacemi - + This mod cannot be uninstalled or updated because it is required by the following mods Tato modifikace nemůže být odinstalována nebo aktualizována, protože je vyžadována následujícími modifikacemi - + This is a submod and it cannot be installed or uninstalled separately from its parent mod Toto je podmodifikace, která nemůže být nainstalována nebo odinstalována bez její rodičovské modifikace - + Notes Poznámky - + + All supported files + + + + + Maps + Mapy + + + + Campaigns + + + + + Configs + + + + + Mods + Modifikace + + + + Select files (configs, mods, maps, campaigns) to install... + + + + + Replace config file? + + + + + Do you want to replace %1? + + + + Downloading %s%. %p% (%v MB out of %m MB) finished Stahování %s%. %p% (%v MB z %m MB) dokončeno - + Download failed Stahování selhalo - + Unable to download all files. Encountered errors: @@ -431,7 +477,7 @@ Vyskytly se chyby: - + Install successfully downloaded? @@ -440,33 +486,134 @@ Install successfully downloaded? Nainstalovat úspěšně stažené? - + Installing mod %1 Instalování modifikace %1 - + Operation failed Operace selhala - + Encountered errors: Vyskytly se chyby: - + + screenshots + + + + Screenshot %1 Snímek obrazovky %1 - + Mod is incompatible Modifikace není kompatibilní + + CModManager + + + Can not install submod + + + + + Mod is already installed + + + + + Can not uninstall submod + + + + + Mod is not installed + + + + + Mod is already enabled + + + + + + Mod must be installed first + + + + + Mod is not compatible, please update VCMI and checkout latest mod revisions + + + + + Required mod %1 is missing + + + + + Required mod %1 is not enabled + + + + + + This mod conflicts with %1 + + + + + Mod is already disabled + + + + + This mod is needed to run %1 + + + + + Mod archive is missing + + + + + Mod with such name is already installed + + + + + Mod archive is invalid or corrupted + + + + + Failed to extract mod data + + + + + Data with this mod was not found + + + + + Mod is located in protected directory, please remove it manually: + + + + CSettingsView @@ -681,31 +828,59 @@ Exkluzivní celá obrazovka - hra zakryje vaši celou obrazovku a použije vybra Zobrazit intro - + Active Aktivní - + Disabled - + Enable Povolit - + Not Installed - + Install Instalovat + + File size + + + %1 B + + + + + %1 KiB + + + + + %1 MiB + + + + + %1 GiB + + + + + %1 TiB + + + FirstLaunchView @@ -756,9 +931,10 @@ Heroes® of Might and Magic® III HD není v současnosti podporovaný!Najít soubory dat Heroes III - - If you don't have a copy of Heroes III installed, you can use our automatic installation tool 'vcmibuilder', which only requires the GoG.com Heroes III installer. Please visit our wiki for detailed instructions. - Pokud nemáte Heroes III nainstalované, můžete použít náš automatický instalační nástroj 'vcmibuilder', který vyžaduje pouze GOG instalátor Heroes III. Prosíme, navštivte naši wiki pro podrobné instrukce. + + + Install gog.com files + @@ -836,16 +1012,16 @@ Heroes® of Might and Magic® III HD není v současnosti podporovaný!Next Další - - - Open help in browser - Otevřít nápovědu v prohlížeči - Search again Hledat znovu + + + If you don't have a copy of Heroes III installed, VCMI can import your Heroes III data using the offline installer from gog.com. + + Heroes III data files @@ -893,15 +1069,94 @@ Heroes® of Might and Magic® III HD není v současnosti podporovaný! - + Heroes III installation found! - + Copy data to VCMI folder? + + + Select %1 file... + param is file extension + + + + + You have to select %1 file! + param is file extension + + + + + GOG file (*.*) + + + + + File selection + + + + + Invalid file selected + + + + + GOG installer + + + + + GOG data + + + + + Installing... Please wait! + + + + + No Heroes III data! + + + + + Selected files do not contain Heroes III data! + + + + + + + + Heroes III data not found! + + + + + + Failed to detect valid Heroes III data in chosen directory. +Please select directory with installed Heroes III data. + + + + + Heroes III: HD Edition files are not supported by VCMI. +Please select directory with Heroes III: Complete Edition or Heroes III: Shadow of Death. + + + + + Unknown or unsupported Heroes III version found. +Please select directory with Heroes III: Complete Edition or Heroes III: Shadow of Death. + + ImageViewer @@ -1052,6 +1307,24 @@ Heroes® of Might and Magic® III HD není v současnosti podporovaný!Modifikace + + ModFields + + + Name + Název + + + + Type + Druh + + + + Version + Verze + + UpdateDialog @@ -1069,5 +1342,15 @@ Heroes® of Might and Magic® III HD není v současnosti podporovaný!Check for updates on startup Zkontrolovat aktualizace při startu + + + Network error + + + + + Cannot read JSON from url or incorrect JSON data + + diff --git a/launcher/translation/english.ts b/launcher/translation/english.ts index 593169a2a..a102f0c5b 100644 --- a/launcher/translation/english.ts +++ b/launcher/translation/english.ts @@ -192,21 +192,6 @@ AI - - - Name - - - - - Type - - - - - Version - - CModListView @@ -252,7 +237,7 @@ - + Description @@ -267,27 +252,32 @@ - - Uninstall + + Install from file - Enable + Uninstall - Disable + Enable - Update + Disable + Update + + + + Install @@ -302,123 +292,179 @@ - + Mod name - + Installed version - + Latest version - + Size - + Download size - + Authors - + License - + Contact - + Compatibility - - + + Required VCMI version - + Supported VCMI version - + + please upgrade mod + + + + + + mods repository index + + + + + or newer + + + + Supported VCMI versions - + Languages - + Required mods - + Conflicting mods - + This mod can not be installed or enabled because the following dependencies are not present - + This mod can not be enabled because the following mods are incompatible with it - + This mod cannot be disabled because it is required by the following mods - + This mod cannot be uninstalled or updated because it is required by the following mods - + This is a submod and it cannot be installed or uninstalled separately from its parent mod - + Notes - + + All supported files + + + + + Maps + + + + + Campaigns + + + + + Configs + + + + + Mods + + + + + Select files (configs, mods, maps, campaigns) to install... + + + + + Replace config file? + + + + + Do you want to replace %1? + + + + Downloading %s%. %p% (%v MB out of %m MB) finished - + Download failed - + Unable to download all files. Encountered errors: @@ -427,39 +473,140 @@ Encountered errors: - + Install successfully downloaded? - + Installing mod %1 - + Operation failed - + Encountered errors: - + + screenshots + + + + Screenshot %1 - + Mod is incompatible + + CModManager + + + Can not install submod + + + + + Mod is already installed + + + + + Can not uninstall submod + + + + + Mod is not installed + + + + + Mod is already enabled + + + + + + Mod must be installed first + + + + + Mod is not compatible, please update VCMI and checkout latest mod revisions + + + + + Required mod %1 is missing + + + + + Required mod %1 is not enabled + + + + + + This mod conflicts with %1 + + + + + Mod is already disabled + + + + + This mod is needed to run %1 + + + + + Mod archive is missing + + + + + Mod with such name is already installed + + + + + Mod archive is invalid or corrupted + + + + + Failed to extract mod data + + + + + Data with this mod was not found + + + + + Mod is located in protected directory, please remove it manually: + + + + CSettingsView @@ -668,31 +815,59 @@ Fullscreen Exclusive Mode - game will cover entirety of your screen and will use - + Active - + Disabled - + Enable - + Not Installed - + Install + + File size + + + %1 B + + + + + %1 KiB + + + + + %1 MiB + + + + + %1 GiB + + + + + %1 TiB + + + FirstLaunchView @@ -737,8 +912,9 @@ Heroes® of Might and Magic® III HD is currently not supported! - - If you don't have a copy of Heroes III installed, you can use our automatic installation tool 'vcmibuilder', which only requires the GoG.com Heroes III installer. Please visit our wiki for detailed instructions. + + + Install gog.com files @@ -818,13 +994,13 @@ Heroes® of Might and Magic® III HD is currently not supported! - - Open help in browser + + Search again - - Search again + + If you don't have a copy of Heroes III installed, VCMI can import your Heroes III data using the offline installer from gog.com. @@ -874,15 +1050,94 @@ Heroes® of Might and Magic® III HD is currently not supported! - + Heroes III installation found! - + Copy data to VCMI folder? + + + Select %1 file... + param is file extension + + + + + You have to select %1 file! + param is file extension + + + + + GOG file (*.*) + + + + + File selection + + + + + Invalid file selected + + + + + GOG installer + + + + + GOG data + + + + + Installing... Please wait! + + + + + No Heroes III data! + + + + + Selected files do not contain Heroes III data! + + + + + + + + Heroes III data not found! + + + + + + Failed to detect valid Heroes III data in chosen directory. +Please select directory with installed Heroes III data. + + + + + Heroes III: HD Edition files are not supported by VCMI. +Please select directory with Heroes III: Complete Edition or Heroes III: Shadow of Death. + + + + + Unknown or unsupported Heroes III version found. +Please select directory with Heroes III: Complete Edition or Heroes III: Shadow of Death. + + ImageViewer @@ -1033,6 +1288,24 @@ Heroes® of Might and Magic® III HD is currently not supported! + + ModFields + + + Name + + + + + Type + + + + + Version + + + UpdateDialog @@ -1050,5 +1323,15 @@ Heroes® of Might and Magic® III HD is currently not supported! Check for updates on startup + + + Network error + + + + + Cannot read JSON from url or incorrect JSON data + + diff --git a/launcher/translation/french.ts b/launcher/translation/french.ts index d73d50dd2..59e564595 100644 --- a/launcher/translation/french.ts +++ b/launcher/translation/french.ts @@ -192,21 +192,6 @@ AI IA - - - Name - Nom - - - - Type - Type - - - - Version - Version - CModListView @@ -252,7 +237,7 @@ - + Description Description @@ -272,27 +257,32 @@ %p% (%v Ko sur %m Ko) - + + Install from file + + + + Uninstall Désinstaller - + Enable Activer - + Disable Désactiver - + Update Mettre à jour - + Install Installer @@ -302,128 +292,184 @@ Abandonner - + Mod name Nom du mod - + Installed version Version installée - + Latest version Dernière version - + Size - + Download size Taille de téléchargement - + Authors Auteur(s) - + License Licence - + Contact Contact - + Compatibility Compatibilité - - + + Required VCMI version Version requise de VCMI - + Supported VCMI version Version supportée de VCMI - + + please upgrade mod + + + + + + mods repository index + + + + + or newer + + + + Supported VCMI versions Versions supportées de VCMI - + Languages Langues - + Required mods Mods requis - + Conflicting mods Mods en conflit - + This mod can not be installed or enabled because the following dependencies are not present Ce mod ne peut pas être installé ou activé car les dépendances suivantes ne sont pas présents - + This mod can not be enabled because the following mods are incompatible with it Ce mod ne peut pas être installé ou activé, car les dépendances suivantes sont incompatibles avec lui - + This mod cannot be disabled because it is required by the following mods Ce mod ne peut pas être désactivé car il est requis pour les dépendances suivantes - + This mod cannot be uninstalled or updated because it is required by the following mods Ce mod ne peut pas être désinstallé ou mis à jour car il est requis pour les dépendances suivantes - + This is a submod and it cannot be installed or uninstalled separately from its parent mod Ce sous-mod ne peut pas être installé ou mis à jour séparément du mod parent - + Notes Notes - + + All supported files + + + + + Maps + + + + + Campaigns + + + + + Configs + + + + + Mods + Mods + + + + Select files (configs, mods, maps, campaigns) to install... + + + + + Replace config file? + + + + + Do you want to replace %1? + + + + Downloading %s%. %p% (%v MB out of %m MB) finished - + Download failed - + Unable to download all files. Encountered errors: @@ -432,39 +478,140 @@ Encountered errors: - + Install successfully downloaded? - + Installing mod %1 - + Operation failed - + Encountered errors: - + + screenshots + + + + Screenshot %1 Impression écran %1 - + Mod is incompatible Ce mod est incompatible + + CModManager + + + Can not install submod + + + + + Mod is already installed + + + + + Can not uninstall submod + + + + + Mod is not installed + + + + + Mod is already enabled + + + + + + Mod must be installed first + + + + + Mod is not compatible, please update VCMI and checkout latest mod revisions + + + + + Required mod %1 is missing + + + + + Required mod %1 is not enabled + + + + + + This mod conflicts with %1 + + + + + Mod is already disabled + + + + + This mod is needed to run %1 + + + + + Mod archive is missing + + + + + Mod with such name is already installed + + + + + Mod archive is invalid or corrupted + + + + + Failed to extract mod data + + + + + Data with this mod was not found + + + + + Mod is located in protected directory, please remove it manually: + + + + CSettingsView @@ -679,31 +826,59 @@ Mode exclusif plein écran - le jeu couvrira l"intégralité de votre écra Montrer l'intro - + Active Actif - + Disabled Désactivé - + Enable Activé - + Not Installed Pas Installé - + Install Installer + + File size + + + %1 B + + + + + %1 KiB + + + + + %1 MiB + + + + + %1 GiB + + + + + %1 TiB + + + FirstLaunchView @@ -736,6 +911,12 @@ Mode exclusif plein écran - le jeu couvrira l"intégralité de votre écra Locate Heroes III data files Localiser les fichiers de données de Heroes III + + + + Install gog.com files + + Your Heroes III data files have been successfully found. @@ -789,11 +970,6 @@ Heroes® of Might and Magic® III HD n"est actuellement pas pris en charge Next Suivant - - - Open help in browser - Open help in browser - Search again @@ -801,8 +977,8 @@ Heroes® of Might and Magic® III HD n"est actuellement pas pris en charge - If you don't have a copy of Heroes III installed, you can use our automatic installation tool 'vcmibuilder', which only requires the GoG.com Heroes III installer. Please visit our wiki for detailed instructions. - Si vous n"avez pas installé de copie de Heroes III, vous pouvez utiliser notre outil d"installation automatique "vcmibuilder", qui ne nécessite que le programme d"installation de GoG.com Heroes III. Veuillez visiter notre wiki pour des instructions détaillées. + If you don't have a copy of Heroes III installed, VCMI can import your Heroes III data using the offline installer from gog.com. + @@ -891,15 +1067,94 @@ Heroes® of Might and Magic® III HD n"est actuellement pas pris en charge Installer une version compatible de "In The Wake of Gods", une extension Heroes III créée par des fans - + Heroes III installation found! - + Copy data to VCMI folder? + + + Select %1 file... + param is file extension + + + + + You have to select %1 file! + param is file extension + + + + + GOG file (*.*) + + + + + File selection + + + + + Invalid file selected + + + + + GOG installer + + + + + GOG data + + + + + Installing... Please wait! + + + + + No Heroes III data! + + + + + Selected files do not contain Heroes III data! + + + + + + + + Heroes III data not found! + + + + + + Failed to detect valid Heroes III data in chosen directory. +Please select directory with installed Heroes III data. + + + + + Heroes III: HD Edition files are not supported by VCMI. +Please select directory with Heroes III: Complete Edition or Heroes III: Shadow of Death. + + + + + Unknown or unsupported Heroes III version found. +Please select directory with Heroes III: Complete Edition or Heroes III: Shadow of Death. + + ImageViewer @@ -1050,6 +1305,24 @@ Heroes® of Might and Magic® III HD n"est actuellement pas pris en charge Démarrer une partie + + ModFields + + + Name + Nom + + + + Type + Type + + + + Version + Version + + UpdateDialog @@ -1067,5 +1340,15 @@ Heroes® of Might and Magic® III HD n"est actuellement pas pris en charge Check for updates on startup Rechercher les mises à jour au démarrage + + + Network error + + + + + Cannot read JSON from url or incorrect JSON data + + diff --git a/launcher/translation/german.ts b/launcher/translation/german.ts index 36eab6711..d9c453f50 100644 --- a/launcher/translation/german.ts +++ b/launcher/translation/german.ts @@ -192,21 +192,6 @@ AI KI - - - Name - Name - - - - Type - Typ - - - - Version - Version - CModListView @@ -252,7 +237,7 @@ - + Description Beschreibung @@ -267,27 +252,32 @@ Screenshots - + + Install from file + + + + Uninstall Deinstallieren - + Enable Aktivieren - + Disable Deaktivieren - + Update Aktualisieren - + Install Installieren @@ -302,123 +292,179 @@ Abbrechen - + Mod name Mod-Name - + Installed version Installierte Version - + Latest version Letzte Version - + Size Größe - + Download size Downloadgröße - + Authors Autoren - + License Lizenz - + Contact Kontakt - + Compatibility Kompatibilität - - + + Required VCMI version Benötigte VCMI Version - + Supported VCMI version Unterstützte VCMI Version - + + please upgrade mod + + + + + + mods repository index + + + + + or newer + + + + Supported VCMI versions Unterstützte VCMI Versionen - + Languages Sprachen - + Required mods Benötigte Mods - + Conflicting mods Mods mit Konflikt - + This mod can not be installed or enabled because the following dependencies are not present Diese Mod kann nicht installiert oder aktiviert werden, da die folgenden Abhängigkeiten nicht vorhanden sind - + This mod can not be enabled because the following mods are incompatible with it Diese Mod kann nicht aktiviert werden, da folgende Mods nicht mit dieser Mod kompatibel sind - + This mod cannot be disabled because it is required by the following mods Diese Mod kann nicht deaktiviert werden, da sie zum Ausführen der folgenden Mods erforderlich ist - + This mod cannot be uninstalled or updated because it is required by the following mods Diese Mod kann nicht deinstalliert oder aktualisiert werden, da sie für die folgenden Mods erforderlich ist - + This is a submod and it cannot be installed or uninstalled separately from its parent mod Dies ist eine Submod und kann nicht separat von der Hauptmod installiert oder deinstalliert werden - + Notes Anmerkungen - + + All supported files + + + + + Maps + Karten + + + + Campaigns + + + + + Configs + + + + + Mods + Mods + + + + Select files (configs, mods, maps, campaigns) to install... + + + + + Replace config file? + + + + + Do you want to replace %1? + + + + Downloading %s%. %p% (%v MB out of %m MB) finished Herunterladen von %s%. %p% (%v MB von %m MB) beendet - + Download failed Download fehlgeschlagen - + Unable to download all files. Encountered errors: @@ -431,7 +477,7 @@ Es sind Fehler aufgetreten: - + Install successfully downloaded? @@ -440,33 +486,134 @@ Install successfully downloaded? Installation erfolgreich heruntergeladen? - + Installing mod %1 Installation von Mod %1 - + Operation failed Operation fehlgeschlagen - + Encountered errors: Aufgetretene Fehler: - + + screenshots + + + + Screenshot %1 Screenshot %1 - + Mod is incompatible Mod ist inkompatibel + + CModManager + + + Can not install submod + + + + + Mod is already installed + + + + + Can not uninstall submod + + + + + Mod is not installed + + + + + Mod is already enabled + + + + + + Mod must be installed first + + + + + Mod is not compatible, please update VCMI and checkout latest mod revisions + + + + + Required mod %1 is missing + + + + + Required mod %1 is not enabled + + + + + + This mod conflicts with %1 + + + + + Mod is already disabled + + + + + This mod is needed to run %1 + + + + + Mod archive is missing + + + + + Mod with such name is already installed + + + + + Mod archive is invalid or corrupted + + + + + Failed to extract mod data + + + + + Data with this mod was not found + + + + + Mod is located in protected directory, please remove it manually: + + + + CSettingsView @@ -681,31 +828,59 @@ Exklusiver Vollbildmodus - das Spiel bedeckt den gesamten Bildschirm und verwend Intro anzeigen - + Active Aktiv - + Disabled Deaktiviert - + Enable Aktivieren - + Not Installed Nicht installiert - + Install Installieren + + File size + + + %1 B + + + + + %1 KiB + + + + + %1 MiB + + + + + %1 GiB + + + + + %1 TiB + + + FirstLaunchView @@ -756,9 +931,10 @@ Heroes III: HD Edition wird derzeit nicht unterstützt! Heroes III Daten suchen - - If you don't have a copy of Heroes III installed, you can use our automatic installation tool 'vcmibuilder', which only requires the GoG.com Heroes III installer. Please visit our wiki for detailed instructions. - Wenn Sie keine Kopie von Heroes III installiert haben, können Sie unser automatisches Installationstool 'vcmibuilder' verwenden, um Daten aus dem GoG.com-Installationsprogramm zu extrahieren. Besuchen Sie unser Wiki für detaillierte Anweisungen. + + + Install gog.com files + @@ -836,16 +1012,16 @@ Heroes III: HD Edition wird derzeit nicht unterstützt! Next Weiter - - - Open help in browser - Hilfe im Browser öffnen - Search again Erneut suchen + + + If you don't have a copy of Heroes III installed, VCMI can import your Heroes III data using the offline installer from gog.com. + + Heroes III data files @@ -893,15 +1069,94 @@ Heroes III: HD Edition wird derzeit nicht unterstützt! In The Wake of Gods - + Heroes III installation found! - + Copy data to VCMI folder? + + + Select %1 file... + param is file extension + + + + + You have to select %1 file! + param is file extension + + + + + GOG file (*.*) + + + + + File selection + + + + + Invalid file selected + + + + + GOG installer + + + + + GOG data + + + + + Installing... Please wait! + + + + + No Heroes III data! + + + + + Selected files do not contain Heroes III data! + + + + + + + + Heroes III data not found! + + + + + + Failed to detect valid Heroes III data in chosen directory. +Please select directory with installed Heroes III data. + + + + + Heroes III: HD Edition files are not supported by VCMI. +Please select directory with Heroes III: Complete Edition or Heroes III: Shadow of Death. + + + + + Unknown or unsupported Heroes III version found. +Please select directory with Heroes III: Complete Edition or Heroes III: Shadow of Death. + + ImageViewer @@ -1052,6 +1307,24 @@ Heroes III: HD Edition wird derzeit nicht unterstützt! Spiel starten + + ModFields + + + Name + Name + + + + Type + Typ + + + + Version + Version + + UpdateDialog @@ -1069,5 +1342,15 @@ Heroes III: HD Edition wird derzeit nicht unterstützt! Check for updates on startup Nach Aktualisierungen beim Starten prüfen + + + Network error + + + + + Cannot read JSON from url or incorrect JSON data + + diff --git a/launcher/translation/polish.ts b/launcher/translation/polish.ts index d4748758f..26c2dca49 100644 --- a/launcher/translation/polish.ts +++ b/launcher/translation/polish.ts @@ -192,21 +192,6 @@ AI AI - - - Name - Nazwa - - - - Type - Typ - - - - Version - Wersja - CModListView @@ -252,7 +237,7 @@ - + Description Opis @@ -267,27 +252,32 @@ Zrzuty ekranu - + + Install from file + + + + Uninstall Odinstaluj - + Enable Włącz - + Disable Wyłącz - + Update Zaktualizuj - + Install Zainstaluj @@ -302,123 +292,179 @@ Przerwij - + Mod name Nazwa moda - + Installed version Zainstalowana wersja - + Latest version Najnowsza wersja - + Size Rozmiar - + Download size Rozmiar pobierania - + Authors Autorzy - + License Licencja - + Contact Kontakt - + Compatibility Kompatybilność - - + + Required VCMI version Wymagana wersja VCMI - + Supported VCMI version Wspierana wersja VCMI - + + please upgrade mod + + + + + + mods repository index + + + + + or newer + + + + Supported VCMI versions Wspierane wersje VCMI - + Languages Języki - + Required mods Wymagane mody - + Conflicting mods Konfliktujące mody - + This mod can not be installed or enabled because the following dependencies are not present Ten mod nie może zostać zainstalowany lub włączony ponieważ następujące zależności nie zostały spełnione - + This mod can not be enabled because the following mods are incompatible with it Ten mod nie może zostać włączony ponieważ następujące mody są z nim niekompatybilne - + This mod cannot be disabled because it is required by the following mods Ten mod nie może zostać wyłączony ponieważ jest wymagany do uruchomienia następujących modów - + This mod cannot be uninstalled or updated because it is required by the following mods Ten mod nie może zostać odinstalowany lub zaktualizowany ponieważ jest wymagany do uruchomienia następujących modów - + This is a submod and it cannot be installed or uninstalled separately from its parent mod To jest moduł składowy innego moda i nie może być zainstalowany lub odinstalowany oddzielnie od moda nadrzędnego - + Notes Uwagi - + + All supported files + + + + + Maps + Mapy + + + + Campaigns + + + + + Configs + + + + + Mods + Mody + + + + Select files (configs, mods, maps, campaigns) to install... + + + + + Replace config file? + + + + + Do you want to replace %1? + + + + Downloading %s%. %p% (%v MB out of %m MB) finished Pobieranie %s%. %p% (%v MB z %m MB) ukończono - + Download failed Pobieranie nieudane - + Unable to download all files. Encountered errors: @@ -431,7 +477,7 @@ Napotkane błędy: - + Install successfully downloaded? @@ -440,33 +486,134 @@ Install successfully downloaded? Zainstalować pomyślnie pobrane? - + Installing mod %1 Instalowanie modyfikacji %1 - + Operation failed Operacja nieudana - + Encountered errors: Napotkane błędy: - + + screenshots + + + + Screenshot %1 Zrzut ekranu %1 - + Mod is incompatible Mod jest niekompatybilny + + CModManager + + + Can not install submod + + + + + Mod is already installed + + + + + Can not uninstall submod + + + + + Mod is not installed + + + + + Mod is already enabled + + + + + + Mod must be installed first + + + + + Mod is not compatible, please update VCMI and checkout latest mod revisions + + + + + Required mod %1 is missing + + + + + Required mod %1 is not enabled + + + + + + This mod conflicts with %1 + + + + + Mod is already disabled + + + + + This mod is needed to run %1 + + + + + Mod archive is missing + + + + + Mod with such name is already installed + + + + + Mod archive is invalid or corrupted + + + + + Failed to extract mod data + + + + + Data with this mod was not found + + + + + Mod is located in protected directory, please remove it manually: + + + + CSettingsView @@ -681,31 +828,59 @@ Pełny ekran klasyczny - gra przysłoni cały ekran uruchamiając się w wybrane Pokaż intro - + Active Aktywny - + Disabled Wyłączone - + Enable Włącz - + Not Installed Nie zainstalowano - + Install Zainstaluj + + File size + + + %1 B + + + + + %1 KiB + + + + + %1 MiB + + + + + %1 GiB + + + + + %1 TiB + + + FirstLaunchView @@ -756,9 +931,10 @@ Heroes III: HD Edition nie jest obecnie wspierane! Znajdź pliki Heroes III - - If you don't have a copy of Heroes III installed, you can use our automatic installation tool 'vcmibuilder', which only requires the GoG.com Heroes III installer. Please visit our wiki for detailed instructions. - Jeśli nie masz zainstalowanej kopii Heroes III istnieje możliwość użycia naszego automatycznego narzędzia instalacyjnego 'vcmibuilder' by wyodrębnić dane z instalatora GoG.com. Odwiedź nasze wiki po szczegółowe instrukcje. + + + Install gog.com files + @@ -836,16 +1012,16 @@ Heroes III: HD Edition nie jest obecnie wspierane! Next Dalej - - - Open help in browser - Otwórz pomoc w przeglądarce - Search again Szukaj ponownie + + + If you don't have a copy of Heroes III installed, VCMI can import your Heroes III data using the offline installer from gog.com. + + Heroes III data files @@ -893,15 +1069,94 @@ Heroes III: HD Edition nie jest obecnie wspierane! In The Wake of Gods - + Heroes III installation found! - + Copy data to VCMI folder? + + + Select %1 file... + param is file extension + + + + + You have to select %1 file! + param is file extension + + + + + GOG file (*.*) + + + + + File selection + + + + + Invalid file selected + + + + + GOG installer + + + + + GOG data + + + + + Installing... Please wait! + + + + + No Heroes III data! + + + + + Selected files do not contain Heroes III data! + + + + + + + + Heroes III data not found! + + + + + + Failed to detect valid Heroes III data in chosen directory. +Please select directory with installed Heroes III data. + + + + + Heroes III: HD Edition files are not supported by VCMI. +Please select directory with Heroes III: Complete Edition or Heroes III: Shadow of Death. + + + + + Unknown or unsupported Heroes III version found. +Please select directory with Heroes III: Complete Edition or Heroes III: Shadow of Death. + + ImageViewer @@ -1052,6 +1307,24 @@ Heroes III: HD Edition nie jest obecnie wspierane! Mody + + ModFields + + + Name + Nazwa + + + + Type + Typ + + + + Version + Wersja + + UpdateDialog @@ -1069,5 +1342,15 @@ Heroes III: HD Edition nie jest obecnie wspierane! Check for updates on startup Sprawdź aktualizacje przy uruchomieniu + + + Network error + + + + + Cannot read JSON from url or incorrect JSON data + + diff --git a/launcher/translation/portuguese.ts b/launcher/translation/portuguese.ts index 521e2ff84..79897cd57 100644 --- a/launcher/translation/portuguese.ts +++ b/launcher/translation/portuguese.ts @@ -192,21 +192,6 @@ AI IA - - - Name - Nome - - - - Type - Tipo - - - - Version - Versão - CModListView @@ -252,7 +237,7 @@ - + Description Descrição @@ -267,27 +252,32 @@ Capturas de tela - + + Install from file + + + + Uninstall Desinstalar - + Enable Ativar - + Disable Desativar - + Update Atualizar - + Install Instalar @@ -302,123 +292,179 @@ Cancelar - + Mod name Nome do mod - + Installed version Versão instalada - + Latest version Última versão - + Size Tamanho - + Download size Tamanho do download - + Authors Autores - + License Licença - + Contact Contato - + Compatibility Compatibilidade - - + + Required VCMI version Versão do VCMI requerida - + Supported VCMI version Versão do VCMI suportada - + + please upgrade mod + + + + + + mods repository index + + + + + or newer + + + + Supported VCMI versions Versões do VCMI suportadas - + Languages Idiomas - + Required mods Mods requeridos - + Conflicting mods Mods conflitantes - + This mod can not be installed or enabled because the following dependencies are not present Este mod não pode ser instalado ou ativado porque as seguintes dependências não estão presentes - + This mod can not be enabled because the following mods are incompatible with it Este mod não pode ser ativado porque os seguintes mods são incompatíveis com ele - + This mod cannot be disabled because it is required by the following mods Este mod não pode ser desativado porque é necessário pelos seguintes mods - + This mod cannot be uninstalled or updated because it is required by the following mods Este mod não pode ser desinstalado ou atualizado porque é necessário pelos seguintes mods - + This is a submod and it cannot be installed or uninstalled separately from its parent mod Este é um submod e não pode ser instalado ou desinstalado separadamente do seu mod principal - + Notes Notas - + + All supported files + + + + + Maps + Mapas + + + + Campaigns + + + + + Configs + + + + + Mods + Mods + + + + Select files (configs, mods, maps, campaigns) to install... + + + + + Replace config file? + + + + + Do you want to replace %1? + + + + Downloading %s%. %p% (%v MB out of %m MB) finished Baixando %s%. %p% (%v MB de %m MB) completado - + Download failed Falha no download - + Unable to download all files. Encountered errors: @@ -431,7 +477,7 @@ Encontrados os seguintes erros: - + Install successfully downloaded? @@ -440,33 +486,134 @@ Install successfully downloaded? Instalar o download realizado com sucesso? - + Installing mod %1 Instalando mod %1 - + Operation failed Falha na operação - + Encountered errors: Erros encontrados: - + + screenshots + + + + Screenshot %1 Captura de tela %1 - + Mod is incompatible O mod é incompatível + + CModManager + + + Can not install submod + + + + + Mod is already installed + + + + + Can not uninstall submod + + + + + Mod is not installed + + + + + Mod is already enabled + + + + + + Mod must be installed first + + + + + Mod is not compatible, please update VCMI and checkout latest mod revisions + + + + + Required mod %1 is missing + + + + + Required mod %1 is not enabled + + + + + + This mod conflicts with %1 + + + + + Mod is already disabled + + + + + This mod is needed to run %1 + + + + + Mod archive is missing + + + + + Mod with such name is already installed + + + + + Mod archive is invalid or corrupted + + + + + Failed to extract mod data + + + + + Data with this mod was not found + + + + + Mod is located in protected directory, please remove it manually: + + + + CSettingsView @@ -681,31 +828,59 @@ Modo de tela cheia exclusivo - o jogo cobrirá toda a sua tela e usará a resolu Mostrar introdução - + Active Ativo - + Disabled Desativado - + Enable Habilitar - + Not Installed Não instalado - + Install Instalar + + File size + + + %1 B + + + + + %1 KiB + + + + + %1 MiB + + + + + %1 GiB + + + + + %1 TiB + + + FirstLaunchView @@ -756,9 +931,10 @@ Heroes® of Might and Magic® III HD atualmente não é suportado! Localizar arquivos de dados do Heroes III - - If you don't have a copy of Heroes III installed, you can use our automatic installation tool 'vcmibuilder', which only requires the GoG.com Heroes III installer. Please visit our wiki for detailed instructions. - Se você não tem uma cópia do Heroes III instalada, você pode usar nossa ferramenta de instalação automática 'vcmibuilder', que apenas requer o instalador GoG.com Heroes III. Visite nossa wiki para instruções detalhadas. + + + Install gog.com files + @@ -836,16 +1012,16 @@ Heroes® of Might and Magic® III HD atualmente não é suportado! Next Próximo - - - Open help in browser - Abrir ajuda no navegador - Search again Buscar novamente + + + If you don't have a copy of Heroes III installed, VCMI can import your Heroes III data using the offline installer from gog.com. + + Heroes III data files @@ -893,22 +1069,101 @@ Heroes® of Might and Magic® III HD atualmente não é suportado! In The Wake of Gods - + Heroes III installation found! Instalação do Heroes III encontrada! - + Copy data to VCMI folder? Copiar dados para a pasta do VCMI? + + + Select %1 file... + param is file extension + + + + + You have to select %1 file! + param is file extension + + + + + GOG file (*.*) + + + + + File selection + + + + + Invalid file selected + + + + + GOG installer + + + + + GOG data + + + + + Installing... Please wait! + + + + + No Heroes III data! + + + + + Selected files do not contain Heroes III data! + + + + + + + + Heroes III data not found! + + + + + + Failed to detect valid Heroes III data in chosen directory. +Please select directory with installed Heroes III data. + + + + + Heroes III: HD Edition files are not supported by VCMI. +Please select directory with Heroes III: Complete Edition or Heroes III: Shadow of Death. + + + + + Unknown or unsupported Heroes III version found. +Please select directory with Heroes III: Complete Edition or Heroes III: Shadow of Death. + + ImageViewer Image Viewer - Visualizador de Imagens + Visualizador de Imagens @@ -916,7 +1171,7 @@ Heroes® of Might and Magic® III HD atualmente não é suportado! Czech - Tcheco + Tcheco @@ -1052,6 +1307,24 @@ Heroes® of Might and Magic® III HD atualmente não é suportado! Mods + + ModFields + + + Name + Nome + + + + Type + Tipo + + + + Version + Versão + + UpdateDialog @@ -1069,5 +1342,15 @@ Heroes® of Might and Magic® III HD atualmente não é suportado! Check for updates on startup Verificar atualizações na inicialização + + + Network error + + + + + Cannot read JSON from url or incorrect JSON data + + diff --git a/launcher/translation/russian.ts b/launcher/translation/russian.ts index 2ee2ae217..5d8f45539 100644 --- a/launcher/translation/russian.ts +++ b/launcher/translation/russian.ts @@ -192,21 +192,6 @@ AI ИИ - - - Name - Название - - - - Type - Тип - - - - Version - Версия - CModListView @@ -252,7 +237,7 @@ - + Description Описание @@ -267,27 +252,32 @@ Скриншоты - + + Install from file + + + + Uninstall Удалить - + Enable Включить - + Disable Отключить - + Update Обновить - + Install Установить @@ -302,123 +292,179 @@ Отмена - + Mod name Название мода - + Installed version Установленная версия - + Latest version Последняя версия - + Size - + Download size Размер загрузки - + Authors Авторы - + License Лицензия - + Contact Контакты - + Compatibility Совместимость - - + + Required VCMI version Требуемая версия VCMI - + Supported VCMI version Поддерживаемая версия VCMI - + + please upgrade mod + + + + + + mods repository index + + + + + or newer + + + + Supported VCMI versions Поддерживаемые версии VCMI - + Languages Языки - + Required mods Зависимости - + Conflicting mods Конфликтующие моды - + This mod can not be installed or enabled because the following dependencies are not present Этот мод не может быть установлен или активирован, так как отсутствуют следующие зависимости - + This mod can not be enabled because the following mods are incompatible with it Этот мод не может быть установлен или активирован, так как следующие моды несовместимы с этим - + This mod cannot be disabled because it is required by the following mods Этот мод не может быть выключен, так как он является зависимостью для следующих - + This mod cannot be uninstalled or updated because it is required by the following mods Этот мод не может быть удален или обновлен, так как является зависимостью для следующих модов - + This is a submod and it cannot be installed or uninstalled separately from its parent mod Это вложенный мод, он не может быть установлен или удален отдельно от родительского - + Notes Замечания - + + All supported files + + + + + Maps + + + + + Campaigns + + + + + Configs + + + + + Mods + Моды + + + + Select files (configs, mods, maps, campaigns) to install... + + + + + Replace config file? + + + + + Do you want to replace %1? + + + + Downloading %s%. %p% (%v MB out of %m MB) finished - + Download failed - + Unable to download all files. Encountered errors: @@ -427,39 +473,140 @@ Encountered errors: - + Install successfully downloaded? - + Installing mod %1 - + Operation failed - + Encountered errors: - + + screenshots + + + + Screenshot %1 Скриншот %1 - + Mod is incompatible Мод несовместим + + CModManager + + + Can not install submod + + + + + Mod is already installed + + + + + Can not uninstall submod + + + + + Mod is not installed + + + + + Mod is already enabled + + + + + + Mod must be installed first + + + + + Mod is not compatible, please update VCMI and checkout latest mod revisions + + + + + Required mod %1 is missing + + + + + Required mod %1 is not enabled + + + + + + This mod conflicts with %1 + + + + + Mod is already disabled + + + + + This mod is needed to run %1 + + + + + Mod archive is missing + + + + + Mod with such name is already installed + + + + + Mod archive is invalid or corrupted + + + + + Failed to extract mod data + + + + + Data with this mod was not found + + + + + Mod is located in protected directory, please remove it manually: + + + + CSettingsView @@ -668,31 +815,59 @@ Fullscreen Exclusive Mode - game will cover entirety of your screen and will use Вступление - + Active Активен - + Disabled Отключен - + Enable Включить - + Not Installed Не установлен - + Install Установить + + File size + + + %1 B + + + + + %1 KiB + + + + + %1 MiB + + + + + %1 GiB + + + + + %1 TiB + + + FirstLaunchView @@ -743,9 +918,10 @@ Heroes® of Might and Magic® III HD is currently not supported! Поиск файлов данных Героев 3 - - If you don't have a copy of Heroes III installed, you can use our automatic installation tool 'vcmibuilder', which only requires the GoG.com Heroes III installer. Please visit our wiki for detailed instructions. - Если у вас нет установленных Героев III, вы можете использовать скрипт 'vcmibuilder' для извлечения данных из установщика GoG.com. Детальная инструкция в wiki. + + + Install gog.com files + @@ -823,16 +999,16 @@ Heroes® of Might and Magic® III HD is currently not supported! Next Далее - - - Open help in browser - Справка (в браузере) - Search again Повторить поиск + + + If you don't have a copy of Heroes III installed, VCMI can import your Heroes III data using the offline installer from gog.com. + + Heroes III data files @@ -880,15 +1056,94 @@ Heroes® of Might and Magic® III HD is currently not supported! - + Heroes III installation found! - + Copy data to VCMI folder? + + + Select %1 file... + param is file extension + + + + + You have to select %1 file! + param is file extension + + + + + GOG file (*.*) + + + + + File selection + + + + + Invalid file selected + + + + + GOG installer + + + + + GOG data + + + + + Installing... Please wait! + + + + + No Heroes III data! + + + + + Selected files do not contain Heroes III data! + + + + + + + + Heroes III data not found! + + + + + + Failed to detect valid Heroes III data in chosen directory. +Please select directory with installed Heroes III data. + + + + + Heroes III: HD Edition files are not supported by VCMI. +Please select directory with Heroes III: Complete Edition or Heroes III: Shadow of Death. + + + + + Unknown or unsupported Heroes III version found. +Please select directory with Heroes III: Complete Edition or Heroes III: Shadow of Death. + + ImageViewer @@ -1039,6 +1294,24 @@ Heroes® of Might and Magic® III HD is currently not supported! Моды + + ModFields + + + Name + Название + + + + Type + Тип + + + + Version + Версия + + UpdateDialog @@ -1056,5 +1329,15 @@ Heroes® of Might and Magic® III HD is currently not supported! Check for updates on startup + + + Network error + + + + + Cannot read JSON from url or incorrect JSON data + + diff --git a/launcher/translation/spanish.ts b/launcher/translation/spanish.ts index fab6c2e93..686d317e1 100644 --- a/launcher/translation/spanish.ts +++ b/launcher/translation/spanish.ts @@ -192,21 +192,6 @@ AI IA - - - Name - Nombre - - - - Type - Tipo - - - - Version - Versión - CModListView @@ -252,7 +237,7 @@ - + Description Descripción @@ -267,27 +252,32 @@ Capturas de pantalla - + + Install from file + + + + Uninstall Desinstalar - + Enable Activar - + Disable Desactivar - + Update Actualizar - + Install Instalar @@ -302,123 +292,179 @@ Cancelar - + Mod name Nombre del mod - + Installed version Versión instalada - + Latest version Última versión - + Size Tamaño - + Download size Tamaño de descarga - + Authors Autores - + License Licencia - + Contact Contacto - + Compatibility Compatibilidad - - + + Required VCMI version Versión de VCMI requerida - + Supported VCMI version Versión de VCMI compatible - + + please upgrade mod + + + + + + mods repository index + + + + + or newer + + + + Supported VCMI versions Versiones de VCMI compatibles - + Languages Idiomas - + Required mods Mods requeridos - + Conflicting mods Mods conflictivos - + This mod can not be installed or enabled because the following dependencies are not present Este mod no se puede instalar o habilitar porque no están presentes las siguientes dependencias - + This mod can not be enabled because the following mods are incompatible with it Este mod no se puede habilitar porque los siguientes mods son incompatibles con él - + This mod cannot be disabled because it is required by the following mods No se puede desactivar este mod porque es necesario para ejecutar los siguientes mods - + This mod cannot be uninstalled or updated because it is required by the following mods No se puede desinstalar o actualizar este mod porque es necesario para ejecutar los siguientes mods - + This is a submod and it cannot be installed or uninstalled separately from its parent mod Este es un submod y no se puede instalar o desinstalar por separado del mod principal - + Notes Notas - + + All supported files + + + + + Maps + Mapas + + + + Campaigns + + + + + Configs + + + + + Mods + Mods + + + + Select files (configs, mods, maps, campaigns) to install... + + + + + Replace config file? + + + + + Do you want to replace %1? + + + + Downloading %s%. %p% (%v MB out of %m MB) finished Descargando %s%. %p% (%v MB de %m MB) completado - + Download failed Descarga fallida - + Unable to download all files. Encountered errors: @@ -431,7 +477,7 @@ Errores encontrados: - + Install successfully downloaded? @@ -440,33 +486,134 @@ Install successfully downloaded? Instalar lo correctamente descargado? - + Installing mod %1 Instalando mod %1 - + Operation failed Operación fallida - + Encountered errors: Errores encontrados: - + + screenshots + + + + Screenshot %1 Captura de pantalla %1 - + Mod is incompatible El mod es incompatible + + CModManager + + + Can not install submod + + + + + Mod is already installed + + + + + Can not uninstall submod + + + + + Mod is not installed + + + + + Mod is already enabled + + + + + + Mod must be installed first + + + + + Mod is not compatible, please update VCMI and checkout latest mod revisions + + + + + Required mod %1 is missing + + + + + Required mod %1 is not enabled + + + + + + This mod conflicts with %1 + + + + + Mod is already disabled + + + + + This mod is needed to run %1 + + + + + Mod archive is missing + + + + + Mod with such name is already installed + + + + + Mod archive is invalid or corrupted + + + + + Failed to extract mod data + + + + + Data with this mod was not found + + + + + Mod is located in protected directory, please remove it manually: + + + + CSettingsView @@ -681,31 +828,59 @@ Pantalla completa - el juego cubrirá la totalidad de la pantalla y utilizará l Idioma de los datos de Heroes III. - + Active Activado - + Disabled Desactivado - + Enable Activar - + Not Installed No Instalado - + Install Instalar + + File size + + + %1 B + + + + + %1 KiB + + + + + %1 MiB + + + + + %1 GiB + + + + + %1 TiB + + + FirstLaunchView @@ -744,16 +919,16 @@ Pantalla completa - el juego cubrirá la totalidad de la pantalla y utilizará l Next Siguiente - - - Open help in browser - Abrir la ayuda en el navegador - Search again Buscar de nuevo + + + If you don't have a copy of Heroes III installed, VCMI can import your Heroes III data using the offline installer from gog.com. + + Heroes III data files @@ -817,9 +992,10 @@ Ten en cuenta que para usar VCMI debes ser dueño de los archivos de datos origi Localizar los archivos de datos de Heroes III. - - If you don't have a copy of Heroes III installed, you can use our automatic installation tool 'vcmibuilder', which only requires the GoG.com Heroes III installer. Please visit our wiki for detailed instructions. - Si no tienes una copia de Heroes III instalada, puedes usar nuestra herramienta de instalación automática 'vcmibuilder', que solo requiere el instalador de GoG.com de Heroes III. Por favor, visita nuestra wiki para obtener instrucciones detalladas. + + + Install gog.com files + @@ -893,15 +1069,94 @@ Ten en cuenta que para usar VCMI debes ser dueño de los archivos de datos origi Finalizar - + Heroes III installation found! Instalación de Heroes III encontrada! - + Copy data to VCMI folder? Copiar datos a la carpeta VCMI? + + + Select %1 file... + param is file extension + + + + + You have to select %1 file! + param is file extension + + + + + GOG file (*.*) + + + + + File selection + + + + + Invalid file selected + + + + + GOG installer + + + + + GOG data + + + + + Installing... Please wait! + + + + + No Heroes III data! + + + + + Selected files do not contain Heroes III data! + + + + + + + + Heroes III data not found! + + + + + + Failed to detect valid Heroes III data in chosen directory. +Please select directory with installed Heroes III data. + + + + + Heroes III: HD Edition files are not supported by VCMI. +Please select directory with Heroes III: Complete Edition or Heroes III: Shadow of Death. + + + + + Unknown or unsupported Heroes III version found. +Please select directory with Heroes III: Complete Edition or Heroes III: Shadow of Death. + + ImageViewer @@ -1052,6 +1307,24 @@ Ten en cuenta que para usar VCMI debes ser dueño de los archivos de datos origi Mods + + ModFields + + + Name + Nombre + + + + Type + Tipo + + + + Version + Versión + + UpdateDialog @@ -1069,5 +1342,15 @@ Ten en cuenta que para usar VCMI debes ser dueño de los archivos de datos origi Check for updates on startup Comprobar actualizaciones al iniciar + + + Network error + + + + + Cannot read JSON from url or incorrect JSON data + + diff --git a/launcher/translation/ukrainian.ts b/launcher/translation/ukrainian.ts index 5a8f80cd5..26570d269 100644 --- a/launcher/translation/ukrainian.ts +++ b/launcher/translation/ukrainian.ts @@ -192,21 +192,6 @@ AI ШІ - - - Name - Назва - - - - Type - Тип - - - - Version - Версія - CModListView @@ -252,7 +237,7 @@ - + Description Опис @@ -267,27 +252,32 @@ Знімки - + + Install from file + Встановити з файлу + + + Uninstall Видалити - + Enable Активувати - + Disable Деактивувати - + Update Оновити - + Install Встановити @@ -302,123 +292,179 @@ Відмінити - + Mod name Назва модифікації - + Installed version Встановлена версія - + Latest version Найновіша версія - + Size Розмір - + Download size Розмір для завантаження - + Authors Автори - + License Ліцензія - + Contact Контакти - + Compatibility Сумісність - - + + Required VCMI version Необхідна версія VCMI - + Supported VCMI version Підтримувана версія VCMI - + + please upgrade mod + будь ласка, оновіть модифікацію + + + + + mods repository index + каталог модифікацій + + + + or newer + або новіше + + + Supported VCMI versions Підтримувані версії VCMI - + Languages Мови - + Required mods Необхідні модифікації - + Conflicting mods Конфліктуючі модифікації - + This mod can not be installed or enabled because the following dependencies are not present Цю модифікацію не можна встановити чи активувати, оскільки відсутні наступні залежності - + This mod can not be enabled because the following mods are incompatible with it Цю модифікацію не можна ввімкнути, оскільки наступні модифікації несумісні з цією модифікацією - + This mod cannot be disabled because it is required by the following mods Цю модифікацію не можна відключити, оскільки вона необхідна для запуску наступних модифікацій - + This mod cannot be uninstalled or updated because it is required by the following mods Цю модифікацію не можна видалити або оновити, оскільки вона необхідна для запуску наступних модифікацій - + This is a submod and it cannot be installed or uninstalled separately from its parent mod Це вкладена модифікація, і її не можна встановити або видалити окремо від батьківської модифікації - + Notes Примітки - + + All supported files + Усі підтримувані файли + + + + Maps + Мапи + + + + Campaigns + Кампанії + + + + Configs + Налаштування + + + + Mods + Модифікації + + + + Select files (configs, mods, maps, campaigns) to install... + Виберіть файли ( налаштування, моди, мапи, кампанії) для встановлення... + + + + Replace config file? + Замінити файл налаштувань? + + + + Do you want to replace %1? + Ви дійсно хочете замінити %1? + + + Downloading %s%. %p% (%v MB out of %m MB) finished Завантажуємо %s%. %p% (%v МБ з %m Мб) виконано - + Download failed Помилка завантаження - + Unable to download all files. Encountered errors: @@ -431,7 +477,7 @@ Encountered errors: - + Install successfully downloaded? @@ -440,33 +486,135 @@ Install successfully downloaded? Встановити успішно завантажені? - + Installing mod %1 Встановлення модифікації %1 - + Operation failed Операція завершилася невдало - + Encountered errors: Виникли помилки: - + + screenshots + знімки екрану + + + Screenshot %1 Знімок екрану %1 - + Mod is incompatible Модифікація несумісна + + CModManager + + + Can not install submod + Неможливо встановити вкладену модифікацію + + + + Mod is already installed + Модифікація вже встановлена + + + + Can not uninstall submod + Неможливо видалити вкладену модифікацію + + + + Mod is not installed + Модифікація не встановлена + + + + Mod is already enabled + Модифікація вже увімкнена + + + + + Mod must be installed first + Спочатку потрібно встановити модифікацію + + + + Mod is not compatible, please update VCMI and checkout latest mod revisions + Модифікація несумісна, будь ласка, оновіть VCMI та перевірте останні версії модифікацій + + + + Required mod %1 is missing + Необхідна модифікація %1 відсутня + + + + Required mod %1 is not enabled + Необхідну модифікацію %1 не ввімкнено + + + + + This mod conflicts with %1 + Ця модифікація несумісна з %1 + + + + Mod is already disabled + Модифікацію вже вимкнено + + + + This mod is needed to run %1 + Ця модифікація необхідна для запуску %1 + + + + Mod archive is missing + Архів з модифікацією відсутній + + + + Mod with such name is already installed + Модифікацію з такою назвою вже встановлено + + + + Mod archive is invalid or corrupted + Архів модифікації непридатний або пошкоджений + + + + Failed to extract mod data + Не вдалося видобути дані модифікації + + + + Data with this mod was not found + Дані з цією модифікацією не знайдено + + + + Mod is located in protected directory, please remove it manually: + + Модифікація знаходиться в захищеному каталозі, будь ласка, видаліть її вручну: + + + CSettingsView @@ -681,31 +829,59 @@ Fullscreen Exclusive Mode - game will cover entirety of your screen and will use Вступні відео - + Active Активні - + Disabled Деактивований - + Enable Активувати - + Not Installed Не встановлено - + Install Встановити + + File size + + + %1 B + %1 Б + + + + %1 KiB + %1 КіБ + + + + %1 MiB + %1 МіБ + + + + %1 GiB + %1 ГіБ + + + + %1 TiB + %1 ТіБ + + FirstLaunchView @@ -756,9 +932,10 @@ Heroes® of Might and Magic® III HD наразі не підтримуєтьс Пошук файлів даних Heroes III - - If you don't have a copy of Heroes III installed, you can use our automatic installation tool 'vcmibuilder', which only requires the GoG.com Heroes III installer. Please visit our wiki for detailed instructions. - Якщо у вас не встановлена копія Heroes III, ви можете скористатися нашим засобом встановлення "vcmibuilder", яка вимагає лише інсталятора GoG.com. Докладні інструкції можна знайти у нашій вікі. + + + Install gog.com files + Встановити файли gog.com @@ -836,16 +1013,16 @@ Heroes® of Might and Magic® III HD наразі не підтримуєтьс Next Далі - - - Open help in browser - Відкрити довідку у браузері - Search again Повторити пошук + + + If you don't have a copy of Heroes III installed, VCMI can import your Heroes III data using the offline installer from gog.com. + Якщо у вас немає встановленої копії Heroes III, VCMI може імпортувати ваші дані Heroes III використовуючи офлайн-інсталятор з gog.com. + Heroes III data files @@ -893,14 +1070,96 @@ Heroes® of Might and Magic® III HD наразі не підтримуєтьс In The Wake of Gods - + Heroes III installation found! - + Інсталяцію Heroes III знайдено! - + Copy data to VCMI folder? - + Скопіювати дані до теки VCMI? + + + + Select %1 file... + param is file extension + Оберіть файл %1... + + + + You have to select %1 file! + param is file extension + Ви повинні обрати файл %1! + + + + GOG file (*.*) + Файл GOG (*.*) + + + + File selection + Вибір файлу + + + + Invalid file selected + Обрано невірний файл + + + + GOG installer + Інсталятор GOG + + + + GOG data + Дані GOG + + + + Installing... Please wait! + Встановлення... Зачекайте! + + + + No Heroes III data! + Немає файлів даних Heroes III! + + + + Selected files do not contain Heroes III data! + Обрані файли не містять файлів з грою Heroes III! + + + + + + + Heroes III data not found! + Файли даних Heroes III не знайдено! + + + + + Failed to detect valid Heroes III data in chosen directory. +Please select directory with installed Heroes III data. + Не вдалося виявити файли Heroes III у вибраному каталозі. +Будь ласка, виберіть теку зі встановленими даними Heroes III. + + + + Heroes III: HD Edition files are not supported by VCMI. +Please select directory with Heroes III: Complete Edition or Heroes III: Shadow of Death. + Файли Heroes III: HD Edition не підтримуються VCMI. +Будь ласка, виберіть теку з Heroes III: Complete Edition або Heroes III: Shadow of Death. + + + + Unknown or unsupported Heroes III version found. +Please select directory with Heroes III: Complete Edition or Heroes III: Shadow of Death. + Знайдено невідому або не підтримувану версію Heroes III. +Будь ласка, виберіть теку з Heroes III: Complete Edition або Heroes III: Shadow of Death. @@ -1052,6 +1311,24 @@ Heroes® of Might and Magic® III HD наразі не підтримуєтьс Грати + + ModFields + + + Name + Назва + + + + Type + Тип + + + + Version + Версія + + UpdateDialog @@ -1069,5 +1346,15 @@ Heroes® of Might and Magic® III HD наразі не підтримуєтьс Check for updates on startup Перевіряти наявність оновлень при запуску + + + Network error + Помилка мережі + + + + Cannot read JSON from url or incorrect JSON data + Не вдається прочитати JSON з url або невірні дані JSON + diff --git a/launcher/translation/vietnamese.ts b/launcher/translation/vietnamese.ts index 58affaf3b..95461b715 100644 --- a/launcher/translation/vietnamese.ts +++ b/launcher/translation/vietnamese.ts @@ -192,21 +192,6 @@ AI Trí tuệ nhân tạo - - - Name - Tên - - - - Type - Loại - - - - Version - Phiên bản - CModListView @@ -252,7 +237,7 @@ - + Description Mô tả @@ -267,27 +252,32 @@ Hình ảnh - + + Install from file + + + + Uninstall Gỡ bỏ - + Enable Bật - + Disable Tắt - + Update Cập nhật - + Install Cài đặt @@ -302,123 +292,179 @@ Hủy - + Mod name Tên bản sửa đổi - + Installed version Phiên bản cài đặt - + Latest version Phiên bản mới nhất - + Size - + Download size Kích thước tải về - + Authors Tác giả - + License Giấy phép - + Contact Liên hệ - + Compatibility Tương thích - - + + Required VCMI version Cần phiên bản VCMI - + Supported VCMI version Hỗ trợ phiên bản VCMI - + + please upgrade mod + + + + + + mods repository index + + + + + or newer + + + + Supported VCMI versions Phiên bản VCMI hỗ trợ - + Languages Ngôn ngữ - + Required mods Cần các bản sửa đổi - + Conflicting mods Bản sửa đổi không tương thích - + This mod can not be installed or enabled because the following dependencies are not present Bản sửa đổi này không thể cài đặt hoặc kích hoạt do thiếu các bản sửa đổi sau - + This mod can not be enabled because the following mods are incompatible with it Bản sửa đổi này không thể kích hoạt do không tương thích các bản sửa đổi sau - + This mod cannot be disabled because it is required by the following mods Bản sửa đổi này không thể tắt do cần thiết cho các bản sửa đổi sau - + This mod cannot be uninstalled or updated because it is required by the following mods Bản sửa đổi này không thể gỡ bỏ hoặc nâng cấp do cần thiết cho các bản sửa đổi sau - + This is a submod and it cannot be installed or uninstalled separately from its parent mod Đây là bản con, không thể cài đặt hoặc gỡ bỏ tách biệt với bản cha - + Notes Ghi chú - + + All supported files + + + + + Maps + + + + + Campaigns + + + + + Configs + + + + + Mods + Bản sửa đổi + + + + Select files (configs, mods, maps, campaigns) to install... + + + + + Replace config file? + + + + + Do you want to replace %1? + + + + Downloading %s%. %p% (%v MB out of %m MB) finished - + Download failed - + Unable to download all files. Encountered errors: @@ -427,39 +473,140 @@ Encountered errors: - + Install successfully downloaded? - + Installing mod %1 - + Operation failed - + Encountered errors: - + + screenshots + + + + Screenshot %1 Hình ảnh %1 - + Mod is incompatible Bản sửa đổi này không tương thích + + CModManager + + + Can not install submod + + + + + Mod is already installed + + + + + Can not uninstall submod + + + + + Mod is not installed + + + + + Mod is already enabled + + + + + + Mod must be installed first + + + + + Mod is not compatible, please update VCMI and checkout latest mod revisions + + + + + Required mod %1 is missing + + + + + Required mod %1 is not enabled + + + + + + This mod conflicts with %1 + + + + + Mod is already disabled + + + + + This mod is needed to run %1 + + + + + Mod archive is missing + + + + + Mod with such name is already installed + + + + + Mod archive is invalid or corrupted + + + + + Failed to extract mod data + + + + + Data with this mod was not found + + + + + Mod is located in protected directory, please remove it manually: + + + + CSettingsView @@ -674,31 +821,59 @@ Toàn màn hình riêng biệt - Trò chơi chạy toàn màn hình và dùng đ Hiện thị giới thiệu - + Active Bật - + Disabled Tắt - + Enable Bật - + Not Installed Chưa cài đặt - + Install Cài đặt + + File size + + + %1 B + + + + + %1 KiB + + + + + %1 MiB + + + + + %1 GiB + + + + + %1 TiB + + + FirstLaunchView @@ -749,9 +924,10 @@ Hiện tại chưa hỗ trợ Heroes® of Might and Magic® III HD!Định vị tệp dữ liệu Heroes III - - If you don't have a copy of Heroes III installed, you can use our automatic installation tool 'vcmibuilder', which only requires the GoG.com Heroes III installer. Please visit our wiki for detailed instructions. - Nếu không có bản sao Heroes III, bạn có thể sử dụng 'vcmibuilder', cái mà chỉ cần bản cài GoG.com Heroes III. Tham khảo trang wiki của chúng tôi để biết thêm chi tiết. + + + Install gog.com files + @@ -829,16 +1005,16 @@ Hiện tại chưa hỗ trợ Heroes® of Might and Magic® III HD!Next Tiếp theo - - - Open help in browser - Mở trợ giúp trên trình duyệt - Search again Tìm kiếm lại + + + If you don't have a copy of Heroes III installed, VCMI can import your Heroes III data using the offline installer from gog.com. + + Heroes III data files @@ -886,15 +1062,94 @@ Hiện tại chưa hỗ trợ Heroes® of Might and Magic® III HD!In The Wake of Gods - + Heroes III installation found! - + Copy data to VCMI folder? + + + Select %1 file... + param is file extension + + + + + You have to select %1 file! + param is file extension + + + + + GOG file (*.*) + + + + + File selection + + + + + Invalid file selected + + + + + GOG installer + + + + + GOG data + + + + + Installing... Please wait! + + + + + No Heroes III data! + + + + + Selected files do not contain Heroes III data! + + + + + + + + Heroes III data not found! + + + + + + Failed to detect valid Heroes III data in chosen directory. +Please select directory with installed Heroes III data. + + + + + Heroes III: HD Edition files are not supported by VCMI. +Please select directory with Heroes III: Complete Edition or Heroes III: Shadow of Death. + + + + + Unknown or unsupported Heroes III version found. +Please select directory with Heroes III: Complete Edition or Heroes III: Shadow of Death. + + ImageViewer @@ -1045,6 +1300,24 @@ Hiện tại chưa hỗ trợ Heroes® of Might and Magic® III HD!Bản sửa đổi + + ModFields + + + Name + Tên + + + + Type + Loại + + + + Version + Phiên bản + + UpdateDialog @@ -1062,5 +1335,15 @@ Hiện tại chưa hỗ trợ Heroes® of Might and Magic® III HD!Check for updates on startup + + + Network error + + + + + Cannot read JSON from url or incorrect JSON data + + diff --git a/launcher/updatedialog_moc.cpp b/launcher/updatedialog_moc.cpp index 55f4eb94f..6c9825868 100644 --- a/launcher/updatedialog_moc.cpp +++ b/launcher/updatedialog_moc.cpp @@ -61,7 +61,7 @@ UpdateDialog::UpdateDialog(bool calledManually, QWidget *parent): if(response->error() != QNetworkReply::NoError) { ui->versionLabel->setStyleSheet("QLabel { background-color : red; color : black; }"); - ui->versionLabel->setText("Network error"); + ui->versionLabel->setText(tr("Network error")); ui->plainTextEdit->setPlainText(response->errorString()); return; } @@ -98,7 +98,7 @@ void UpdateDialog::loadFromJson(const JsonNode & node) node["changeLog"].getType() != JsonNode::JsonType::DATA_STRING || node["downloadLinks"].getType() != JsonNode::JsonType::DATA_STRUCT) //we need at least one link - other are optional { - ui->plainTextEdit->setPlainText("Cannot read JSON from url or incorrect JSON data"); + ui->plainTextEdit->setPlainText(tr("Cannot read JSON from url or incorrect JSON data")); return; }