Bluesky app fork with some witchin' additions ๐Ÿ’ซ
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

[๐Ÿด] use "Chats" instead of "Messages" (#4013)

* use "Chats" instead of "Messages"

* chats to chat

* use messages in the header

authored by

Samuel Newman and committed by
GitHub
08836ecb 6b2635c8

+5 -5
+1 -1
src/Navigation.tsx
··· 304 304 <Stack.Screen 305 305 name="MessagesSettings" 306 306 getComponent={() => MessagesSettingsScreen} 307 - options={{title: title(msg`Messaging settings`), requireAuth: true}} 307 + options={{title: title(msg`Chat settings`), requireAuth: true}} 308 308 /> 309 309 </> 310 310 )
+2 -2
src/screens/Messages/List/index.tsx
··· 195 195 isLoading={isLoading} 196 196 isError={isError} 197 197 emptyType="results" 198 - emptyTitle={_(msg`No messages yet`)} 198 + emptyTitle={_(msg`No chats yet`)} 199 199 emptyMessage={_( 200 - msg`You have no messages yet. Start a conversation with someone!`, 200 + msg`You have no chats yet. Start a conversation with someone!`, 201 201 )} 202 202 errorMessage={cleanError(error)} 203 203 onRetry={isError ? refetch : undefined}
+1 -1
src/view/shell/bottom-bar/BottomBar.tsx
··· 216 216 notificationCount={numUnreadMessages.numUnread} 217 217 accessible={true} 218 218 accessibilityRole="tab" 219 - accessibilityLabel={_(msg`Messages`)} 219 + accessibilityLabel={_(msg`Chat`)} 220 220 accessibilityHint={ 221 221 numUnreadMessages.count > 0 222 222 ? `${numUnreadMessages.numUnread} unread`
+1 -1
src/view/shell/desktop/LeftNav.tsx
··· 341 341 count={numUnreadMessages.numUnread} 342 342 icon={<Message style={pal.text} width={iconWidth} />} 343 343 iconFilled={<MessageFilled style={pal.text} width={iconWidth} />} 344 - label={_(msg`Messages`)} 344 + label={_(msg`Chat`)} 345 345 /> 346 346 )} 347 347 <NavItem