From a02e3174749e2e98b0c8214ac21fa87778b6674e Mon Sep 17 00:00:00 2001 From: Harrison Healey Date: Thu, 16 Feb 2017 08:27:28 -0500 Subject: [PATCH] Added title to Thread scene (#262) --- app/navigation/routes.js | 5 ++++- assets/base/i18n/en.json | 1 + 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/app/navigation/routes.js b/app/navigation/routes.js index 1ca559ee6..12c005864 100644 --- a/app/navigation/routes.js +++ b/app/navigation/routes.js @@ -124,7 +124,10 @@ export const Routes = { Thread: { key: 'Thread', transition: RouteTransitions.Horizontal, - component: Thread + component: Thread, + navigationProps: { + title: {id: 'mobile.routes.thread', defaultMessage: 'Thread'} + } } }; diff --git a/assets/base/i18n/en.json b/assets/base/i18n/en.json index d771611cf..a773b1ff5 100644 --- a/assets/base/i18n/en.json +++ b/assets/base/i18n/en.json @@ -1517,6 +1517,7 @@ "mobile.routes.channel_members.action": "{term} Members", "mobile.routes.channel_members.action_message": "You must select at least one member to {term} {prep} the channel.", "mobile.routes.channel_members.action_message_confirm": "Are you sure you want to {term} the selected members {prep} the channel?", + "mobile.routes.thread": "Thread", "more_channels.close": "Close", "more_channels.create": "Create New Channel", "more_channels.createClick": "Click 'Create New Channel' to make a new one",