summaryrefslogtreecommitdiffhomepage
path: root/gui/src
diff options
context:
space:
mode:
Diffstat (limited to 'gui/src')
-rw-r--r--gui/src/renderer/app.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/src/renderer/app.tsx b/gui/src/renderer/app.tsx
index bd7b2865e6..43f105ce2d 100644
--- a/gui/src/renderer/app.tsx
+++ b/gui/src/renderer/app.tsx
@@ -516,7 +516,7 @@ export default class AppRenderer {
name: messages.gettext('System default'),
code: SYSTEM_PREFERRED_LOCALE_KEY,
},
- ...SUPPORTED_LOCALE_LIST,
+ ...SUPPORTED_LOCALE_LIST.sort((a, b) => a.name.localeCompare(b.name)),
];
}