Doc - UI - Fix UI text capitalization to follow the KDE Style Guide rules.

Reviewed-by: ossi
This commit is contained in:
Leena Miettinen
2010-05-14 15:45:43 +02:00
parent cf250f26c1
commit cf233161fa
55 changed files with 110 additions and 111 deletions

View File

@@ -171,13 +171,13 @@ void PathChooser::slotBrowse()
switch (m_d->m_acceptingKind) {
case PathChooser::Directory:
newPath = QFileDialog::getExistingDirectory(this,
makeDialogTitle(tr("Choose a directory")), predefined);
makeDialogTitle(tr("Choose Directory")), predefined);
break;
case PathChooser::File: // fall through
case PathChooser::Command:
newPath = QFileDialog::getOpenFileName(this,
makeDialogTitle(tr("Choose a file")), predefined,
makeDialogTitle(tr("Choose File")), predefined,
m_d->m_dialogFilter);
break;