diff --git a/RsyncUI.pro.user b/RsyncUI.pro.user index e585878..9e5430e 100644 --- a/RsyncUI.pro.user +++ b/RsyncUI.pro.user @@ -1,6 +1,6 @@ - + EnvironmentId diff --git a/RsyncUI_fr_FR.qm b/RsyncUI_fr_FR.qm deleted file mode 100644 index 644c776..0000000 Binary files a/RsyncUI_fr_FR.qm and /dev/null differ diff --git a/languages/fr_FR/RsyncUI_fr_FR.qm b/languages/fr_FR/RsyncUI_fr_FR.qm index 57b5441..279ce7c 100644 Binary files a/languages/fr_FR/RsyncUI_fr_FR.qm and b/languages/fr_FR/RsyncUI_fr_FR.qm differ diff --git a/languages/fr_FR/RsyncUI_fr_FR.ts b/languages/fr_FR/RsyncUI_fr_FR.ts index 90fe913..98ba23a 100644 --- a/languages/fr_FR/RsyncUI_fr_FR.ts +++ b/languages/fr_FR/RsyncUI_fr_FR.ts @@ -4,27 +4,57 @@ Configuration - + Configuration Configuration - - Enter the bandwidth limit - Entrez la limite de bande passante + + Toolbar view + Toolbar - + Bandwidth limit Bandwidth limit Limite de bande passante - + + Enter the bandwidth limit (0 to 1024) + Entrez la limite de bande passante (0 à 1024) + + + Select th unit of bandwidth limit in Bytes, KiloBytes, MegaBytes, GigaBytes or PetaBytes Unit of bandwidth Sélectionnez l'unité de limite de bande passante en otctets, Ko, Mo, Go, Po + + + Icon only + Icône seule + + + + Text only + Texte seul + + + + Text beside icon + Text à côté de l'icône + + + + Text under icon + Texte sous l'icöne + + + + Text follow icon + Texte suit l'icône + MainWindow @@ -34,77 +64,80 @@ Fenêtre principale - + Server Serveur Serveur - + Enter server's URL Entrez l'adresse du serveur - + Port Port - + Enter rsync port on server Entrez le port du servuer rsync - + Press button to connect to rsync server Connect to server Cliquez pour se connecter au serveur rsync - + Connection Connexion - + Return Retour - + Click to view the list of files of this folder Cliquez pour afficher la liste des documents - + Click to add to download queue Cliquez pour ajouter à la file de téléchargement - + Click on file to stop downloading Cliquez sur le document pour arrêter le téléchargement et l'enleveer de la file - + %p% Downloading Téléchargement - - + + toolBar + Barre d'outils + + + Menu Menu - help - Aide + Aide - - + + Change save folder Changer le dossier de destination @@ -113,22 +146,21 @@ Dossier d'enregistrement - Bandwidth limit - Limite de bande passante + Limite de bande passante - + About À propos - + About Qt À propos de Qt - + Settings Paramètres @@ -137,38 +169,38 @@ debug - + Byte Octet - + KB Ko - + MB Mo - + GB Go - + TB To - - + + PB Po - + Client for rsync server You click on file to enqueue it, and RyncUI Download one file a time @@ -177,64 +209,64 @@ You click on file to enqueue it, and RyncUI Download one file a time Cliquez sur un fichier pour l'ajouter dans la file de téléchargement. - + Path Chemin - + Size Taille - + Type Type - + Exiting will stop downloading, and will clear the download queue. Do you want to exit ? Soritr stoppera le téléchargement et effacera la file des téléchargements. Voulez-vous vraiment sortir du programme ? - + server does not exists Le serveur n'existe pas - + Version Version - + Licence License - + Author Auteur - + EMail Courriel - + Source code Code source - + Choose directory to save file Choisissez le dossier où enregistrer - + Do you want to stop downloading and delete this file from download queue ? Vouslez-vous arrêter le téléchargement et enlever ce fichier de la file de téléchargement ? @@ -243,7 +275,7 @@ Voulez-vous vraiment sortir du programme ? Client pour serveur rsync - + Do you want to delete this file from download queue ? Voulez-vous enlever ce fichier de la file de téléchargement ? diff --git a/mainwindow.cpp b/mainwindow.cpp index 755554c..c8362a5 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -510,6 +510,7 @@ void MainWindow::loadSettings() ui->treeWidget->header()->restoreState(settings.value("treeWidget/state").toByteArray()); ui->splitter->restoreState(settings.value("splitter/state").toByteArray()); ui->splitter_2->restoreState(settings.value("splitter2/state").toByteArray()); + ui->toolBar->setToolButtonStyle((Qt::ToolButtonStyle)settings.value("toolbar/state").toInt()); // loading connexion settings // loading servers history @@ -539,6 +540,7 @@ void MainWindow::saveSettings() this->settings.setValue("splitter2/state", ui->splitter_2->saveState()); this->settings.setValue("connexion/lastServer", QString::fromStdString(this->connexion.server)); this->settings.setValue("connexion/lastPort", QString::number(this->connexion.port)); + this->settings.setValue("toolbar/state", ui->toolBar->toolButtonStyle()); this->settings.sync(); }