mirror of
https://github.com/cookiengineer/audacity
synced 2026-01-11 15:15:57 +01:00
"OK... Audacious!" -> "OK" (in AboutDialog.cpp)
Also removed i18n-hint. Reasons motivating the change include translation issue, sense that it is too wordy (either "OK" or the original "Audacious!" work better), accessibility, and a possible shift from a colloquial to more formal style.
This commit is contained in:
@@ -239,12 +239,7 @@ AboutDialog::AboutDialog(wxWindow * parent)
|
||||
PopulateLicensePage( S );
|
||||
}
|
||||
S.EndNotebook();
|
||||
/* i18n-hint: "OK... Audacious" appears on a button at the
|
||||
* foot of the 'About Audacity' dialog box, after some text to read.
|
||||
* In English it is slightly humorous alternative to an 'OK' button.
|
||||
* If the humour doesn't work in your language, then just use whatever
|
||||
* you would use for a translation for 'OK' on a button. */
|
||||
wxButton *ok = safenew wxButton(S.GetParent(), wxID_OK, _("OK... Audacious!"));
|
||||
wxButton *ok = safenew wxButton(S.GetParent(), wxID_OK, _("OK"));
|
||||
ok->SetDefault();
|
||||
S.Prop(0).AddWindow( ok );
|
||||
|
||||
|
||||
Reference in New Issue
Block a user