From 25d0871e55e90453792dfc73ae429dbefd875c51 Mon Sep 17 00:00:00 2001 From: Paul Licameli Date: Sun, 23 Feb 2020 14:41:58 -0500 Subject: [PATCH] Move i18n-hint to proper place... ... It must be on the line preceding the string to get into the .pot file --- src/effects/Equalization.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/effects/Equalization.cpp b/src/effects/Equalization.cpp index 3d049ff60..534b19b8f 100644 --- a/src/effects/Equalization.cpp +++ b/src/effects/Equalization.cpp @@ -891,9 +891,9 @@ void EffectEqualization::PopulateOrExchange(ShuttleGui & S) TranslatableString freq = kThirdOct[i] < 1000. ? XO("%d Hz").Format((int)kThirdOct[i]) : XO("%g kHz").Format(kThirdOct[i] / 1000.); - /* i18n-hint k is SI abbreviation for x1,000. Usually unchanged in translation. */ TranslatableString fNum = kThirdOct[i] < 1000. ? Verbatim("%d").Format((int)kThirdOct[i]) + /* i18n-hint k is SI abbreviation for x1,000. Usually unchanged in translation. */ : XO("%gk").Format(kThirdOct[i] / 1000.); S.StartVerticalLay(); {