From 44ac2ef3b722c03bcd5340fc63ca91ce015f513d Mon Sep 17 00:00:00 2001 From: Emir SARI Date: Mon, 24 Apr 2023 10:25:51 +0000 Subject: [PATCH] Improve string context --- part/pageview.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/part/pageview.cpp b/part/pageview.cpp index cca689b5e..7f7ace821 100644 --- a/part/pageview.cpp +++ b/part/pageview.cpp @@ -4048,7 +4048,7 @@ void PageView::updateZoomText() if (localValue.right(1) == QLatin1String("0") && localValue.indexOf(QLocale().decimalPoint()) > -1) { localValue.chop(1); } - translated << i18nc("Zoom value percentage indicator", "%1%", localValue); + translated << i18nc("Zoom percentage value %1 will be replaced by the actual zoom factor value, so make sure you include it in your translation in order to not to break anything", "%1%", localValue); } d->aZoom->setItems(translated);