Move i18n-hint to proper place...

... It must be on the line preceding the string to get into the .pot file
This commit is contained in:
Paul Licameli 2020-02-23 14:41:58 -05:00
parent d80741e0fb
commit 25d0871e55

View File

@ -891,9 +891,9 @@ void EffectEqualization::PopulateOrExchange(ShuttleGui & S)
TranslatableString freq = kThirdOct[i] < 1000. TranslatableString freq = kThirdOct[i] < 1000.
? XO("%d Hz").Format((int)kThirdOct[i]) ? XO("%d Hz").Format((int)kThirdOct[i])
: XO("%g kHz").Format(kThirdOct[i] / 1000.); : 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. TranslatableString fNum = kThirdOct[i] < 1000.
? Verbatim("%d").Format((int)kThirdOct[i]) ? 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.); : XO("%gk").Format(kThirdOct[i] / 1000.);
S.StartVerticalLay(); S.StartVerticalLay();
{ {