[FIX] Missing i18n on MessagesView title (#1733)

This commit is contained in:
phriedrich 2020-02-17 17:17:56 +01:00 committed by GitHub
parent 6a45d1daa2
commit 85dfe1b970
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ const CANCEL_INDEX = 1;
class MessagesView extends React.Component {
static navigationOptions = ({ navigation, screenProps }) => ({
title: navigation.state.params.name,
title: I18n.t(navigation.state.params.name),
...themedHeader(screenProps.theme)
});