diff --git a/src/components/keyboard-shortcuts-help.jsx b/src/components/keyboard-shortcuts-help.jsx
index 70ec7e5a..08683cb4 100644
--- a/src/components/keyboard-shortcuts-help.jsx
+++ b/src/components/keyboard-shortcuts-help.jsx
@@ -135,8 +135,12 @@ export default memo(function KeyboardShortcutsHelp() {
keys: r,
},
{
- action: 'Favourite',
- keys: f,
+ action: 'Like (favourite)',
+ keys: (
+ <>
+ l or f
+ >
+ ),
},
{
action: 'Boost',
diff --git a/src/components/nav-menu.jsx b/src/components/nav-menu.jsx
index ac9c390e..2e22d532 100644
--- a/src/components/nav-menu.jsx
+++ b/src/components/nav-menu.jsx
@@ -192,7 +192,7 @@ function NavMenu(props) {
Bookmarks
- Favourites
+ Likes
>
)}
diff --git a/src/components/notification.jsx b/src/components/notification.jsx
index abe557df..198c542e 100644
--- a/src/components/notification.jsx
+++ b/src/components/notification.jsx
@@ -49,17 +49,17 @@ const contentText = {
reblog_reply: 'boosted your reply.',
follow: 'followed you.',
follow_request: 'requested to follow you.',
- favourite: 'favourited your post.',
- 'favourite+account': (count) => `favourited ${count} of your posts.`,
- favourite_reply: 'favourited your reply.',
+ favourite: 'liked your post.',
+ 'favourite+account': (count) => `liked ${count} of your posts.`,
+ favourite_reply: 'liked your reply.',
poll: 'A poll you have voted in or created has ended.',
'poll-self': 'A poll you have created has ended.',
'poll-voted': 'A poll you have voted in has ended.',
update: 'A post you interacted with has been edited.',
- 'favourite+reblog': 'boosted & favourited your post.',
+ 'favourite+reblog': 'boosted & liked your post.',
'favourite+reblog+account': (count) =>
- `boosted & favourited ${count} of your posts.`,
- 'favourite+reblog_reply': 'boosted & favourited your reply.',
+ `boosted & liked ${count} of your posts.`,
+ 'favourite+reblog_reply': 'boosted & liked your reply.',
'admin.sign_up': 'signed up.',
'admin.report': (targetAccount) => <>reported {targetAccount}>,
};
@@ -142,8 +142,8 @@ function Notification({ notification, instance, isStatic }) {
const genericAccountsHeading =
{
- 'favourite+reblog': 'Boosted/Favourited by…',
- favourite: 'Favourited by…',
+ 'favourite+reblog': 'Boosted/Liked by…',
+ favourite: 'Liked by…',
reblog: 'Boosted by…',
follow: 'Followed by…',
}[type] || 'Accounts';
diff --git a/src/components/shortcuts-settings.jsx b/src/components/shortcuts-settings.jsx
index 734d90d2..11b0b895 100644
--- a/src/components/shortcuts-settings.jsx
+++ b/src/components/shortcuts-settings.jsx
@@ -46,7 +46,7 @@ const TYPE_TEXT = {
search: 'Search',
'account-statuses': 'Account',
bookmarks: 'Bookmarks',
- favourites: 'Favourites',
+ favourites: 'Likes',
hashtag: 'Hashtag',
trending: 'Trending',
mentions: 'Mentions',
@@ -178,7 +178,7 @@ export const SHORTCUTS_META = {
},
favourites: {
id: 'favourites',
- title: 'Favourites',
+ title: 'Likes',
path: '/f',
icon: 'heart',
},
diff --git a/src/components/status.jsx b/src/components/status.jsx
index 0a630f29..565901f6 100644
--- a/src/components/status.jsx
+++ b/src/components/status.jsx
@@ -512,7 +512,7 @@ function Status({
)}{' '}
{favouritesCount > 0 && (
- {' '}
+ {' '}
{shortenNumber(favouritesCount)}
)}
@@ -550,7 +550,7 @@ function Status({
)}
@@ -603,8 +603,8 @@ function Status({
if (!isSizeLarge) {
showToast(
favourited
- ? `Unfavourited @${username || acct}'s post`
- : `Favourited @${username || acct}'s post`,
+ ? `Unliked @${username || acct}'s post`
+ : `Liked @${username || acct}'s post`,
);
}
} catch (e) {}
@@ -616,7 +616,7 @@ function Status({
color: favourited && 'var(--favourite-color)',
}}
/>
- {favourited ? 'Unfavourite' : 'Favourite'}
+ {favourited ? 'Unlike' : 'Like'}