Home > Software design >  Python Tkinter: Changing the language in the macOS app menu
Python Tkinter: Changing the language in the macOS app menu

Time:03-04

Is it possible to change the language of the entries given in the macOS App menu to German?

Thanks a lot.

Tkinter macOS App menu

CodePudding user response:

You can only change the language of the custom items you add to the menu. Tkinter doesn't provide a way to change the language of predefined menu items.

  • Related