From afb3daca3e9af5180ddfa394aeb71ad360a65676 Mon Sep 17 00:00:00 2001 From: kervala Date: Mon, 16 May 2016 16:21:47 +0200 Subject: [PATCH] Changed: Better English --- .../tools/client/ryzom_installer/src/operationdialog.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/ryzom/tools/client/ryzom_installer/src/operationdialog.cpp b/code/ryzom/tools/client/ryzom_installer/src/operationdialog.cpp index 1c0e5cd82..1e1f067e6 100644 --- a/code/ryzom/tools/client/ryzom_installer/src/operationdialog.cpp +++ b/code/ryzom/tools/client/ryzom_installer/src/operationdialog.cpp @@ -266,7 +266,7 @@ void COperationDialog::downloadData() // default server const CServer &server = config->getServer(); - m_currentOperation = QApplication::tr("Download data required for server %1").arg(server.name); + m_currentOperation = QApplication::tr("Download data required by server %1").arg(server.name); m_currentOperationProgressFormat = QApplication::tr("Downloading %1..."); m_downloader->prepareFile(config->expandVariables(server.dataDownloadUrl), config->getInstallationDirectory() + "/" + config->expandVariables(server.dataDownloadFilename) + ".part"); @@ -279,7 +279,7 @@ void COperationDialog::downloadClient() // default server const CServer &server = config->getServer(); - m_currentOperation = QApplication::tr("Download client required for server %1").arg(server.name); + m_currentOperation = QApplication::tr("Download client required by server %1").arg(server.name); m_currentOperationProgressFormat = QApplication::tr("Downloading %1..."); m_downloader->prepareFile(config->expandVariables(server.clientDownloadUrl), config->getInstallationDirectory() + "/" + config->expandVariables(server.clientDownloadFilename) + ".part"); @@ -292,7 +292,7 @@ void COperationDialog::copyServerFiles() // default server const CServer &server = config->getServer(); - m_currentOperation = QApplication::tr("Copy client files needed for server %1").arg(server.name); + m_currentOperation = QApplication::tr("Copy client files required by server %1").arg(server.name); m_currentOperationProgressFormat = QApplication::tr("Copying %1..."); QStringList serverFiles;