- Initial support for Web UI internationalization !

- Updated french translation
This commit is contained in:
Christophe Dumez 2009-11-23 12:57:16 +00:00
parent 87f93a7a1d
commit b1bbbd79c4
66 changed files with 4228 additions and 1655 deletions

View file

@ -56,6 +56,17 @@ HttpServer::HttpServer(Bittorrent *_BTSession, int msec, QObject* parent) : QTcp
timer = new QTimer(this);
connect(timer, SIGNAL(timeout()), this, SLOT(onTimer()));
timer->start(msec);
// Additional translations for Web UI
QString a = tr("File");
a = tr("Edit");
a = tr("Help");
a = tr("Delete from HD");
a = tr("Download Torrents from their URL or Magnet link");
a = tr("Only one link per line");
a = tr("Download local torrent");
a = tr("Torrent files were correctly added to download list.");
a = tr("Point to torrent file");
a = tr("Download");
}
HttpServer::~HttpServer()