Skip to content

Commit

Permalink
settings: Translate languages' names into current selected language
Browse files Browse the repository at this point in the history
These used to be translated, but then we accidentally stopped in
a483f56 about a year ago. Oops; fix.
  • Loading branch information
chrisbobbe authored and gnprice committed Mar 7, 2024
1 parent eb18e50 commit eba3566
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/settings/SettingsScreen.js
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ export default function SettingsScreen(props: Props): Node {
items={languages.map(l => ({
key: l.tag,
title: noTranslation(l.selfname),
subtitle: noTranslation(l.name),
subtitle: l.name,
}))}
onValueChange={value => {
dispatch(setGlobalSettings({ language: value }));
Expand Down

0 comments on commit eba3566

Please sign in to comment.