From 03e1f5ac5411a219eab3eff3ec0e4ca71decbc80 Mon Sep 17 00:00:00 2001 From: Leena Miettinen Date: Mon, 19 Jun 2023 10:55:58 +0200 Subject: [PATCH] Axivion: Use sentence style capitalization for labels Even though these are technically rows, they are used as labels in the UI. Change-Id: Ic9378cff61c49e7f5ee709d93660d7a55be45558 Reviewed-by: Christian Stenger --- src/plugins/axivion/axivionoutputpane.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/axivion/axivionoutputpane.cpp b/src/plugins/axivion/axivionoutputpane.cpp index ae3aed35488..6c9e97e4900 100644 --- a/src/plugins/axivion/axivionoutputpane.cpp +++ b/src/plugins/axivion/axivionoutputpane.cpp @@ -40,7 +40,7 @@ DashboardWidget::DashboardWidget(QWidget *parent) m_project = new QLabel(this); projectLayout->addRow(Tr::tr("Project:"), m_project); m_loc = new QLabel(this); - projectLayout->addRow(Tr::tr("Lines of Code:"), m_loc); + projectLayout->addRow(Tr::tr("Lines of code:"), m_loc); layout->addLayout(projectLayout); m_formLayout = new QFormLayout; layout->addLayout(m_formLayout);