diff --git a/packages/app/src/components/header/header-right-items/EditorOptionMenu.tsx b/packages/app/src/components/header/header-right-items/EditorOptionMenu.tsx
index 879e6a4117..dc64ae05ce 100644
--- a/packages/app/src/components/header/header-right-items/EditorOptionMenu.tsx
+++ b/packages/app/src/components/header/header-right-items/EditorOptionMenu.tsx
@@ -37,12 +37,12 @@ const PopoverContent = () => {
onClick={() => {
toggleFavoritePage(id);
toast(
- favorite ? t('Removed from Favourites') : t('Added to Favourites')
+ favorite ? t('Removed from Favorites') : t('Added to Favorites')
);
}}
icon={favorite ? : }
>
- {favorite ? t('Remove from favourites') : t('Add to favourites')}
+ {favorite ? t('Remove from favorites') : t('Add to favorites')}
: }
diff --git a/packages/app/src/components/page-list/Empty.tsx b/packages/app/src/components/page-list/Empty.tsx
index 236968bd04..5252e2bbc0 100644
--- a/packages/app/src/components/page-list/Empty.tsx
+++ b/packages/app/src/components/page-list/Empty.tsx
@@ -12,7 +12,7 @@ export const PageListEmpty = (props: { listType?: string }) => {
sx={{ marginTop: '100px', marginBottom: '30px' }}
/>
{listType === 'all' &&
{t('emptyAllPages')}
}
- {listType === 'favorite' && {t('emptyFavourite')}
}
+ {listType === 'favorite' && {t('emptyFavorite')}
}
{listType === 'trash' && {t('emptyTrash')}
}
);
diff --git a/packages/app/src/components/page-list/OperationCell.tsx b/packages/app/src/components/page-list/OperationCell.tsx
index 2bbcbeea73..b6435ece70 100644
--- a/packages/app/src/components/page-list/OperationCell.tsx
+++ b/packages/app/src/components/page-list/OperationCell.tsx
@@ -27,12 +27,12 @@ export const OperationCell = ({ pageMeta }: { pageMeta: PageMeta }) => {
onClick={() => {
toggleFavoritePage(id);
toast(
- favorite ? t('Removed from Favourites') : t('Added to Favourites')
+ favorite ? t('Removed from Favorites') : t('Added to Favorites')
);
}}
icon={favorite ? : }
>
- {favorite ? t('Remove from favourites') : t('Add to favourites')}
+ {favorite ? t('Remove from favorites') : t('Add to favorites')}