diff --git a/ElementX/Resources/Localizations/en.lproj/Localizable.strings b/ElementX/Resources/Localizations/en.lproj/Localizable.strings index 7ebdf1de2..aebe76b3e 100644 --- a/ElementX/Resources/Localizations/en.lproj/Localizable.strings +++ b/ElementX/Resources/Localizations/en.lproj/Localizable.strings @@ -666,6 +666,7 @@ "screen_room_timeline_reactions_show_less" = "Show less"; "screen_room_timeline_reactions_show_more" = "Show more"; "screen_room_timeline_read_marker_title" = "New"; +"screen_room_title" = "Chat"; "screen_room_typing_many_members_first_component_ios" = "%1$@, %2$@ and "; "screen_room_typing_notification_plural_ios" = " are typing…"; "screen_room_typing_notification_singular_ios" = " is typing…"; diff --git a/ElementX/Sources/Generated/Strings.swift b/ElementX/Sources/Generated/Strings.swift index 8907295d2..451226091 100644 --- a/ElementX/Sources/Generated/Strings.swift +++ b/ElementX/Sources/Generated/Strings.swift @@ -1625,6 +1625,8 @@ internal enum L10n { internal static func screenRoomTimelineStateChanges(_ p1: Int) -> String { return L10n.tr("Localizable", "screen_room_timeline_state_changes", p1) } + /// Chat + internal static var screenRoomTitle: String { return L10n.tr("Localizable", "screen_room_title") } /// Plural format key: "%#@COUNT@" internal static func screenRoomTypingManyMembers(_ p1: Int) -> String { return L10n.tr("Localizable", "screen_room_typing_many_members", p1) diff --git a/ElementX/Sources/Screens/RoomScreen/View/RoomScreen.swift b/ElementX/Sources/Screens/RoomScreen/View/RoomScreen.swift index 77a71e91f..fdc36c319 100644 --- a/ElementX/Sources/Screens/RoomScreen/View/RoomScreen.swift +++ b/ElementX/Sources/Screens/RoomScreen/View/RoomScreen.swift @@ -47,7 +47,7 @@ struct RoomScreen: View { .background(Color.compound.bgCanvasDefault.ignoresSafeArea()) .environmentObject(context) } - .navigationTitle(L10n.commonRoom) // Hidden but used for back button text. + .navigationTitle(L10n.screenRoomTitle) // Hidden but used for back button text. .navigationBarTitleDisplayMode(.inline) .navigationBarHidden(isNavigationBarHidden) .toolbar { toolbar }