For Windows users, see current value of the LANG environment variable with 
PowerShell like so:

```powershell
# User context / per user
[System.Environment]::GetEnvironmentVariable('LANG','User')

# System context / all users
[System.Environment]::GetEnvironmentVariable('LANG','Machine')
```

If no value is returned, it hasn't been set.

<hr>

And set it like so (in user context / per user, does not require admin):

```powershell
[System.Environment]::SetEnvironmentVariable('LANG','en','User')
```

-- 
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/3255#issuecomment-1773797679
You are receiving this because you are subscribed to this thread.

Message ID: <geany/geany/issues/3255/[email protected]>

Reply via email to