Compare commits

...

2 Commits
1.5 ... 1.6

Author SHA1 Message Date
0648a06dbc correct version string 2023-01-26 12:04:08 +01:00
ff7a75e168 some traductions 2023-01-26 12:02:12 +01:00
4 changed files with 12 additions and 3 deletions

Binary file not shown.

View File

@ -167,6 +167,15 @@
<source>PB</source>
<translation>Po</translation>
</message>
<message>
<location filename="../../mainwindow.cpp" line="24"/>
<source>Client for rsync server
You click on file to enqueue it, and RyncUI Download one file a time</source>
<translation>Client pour serveur rsync
Cliquez sur un fichier pour l&apos;ajouter dans la file de téléchargement.</translation>
</message>
<message>
<location filename="../../mainwindow.cpp" line="35"/>
<source>Path</source>

View File

@ -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);

View File

@ -60,10 +60,10 @@ class About
{
public:
QString title = "RsyncUI";
QString version = "1.4";
QString version = "1.6";
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";
};