From ff7a75e168459fb9de46aa647b94eaecedf93260 Mon Sep 17 00:00:00 2001 From: Daniel Tartavel Date: Thu, 26 Jan 2023 12:02:12 +0100 Subject: [PATCH] some traductions --- languages/fr_FR/RsyncUI_fr_FR.qm | Bin 4395 -> 4719 bytes languages/fr_FR/RsyncUI_fr_FR.ts | 9 +++++++++ mainwindow.cpp | 2 +- mainwindow.h | 4 ++-- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/languages/fr_FR/RsyncUI_fr_FR.qm b/languages/fr_FR/RsyncUI_fr_FR.qm index d78857cbe88c4b8fc5b929d60104ae9a3b2c349b..57b5441cca19eaf7c69e5001fe67f2a843f15c99 100644 GIT binary patch delta 563 zcmYL^Pe>GD7{;GXOR* zG}Ki|?m=tz0qvJCa(|ukvp6%b0~p1&-|HJdckXNYOE^Kn3FY?lF$R7pZw(X3>?&&? zF9Z7VyDObT<_C3QVU7A-^;N3KBh722_Z`&U(wg=k0Cr}1s!8o9J$U(x^;3QM=QluW zWRGN-w;tB4RAFS_K<;%aWZ9Q{x5!P}59c=@^;6rQ|GvUoY6s1+0%?@Yt+PGUAYr=8 z3JYC8R&zMitVgL0?ffc+;lhE0hX?{!;Uh-CzmUBEReqB?U}ui0G7LV+)C|`ouC>xh zDu!2E(mRU(JuVKx##GB2wVVPKc07c&M)ugmQT^W$HNF>zT}OJ6821AagmYe5gfghg zz%WXFEXuA^o)*3*#vNCR$QRO^iDfK>6ZHz)tB7-)7(Fdc`Lmwu+Z9G-lC?$TT&Xpz K1NA|DTmK7U-ir(X delta 300 zcmaE_vRY|^Tzvoo1Is1`2JRRj{Rv1nGBB_T0qI*n+KGXIryNK(F);AWV_?uxWnf^k zWMEmal!1Y{mVwnK6e#b*z?!iFNY7zlEt>+QPcyJCWCg0%XJ9>$3ZxG+u)Q&0VBl9` zaG!PrsK1=S%lr=m1IJ6IpGS@|Feq^^W4>LS4z%z;OV9cwpn`WS`?&ZR7}yT796B2h zr2kCZFJ{F%fpyNDLktYO2U)i>ssf!<&lY)F7-+07+ndCH3=9m3?0d4_FfedV;V9br z1;}5;smlpe#}_wQoKa4T^Ec0K#$urMFFYp~01fAR$9rq85zw{Yc;D^^`i@P8FG&ta dbIMMRXB1;+Ka~kIdc)=##-nVTYdJr0008keOB(PB Po + + + Client for rsync server + +You click on file to enqueue it, and RyncUI Download one file a time + Client pour serveur rsync + +Cliquez sur un fichier pour l'ajouter dans la file de téléchargement. + Path 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"; };