diff options
author | Minseo Lee <itoupluk427@gmail.com> | 2024-05-15 14:44:59 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-14 22:44:59 -0700 |
commit | 2121b5f86f5229914256c7a818086aaaf4c3581a (patch) | |
tree | 62479f95b991497dab097f3642c0ef1a800276c4 /src/view/screens/ProfileList.tsx | |
parent | a90cc1c030e3213ca4359052d5a4fe46c11627e5 (diff) | |
download | voidsky-2121b5f86f5229914256c7a818086aaaf4c3581a.tar.zst |
Make more localizable (#3962)
* Update ProfileList.tsx * Update NoFollowingFeed.tsx * Update LabelsOnMeDialog.tsx * Update LabelsOnMeDialog.tsx * Update NoFollowingFeed.tsx * Update SavedFeeds.tsx * Revert "Update SavedFeeds.tsx" This reverts commit db128eb27d76d27dffa87e0e70e34f603da75778.
Diffstat (limited to 'src/view/screens/ProfileList.tsx')
-rw-r--r-- | src/view/screens/ProfileList.tsx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/view/screens/ProfileList.tsx b/src/view/screens/ProfileList.tsx index 6bbe63b9e..de3c01ea3 100644 --- a/src/view/screens/ProfileList.tsx +++ b/src/view/screens/ProfileList.tsx @@ -283,7 +283,11 @@ function Header({rkey, list}: {rkey: string; list: AppBskyGraphDefs.ListView}) { pinned, }, ]) - Toast.show(_(msg`${pinned ? 'Pinned to' : 'Unpinned from'} your feeds`)) + Toast.show( + pinned + ? _(msg`Pinned to your feeds`) + : _(msg`Unpinned from your feeds`), + ) } else { await addSavedFeeds([ { |