From a70aca42cdefe3eb6b8c57efa8137a2248782da6 Mon Sep 17 00:00:00 2001 From: Flavio Tordini Date: Sat, 18 Sep 2010 15:20:36 +0200 Subject: [PATCH] Better language --- src/downloadsettings.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/downloadsettings.cpp b/src/downloadsettings.cpp index 90cf1ae..557a4e1 100644 --- a/src/downloadsettings.cpp +++ b/src/downloadsettings.cpp @@ -11,7 +11,7 @@ DownloadSettings::DownloadSettings(QWidget *parent) : QWidget(parent) { layout->addWidget(message); changeFolderButton = new QPushButton(this); - changeFolderButton->setText(tr("Change folder...")); + changeFolderButton->setText(tr("Change location...")); changeFolderButton->setSizePolicy(QSizePolicy::Maximum, QSizePolicy::Preferred); connect(changeFolderButton, SIGNAL(clicked()), SLOT(changeFolder())); layout->addWidget(changeFolderButton); @@ -35,7 +35,7 @@ void DownloadSettings::paintEvent(QPaintEvent * /*event*/) { } void DownloadSettings::changeFolder() { - QString dir = QFileDialog::getExistingDirectory(this, tr("Where's your music collection?"), + QString dir = QFileDialog::getExistingDirectory(this, tr("Choose the download location"), QDesktopServices::storageLocation(QDesktopServices::HomeLocation), QFileDialog::ShowDirsOnly | QFileDialog::DontResolveSymlinks); @@ -46,9 +46,9 @@ void DownloadSettings::changeFolder() { QMainWindow* mainWindow = dynamic_cast(window()); if (mainWindow) { QString status; - status = tr("Download folder changed."); + status = tr("Download location changed."); if (DownloadManager::instance()->activeItems() > 0) - status += " " + tr("Current downloads will still go in the previous folder."); + status += " " + tr("Current downloads will still go in the previous location."); mainWindow->statusBar()->showMessage(status); } } -- 2.39.5