(02-11-2012 07:18 PM)Mighty Jetters Wrote: Oh, and on another random note, this isn't super important, but just thought I'd mention that when you try to close an animation before saving it, the options are in German. 
Now that's interesting. I was actually expecting the dialogs to use button texts from Windows. Guess I was wrong!
Have some background information:
This is the code I use to open that dialog asking its stuff:
Code:
MessageDlg(msg,mtConfirmation,mbYesNoCancel,0)
MessageDlg() is a predefined function, not mine. msg is a string containing the displayed question, mtConfirmation is the type of dialog (causing a question mark icon to appear), mbYesNoCancel tells it to use Yes, No and Cancel buttons (Ja, Nein, Abbrechen in German), 0 sais that there's no help information defined nowhere. As you can see, I have no option to tell it how to label the buttons! That's why I expected them to retrieve the neccessary information from Windows somehow. But it doesn't!
However, I know how to change that now so the next version will have English buttons
Thanks for pointing that out!