mirror of
https://github.com/fergalmoran/flameshot.git
synced 2025-12-22 09:51:06 +00:00
Use absolute locations in translation files (#288)
They provide context when using Qt Liguist, as it shows the source code where it is being used. Also replaced QT (capital T) with Qt, as the latter is the correct name.
This commit is contained in:
@@ -115,7 +115,7 @@ void InfoWindow::initLabels() {
|
||||
QLabel *versionTitleLabel = new QLabel(tr("<u><b>Version</b></u>"), this);
|
||||
versionTitleLabel->setAlignment(Qt::AlignHCenter);
|
||||
m_layout->addWidget(versionTitleLabel);
|
||||
QString versionMsg = "Flameshot " + QString(APP_VERSION) + "\nCompiled with QT "
|
||||
QString versionMsg = "Flameshot " + QString(APP_VERSION) + "\nCompiled with Qt "
|
||||
+ QT_VERSION_STR;
|
||||
QLabel *versionLabel = new QLabel(versionMsg, this);
|
||||
versionLabel->setAlignment(Qt::AlignHCenter);
|
||||
|
||||
Reference in New Issue
Block a user