mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-14 09:03:54 +01:00
Bug2453: Shoudln't show & accelerators in dialog text for key prefs
This commit is contained in:
@@ -1337,9 +1337,10 @@ TranslatableString CommandManager::GetPrefixedLabelFromName(const CommandID &nam
|
||||
|
||||
if (!entry->labelPrefix.empty())
|
||||
return Verbatim( wxT("%s - %s") )
|
||||
.Format(entry->labelPrefix, entry->label);
|
||||
.Format(entry->labelPrefix, entry->label)
|
||||
.Stripped();
|
||||
else
|
||||
return entry->label;
|
||||
return entry->label.Stripped();
|
||||
}
|
||||
|
||||
TranslatableString CommandManager::GetCategoryFromName(const CommandID &name)
|
||||
|
||||
Reference in New Issue
Block a user