mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-25 06:40:10 +01:00
INTERNAL, not TRANSLATED, command/effect names in config key paths...
... This may make a difference and breadk compatibility only for Sliding Time Scale/Pitch Shift, the one effect for which those were different. Using a locale-independent internal string in a config file is the Right Thing To Do.
This commit is contained in:
@@ -2609,7 +2609,7 @@ PluginID PluginManager::GetID(ModuleInterface *module)
|
|||||||
GetPluginTypeString(PluginTypeModule),
|
GetPluginTypeString(PluginTypeModule),
|
||||||
wxEmptyString,
|
wxEmptyString,
|
||||||
module->GetVendor().Internal(),
|
module->GetVendor().Internal(),
|
||||||
module->GetSymbol().Translation(),
|
module->GetSymbol().Internal(),
|
||||||
module->GetPath());
|
module->GetPath());
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -2619,7 +2619,7 @@ PluginID PluginManager::GetID(CommandDefinitionInterface *command)
|
|||||||
GetPluginTypeString(PluginTypeAudacityCommand),
|
GetPluginTypeString(PluginTypeAudacityCommand),
|
||||||
wxEmptyString,
|
wxEmptyString,
|
||||||
command->GetVendor().Internal(),
|
command->GetVendor().Internal(),
|
||||||
command->GetSymbol().Translation(),
|
command->GetSymbol().Internal(),
|
||||||
command->GetPath());
|
command->GetPath());
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -2629,7 +2629,7 @@ PluginID PluginManager::GetID(EffectDefinitionInterface *effect)
|
|||||||
GetPluginTypeString(PluginTypeEffect),
|
GetPluginTypeString(PluginTypeEffect),
|
||||||
effect->GetFamilyId().Internal(),
|
effect->GetFamilyId().Internal(),
|
||||||
effect->GetVendor().Internal(),
|
effect->GetVendor().Internal(),
|
||||||
effect->GetSymbol().Translation(),
|
effect->GetSymbol().Internal(),
|
||||||
effect->GetPath());
|
effect->GetPath());
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -2639,7 +2639,7 @@ PluginID PluginManager::GetID(ImporterInterface *importer)
|
|||||||
GetPluginTypeString(PluginTypeImporter),
|
GetPluginTypeString(PluginTypeImporter),
|
||||||
wxEmptyString,
|
wxEmptyString,
|
||||||
importer->GetVendor().Internal(),
|
importer->GetVendor().Internal(),
|
||||||
importer->GetSymbol().Translation(),
|
importer->GetSymbol().Internal(),
|
||||||
importer->GetPath());
|
importer->GetPath());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user