aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/gitlab/gitlabprojectsettings.cpp
diff options
context:
space:
mode:
authorLeena Miettinen <[email protected]>2022-10-19 18:08:39 +0200
committerLeena Miettinen <[email protected]>2022-10-20 09:25:08 +0000
commitc4ac5e414a67d0c50dabe9ee5ee7f98d940d7833 (patch)
treef1f4b6844d8fe9bdf07cc4f3489d2bbae8b6c15d /src/plugins/gitlab/gitlabprojectsettings.cpp
parentd0278ae2953fb014a41183c83fa9773bdf4239e1 (diff)
UI text: Use a full stop in the end of messages
And fix the capitalization of some message box titles. Task-number: QTCREATORBUG-28334 Change-Id: I858eefd5a12494723c40e0253a3708fa77284d1b Reviewed-by: Eike Ziller <[email protected]> Reviewed-by: <[email protected]>
Diffstat (limited to 'src/plugins/gitlab/gitlabprojectsettings.cpp')
-rw-r--r--src/plugins/gitlab/gitlabprojectsettings.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/gitlab/gitlabprojectsettings.cpp b/src/plugins/gitlab/gitlabprojectsettings.cpp
index 6cc171d5fd0..44e9ba1ee2b 100644
--- a/src/plugins/gitlab/gitlabprojectsettings.cpp
+++ b/src/plugins/gitlab/gitlabprojectsettings.cpp
@@ -215,12 +215,12 @@ void GitLabProjectSettingsWidget::onConnectionChecked(const Project &project,
} else {
if (project.accessLevel != -1) {
m_infoLabel->setType(Utils::InfoLabel::Ok);
- m_infoLabel->setText(tr("Accessible (%1)")
+ m_infoLabel->setText(tr("Accessible (%1).")
.arg(accessLevelString(project.accessLevel)));
linkable = true;
} else {
m_infoLabel->setType(Utils::InfoLabel::Warning);
- m_infoLabel->setText(tr("Read only access"));
+ m_infoLabel->setText(tr("Read only access."));
}
}
m_infoLabel->setVisible(true);