We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00e87eb commit a3fc658Copy full SHA for a3fc658
1 file changed
archinstall/lib/models/locale.py
@@ -21,8 +21,8 @@ class LocaleConfiguration:
21
def default() -> 'LocaleConfiguration':
22
layout = get_kb_layout()
23
if layout == "":
24
- return LocaleConfiguration('us', 'en_US', 'UTF-8')
25
- return LocaleConfiguration(layout, 'en_US', 'UTF-8')
+ layout = 'us'
+ return LocaleConfiguration(layout, 'en_US.UTF-8', 'UTF-8')
26
27
def json(self) -> dict[str, str]:
28
return {
0 commit comments