Bluesky app fork with some witchin' additions 💫

consistent sentence case captialisation (#7749)

authored by samuel.fm and committed by

GitHub 3b4f1e91 fff62516

+17 -17
+17 -17
src/view/com/profile/ProfileMenu.tsx
··· 225 225 </Menu.Item> 226 226 <Menu.Item 227 227 testID="profileHeaderDropdownSearchBtn" 228 - label={_(msg`Search Posts`)} 228 + label={_(msg`Search posts`)} 229 229 onPress={onPressSearch}> 230 230 <Menu.ItemText> 231 - <Trans>Search Posts</Trans> 231 + <Trans>Search posts</Trans> 232 232 </Menu.ItemText> 233 233 <Menu.ItemIcon icon={SearchIcon} /> 234 234 </Menu.Item> ··· 245 245 testID="profileHeaderDropdownFollowBtn" 246 246 label={ 247 247 isFollowing 248 - ? _(msg`Unfollow Account`) 249 - : _(msg`Follow Account`) 248 + ? _(msg`Unfollow account`) 249 + : _(msg`Follow account`) 250 250 } 251 251 onPress={ 252 252 isFollowing ··· 255 255 }> 256 256 <Menu.ItemText> 257 257 {isFollowing ? ( 258 - <Trans>Unfollow Account</Trans> 258 + <Trans>Unfollow account</Trans> 259 259 ) : ( 260 - <Trans>Follow Account</Trans> 260 + <Trans>Follow account</Trans> 261 261 )} 262 262 </Menu.ItemText> 263 263 <Menu.ItemIcon icon={isFollowing ? UserMinus : Plus} /> ··· 270 270 label={_(msg`Add to Lists`)} 271 271 onPress={onPressAddRemoveLists}> 272 272 <Menu.ItemText> 273 - <Trans>Add to Lists</Trans> 273 + <Trans>Add to lists</Trans> 274 274 </Menu.ItemText> 275 275 <Menu.ItemIcon icon={List} /> 276 276 </Menu.Item> ··· 282 282 testID="profileHeaderDropdownMuteBtn" 283 283 label={ 284 284 profile.viewer?.muted 285 - ? _(msg`Unmute Account`) 286 - : _(msg`Mute Account`) 285 + ? _(msg`Unmute account`) 286 + : _(msg`Mute account`) 287 287 } 288 288 onPress={onPressMuteAccount}> 289 289 <Menu.ItemText> 290 290 {profile.viewer?.muted ? ( 291 - <Trans>Unmute Account</Trans> 291 + <Trans>Unmute account</Trans> 292 292 ) : ( 293 - <Trans>Mute Account</Trans> 293 + <Trans>Mute account</Trans> 294 294 )} 295 295 </Menu.ItemText> 296 296 <Menu.ItemIcon ··· 303 303 testID="profileHeaderDropdownBlockBtn" 304 304 label={ 305 305 profile.viewer 306 - ? _(msg`Unblock Account`) 307 - : _(msg`Block Account`) 306 + ? _(msg`Unblock account`) 307 + : _(msg`Block account`) 308 308 } 309 309 onPress={() => blockPromptControl.open()}> 310 310 <Menu.ItemText> 311 311 {profile.viewer?.blocking ? ( 312 - <Trans>Unblock Account</Trans> 312 + <Trans>Unblock account</Trans> 313 313 ) : ( 314 - <Trans>Block Account</Trans> 314 + <Trans>Block account</Trans> 315 315 )} 316 316 </Menu.ItemText> 317 317 <Menu.ItemIcon ··· 323 323 )} 324 324 <Menu.Item 325 325 testID="profileHeaderDropdownReportBtn" 326 - label={_(msg`Report Account`)} 326 + label={_(msg`Report account`)} 327 327 onPress={onPressReportAccount}> 328 328 <Menu.ItemText> 329 - <Trans>Report Account</Trans> 329 + <Trans>Report account</Trans> 330 330 </Menu.ItemText> 331 331 <Menu.ItemIcon icon={Flag} /> 332 332 </Menu.Item>