Skip to content

Commit

Permalink
Fix translation keys
Browse files Browse the repository at this point in the history
  • Loading branch information
Eugen Fischer authored and Eugen Fischer committed Feb 21, 2024
1 parent d3a2d3e commit 4ac834a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gui/nmcgui/nmcnetworksettings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ void NMCNetworkSettings::setLayout()

QGridLayout *downLayout = static_cast<QGridLayout *>(getUi()->downloadBox->layout());

auto downLabel = new QLabel(QCoreApplication::translate("", "DOWNLOAD_BANDWITH"));
auto downLabel = new QLabel(QCoreApplication::translate("", "DOWNLOAD_BANDWIDTH"));
downLabel->setStyleSheet("QLabel{font-size: 12px; font-weight: bold;}");
downLayout->addWidget(downLabel, 0, 0 );
downLayout->addItem(new QSpacerItem(1,8, QSizePolicy::Fixed, QSizePolicy::Fixed), 1, 0);
Expand Down Expand Up @@ -94,7 +94,7 @@ void NMCNetworkSettings::setLayout()

QGridLayout *upLayout = static_cast<QGridLayout *>(getUi()->uploadBox->layout());

auto uploadLabel = new QLabel(QCoreApplication::translate("", "UPLOAD_BANDWITH"));
auto uploadLabel = new QLabel(QCoreApplication::translate("", "UPLOAD_BANDWIDTH"));
uploadLabel->setStyleSheet("QLabel{font-size: 12px; font-weight: bold;}");
upLayout->addWidget(uploadLabel, 0, 0 );
upLayout->addItem(new QSpacerItem(1,8, QSizePolicy::Fixed, QSizePolicy::Fixed), 1, 0);
Expand Down

0 comments on commit 4ac834a

Please sign in to comment.