mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-23 23:03:55 +02:00
Effect param keys don't need to localize; audacity.pot can shrink...
... The keys are only ever used as internal identifiers in wxConfigFile objects. So they are often space-less and camel-cased. I have noticed a couple instances of translators confused by these.
This commit is contained in:
@@ -64,7 +64,7 @@ static const wxChar *kVinylStrings[kNumVinyl] =
|
||||
// Define keys, defaults, minimums, and maximums for the effect parameters
|
||||
//
|
||||
// Name Type Key Def Min Max Scale
|
||||
Param( Percentage, double, XO("Percentage"), 0.0, -99.0, 4900.0, 1 );
|
||||
Param( Percentage, double, wxT("Percentage"), 0.0, -99.0, 4900.0, 1 );
|
||||
|
||||
// We warp the slider to go up to 400%, but user can enter higher values
|
||||
static const double kSliderMax = 100.0; // warped above zero to actually go up to 400%
|
||||
|
Reference in New Issue
Block a user