summaryrefslogtreecommitdiff
path: root/src/plugins/git/remotedialog.cpp
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@nokia.com>2011-05-13 14:40:27 +0200
committerTobias Hunger <tobias.hunger@nokia.com>2011-05-13 14:56:31 +0200
commit3cf07cba384456a66fcd509a940514dd52ecbcb0 (patch)
treef48a849d2310e654f3efbf0814c606ebe70c92dc /src/plugins/git/remotedialog.cpp
parent94bf811b1f0f672a8797e872c06445a7ca2a0441 (diff)
downloadqt-creator-3cf07cba384456a66fcd509a940514dd52ecbcb0.tar.gz
Git: String updates
Reviewed-by: Leena Miettinen
Diffstat (limited to 'src/plugins/git/remotedialog.cpp')
-rw-r--r--src/plugins/git/remotedialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/git/remotedialog.cpp b/src/plugins/git/remotedialog.cpp
index 7698999518..ba96e08240 100644
--- a/src/plugins/git/remotedialog.cpp
+++ b/src/plugins/git/remotedialog.cpp
@@ -146,7 +146,7 @@ void RemoteDialog::removeRemote()
int row = indexList.at(0).row();
const QString remoteName = m_remoteModel->remoteName(row);
if (QMessageBox::question(this, tr("Delete Remote"),
- tr("Would you like to delete the remote '%1'?").arg(remoteName),
+ tr("Would you like to delete the remote \"%1\"?").arg(remoteName),
QMessageBox::Yes|QMessageBox::No, QMessageBox::Yes) == QMessageBox::Yes) {
m_remoteModel->removeRemote(row);
}