diff --git a/languages/fr_FR/RsyncUI_fr_FR.qm b/languages/fr_FR/RsyncUI_fr_FR.qm
index d78857c..57b5441 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 35591ef..90fe913 100644
--- a/languages/fr_FR/RsyncUI_fr_FR.ts
+++ b/languages/fr_FR/RsyncUI_fr_FR.ts
@@ -167,6 +167,15 @@
Po
+
+
+
+ Client pour serveur rsync
+
+Cliquez sur un fichier pour l'ajouter dans la file de téléchargement.
+
diff --git a/mainwindow.cpp b/mainwindow.cpp
index 1f7e06e..bab0c88 100644
--- a/mainwindow.cpp
+++ b/mainwindow.cpp
@@ -21,7 +21,7 @@ MainWindow::MainWindow(QWidget *parent)
config.UnitCombobox->addItems({tr("Byte"), tr("KB"), tr("MB"), tr("GB"), tr("TB"), tr("PB")});
// init of About
- this->about.description = tr(this->about.description.toStdString().c_str());
+ this->about.description = tr("Client for rsync server\n\nYou click on file to enqueue it, and RyncUI Download one file a time");
// connectors
connect(&downloadO, &downloadFile::progressSignal, ui->progressBar, &QProgressBar::setValue);
diff --git a/mainwindow.h b/mainwindow.h
index 2021135..71963a4 100644
--- a/mainwindow.h
+++ b/mainwindow.h
@@ -60,10 +60,10 @@ class About
{
public:
QString title = "RsyncUI";
- QString version = "1.4";
+ QString version = "1.5";
QString author = "Daniel TARTAVEL-JEANNOT";
QString licence = "GPL_V3";
- QString description = "Client for rsync server\n\nYou click on file to enqueue it, and RyncUI Download one file a time";
+ QString description;
QString email = "dtux@free.fr";
QString git = "https://git.labolyon.fr/dtux/RsyncUI/issues";
};