From 870d334a5a0f671f7a8a365d5e3227cef43482fc Mon Sep 17 00:00:00 2001 From: James Crook Date: Wed, 20 Apr 2016 11:48:01 +0100 Subject: [PATCH] "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. --- src/AboutDialog.cpp | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/AboutDialog.cpp b/src/AboutDialog.cpp index f0204ca9c..c358d8e9a 100644 --- a/src/AboutDialog.cpp +++ b/src/AboutDialog.cpp @@ -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 );