comparison FrmAbout.cs @ 93:e40d892a2298

Fixes #308: Make GTK# UI translatable * Move all remaining buttons to translatable buttons * Make the About dialog translatable (where appropriate) * Move to UTF-8 encoding in the XML to correctly handle copyright symbol * Switch About dialog to using Close button as per other apps
author IBBoard <dev@ibboard.co.uk>
date Fri, 31 Dec 2010 13:53:18 +0000
parents 9c9af2ce8c43
children 26e4525b49cf
comparison
equal deleted inserted replaced
92:58779fcd0166 93:e40d892a2298
23 } 23 }
24 24
25 private FrmAbout() 25 private FrmAbout()
26 { 26 {
27 this.Build(); 27 this.Build();
28 ControlTranslator.TranslateWidget(this); 28 Translate();
29 } 29 }
30 30
31 protected virtual void OkayClicked(object sender, System.EventArgs e) 31 protected virtual void CloseClicked(object sender, System.EventArgs e)
32 { 32 {
33 Respond(ResponseType.Ok); 33 Respond(ResponseType.Close);
34 } 34 }
35 } 35 }
36 } 36 }
37 37