From 85dfe1b9708f0f42af3fcab6172421596643905e Mon Sep 17 00:00:00 2001 From: phriedrich Date: Mon, 17 Feb 2020 17:17:56 +0100 Subject: [PATCH] [FIX] Missing i18n on MessagesView title (#1733) --- app/views/MessagesView/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/MessagesView/index.js b/app/views/MessagesView/index.js index cd724adaf..6d8633b8d 100644 --- a/app/views/MessagesView/index.js +++ b/app/views/MessagesView/index.js @@ -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) });