mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-23 17:30:17 +01:00
TranslatableString for captions of text entry boxes
This commit is contained in:
@@ -35,7 +35,7 @@ void ImportCommand::PopulateOrExchange(ShuttleGui & S)
|
||||
|
||||
S.StartMultiColumn(2, wxALIGN_CENTER);
|
||||
{
|
||||
S.TieTextBox(_("File Name:"),mFileName);
|
||||
S.TieTextBox(XO("File Name:"),mFileName);
|
||||
}
|
||||
S.EndMultiColumn();
|
||||
}
|
||||
@@ -58,8 +58,8 @@ void ExportCommand::PopulateOrExchange(ShuttleGui & S)
|
||||
|
||||
S.StartMultiColumn(2, wxALIGN_CENTER);
|
||||
{
|
||||
S.TieTextBox(_("File Name:"),mFileName);
|
||||
S.TieTextBox(_("Number of Channels:"),mnChannels);
|
||||
S.TieTextBox(XO("File Name:"),mFileName);
|
||||
S.TieTextBox(XO("Number of Channels:"),mnChannels);
|
||||
}
|
||||
S.EndMultiColumn();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user