Skip to content

Commit eba3566

Browse files
chrisbobbegnprice
authored andcommitted
settings: Translate languages' names into current selected language
These used to be translated, but then we accidentally stopped in a483f56 about a year ago. Oops; fix.
1 parent eb18e50 commit eba3566

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/settings/SettingsScreen.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ export default function SettingsScreen(props: Props): Node {
135135
items={languages.map(l => ({
136136
key: l.tag,
137137
title: noTranslation(l.selfname),
138-
subtitle: noTranslation(l.name),
138+
subtitle: l.name,
139139
}))}
140140
onValueChange={value => {
141141
dispatch(setGlobalSettings({ language: value }));

0 commit comments

Comments
 (0)