1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-04-22 22:21:11 +02:00

TranslatableString for prompts of choice controls

This commit is contained in:
Paul Licameli
2019-12-22 15:21:07 -05:00
parent 1944ac2040
commit 21e7b9f2de
40 changed files with 105 additions and 104 deletions

View File

@@ -188,18 +188,18 @@ void GUIPrefs::PopulateOrExchange(ShuttleGui & S)
S.StartMultiColumn(2);
{
S.TieChoice( _("&Language:"),
S.TieChoice( XO("&Language:"),
{
wxT("/Locale/Language"),
{ ByColumns, mLangNames, mLangCodes }
}
);
S.TieChoice( _("Location of &Manual:"), GUIManualLocation);
S.TieChoice( XO("Location of &Manual:"), GUIManualLocation);
S.TieChoice( _("Th&eme:"), GUITheme);
S.TieChoice( XO("Th&eme:"), GUITheme);
S.TieChoice( _("Meter dB &range:"),
S.TieChoice( XO("Meter dB &range:"),
{
ENV_DB_KEY,
{ ByColumns, mRangeChoices, mRangeCodes },