forked from qt-creator/qt-creator
Doc - UI - Fix UI text capitalization to follow the KDE Style Guide rules.
Reviewed-by: ossi
This commit is contained in:
@@ -40,7 +40,7 @@ ChangeSelectionDialog::ChangeSelectionDialog(QWidget *parent)
|
||||
{
|
||||
m_ui.setupUi(this);
|
||||
connect(m_ui.repositoryButton, SIGNAL(clicked()), this, SLOT(selectWorkingDirectory()));
|
||||
setWindowTitle(tr("Select a Git commit"));
|
||||
setWindowTitle(tr("Select a Git Commit"));
|
||||
}
|
||||
|
||||
QString ChangeSelectionDialog::change() const
|
||||
@@ -62,7 +62,7 @@ void ChangeSelectionDialog::selectWorkingDirectory()
|
||||
{
|
||||
static QString location;
|
||||
location = QFileDialog::getExistingDirectory(this,
|
||||
tr("Select Git repository"),
|
||||
tr("Select Git Repository"),
|
||||
location);
|
||||
if (location.isEmpty())
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user