Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Menu Quit appears twice when using Region#English on Window OS #5158

Open
2 tasks done
prifre opened this issue Sep 23, 2024 · 0 comments
Open
2 tasks done

Menu Quit appears twice when using Region#English on Window OS #5158

prifre opened this issue Sep 23, 2024 · 0 comments
Labels
unverified A bug that has been reported but not verified

Comments

@prifre
Copy link

prifre commented Sep 23, 2024

Checklist

  • I have searched the issue tracker for open issues that relate to the same problem, before opening a new one.
  • This issue only relates to a single bug. I will open new issues for any other problems.

Describe the bug

If I WANT english language and I do have an OS (Windows in my case) set to REGION="Sweden" I end up with TWO Quit menus...
One Quit in an English OS and two Quit -> English "Quit" (mine) and a Swedish "Avsluta" on an non-English (Region #English) OS...
The temporary solution is to remove the file https://github.com/fyne-io/fyne/tree/master/lang/translations/base.sv.json from fyne. Or set "Region" to English/UK, etc.

A suggested permanent solution would be to add a function to the lang package to be able to control what language the application is supposed to be using!!! Then I could even have a multilanguage-controlling menu! :-)
Suggestion:
lang.SetLanguage("en") or lang.SetLanguage("sv") etc...

How to reproduce

  1. Go to (on Windows 11) Start->Settings->Time & language and set "Region" ->"Swedish"
  2. add code that adds an "Quit" (english) menu.
  3. You end up with 2 Quit...

Screenshots

No response

Example code

func BuildFileMenu(window fyne.Window) *fyne.Menu {
// a quit item will be appended to our first menu
mFile := fyne.NewMenu("File",
fyne.NewMenuItem("Quit", func() {
window.Close()
os.Exit(1)
}))

Fyne version

[email protected]

Go compiler version

go1.22.1 windows/amd64

Operating system and version

Windows 11 Home with REGION set to "Sweden"

Additional Information

No response

@prifre prifre added the unverified A bug that has been reported but not verified label Sep 23, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
unverified A bug that has been reported but not verified
Projects
None yet
Development

No branches or pull requests

1 participant