1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-01-11 07:05:47 +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:
James Crook
2016-04-20 11:48:01 +01:00
parent a0290c09d2
commit 870d334a5a

View File

@@ -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 );