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 <christian.stenger@qt.io>
This commit is contained in:
Leena Miettinen
2023-06-19 10:55:58 +02:00
parent d81b3c6131
commit 03e1f5ac54

View File

@@ -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);