@@ -42,7 +42,7 @@ import {ProfileHeader, ProfileHeaderLoading} from '#/screens/Profile/Header'
42
42
import { ProfileFeedSection } from '#/screens/Profile/Sections/Feed'
43
43
import { ProfileLabelsSection } from '#/screens/Profile/Sections/Labels'
44
44
import { atoms as a , useTheme } from '#/alf'
45
- import { Heart2_Stroke1_Corner0_Rounded } from '#/components/icons/Heart2'
45
+ import { Heart2_Stroke1_Corner0_Rounded as HeartIcon } from '#/components/icons/Heart2'
46
46
import { Image_Stroke1_Corner0_Rounded as ImageIcon } from '#/components/icons/Image'
47
47
import { Message_Stroke1_Corner0_Rounded_Filled as MessageIcon } from '#/components/icons/Message'
48
48
import { VideoClip_Stroke1_Corner0_Rounded as VideoIcon } from '#/components/icons/VideoClip'
@@ -415,8 +415,8 @@ function ProfileScreenLoaded({
415
415
setScrollViewTag = { setScrollViewTag }
416
416
emptyStateMessage = { _ ( msg `No posts yet.` ) }
417
417
emptyStateButton = { {
418
- label : ' Write a post' ,
419
- text : ' Write a post' ,
418
+ label : _ ( msg ` Write a post` ) ,
419
+ text : _ ( msg ` Write a post` ) ,
420
420
onPress : ( ) => openComposer ( { } ) ,
421
421
size : 'small' ,
422
422
color : 'primary' ,
@@ -457,8 +457,8 @@ function ProfileScreenLoaded({
457
457
setScrollViewTag = { setScrollViewTag }
458
458
emptyStateMessage = { _ ( msg `No media yet.` ) }
459
459
emptyStateButton = { {
460
- label : ' Post a photo' ,
461
- text : ' Post a photo' ,
460
+ label : _ ( msg ` Post a photo` ) ,
461
+ text : _ ( msg ` Post a photo` ) ,
462
462
onPress : ( ) => openComposer ( { } ) ,
463
463
size : 'small' ,
464
464
color : 'primary' ,
@@ -485,8 +485,8 @@ function ProfileScreenLoaded({
485
485
setScrollViewTag = { setScrollViewTag }
486
486
emptyStateMessage = { _ ( msg `No video posts yet.` ) }
487
487
emptyStateButton = { {
488
- label : ' Post a video' ,
489
- text : ' Post a video' ,
488
+ label : _ ( msg ` Post a video` ) ,
489
+ text : _ ( msg ` Post a video` ) ,
490
490
onPress : ( ) => openComposer ( { } ) ,
491
491
size : 'small' ,
492
492
color : 'primary' ,
@@ -513,7 +513,7 @@ function ProfileScreenLoaded({
513
513
setScrollViewTag = { setScrollViewTag }
514
514
emptyStateMessage = { _ ( msg `No likes yet.` ) }
515
515
emptyStateIcon = {
516
- < Heart2_Stroke1_Corner0_Rounded
516
+ < HeartIcon
517
517
size = "3xl"
518
518
fill = { t . atoms . text_contrast_low . color }
519
519
/>
0 commit comments