Re: How to change menu text with Tkinter?

2006-10-01 Thread Scott David Daniels
Phil Schmidt wrote: Eric Brunel wrote: But Marc's answer still applies: it's a lot of work for something that will usually be configured once. So requiring to restart the tool when the UI language changes should be acceptable. Thanks for the example, that helps. I agree with you and Marc

How to change menu text with Tkinter?

2006-09-27 Thread Phil Schmidt
I am making a little Tkinter GUI app that needs to be in several languages (english, french, etc.), adjustable at runtime via a menu pick to select the language. The only way I can see to change text in the menus entries is to destroy them and recreate them usiing different labels. This seems very

Re: How to change menu text with Tkinter?

2006-09-27 Thread Marc 'BlackJack' Rintsch
In [EMAIL PROTECTED], Phil Schmidt wrote: I am making a little Tkinter GUI app that needs to be in several languages (english, french, etc.), adjustable at runtime via a menu pick to select the language. The only way I can see to change text in the menus entries is to destroy them and

Re: How to change menu text with Tkinter?

2006-09-27 Thread Rob Wolfe
Phil Schmidt wrote: I am making a little Tkinter GUI app that needs to be in several languages (english, french, etc.), adjustable at runtime via a menu pick to select the language. The only way I can see to change text in the menus entries is to destroy them and recreate them usiing

Re: How to change menu text with Tkinter?

2006-09-27 Thread Eric Brunel
On Wed, 27 Sep 2006 15:29:32 +0200, Phil Schmidt [EMAIL PROTECTED] wrote: I am making a little Tkinter GUI app that needs to be in several languages (english, french, etc.), adjustable at runtime via a menu pick to select the language. The only way I can see to change text in the menus

Re: How to change menu text with Tkinter?

2006-09-27 Thread Phil Schmidt
Eric Brunel wrote: But Marc's answer still applies: it's a lot of work for something that will usually be configured once. So requiring to restart the tool when the UI language changes should be acceptable. Thanks for the example, that helps. I agree with you and Marc regarding the