diff --git a/code/ryzom/tools/client/ryzom_installer/src/operationdialog.cpp b/code/ryzom/tools/client/ryzom_installer/src/operationdialog.cpp
index 8d7aa5672..7ccaaa428 100644
--- a/code/ryzom/tools/client/ryzom_installer/src/operationdialog.cpp
+++ b/code/ryzom/tools/client/ryzom_installer/src/operationdialog.cpp
@@ -255,7 +255,7 @@ void COperationDialog::updateAddRemoveComponents()
void COperationDialog::processUpdateProfilesNextStep()
{
- m_currentOperation = tr("Update profiles");
+ m_currentOperation = tr("Updating profiles...");
// for "update profiles" operations, we set installer to false when components are updated,
// since we're not using this variable
@@ -471,7 +471,7 @@ void COperationDialog::onProgressStop()
void COperationDialog::onProgressProgress(qint64 current, const QString &filename)
{
- operationProgressLabel->setText(m_currentOperationProgressFormat.arg(filename));
+ operationProgressLabel->setText(filename);
operationProgressBar->setValue(current / 1024);
@@ -512,8 +512,7 @@ void COperationDialog::downloadData()
const CServer &server = config->getServer(m_currentServerId);
- m_currentOperation = tr("Download data required by server %1").arg(server.name);
- m_currentOperationProgressFormat = tr("Downloading %1...");
+ m_currentOperation = tr("Downloading data required by server %1...").arg(server.name);
m_downloader->prepareFile(config->expandVariables(server.dataDownloadUrl), config->getInstallationDirectory() + "/" + config->expandVariables(server.dataDownloadFilename) + ".part");
}
@@ -524,8 +523,7 @@ void COperationDialog::extractDownloadedData()
const CServer &server = config->getServer(m_currentServerId);
- m_currentOperation = tr("Extract data files required by server %1").arg(server.name);
- m_currentOperationProgressFormat = tr("Extracting %1...");
+ m_currentOperation = tr("Extracting data required by server %1...").arg(server.name);
CFilesExtractor extractor(this);
extractor.setSourceFile(config->getInstallationDirectory() + "/" + server.dataDownloadFilename);
@@ -547,8 +545,7 @@ void COperationDialog::downloadClient()
const CServer &server = config->getServer(m_currentServerId);
- m_currentOperation = tr("Download client required by server %1").arg(server.name);
- m_currentOperationProgressFormat = tr("Downloading %1...");
+ m_currentOperation = tr("Downloading client required by server %1...").arg(server.name);
m_downloader->prepareFile(config->expandVariables(server.clientDownloadUrl), config->getInstallationDirectory() + "/" + config->expandVariables(server.clientDownloadFilename) + ".part");
}
@@ -559,8 +556,7 @@ void COperationDialog::extractDownloadedClient()
const CServer &server = config->getServer(m_currentServerId);
- m_currentOperation = tr("Extract client files required by server %1").arg(server.name);
- m_currentOperationProgressFormat = tr("Extracting %1...");
+ m_currentOperation = tr("Extracting client required by server %1...").arg(server.name);
QString destinationDirectory = server.getDirectory();
@@ -587,8 +583,7 @@ void COperationDialog::copyDataFiles()
// default server
const CServer &server = config->getServer(m_currentServerId);
- m_currentOperation = tr("Copy data files required by server %1").arg(server.name);
- m_currentOperationProgressFormat = tr("Copying %1...");
+ m_currentOperation = tr("Copying data required by server %1...").arg(server.name);
QStringList serverFiles;
serverFiles << "cfg";
@@ -622,8 +617,7 @@ void COperationDialog::copyProfileFiles()
// default profile
const CProfile &profile = config->getProfile();
- m_currentOperation = tr("Copy old profile to new location");
- m_currentOperationProgressFormat = tr("Copying %1...");
+ m_currentOperation = tr("Copying old profile to new location...");
QStringList profileFiles;
profileFiles << "cache";
@@ -658,8 +652,7 @@ void COperationDialog::extractBnpClient()
// default server
const CServer &server = config->getServer();
- m_currentOperation = tr("Extract client to new location");
- m_currentOperationProgressFormat = tr("Extracting %1...");
+ m_currentOperation = tr("Extracting client to new location...");
QString destinationDirectory = server.getDirectory();
@@ -726,8 +719,7 @@ void COperationDialog::copyInstaller()
// default server
const CServer &server = config->getServer();
- m_currentOperation = tr("Copy installer to new location");
- m_currentOperationProgressFormat = tr("Copying %1...");
+ m_currentOperation = tr("Copying installer to new location...");
QString destinationDirectory = config->getInstallationDirectory();
@@ -846,8 +838,7 @@ void COperationDialog::cleanFiles()
// default server
const CServer &server = config->getServer();
- m_currentOperation = tr("Clean obsolete files");
- m_currentOperationProgressFormat = tr("Deleting %1...");
+ m_currentOperation = tr("Cleaning obsolete files...");
CFilesCleaner cleaner(this);
cleaner.setDirectory(server.getDirectory());
@@ -862,7 +853,7 @@ bool COperationDialog::createDefaultProfile()
CServer server = config->getServer();
- m_currentOperation = tr("Create default profile");
+ m_currentOperation = tr("Creating default profile...");
CProfile profile;
@@ -921,7 +912,7 @@ bool COperationDialog::createProfileShortcuts(const QString &profileId)
const CProfile &profile = config->getProfile(profileId);
- m_currentOperation = tr("Create shortcuts for profile %1").arg(profile.id);
+ m_currentOperation = tr("Creating shortcuts for profile %1...").arg(profile.id);
profile.createShortcuts();
@@ -1025,8 +1016,7 @@ bool COperationDialog::deleteAddRemoveEntry()
void COperationDialog::deleteComponentsServers()
{
- m_currentOperation = tr("Delete client files");
- m_currentOperationProgressFormat = tr("Deleting %1...");
+ m_currentOperation = tr("Deleting client...");
emit prepare();
emit init(0, m_removeComponents.servers.size());
@@ -1083,8 +1073,7 @@ void COperationDialog::deleteComponentsServers()
void COperationDialog::addComponentsProfiles()
{
- m_currentOperation = tr("Add profiles");
- m_currentOperationProgressFormat = tr("Adding profile %1...");
+ m_currentOperation = tr("Adding profiles...");
CConfigFile *config = CConfigFile::getInstance();
@@ -1104,8 +1093,7 @@ void COperationDialog::addComponentsProfiles()
void COperationDialog::deleteComponentsProfiles()
{
- m_currentOperation = tr("Delete profiles");
- m_currentOperationProgressFormat = tr("Deleting profile %1...");
+ m_currentOperation = tr("Deleting profiles...");
emit prepare();
emit init(0, m_removeComponents.servers.size());
@@ -1155,8 +1143,7 @@ void COperationDialog::deleteComponentsProfiles()
void COperationDialog::deleteComponentsInstaller()
{
- m_currentOperation = tr("Delete installer");
- m_currentOperationProgressFormat = tr("Deleting %1...");
+ m_currentOperation = tr("Deleting installer...");
CConfigFile *config = CConfigFile::getInstance();
@@ -1198,8 +1185,7 @@ void COperationDialog::deleteComponentsInstaller()
void COperationDialog::deleteComponentsDownloadedFiles()
{
- m_currentOperation = tr("Delete downloaded files");
- m_currentOperationProgressFormat = tr("Deleting %1...");
+ m_currentOperation = tr("Deleting downloaded files...");
CConfigFile *config = CConfigFile::getInstance();
diff --git a/code/ryzom/tools/client/ryzom_installer/src/operationdialog.h b/code/ryzom/tools/client/ryzom_installer/src/operationdialog.h
index 52acee110..19235bdd9 100644
--- a/code/ryzom/tools/client/ryzom_installer/src/operationdialog.h
+++ b/code/ryzom/tools/client/ryzom_installer/src/operationdialog.h
@@ -142,7 +142,6 @@ protected:
CDownloader *m_downloader;
QString m_currentOperation;
- QString m_currentOperationProgressFormat;
QMutex m_abortingMutex;
bool m_aborting;
diff --git a/code/ryzom/tools/client/ryzom_installer/translations/ryzom_installer_de.ts b/code/ryzom/tools/client/ryzom_installer/translations/ryzom_installer_de.ts
index 443fb7432..56e329a5f 100644
--- a/code/ryzom/tools/client/ryzom_installer/translations/ryzom_installer_de.ts
+++ b/code/ryzom/tools/client/ryzom_installer/translations/ryzom_installer_de.ts
@@ -30,11 +30,16 @@
+
+ Datei ist nicht abrufbar, bitte versuch es später noch einmal (Status-Code: %1)
+
+
+
Falscher Status-Code: %1
-
+
Netzwerk-Fehler: %1
@@ -57,42 +62,42 @@
Dateien werden installiert nach (benötigt %1):
-
+
Bitte wähle das Verzeichnis, in dem Ryzom momentan installiert ist.
-
+
Ryzom konnte nicht gefunden werden
-
+
Ryzom konnte im gewählten Verzeichnis nicht gefunden werden. Wähle bitte ein anderes Verzeichnis oder brich ab.
-
+
Bitte wähle ein Verzeichnis, in dem Ryzom installiert werden soll.
-
+
Ein anderer Ort: %1
-
+
Undefiniert
-
+
Nicht genügend freier Festplattenspeicher
-
+
Auf diesem Laufwerk ist nicht genügend freier Speicher verfügbar, bitte schaffe mehr Platz oder wähle ein Verzeichnis auf einem anderen Laufwerk.
@@ -100,27 +105,27 @@
CMainWindow
-
+
Über %1
-
+
Programm, um Ryzom-Profile zu installieren, herunterzuladen und zu verwalten.
-
+
Autor: %1
-
+
Copyright: %1
-
+
Support: %1
@@ -133,17 +138,17 @@
Dateien werden installiert nach (benötigt %1):
-
+
Bitte wähle ein Verzeichnis, in dem Ryzom installiert werden soll.
-
+
Nicht genügend freier Festplattenspeicher
-
+
Auf diesem Laufwerk ist nicht genügend freier Speicher verfügbar, bitte schaffe mehr Platz oder wähle ein Verzeichnis auf einem anderen Laufwerk.
@@ -151,192 +156,247 @@
COperationDialog
-
- Profile aktualisieren
+ Profile aktualisieren
-
+
+
+ Aktualisiere Profile...
+
+
+
Bestätigung
-
+
- Warnung: dieser Server unterstützt kein Fortsetzen! Wenn du jetzt den Download abbrichst, wirst du nicht in der Lage sein, ihn später wieder fortzusetzen. Willst du den Download wirklich abbrechen?
+ Warnung: dieser Server unterstützt kein Fortsetzen! Wenn du jetzt den Download abbrichst, wirst du nicht in der Lage sein, ihn später wieder fortzusetzen.
+Willst du den Download wirklich abbrechen?
-
+
%p% (%v/%m KiB)
-
+
Fehler
-
+
+
+ Herunterzuladende Daten benötigt von Server %1...
+
+
+
+
+ Zu extrahierende Daten benötigt von Server %1...
+
+
+
+
+ Herunterzuladender Client benötigt von Server %1...
+
+
+
+
+ Zu extrahierender Client benötigt von Server %1...
+
+
+
+
+ Zu kopierende Daten benötigt von Server %1...
+
+
+
+
+ Kopiere alte Profile zum neuen Zielort...
+
+
+
+
+ Extrahiere Client an neuem Zielort...
+
+
+
+
+ Kopiere Installer zum neuen Zielort...
+
+
+
+
+ Bereinige überholte Dateien...
+
+
+
+
+ Erstelle Standard-Profile...
+
+
+
+
+ Erstelle Verknüpfungen für Profile %1...
+
+
+
+
+ Lösche Client...
+
+
+
+
+ Füge Profile hinzu...
+
+
+
+
+ Lösche Profile...
+
+
+
+
+ Lösche Installer...
+
+
+
+
+ Lösche heruntergeladene Dateien...
+
+
%1 ist der Servername, also z.B. Atys oder Yubo
- Lade Daten herunter, die vom Server %1 benötigt werden
+ Lade Daten herunter, die vom Server %1 benötigt werden
-
-
- Lade herunter %1...
+ Lade herunter %1...
-
- Entpacke Dateien, die vom Server %1 benötigt werden
+ Entpacke Dateien, die vom Server %1 benötigt werden
-
-
-
- Entpacke %1...
+ Entpacke %1...
-
- Lade Client herunter, der vom Server %1 benötigt wird
+ Lade Client herunter, der vom Server %1 benötigt wird
-
- Entpacke Client-Dateien, die vom Server %1 benötigt werden
+ Entpacke Client-Dateien, die vom Server %1 benötigt werden
-
- Kopiere Dateien, die vom Server %1 benötigt werden
+ Kopiere Dateien, die vom Server %1 benötigt werden
-
-
-
- Kopiere %1...
+ Kopiere %1...
-
- Kopiere altes Profil an den neuen Ort
+ Kopiere altes Profil an den neuen Ort
-
- Entpacke Client am neuen Ort
+ Entpacke Client am neuen Ort
-
- Kopiere Installer an neuen Ort
+ Kopiere Installer an neuen Ort
-
+
Deinstalliere alten Client
-
+
Eine ältere Version von Ryzom wurde auf diesem System gefunden, möchtest du sie deinstallieren, um Festplattenspeicher zu sparen?
-
- Lösche alte Dateien
+ Lösche alte Dateien
-
-
-
-
- Lösche %1...
+ Lösche %1...
-
- Erstelle Standard-Profil
+ Erstelle Standard-Profil
-
- Erstelle Verknüpfungen für Profil %1
+ Erstelle Verknüpfungen für Profil %1
-
- Lösche Client-Dateien
+ Lösche Client-Dateien
-
+
Dateien für Client %1 konnten nicht gelöscht werden
-
- Füge Profile hinzu
+ Füge Profile hinzu
-
- Füge Profil %1 hinzu...
+ Füge Profil %1 hinzu...
-
- Lösche Profile
+ Lösche Profile
-
- Lösche Profil %1...
+ Lösche Profil %1...
-
+
Dateien für Profil %1 konnten nicht gelöscht werden
-
- Lösche Installer
+ Lösche Installer
-
- Lösche heruntergeladene Dateien
+ Lösche heruntergeladene Dateien
CProfilesDialog
-
+
Bestätigung
-
+
Du bist dabei, ein Profil zu löschen. Es werden keine Dateien gelöscht, das musst du manuell tun.
Bist du sicher, dass du dieses Profil löschen willst?
-
+
Bitte wähle die ausführbare Datei, um den Ryzom-Client zu starten
-
+
Ausführbare Dateien (*.exe)
@@ -633,7 +693,7 @@ Drücke Weiter und folge den verschiedenen Schritten bis zum Ende.
- Liste der Profile
+ Liste der Profile:
@@ -739,30 +799,40 @@ Drücke Weiter und folge den verschiedenen Schritten bis zum Ende.
QApplication
-
+
Fehler
-
+
ryzom_installer.ini konnte nicht gefunden werden
-
+
Installations- und Startprogramm für Ryzom
-
+
Deinstallieren
-
+
Stiller Modus
+
+
+
+ Version
+
+
+
+
+ Selbstinstallation
+
@@ -839,32 +909,32 @@ Drücke Weiter und folge den verschiedenen Schritten bis zum Ende.
QObject
-
+
B
-
+
KiB
-
+
MiB
-
+
GiB
-
+
TiB
-
+
PiB
diff --git a/code/ryzom/tools/client/ryzom_installer/translations/ryzom_installer_es.ts b/code/ryzom/tools/client/ryzom_installer/translations/ryzom_installer_es.ts
index d536595d1..c4bbf4cf2 100644
--- a/code/ryzom/tools/client/ryzom_installer/translations/ryzom_installer_es.ts
+++ b/code/ryzom/tools/client/ryzom_installer/translations/ryzom_installer_es.ts
@@ -30,11 +30,16 @@
+
+
+
+
+
-
+
@@ -57,42 +62,42 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -100,27 +105,27 @@
CMainWindow
-
+
-
+
-
+
-
+
-
+
@@ -133,17 +138,17 @@
-
+
-
+
-
+
@@ -151,190 +156,152 @@
COperationDialog
-
-
+
+
-
+
-
+
-
+
-
+
-
-
+
+
-
-
-
+
+
-
-
+
+
-
-
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
-
-
-
-
-
-
-
-
-
-
CProfilesDialog
-
+
-
+
-
+
-
+
@@ -725,30 +692,40 @@ Just press Continue button and follow the different steps until everything is do
QApplication
-
+
-
+
-
+
-
+
-
+
+
+
+
+
+
+
+
+
+
+
@@ -825,32 +802,32 @@ Just press Continue button and follow the different steps until everything is do
QObject
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/code/ryzom/tools/client/ryzom_installer/translations/ryzom_installer_fr.ts b/code/ryzom/tools/client/ryzom_installer/translations/ryzom_installer_fr.ts
index 6f822aed1..e002e2aa4 100644
--- a/code/ryzom/tools/client/ryzom_installer/translations/ryzom_installer_fr.ts
+++ b/code/ryzom/tools/client/ryzom_installer/translations/ryzom_installer_fr.ts
@@ -30,11 +30,16 @@
+
+ Le fichier est indisponible, veuillez réessayer ultérieurement (code de statut : %1)
+
+
+
Code de statut incorrect : %1
-
+
Erreur réseau : %1
@@ -57,42 +62,42 @@
Les fichiers seront installés dans (%1 nécessaires) :
-
+
Veuillez choisir le répertoire où Ryzom est actuellement installé.
-
+
Impossible de trouver Ryzom
-
+
Impossible de trouver Ryzom dans le répertoire sélectionné. Veuillez en choisir un autre ou annuler.
-
+
Veuillez choisir le répertoire où Ryzom sera installé
-
+
Autre emplacement : %1
-
+
Non défini
-
+
Espace disque insuffisant
-
+
Vous ne disposez pas assez d'espace libre sur ce disque, veuillez en libérer ou choisir un répertoire sur un autre disque.
@@ -100,27 +105,27 @@
CMainWindow
-
+
À propos de %1
-
+
Programme pour installer, télécharger et gérer les profils de Ryzom.
-
+
Auteur : %1
-
+
Copyright : %1
-
+
Assistance : %1
@@ -133,17 +138,17 @@
Les fichiers seront installés dans (%1 nécessaires) :
-
+
Veuillez choisir le répertoire où installer Ryzom
-
+
Espace disque insuffisant
-
+
Vous ne disposez pas assez d'espace libre sur ce disque, veuillez en libérer ou choisir un répertoire sur un autre disque.
@@ -151,192 +156,246 @@
COperationDialog
-
- Mettre à jour les profils
+ Mettre à jour les profils
-
+
+
+ Mise à jour des profils...
+
+
+
Confirmation
-
+
Attention, ce serveur ne supporte pas la reprise de téléchargement ! Si vous arrêtez le téléchargement maintenant, vous ne pourrez pas le poursuivre ultérieurement.
Êtes-vous sûr d'interrompre le téléchargement ?
-
+
%p% (%v/%m Kio)
-
+
Erreur
-
+
+
+ Téléchargement des données nécessaires pour le serveur %1...
+
+
+
+
+ Extraction des données nécessaires pour le serveur %1...
+
+
+
+
+ Téléchargement du client nécessaire pour le serveur %1...
+
+
+
+
+ Extraction du client nécessaire pour le serveur %1...
+
+
+
+
+ Copie des données nécessaires pour le serveur %1...
+
+
+
+
+ Copie de l'ancien profil vers un nouvel emplacement...
+
+
+
+
+ Extraction du client vers un nouvel emplacement...
+
+
+
+
+ Copie de l'installateur vers un nouvel emplacement...
+
+
+
+
+ Nettoyage des fichiers obsolètes...
+
+
+
+
+ Création du profil par défaut...
+
+
+
+
+ Création des raccourcis pour le profil %1...
+
+
+
+
+ Suppression du client...
+
+
+
+
+ Ajout des profils...
+
+
+
+
+ Suppression des profils...
+
+
+
+
+ Suppression de l'installateur...
+
+
+
+
+ Suppression des fichiers téléchargés...
+
+
- Télécharge les données nécessaires pour le serveur %1
+ Télécharge les données nécessaires pour le serveur %1
-
-
- Téléchargement de %1 en cours...
+ Téléchargement de %1 en cours...
-
- Extraire les fichiers de données nécessaires pour le serveur %1
+ Extraire les fichiers de données nécessaires pour le serveur %1
-
-
-
- Extration de %1 en cours...
+ Exctration de %1 en cours...
-
- Télécharger le client nécessaire pour le serveur %1
+ Télécharger le client nécessaire pour le serveur %1
-
- Extraire les fichiers du client nécessaire pour le serveur %1
+ Extraire les fichiers du client nécessaire pour le serveur %1
-
- Copier les fichiers de données nécessaires pour le serveur %1
+ Copier les fichiers de données nécessaires pour le serveur %1
-
-
-
- Copie de %1 en cours...
+ Copie de %1 en cours...
-
- Copier l'ancien profil vers un nouvel emplacement
+ Copier l'ancien profil vers un nouvel emplacement
-
- Extraire le client vers un nouvel emplacement
+ Extraire le client vers un nouvel emplacement
-
- Copier l'installateur vers un nouvel emplacement
+ Copier l'installateur vers un nouvel emplacement
-
+
Désinstaller l'ancien client
-
+
Une ancienne version de Ryzom a été détectée sur ce système, souhaitez-vous la désinstaller afin de libérer de l'espace disque ?
-
- Nettoyer les fichiers obsolètes
+ Nettoyer les fichiers obsolètes
-
-
-
-
- Suppression de %1 en cours...
+ Suppression de %1 en cours...
-
- Créer le profil par défaut
+ Créer le profil par défaut
-
- Créer les raccourcis pour le profil %1
+ Créer les raccourcis pour le profil %1
-
- Supprimer les fichiers du client
+ Supprimer les fichiers du client
-
+
Impossible de supprimer les fichiers du client %1
-
- Ajouter des profils
+ Ajouter des profils
-
- Ajout du profil %1 en cours...
+ Ajout du profil %1 en cours...
-
- Supprimer les profils
+ Supprimer les profils
-
- Suppression du profil %1 en cours...
+ Suppression du profil %1 en cours...
-
+
Impossible de supprimer les fichiers du profil %1
-
- Supprimer l'installateur
+ Supprimer l'installateur
-
- Supprimer les fichiers téléchargés
+ Supprimer les fichiers téléchargés
CProfilesDialog
-
+
Confirmation
-
+
Vous êtes sur le point de supprimer un profil, les fichiers ne seront pas supprimés et vous devrez le faire manuellement.
Êtes-vous sûr de supprimer ce profil ?
-
+
Veuillez choisir l'exécutable du client de Ryzom à lancer
-
+
Exécutables (*.exe)
@@ -743,30 +802,40 @@ Vous n'avez qu'à cliquer sur Suivant et suivre les différentes étap
QApplication
-
+
Erreur
-
+
Impossible de trouver ryzom_installer.ini
-
+
Outil d'installation et lanceur pour Ryzom
-
+
Désinstaller
-
+
Mode silencieux
+
+
+
+ Version
+
+
+
+
+ S'auto-installer
+
@@ -843,32 +912,32 @@ Vous n'avez qu'à cliquer sur Suivant et suivre les différentes étap
QObject
-
+
o
-
+
Kio
-
+
Mio
-
+
Gio
-
+
Tio
-
+
Pio
diff --git a/code/ryzom/tools/client/ryzom_installer/translations/ryzom_installer_ru.ts b/code/ryzom/tools/client/ryzom_installer/translations/ryzom_installer_ru.ts
index 8ba43fa46..45d155ac8 100644
--- a/code/ryzom/tools/client/ryzom_installer/translations/ryzom_installer_ru.ts
+++ b/code/ryzom/tools/client/ryzom_installer/translations/ryzom_installer_ru.ts
@@ -16,27 +16,32 @@
-
+ Невозможно записать файл
-
+ Тайм-аут
-
+ URL перенаправления не определен
+
+
+
+
+
-
+
-
+ Ошибка сети: %1
@@ -54,75 +59,75 @@
-
+ Файлы будут установлены в (требуется %1):
-
+
-
+ Пожалуйста, выберите директорию, в которой установен Ryzom.
-
+
-
+ Невозможно найти Ryzom
-
+
-
+ Невозможно найти Ryzom в выбранной директории. Пожалуйста, выберите другую директорию или отмену.
-
+
-
+ Пожалуйста, выберите директорию для установки Ryzom
-
+
-
+ Другое местоположение: %1
-
+
-
+ Не определено
-
+
-
+ Недостаточно свободного места
-
+
CMainWindow
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+ О %1
+
+ Программа для установки, загрузки и управления профилями Ryzom.
+
+
+
+
+ Автор: %1
+
+
+
+
+ Копирайт: %1
+
+
+
-
+ Поддержка: %1
@@ -130,20 +135,20 @@
-
+ Файлы будут установлены в (требуется %1):
-
+
-
+ Пожалуйста, выберете директорию для установки Ryzom
-
+
-
+ Недостаточно свободного места
-
+
@@ -151,192 +156,226 @@
COperationDialog
-
-
+
+
-
+
-
+ Подтверждение
-
+
-
+ Внимание, данный сервер не поддерживает возобновление загрузки! Если вы сейчас прервете загрузку, вы не сможете возобновить ее позднее. Вы уверены, что хотите прервать загрузку?
-
+
-
+ %p% (%v/%m Кб)
-
+
+ Ошибка
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+ Загрузить данные, необходимые серверу %1
-
-
-
+ Загрузка %1...
-
-
+ Извлечь данные, необходимые серверу %1
-
-
-
-
+ Извлечение %1...
-
-
+ Загрузить клиент, необходимый серверу %1
-
-
+ Извлечь файлы клиента, необходимые серверу %1
-
-
+ Копировать данные, необходимые серверу %1
-
-
-
-
+ Копирование %1...
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
-
+ Удалить предыдущую версию клиента
-
+
-
-
-
-
-
-
-
-
-
-
+ Удаление %1...
-
-
+ Создать профиль по умолчанию
-
-
+ Создать ярлыки для профиля %1
-
-
+ Удалить файлы клиента
-
+
-
+ Невозможно удалить файлы клиента %1
-
-
+ Добавить профили
-
-
+ Добавление профиля %1...
-
-
+ Удалить профили
-
-
+ Удаление профиля %1...
-
+
-
+ Невозможно удалить файлы профиля %1
-
-
+ Удалить инсталлятор
-
-
+ Удалить загруженные файлы
CProfilesDialog
-
+
-
+ Подтверждение
-
+
-
+
-
+ Пожалуйста, выберете исполняемый файл для запуска клиента Ryzom
-
+
-
+ Исполняемые файлы (*.exe)
@@ -344,7 +383,7 @@ Are you sure to delete this profile?
-
+ #%1: %2
@@ -352,7 +391,7 @@ Are you sure to delete this profile?
-
+ Пожалуйста, выберете директорию для установки Ryzom
@@ -360,32 +399,32 @@ Are you sure to delete this profile?
-
+ Компонент
-
+ Hfpvth
-
+ Клиент для %1
-
+ Профиль #%1: %2
-
+ Инсталлятор
-
+ Загруженные файлы
@@ -393,7 +432,7 @@ Are you sure to delete this profile?
-
+ Инсталлятор Ryzom
@@ -407,12 +446,12 @@ Just follow the different steps and make your choice between the options presen
-
+ Показать расширенные параметры
-
+ Файлы будут установлены из:
@@ -422,7 +461,7 @@ Just follow the different steps and make your choice between the options presen
-
+ Другое местоположение: %1
@@ -438,27 +477,27 @@ Just follow the different steps and make your choice between the options presen
-
+ Файлы будут установлены в (требуется 10 Гб):
-
+ C:\
-
+ Вы предпочитаете использовать 64-битный или 32-битный клиент?
-
+ 64-битный (рекомендуемый)
-
+ 32-битный
@@ -466,7 +505,7 @@ Just follow the different steps and make your choice between the options presen
-
+ Инсталлятор Ryzom
@@ -475,7 +514,11 @@ Just follow the different steps and make your choice between the options presen
p, li { white-space: 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>
-
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
+<html><head><meta name="qrichtext" content="1" /><style type="text/css">
+p, li { white-space: 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>
@@ -485,48 +528,48 @@ p, li { white-space: pre-wrap; }
-
+ Играть
-
+ Настроить
-
+ &Настройки
-
+ &Помощь
-
+ О Qt
-
+ О...
-
+ &Профили
-
+ &Выход
-
+ &Удалить
@@ -534,7 +577,7 @@ p, li { white-space: pre-wrap; }
-
+ Инсталлятор Ryzom
@@ -548,17 +591,17 @@ Just press Continue button and follow the different steps until everything is do
-
+ Показать расширенные параметры
-
+ Файлы будут установлены в (требуется 10 Гб):
-
+ C:\
@@ -568,27 +611,27 @@ Just press Continue button and follow the different steps until everything is do
-
+ Вы предпочитаете использовать 64-битный или 32-битный клиент?
-
+ 64-битный (рекомендуемый)
-
+ 32-битный
-
+ Продолжить
-
+ Выход
@@ -596,7 +639,7 @@ Just press Continue button and follow the different steps until everything is do
-
+ Инсталлятор Ryzom
@@ -619,37 +662,37 @@ Just press Continue button and follow the different steps until everything is do
-
+ Список профилей:
-
+ Добавить
-
+ Удалить
-
+ Профиль:
-
+ 0
-
+ Имя:
-
+ Сервер:
@@ -659,17 +702,17 @@ Just press Continue button and follow the different steps until everything is do
-
+
-
+ Исполняемый файл:
-
+ ryzom_client_r.exe
@@ -689,170 +732,180 @@ Just press Continue button and follow the different steps until everything is do
-
+ Комментарии:
-
+ Директория:
-
+ ~/.ryzom/0
-
+ Открыть
-
+ Создать ярлыки:
-
+ Рабочий стол
-
+ меню Пуск
QApplication
-
+
-
-
-
-
-
-
+ Ошибка
+
+ Невозможно найти ryzom_installer.ini
+
+
+
-
+
+ Удалить
+
+
+
+
+ Фоновый режим (silent mode)
+
+
+
+
-
-
+
+
-
+ Невозможно открыть %1
-
+ Невозможно открыть выходной файл
-
+ Невозможно записать выходной файл
-
+ Архиватор 7zip не поддерживает данный тип архива
-
+ Невозможно выделить память
-
+ Ошибка %1
-
+ Невозможно создать директорию %1
-
+ Невозможно назначить права %1
-
+ диск переполнен
-
+ невозможно записать %1
-
+ невозможно прочитать %1
-
+ неуспешно (%1)
-
+ Невозможно разархивировать %1 в %2: %3
-
+ Невозможно скопировать файл %1
QObject
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+ Б
+
+ Кб
+
+
+
+
+ Мб
+
+
+
+
+ Гб
+
+
+
+
+ Тб
+
+
+
-
+ Пб
@@ -865,7 +918,7 @@ Just press Continue button and follow the different steps until everything is do
-
+ Использовать 64-битный клиент
@@ -875,7 +928,7 @@ Just press Continue button and follow the different steps until everything is do
-
+ Язык
@@ -891,12 +944,12 @@ Just press Continue button and follow the different steps until everything is do
-
+ D:\Ryzom
-
+ E:\Ryzom
@@ -904,7 +957,7 @@ Just press Continue button and follow the different steps until everything is do
-
+ Инсталлятор Ryzom
@@ -914,17 +967,17 @@ Just press Continue button and follow the different steps until everything is do
-
+ Компоненты для удаления
-
+ Удалить
-
+ Отменить