mirror of
https://github.com/cookiengineer/audacity
synced 2026-02-06 03:32:09 +01:00
Removed some (hidden) Cleanspeech cruft that had been used to disable effects. Made some static text open to translation. Added more i18n hints (thanks Thomas Breinstrup).
This commit is contained in:
@@ -49,17 +49,7 @@ enum Column
|
||||
Col_Max
|
||||
};
|
||||
|
||||
static const wxChar *headers[Col_Max] =
|
||||
{
|
||||
/* i18n-hint: (noun). A track contains waves, audio etc.*/
|
||||
_("Track"),
|
||||
/* i18n-hint: (noun)*/
|
||||
_("Label"),
|
||||
/* i18n-hint: (noun) of a label*/
|
||||
_("Start Time"),
|
||||
/* i18n-hint: (noun) of a label*/
|
||||
_("End Time")
|
||||
};
|
||||
|
||||
|
||||
class RowData
|
||||
{
|
||||
@@ -146,10 +136,14 @@ LabelDialog::LabelDialog(wxWindow *parent,
|
||||
mGrid->CreateGrid(0, Col_Max);
|
||||
mGrid->SetDefaultCellAlignment(wxALIGN_LEFT, wxALIGN_CENTER);
|
||||
|
||||
int i;
|
||||
for (i = 0; i < Col_Max; i++) {
|
||||
mGrid->SetColLabelValue(i, headers[i]);
|
||||
}
|
||||
/* i18n-hint: (noun). A track contains waves, audio etc.*/
|
||||
mGrid->SetColLabelValue(0,_("Track"));
|
||||
/* i18n-hint: (noun)*/
|
||||
mGrid->SetColLabelValue(1,_("Label"));
|
||||
/* i18n-hint: (noun) of a label*/
|
||||
mGrid->SetColLabelValue(2,_("Start Time"));
|
||||
/* i18n-hint: (noun) of a label*/
|
||||
mGrid->SetColLabelValue(3,_("End Time"));
|
||||
|
||||
// Create and remember editors. No need to delete these as the wxGrid will
|
||||
// do it for us.
|
||||
|
||||
Reference in New Issue
Block a user