From 037a1875f9dd3becbc55ad1b466536e1907113ab Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Sun, 2 Aug 2009 06:33:43 +0000 Subject: [PATCH] - Use findPkg (pkg-config) to find libtorrent-rasterbar and detected if version is sufficient - Cleaned up libMagick compilation flags detection - Minor fixes to About dialog - Updated language files - Fixed French translation --- configure | 109 +++++++--------------------------- qcm/libmagick.qcm | 11 ++-- qcm/libtorrent-rasterbar.qcm | 70 +++++----------------- src/about.ui | 4 +- src/lang/qbittorrent_bg.ts | 20 +++---- src/lang/qbittorrent_ca.ts | 20 +++---- src/lang/qbittorrent_cs.ts | 20 +++---- src/lang/qbittorrent_da.ts | 20 +++---- src/lang/qbittorrent_de.ts | 20 +++---- src/lang/qbittorrent_el.ts | 20 +++---- src/lang/qbittorrent_en.ts | 20 +++---- src/lang/qbittorrent_es.ts | 20 +++---- src/lang/qbittorrent_fi.ts | 20 +++---- src/lang/qbittorrent_fr.qm | Bin 60262 -> 63087 bytes src/lang/qbittorrent_fr.ts | 25 ++++---- src/lang/qbittorrent_hu.ts | 20 +++---- src/lang/qbittorrent_it.ts | 20 +++---- src/lang/qbittorrent_ja.ts | 20 +++---- src/lang/qbittorrent_ko.ts | 20 +++---- src/lang/qbittorrent_nb.ts | 20 +++---- src/lang/qbittorrent_nl.ts | 20 +++---- src/lang/qbittorrent_pl.ts | 20 +++---- src/lang/qbittorrent_pt.ts | 4 +- src/lang/qbittorrent_pt_BR.ts | 4 +- src/lang/qbittorrent_ro.ts | 4 +- src/lang/qbittorrent_ru.ts | 4 +- src/lang/qbittorrent_sk.ts | 4 +- src/lang/qbittorrent_sv.ts | 4 +- src/lang/qbittorrent_tr.ts | 4 +- src/lang/qbittorrent_uk.ts | 4 +- src/lang/qbittorrent_zh.ts | 4 +- src/lang/qbittorrent_zh_TW.ts | 4 +- 32 files changed, 236 insertions(+), 343 deletions(-) diff --git a/configure b/configure index 4ed800680..d54b18557 100755 --- a/configure +++ b/configure @@ -18,17 +18,12 @@ Main options: --help This help text. Dependency options: - --with-libtorrent-inc=[path] Path to libtorrent-rasterbar include - files - --with-libtorrent-lib=[path] Path to libtorrent-rasterbar library - files - --with-libtorrent-static-lib=[path] Path to libtorrent-rasterbar .a file - --with-libboost-inc=[path] Path to libboost include files - --with-libcurl-inc=[path] Path to libcurl include files - --with-libcurl-lib=[path] Path to libcurl library files - --disable-libzzip Disable use of libzzip - --with-libzzip-inc=[path] Path to libzzip++ include files - --with-libzzip-lib=[path] Path to libzzip++ library files + --with-libboost-inc=[path] Path to libboost include files + --with-libcurl-inc=[path] Path to libcurl include files + --with-libcurl-lib=[path] Path to libcurl library files + --disable-libzzip Disable use of libzzip + --with-libzzip-inc=[path] Path to libzzip++ include files + --with-libzzip-lib=[path] Path to libzzip++ library files EOT } @@ -145,21 +140,6 @@ while [ $# -gt 0 ]; do shift ;; - --with-libtorrent-inc=*) - QC_WITH_LIBTORRENT_INC=$optarg - shift - ;; - - --with-libtorrent-lib=*) - QC_WITH_LIBTORRENT_LIB=$optarg - shift - ;; - - --with-libtorrent-static-lib=*) - QC_WITH_LIBTORRENT_STATIC_LIB=$optarg - shift - ;; - --with-libboost-inc=*) QC_WITH_LIBBOOST_INC=$optarg shift @@ -211,9 +191,6 @@ echo PREFIX=$PREFIX echo BINDIR=$BINDIR echo DATADIR=$DATADIR echo EX_QTDIR=$EX_QTDIR -echo QC_WITH_LIBTORRENT_INC=$QC_WITH_LIBTORRENT_INC -echo QC_WITH_LIBTORRENT_LIB=$QC_WITH_LIBTORRENT_LIB -echo QC_WITH_LIBTORRENT_STATIC_LIB=$QC_WITH_LIBTORRENT_STATIC_LIB echo QC_WITH_LIBBOOST_INC=$QC_WITH_LIBBOOST_INC echo QC_WITH_LIBCURL_INC=$QC_WITH_LIBCURL_INC echo QC_WITH_LIBCURL_LIB=$QC_WITH_LIBCURL_LIB @@ -346,70 +323,29 @@ public: /* -----BEGIN QCMOD----- name: libtorrent-rasterbar -arg: with-libtorrent-inc=[path], Path to libtorrent-rasterbar include files -arg: with-libtorrent-lib=[path], Path to libtorrent-rasterbar library files -arg: with-libtorrent-static-lib=[path], Path to libtorrent-rasterbar .a file -----END QCMOD----- */ +// see Conf::findPkgConfig class qc_libtorrent_rasterbar : public ConfObj { public: qc_libtorrent_rasterbar(Conf *c) : ConfObj(c) {} - QString name() const { return "libtorrent-rasterbar >= 0.14"; } + QString name() const { return "libtorrent-rasterbar >= 0.14.0 (>= 0.14.4 advised)"; } QString shortname() const { return "libtorrent-rasterbar"; } bool exec(){ - QString s; - s = conf->getenv("QC_WITH_LIBTORRENT_INC"); - if(!s.isEmpty()) { - if(!conf->checkHeader(s, "libtorrent/magnet_uri.hpp")) { - return false; - } - }else{ - QStringList sl; - sl << "/usr/include"; - sl << "/usr/local/include"; - bool found = false; - foreach(s, sl){ - if(conf->checkHeader(s, "libtorrent/magnet_uri.hpp")){ - found = true; - break; - } - } - if(!found) { - return false; - } - } - conf->addIncludePath(s); - conf->addIncludePath(s+QDir::separator()+"libtorrent"); - - s = conf->getenv("QC_WITH_LIBTORRENT_STATIC_LIB"); - if(!s.isEmpty() && QFile::exists(s) && s.endsWith(".a")){ - conf->addLib(s); - return true; - } - - s = conf->getenv("QC_WITH_LIBTORRENT_LIB"); - if(!s.isEmpty()) { - if(!conf->checkLibrary(s, "torrent-rasterbar")) { - return false; - } - conf->addLib(QString("-L") + s); - }else{ - QStringList sl; - sl << "/usr/lib/"; - sl << "/usr/lib64/"; - sl << "/usr/local/lib/"; - sl << "/usr/local/lib64/"; - bool found = false; - foreach(s, sl){ - if(conf->checkLibrary(s, "torrent-rasterbar")){ - found = true; - break; - } - } - if(!found) return false; - conf->addLib(QString("-L") + s); - } + QStringList incs; + QString req_ver = "0.14.0"; + QString adv_ver = "0.14.4"; + QString version, libs, other; + VersionMode mode = VersionMin; + if(!conf->findPkgConfig("libtorrent-rasterbar", mode, req_ver, &version, &incs, &libs, &other)) + return false; + for(int n = 0; n < incs.count(); ++n) + conf->addIncludePath(incs[n]); + if(!libs.isEmpty()) + conf->addLib(libs); + if(!conf->findPkgConfig("libtorrent-rasterbar", mode, adv_ver, &version, &incs, &libs, &other)) + printf("\nWarning: libtorrent-rasterbar v%s was detected. Although it will compile and run, you will probably experience some bugs. Please consider updating to v%s!\n", version.toUtf8().data(), adv_ver.toUtf8().data()); return true; } }; @@ -1567,9 +1503,6 @@ export PREFIX export BINDIR export DATADIR export EX_QTDIR -export QC_WITH_LIBTORRENT_INC -export QC_WITH_LIBTORRENT_LIB -export QC_WITH_LIBTORRENT_STATIC_LIB export QC_WITH_LIBBOOST_INC export QC_WITH_LIBCURL_INC export QC_WITH_LIBCURL_LIB diff --git a/qcm/libmagick.qcm b/qcm/libmagick.qcm index aea2a6c0f..6e82064ab 100644 --- a/qcm/libmagick.qcm +++ b/qcm/libmagick.qcm @@ -64,14 +64,11 @@ public: return false; } conf->addLib(QString("-L") + s); - QProcess magickConfig; + QString out = ""; QStringList params; - params << "--libs"; - magickConfig.start("Magick++-config", params, QIODevice::ReadOnly); - magickConfig.waitForStarted(); - magickConfig.waitForFinished(); - QByteArray result = magickConfig.readAll(); - result = result.replace("\n", ""); + params << "--libs"; + qconf->doCommand("Magick++-config", params, &out); + out = out.replace("\n", ""); conf->addLib(result.data()); conf->addDefine("HAVE_MAGICK"); return true; diff --git a/qcm/libtorrent-rasterbar.qcm b/qcm/libtorrent-rasterbar.qcm index f215bdb30..0d44c0e91 100644 --- a/qcm/libtorrent-rasterbar.qcm +++ b/qcm/libtorrent-rasterbar.qcm @@ -1,9 +1,6 @@ /* -----BEGIN QCMOD----- name: libtorrent-rasterbar -arg: with-libtorrent-inc=[path], Path to libtorrent-rasterbar include files -arg: with-libtorrent-lib=[path], Path to libtorrent-rasterbar library files -arg: with-libtorrent-static-lib=[path], Path to libtorrent-rasterbar .a file -----END QCMOD----- */ // see Conf::findPkgConfig @@ -11,61 +8,22 @@ class qc_libtorrent_rasterbar : public ConfObj { public: qc_libtorrent_rasterbar(Conf *c) : ConfObj(c) {} - QString name() const { return "libtorrent-rasterbar >= 0.14"; } + QString name() const { return "libtorrent-rasterbar >= 0.14.0 (>= 0.14.4 advised)"; } QString shortname() const { return "libtorrent-rasterbar"; } bool exec(){ - QString s; - s = conf->getenv("QC_WITH_LIBTORRENT_INC"); - if(!s.isEmpty()) { - if(!conf->checkHeader(s, "libtorrent/magnet_uri.hpp")) { - return false; - } - }else{ - QStringList sl; - sl << "/usr/include"; - sl << "/usr/local/include"; - bool found = false; - foreach(s, sl){ - if(conf->checkHeader(s, "libtorrent/magnet_uri.hpp")){ - found = true; - break; - } - } - if(!found) { - return false; - } - } - conf->addIncludePath(s); - conf->addIncludePath(s+QDir::separator()+"libtorrent"); - - s = conf->getenv("QC_WITH_LIBTORRENT_STATIC_LIB"); - if(!s.isEmpty() && QFile::exists(s) && s.endsWith(".a")){ - conf->addLib(s); - return true; - } - - s = conf->getenv("QC_WITH_LIBTORRENT_LIB"); - if(!s.isEmpty()) { - if(!conf->checkLibrary(s, "torrent-rasterbar")) { - return false; - } - conf->addLib(QString("-L") + s); - }else{ - QStringList sl; - sl << "/usr/lib/"; - sl << "/usr/lib64/"; - sl << "/usr/local/lib/"; - sl << "/usr/local/lib64/"; - bool found = false; - foreach(s, sl){ - if(conf->checkLibrary(s, "torrent-rasterbar")){ - found = true; - break; - } - } - if(!found) return false; - conf->addLib(QString("-L") + s); - } + QStringList incs; + QString req_ver = "0.14.0"; + QString adv_ver = "0.14.4"; + QString version, libs, other; + VersionMode mode = VersionMin; + if(!conf->findPkgConfig("libtorrent-rasterbar", mode, req_ver, &version, &incs, &libs, &other)) + return false; + for(int n = 0; n < incs.count(); ++n) + conf->addIncludePath(incs[n]); + if(!libs.isEmpty()) + conf->addLib(libs); + if(!conf->findPkgConfig("libtorrent-rasterbar", mode, adv_ver, &version, &incs, &libs, &other)) + printf("\nWarning: libtorrent-rasterbar v%s was detected. Although it will compile and run, you will probably experience some bugs. Please consider updating to v%s!\n", version.toUtf8().data(), adv_ver.toUtf8().data()); return true; } }; diff --git a/src/about.ui b/src/about.ui index 2945be82d..20714a8ba 100644 --- a/src/about.ui +++ b/src/about.ui @@ -121,8 +121,8 @@ <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'DejaVu Sans'; font-size:8pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A bittorrent client programmed in C++, based on Qt4 toolkit </p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright © 2006-2009 by Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A Bittorrent client programmed in C++, based on Qt4 toolkit </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright ©2006-2009 Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> Qt::RichText diff --git a/src/lang/qbittorrent_bg.ts b/src/lang/qbittorrent_bg.ts index b39122bbb..47d00f129 100644 --- a/src/lang/qbittorrent_bg.ts +++ b/src/lang/qbittorrent_bg.ts @@ -33,6 +33,16 @@ About Относно + + + <!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:'DejaVu Sans'; font-size:8pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A Bittorrent client programmed in C++, based on Qt4 toolkit </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright ©2006-2009 Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> + + Author @@ -124,16 +134,6 @@ Copyright © 2006 на Christophe Dumez<br> Birthday: Дата на раждане: - - - <!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:'DejaVu Sans'; font-size:8pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A bittorrent client programmed in C++, based on Qt4 toolkit </p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright © 2006-2009 by Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> - - Occupation: diff --git a/src/lang/qbittorrent_ca.ts b/src/lang/qbittorrent_ca.ts index 46ad942a7..ec96dd27a 100644 --- a/src/lang/qbittorrent_ca.ts +++ b/src/lang/qbittorrent_ca.ts @@ -124,16 +124,6 @@ Copyright © 2006 by Christophe Dumez<br> <h3><b>qBittorrent</b></h3> <h3><b>qBittorrent</b></h3> - - - <!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:'DejaVu Sans'; font-size:8pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A bittorrent client programmed in C++, based on Qt4 toolkit </p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright © 2006-2009 by Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> - - chris@qbittorrent.org @@ -149,6 +139,16 @@ p, li { white-space: pre-wrap; } Birthday: Aniversari: + + + <!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:'DejaVu Sans'; font-size:8pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A Bittorrent client programmed in C++, based on Qt4 toolkit </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright ©2006-2009 Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> + + Occupation: diff --git a/src/lang/qbittorrent_cs.ts b/src/lang/qbittorrent_cs.ts index a1fbb524c..7dcc20f62 100644 --- a/src/lang/qbittorrent_cs.ts +++ b/src/lang/qbittorrent_cs.ts @@ -13,6 +13,16 @@ About O aplikaci + + + <!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:'DejaVu Sans'; font-size:8pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A Bittorrent client programmed in C++, based on Qt4 toolkit </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright ©2006-2009 Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> + + Author @@ -88,16 +98,6 @@ Copyright © 2006 by Christophe Dumez<br> Birthday: Narozeniny: - - - <!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:'DejaVu Sans'; font-size:8pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A bittorrent client programmed in C++, based on Qt4 toolkit </p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright © 2006-2009 by Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> - - Occupation: diff --git a/src/lang/qbittorrent_da.ts b/src/lang/qbittorrent_da.ts index ec893f3d6..bf793e950 100644 --- a/src/lang/qbittorrent_da.ts +++ b/src/lang/qbittorrent_da.ts @@ -13,6 +13,16 @@ About Om + + + <!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:'DejaVu Sans'; font-size:8pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A Bittorrent client programmed in C++, based on Qt4 toolkit </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright ©2006-2009 Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> + + Author @@ -89,16 +99,6 @@ Copyright © 2006 by Christophe Dumez<br> Birthday: Født: - - - <!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:'DejaVu Sans'; font-size:8pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A bittorrent client programmed in C++, based on Qt4 toolkit </p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright © 2006-2009 by Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> - - Occupation: diff --git a/src/lang/qbittorrent_de.ts b/src/lang/qbittorrent_de.ts index a2a4407cc..b8f0f35be 100644 --- a/src/lang/qbittorrent_de.ts +++ b/src/lang/qbittorrent_de.ts @@ -13,16 +13,6 @@ About Info - - - <!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:'DejaVu Sans'; font-size:8pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A bittorrent client programmed in C++, based on Qt4 toolkit </p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright © 2006-2009 by Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> - - Author @@ -118,6 +108,16 @@ Copyright (c) 2006 Christophe Dumez<br> Birthday: Geburtstag: + + + <!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:'DejaVu Sans'; font-size:8pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A Bittorrent client programmed in C++, based on Qt4 toolkit </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright ©2006-2009 Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> + + Occupation: diff --git a/src/lang/qbittorrent_el.ts b/src/lang/qbittorrent_el.ts index ded87b254..fdb14dc39 100644 --- a/src/lang/qbittorrent_el.ts +++ b/src/lang/qbittorrent_el.ts @@ -48,6 +48,16 @@ About Σχετικά + + + <!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:'DejaVu Sans'; font-size:8pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A Bittorrent client programmed in C++, based on Qt4 toolkit </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright ©2006-2009 Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> + + Author @@ -139,16 +149,6 @@ Copyright © 2006 από τον Christophe Dumez<br> Birthday: Ημ/νία γέννησης: - - - <!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:'DejaVu Sans'; font-size:8pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A bittorrent client programmed in C++, based on Qt4 toolkit </p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright © 2006-2009 by Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> - - Occupation: diff --git a/src/lang/qbittorrent_en.ts b/src/lang/qbittorrent_en.ts index c38b530bf..83ece5857 100644 --- a/src/lang/qbittorrent_en.ts +++ b/src/lang/qbittorrent_en.ts @@ -13,6 +13,16 @@ About + + + <!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:'DejaVu Sans'; font-size:8pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A Bittorrent client programmed in C++, based on Qt4 toolkit </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright ©2006-2009 Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> + + Author @@ -78,16 +88,6 @@ Birthday: - - - <!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:'DejaVu Sans'; font-size:8pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A bittorrent client programmed in C++, based on Qt4 toolkit </p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright © 2006-2009 by Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> - - Occupation: diff --git a/src/lang/qbittorrent_es.ts b/src/lang/qbittorrent_es.ts index 93e13df3a..ecc140ec3 100644 --- a/src/lang/qbittorrent_es.ts +++ b/src/lang/qbittorrent_es.ts @@ -13,16 +13,6 @@ About Acerca de - - - <!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:'DejaVu Sans'; font-size:8pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A bittorrent client programmed in C++, based on Qt4 toolkit </p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright © 2006-2009 by Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> - - Author @@ -118,6 +108,16 @@ Copyright © 2006 por Christophe Dumez<br> Birthday: Cumpleaños: + + + <!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:'DejaVu Sans'; font-size:8pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A Bittorrent client programmed in C++, based on Qt4 toolkit </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright ©2006-2009 Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> + + Occupation: diff --git a/src/lang/qbittorrent_fi.ts b/src/lang/qbittorrent_fi.ts index fd5982c09..1b7d76182 100644 --- a/src/lang/qbittorrent_fi.ts +++ b/src/lang/qbittorrent_fi.ts @@ -23,6 +23,16 @@ Tekijänoikeus © 2006 Christophe Dumez<br> About qBittorrent Tietoja qBittorrentista + + + <!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:'DejaVu Sans'; font-size:8pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A Bittorrent client programmed in C++, based on Qt4 toolkit </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright ©2006-2009 Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> + + Author @@ -43,16 +53,6 @@ Tekijänoikeus © 2006 Christophe Dumez<br> Christophe Dumez Christophe Dumez - - - <!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:'DejaVu Sans'; font-size:8pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A bittorrent client programmed in C++, based on Qt4 toolkit </p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright © 2006-2009 by Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> - - Country: diff --git a/src/lang/qbittorrent_fr.qm b/src/lang/qbittorrent_fr.qm index 13a5ffedf90e4b51728865861ea44f90450626a7..d520c0ac2153834ecd2f9629a4160d1870f843b0 100644 GIT binary patch delta 7311 zcmcgwX;_n2+J4Bsr&?>(y1b%RszOkZDk3gGK}A#qRH|qo5u%X9B*-SdD7aI1aj7e{ z7Ln0b-1oZGeZ$?EwxYJx+SbvocB*rq9Mn4B%#ZK7=KIWL?)N?CInTMD^_=k4W$6$1 zrE?pIONgiwk$E1lH__G~h~(XfP8=puMi6yPlAV^Y62E0^P% z`W*M1;CQ+#$7>Hb-fBSdb&rXvCz5=_D58rUNxpNdh=GBm*bbK-b&&EH1jg(k^@KE{ zjeDuxZdf*SEVVn=2Dpma-46uTP*CR+L^a_Q#9TOiB?U8_VW1E%ZljQMyNHAf)U{Cw z(T)2Qb-A2qfQq7O;pyrf^iIk5MEjRhbeV|QXh-1zILwD)LT(}rw7^6vcsd$V_8W3VO+%xn5dG~o4W0Rv zs9QD19<>}-t>Ad|EG1VgBpO-5aZPWI*PBxEKPDizW{@~s0VYAaDE-|TM9rfqx5!Sk z*g*Nm?h*x#r^RJ5qQ>)SNjJE(=}oF$hmA)i(#|U&wErIM^*che<72uxK}yuKA;)V0 zbZ^%fB9o5pSHd&SBzn9*l<44RK1O2=(W^;5La!1c$3H}$mZqIVuOIb^mA8Ux4L-4# ze2Kyfe1;xqMwI%K&-^8ap?D9+>mT~8?a&FK_{is@IXOi6U3|9nYXA$|a$LQI>CveoxdbU+Zh%w<@n_+$z*d6qR2o=arzes`C!SkiuX|eTgOSJFaMgzJwUSf7g*Y7 zCCAaHB^xgtA_^#$?2197S@)6TT6_T5lAw<)9N`5cZs%af!% zPWM4WImvOwYH8F6ybt@Cwll{9 zCC6EAj!S;xxbvWF`F0tSax=%vgJk7m1KJ*_0yG};P>y-aME-Dmw%i&Rg`@FjxqTO0`n|7QA!*KZ zkrx+PQ5C83DUE(3s;rbxXQ7%AAuna8n>A7X{&XDagUdKti#e`3#j!@l@#2e4uC6pqU`bG-aSe#C+#3f?V0nc9x1&Fk{>a^@+LpP#USXhk26 zS4PQiM4^v#iI;z~;xW#LN`M+h46jEFUU*IFJ)(k1HZRy-u`mnj+#1TpQn75&dfuc;>KT*o;K< z13}^LdYq`)K}Al>N`$mXk$(up-yWqXP)Kp6Bq%22;&2;sQ!%{=)wZ>(V$Q|4QU5LS z6`Kd_1LIYSBYVdX>B+VbRb#~uK1z|8|yDA?sP;fm-=(Oa9HtoH(GG> z{2xn^*{Kivj5azWaCq%Yt}Ao6sUC9&qqI~;dpAEGP~hKqC&MYyHh&RmN%5+E8vmy zJ(b0kj}ekp%2^FN5>5F`S$cLck}_1eP>S5xen7b>{4UOx1m&9f_aJ{!`N1zXcpzT6 zsW}MQDwQ8g#05A$@8JQsTBfWXk%EiGV&&c+S<@wfF*zSb#b7o=ekIGxWZ^dbs zp}d_8qB@)Mo194W`Z>x!Dozu%tgou~;~=7`qN-V=*+idgRdsmeAbRJ4s&^YZu5dA` z-s@wDa@TP@7_W*DMW*PID$<+9->UjmW8oB1#p`h+GR#rM?? z8UsOWLcVH(rv=W8rmC{$rAV?Js!iLfi8?z~J2t~J`>m?olM{$OuTt%<9f4DDxoU6e zG3c?YP8@T3lErb=NRE4Eay+?-V{KD)_FYub#vbb2DI0OKDp41P<>QR7tBamuzrUuar*%W9 zOT;GXjW3*G{#}Fo#TP78n+)@XgI5JXI{q@EMHUn1d8G( zXr`I(5w)$-%uVSGPaW6HUz3I_SG;CL)7eCmZ)?^hhN2-EG!=V*HNR>$hCfD??dMo< zT=Vf~m8kz?S2f$lgW*N1X8X34L|-1(T)GWczu8E0dv*-b-t!zk|5fwtAK#WsFzuQoRu$@%IgZ9yD}&26kLj0U#c zq7~l~VX^b3wxlaM*|5&qb+r*FiwD}BcdLoU*|qzcc1PJnX%8ItWaH8T#+Fvxgz~fcz(|g$nnO^)?xiT?CS5k6@$a7jZJ*yaolf3#W{bP;|S8#PMnFeqn_^j1~ZV1dv$*V-bDvB>!no)>5d@1QVtKD zEzldJAXfC9sBb!CD_qlE-}>Fp(Ytf>ZDt=LN~q;nwqGA|=?M;#a((z66VYhW$Cw@y zozBp|yRkK{Ui0-Sp(k*AKBBiU%M#n_tsjJ<@pRN@mSMhsfWB~{8#z|3FIKN5n)kcD zH0BZ-l|#Ql=OH>KPSGDe7KWs`&(U{-{>(41GP?5mvvh{$EjB_5Qv*(R951z6hR?I<9oO9i|3y4 zbsb#UGR5c(*|;x_Z=SQD!MtZ|TLGel6~?Yhend_jF-Ctf1?RkA9C`zU8r(68L!T1G z=!_fBsbO(}@wjOmeq)X?p1RiozsYPJjb|5|kzC&zYl`pTmy5-CCj*K`-R7A0CdVU7 zjNi;&kG~UKG5-7xLKN4=Ms$1Ig35Y+=pxEE3Zs@3NdqW?5@;9=q$m<72G9K|7Ec2y z5r5!`r9PM!$d~-dgwGHP!aIA4gk;|C6p!zC5QxAwY)KYnQm|K<8*eVMQ5rCSEcmuSZ8&K_|CwaC_t{Ej%(3Sz zvO>-b0(N|}x9(Uou1*hDi5SX-2;-Or8g@Kez28i*qj%ioRmHZ?0~sqM*^{$Q8Ixxk zOjz&6hf{J=2gqfDu0RF&p96|EuWo2>q1Es@Z!RwKSW#@c2YNp7kaHSLG;Lm*3lNZOF3^Q#PYy~ zMgCCkz~-Tdy%P>*1Ye$K_Oq07VEjKzv4D;C68*P&L~O*8>X|h!g#3{v9?YhKw*%1{ zi)Tj60);F~*p`gcv-tndSx%c-oQM@HzgRx-)dDJt<->v{DX)ku100~h;-7`jT?jKV z0aef*AC^j~m~(q)+=!hEBg`_lcgE%=Y4iFcgT4Xr?7F!@*diD*EO(rBwermM&pj_f z;APkTzqtOn=S7}K|2M8@_0J126;CV`S+%hMvcNN+dV7G&>tGie3v*Vg*TKB*Upz-( zxf6x-B3}erk3WG2;u8XO{HZH6M4&d96srTahLx>=;>(7gt*ES*cMxA}5r!qKIk4Ej zC?Z}RFA|NVAZu2PzX#i}Y7fPVY#^I+c@xc!Cth%ay{X1148d3`(1Ds5jnOpxw>E&d z00k^bo^2n#pnX*fHS6x)PQ74ARU7fYPmcFoR$ngc-^%OB&h$3SdPbe4M%}5QdQN6B z$UGS6!_a(Sy;=+0TBtq21W@n3H@V*fr-6i z`$P!7{wC9qpa_#GG9i*r1P26~Oi^*Zf^UXL^f*IJrktFdfSjNJhb!Hb5O0c)itx|y zWMu{in%o|jEzJ{P@mPGrHDPQpJS@X%wuFaeSv_XKZqBlH_Z>jJ# z)7`hDuV4xfb9?eKt%4`d2`MIEN^`rR$k{>2v$_>VSc*)sD&+eTW)n3J-F!DhR=Z8tvUw&hzx zyEr{{uQ^s*dWI)7I56rEVC=!X7~3voS}iv+-^eMd#c0Z zab&$TlxZF9d1=7q-Nw7hf1JlZHPewc*578gz#pO5n%V#S6{>y1dkMW^zsKQnK}1N) zv@vkH9O*7|R+iNw*z7_?`}Q4#RI?jz4!bbO6D)Wfj?A$(j}T^Z{x^t=%-a7obF`uok=a?I zHUG~`!jKF0=fUv0%wkP*xXd1#!yYPR!<(*5o81cU#W=F8!a#GnH5AE$RpCOIS;%l% zM|VeBKhNrMskUbxX6fyVoP22qkwxX-Z-HdabhtuW1qOD0+st>xDtE#DSLM}T)SGtgpTzj+9{>OV delta 4559 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 Author Auteur de qBittorrent - - - <!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:'DejaVu Sans'; font-size:8pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A bittorrent client programmed in C++, based on Qt4 toolkit </p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright © 2006-2009 by Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> - - Name: @@ -192,6 +182,21 @@ p, li { white-space: pre-wrap; } Birthday: Date de naissance : + + + <!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:'DejaVu Sans'; font-size:8pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A Bittorrent client programmed in C++, based on Qt4 toolkit </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright ©2006-2009 Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><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:'DejaVu Sans'; font-size:8pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Un client Bittorrent programmé en C++, basé sur les bibliothèques Qt4 </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">et libtorrent-rasterbar. <br /><br />Copyright ©2006-2009 Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Site Web officiel :</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> + Occupation: diff --git a/src/lang/qbittorrent_hu.ts b/src/lang/qbittorrent_hu.ts index 7add5e1a6..a5f688b2a 100644 --- a/src/lang/qbittorrent_hu.ts +++ b/src/lang/qbittorrent_hu.ts @@ -13,6 +13,16 @@ About Névjegy + + + <!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:'DejaVu Sans'; font-size:8pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A Bittorrent client programmed in C++, based on Qt4 toolkit </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright ©2006-2009 Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> + + Author @@ -92,16 +102,6 @@ Copyright © 2006 by Christophe Dumez<br> Birthday: Született: - - - <!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:'DejaVu Sans'; font-size:8pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A bittorrent client programmed in C++, based on Qt4 toolkit </p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright © 2006-2009 by Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> - - Occupation: diff --git a/src/lang/qbittorrent_it.ts b/src/lang/qbittorrent_it.ts index 74340fb0c..8d86755cb 100644 --- a/src/lang/qbittorrent_it.ts +++ b/src/lang/qbittorrent_it.ts @@ -13,6 +13,16 @@ About Informazioni + + + <!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:'DejaVu Sans'; font-size:8pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A Bittorrent client programmed in C++, based on Qt4 toolkit </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright ©2006-2009 Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> + + Author @@ -67,16 +77,6 @@ <h3><b>qBittorrent</b></h3> <h3><b>qBittorrent</b></h3> - - - <!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:'DejaVu Sans'; font-size:8pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A bittorrent client programmed in C++, based on Qt4 toolkit </p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright © 2006-2009 by Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> - - chris@qbittorrent.org diff --git a/src/lang/qbittorrent_ja.ts b/src/lang/qbittorrent_ja.ts index 5707b3b03..0f4f42c1b 100644 --- a/src/lang/qbittorrent_ja.ts +++ b/src/lang/qbittorrent_ja.ts @@ -13,6 +13,16 @@ About バージョン情報 + + + <!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:'DejaVu Sans'; font-size:8pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A Bittorrent client programmed in C++, based on Qt4 toolkit </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright ©2006-2009 Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> + + Author @@ -92,16 +102,6 @@ Copyright © 2006 by Christophe Dumez<br> Birthday: 誕生日: - - - <!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:'DejaVu Sans'; font-size:8pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A bittorrent client programmed in C++, based on Qt4 toolkit </p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright © 2006-2009 by Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> - - Occupation: diff --git a/src/lang/qbittorrent_ko.ts b/src/lang/qbittorrent_ko.ts index a66a44a35..3dcd34637 100644 --- a/src/lang/qbittorrent_ko.ts +++ b/src/lang/qbittorrent_ko.ts @@ -20,16 +20,6 @@ About 정보 - - - <!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:'DejaVu Sans'; font-size:8pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A bittorrent client programmed in C++, based on Qt4 toolkit </p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright © 2006-2009 by Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> - - Author @@ -117,6 +107,16 @@ Copyright © 2006 by Christophe Dumez<br> Birthday: 생일: + + + <!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:'DejaVu Sans'; font-size:8pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A Bittorrent client programmed in C++, based on Qt4 toolkit </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright ©2006-2009 Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> + + Occupation: diff --git a/src/lang/qbittorrent_nb.ts b/src/lang/qbittorrent_nb.ts index f90cb7924..cea9703c6 100644 --- a/src/lang/qbittorrent_nb.ts +++ b/src/lang/qbittorrent_nb.ts @@ -13,6 +13,16 @@ About Om + + + <!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:'DejaVu Sans'; font-size:8pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A Bittorrent client programmed in C++, based on Qt4 toolkit </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright ©2006-2009 Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> + + Author @@ -92,16 +102,6 @@ Copyright © 2006 av Christophe Dumez<br> Birthday: Fødselsdato: - - - <!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:'DejaVu Sans'; font-size:8pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A bittorrent client programmed in C++, based on Qt4 toolkit </p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright © 2006-2009 by Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> - - Occupation: diff --git a/src/lang/qbittorrent_nl.ts b/src/lang/qbittorrent_nl.ts index 235803e24..6709b86ab 100644 --- a/src/lang/qbittorrent_nl.ts +++ b/src/lang/qbittorrent_nl.ts @@ -124,16 +124,6 @@ Copyright 2006 door Christophe Dumez<br> <h3><b>qBittorrent</b></h3> <h3><b>qBittorrent</b></h3> - - - <!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:'DejaVu Sans'; font-size:8pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A bittorrent client programmed in C++, based on Qt4 toolkit </p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright © 2006-2009 by Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> - - chris@qbittorrent.org @@ -149,6 +139,16 @@ p, li { white-space: pre-wrap; } Birthday: Verjaardag: + + + <!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:'DejaVu Sans'; font-size:8pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A Bittorrent client programmed in C++, based on Qt4 toolkit </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright ©2006-2009 Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> + + Occupation: diff --git a/src/lang/qbittorrent_pl.ts b/src/lang/qbittorrent_pl.ts index a2c2a7b0d..5a5331804 100644 --- a/src/lang/qbittorrent_pl.ts +++ b/src/lang/qbittorrent_pl.ts @@ -48,6 +48,16 @@ About O programie + + + <!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:'DejaVu Sans'; font-size:8pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A Bittorrent client programmed in C++, based on Qt4 toolkit </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright ©2006-2009 Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> + + Author @@ -138,16 +148,6 @@ Wszystkie prawa zastrżeżone © 2006 Christophe Dumez<br>(new line) Birthday: Urodzony: - - - <!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:'DejaVu Sans'; font-size:8pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A bittorrent client programmed in C++, based on Qt4 toolkit </p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright © 2006-2009 by Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> - - Occupation: diff --git a/src/lang/qbittorrent_pt.ts b/src/lang/qbittorrent_pt.ts index cb78a72c3..b8245a283 100644 --- a/src/lang/qbittorrent_pt.ts +++ b/src/lang/qbittorrent_pt.ts @@ -98,8 +98,8 @@ Copyright ©2006 por Christophe Dumez<br> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'DejaVu Sans'; font-size:8pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A bittorrent client programmed in C++, based on Qt4 toolkit </p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright © 2006-2009 by Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A Bittorrent client programmed in C++, based on Qt4 toolkit </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright ©2006-2009 Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> diff --git a/src/lang/qbittorrent_pt_BR.ts b/src/lang/qbittorrent_pt_BR.ts index cb78a72c3..b8245a283 100644 --- a/src/lang/qbittorrent_pt_BR.ts +++ b/src/lang/qbittorrent_pt_BR.ts @@ -98,8 +98,8 @@ Copyright ©2006 por Christophe Dumez<br> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'DejaVu Sans'; font-size:8pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A bittorrent client programmed in C++, based on Qt4 toolkit </p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright © 2006-2009 by Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A Bittorrent client programmed in C++, based on Qt4 toolkit </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright ©2006-2009 Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> diff --git a/src/lang/qbittorrent_ro.ts b/src/lang/qbittorrent_ro.ts index d5c591ac5..177135a97 100644 --- a/src/lang/qbittorrent_ro.ts +++ b/src/lang/qbittorrent_ro.ts @@ -98,8 +98,8 @@ Copyright © 2006 by Christophe Dumez<br> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'DejaVu Sans'; font-size:8pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A bittorrent client programmed in C++, based on Qt4 toolkit </p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright © 2006-2009 by Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A Bittorrent client programmed in C++, based on Qt4 toolkit </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright ©2006-2009 Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> diff --git a/src/lang/qbittorrent_ru.ts b/src/lang/qbittorrent_ru.ts index c5aabab45..573a549c8 100644 --- a/src/lang/qbittorrent_ru.ts +++ b/src/lang/qbittorrent_ru.ts @@ -133,8 +133,8 @@ Copyright © 2006 by Christophe Dumez<br> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'DejaVu Sans'; font-size:8pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A bittorrent client programmed in C++, based on Qt4 toolkit </p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright © 2006-2009 by Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A Bittorrent client programmed in C++, based on Qt4 toolkit </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright ©2006-2009 Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> diff --git a/src/lang/qbittorrent_sk.ts b/src/lang/qbittorrent_sk.ts index 4c385cd92..272073ac8 100644 --- a/src/lang/qbittorrent_sk.ts +++ b/src/lang/qbittorrent_sk.ts @@ -98,8 +98,8 @@ Copyright © 2006, Christophe Dumez<br> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'DejaVu Sans'; font-size:8pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A bittorrent client programmed in C++, based on Qt4 toolkit </p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright © 2006-2009 by Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A Bittorrent client programmed in C++, based on Qt4 toolkit </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright ©2006-2009 Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> diff --git a/src/lang/qbittorrent_sv.ts b/src/lang/qbittorrent_sv.ts index a391f0db9..3c1d2d0da 100644 --- a/src/lang/qbittorrent_sv.ts +++ b/src/lang/qbittorrent_sv.ts @@ -91,8 +91,8 @@ Copyright © 2006 by Christophe Dumez<br> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'DejaVu Sans'; font-size:8pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A bittorrent client programmed in C++, based on Qt4 toolkit </p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright © 2006-2009 by Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A Bittorrent client programmed in C++, based on Qt4 toolkit </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright ©2006-2009 Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> diff --git a/src/lang/qbittorrent_tr.ts b/src/lang/qbittorrent_tr.ts index 313193f56..90dfeab2e 100644 --- a/src/lang/qbittorrent_tr.ts +++ b/src/lang/qbittorrent_tr.ts @@ -155,8 +155,8 @@ Telif Hakkı © 2006 Christophe Dumez<br> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'DejaVu Sans'; font-size:8pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A bittorrent client programmed in C++, based on Qt4 toolkit </p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright © 2006-2009 by Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A Bittorrent client programmed in C++, based on Qt4 toolkit </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright ©2006-2009 Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> diff --git a/src/lang/qbittorrent_uk.ts b/src/lang/qbittorrent_uk.ts index 957917b10..67e522a95 100644 --- a/src/lang/qbittorrent_uk.ts +++ b/src/lang/qbittorrent_uk.ts @@ -133,8 +133,8 @@ Copyright © 2006 by Christophe Dumez<br> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'DejaVu Sans'; font-size:8pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A bittorrent client programmed in C++, based on Qt4 toolkit </p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright © 2006-2009 by Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A Bittorrent client programmed in C++, based on Qt4 toolkit </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright ©2006-2009 Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> diff --git a/src/lang/qbittorrent_zh.ts b/src/lang/qbittorrent_zh.ts index 8c09e8b6d..ebdd48cdf 100644 --- a/src/lang/qbittorrent_zh.ts +++ b/src/lang/qbittorrent_zh.ts @@ -118,8 +118,8 @@ Copyright © 2006 Christophe Dumez<br> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'DejaVu Sans'; font-size:8pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A bittorrent client programmed in C++, based on Qt4 toolkit </p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright © 2006-2009 by Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A Bittorrent client programmed in C++, based on Qt4 toolkit </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright ©2006-2009 Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> diff --git a/src/lang/qbittorrent_zh_TW.ts b/src/lang/qbittorrent_zh_TW.ts index 28bbc7bd8..6c0094f4f 100644 --- a/src/lang/qbittorrent_zh_TW.ts +++ b/src/lang/qbittorrent_zh_TW.ts @@ -94,8 +94,8 @@ Copyright © 2006 by Christophe Dumez<br> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'DejaVu Sans'; font-size:8pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A bittorrent client programmed in C++, based on Qt4 toolkit </p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright © 2006-2009 by Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A Bittorrent client programmed in C++, based on Qt4 toolkit </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and libtorrent-rasterbar. <br /><br />Copyright ©2006-2009 Christophe Dumez<br /><br /><span style=" text-decoration: underline;">Home Page:</span> <a href="http://www.qbittorrent.org"><span style=" text-decoration: underline; color:#0057ae;">http://www.qbittorrent.org</span></a><br /></p></body></html>