feat: add global chat UI with i18n and translation indicators

This commit is contained in:
Adolfo Reyna
2026-02-20 23:16:05 -05:00
parent 06e620dbf6
commit f92d0fec0b
5 changed files with 228 additions and 4 deletions

View File

@@ -79,6 +79,7 @@ let MenuView = ({ navigation }) => {
</List.Accordion>
<List.Section title={i18n.t("message.userActions")}>
<List.Item key='ProfileEditor' title={i18n.t('message.profile')} onPress={() => { navigation.navigate("ProfileSettings") }} left={props => <List.Icon {...props} icon="person" />} />
<List.Item key='GlobalChat' title='Global Chat' onPress={() => { navigation.navigate("GlobalChat") }} left={props => <List.Icon {...props} icon="chat" />} />
<List.Item key='Settings' title={i18n.t('message.settings')} left={props => <List.Icon {...props} icon="settings" />} />
<List.Item key="Logout" title={i18n.t('message.logout')} onPress={() => { navigation.navigate("Logout") }} left={props => <List.Icon {...props} icon="logout" />} />
</List.Section>