┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorYuri Chornoivan <[email protected]>2020-08-08 15:34:17 +0300
committerYuri Chornoivan <[email protected]>2020-08-08 15:34:17 +0300
commitdf85f24ecbf3dfb6431f357929328daaf7a59cfb (patch)
tree058c081db0ddc2a99282c76480ec10bef7018062 /src
parenta499df21bcf6b636a0396aeb0d911dd1b8d2229d (diff)
Fix i18n
Diffstat (limited to 'src')
-rw-r--r--src/settings/general/previewssettingspage.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/settings/general/previewssettingspage.cpp b/src/settings/general/previewssettingspage.cpp
index e52304888..3441d2eca 100644
--- a/src/settings/general/previewssettingspage.cpp
+++ b/src/settings/general/previewssettingspage.cpp
@@ -76,7 +76,7 @@ PreviewsSettingsPage::PreviewsSettingsPage(QWidget* parent) :
m_localFileSizeBox->setSingleStep(1);
m_localFileSizeBox->setSuffix(QStringLiteral(" MB"));
m_localFileSizeBox->setRange(0, 9999999); /* MB */
- m_localFileSizeBox->setSpecialValueText(tr("No limit"));
+ m_localFileSizeBox->setSpecialValueText(i18n("No limit"));
QHBoxLayout* localFileSizeBoxLayout = new QHBoxLayout();
localFileSizeBoxLayout->addWidget(localFileSizeLabel);
@@ -89,7 +89,7 @@ PreviewsSettingsPage::PreviewsSettingsPage(QWidget* parent) :
m_remoteFileSizeBox->setSingleStep(1);
m_remoteFileSizeBox->setSuffix(QStringLiteral(" MB"));
m_remoteFileSizeBox->setRange(0, 9999999); /* MB */
- m_remoteFileSizeBox->setSpecialValueText(tr("No previews"));
+ m_remoteFileSizeBox->setSpecialValueText(i18n("No previews"));
QHBoxLayout* remoteFileSizeBoxLayout = new QHBoxLayout();
remoteFileSizeBoxLayout->addWidget(remoteFileSizeLabel);