Merge branch 'bookmark-folders' into 'main'

Change message for empty bookmark folder

See merge request soapbox-pub/soapbox!2965
This commit is contained in:
marcin mikołajczak
2024-03-27 11:40:04 +00:00
2 changed files with 4 additions and 1 deletions

View File

@ -83,7 +83,9 @@ const Bookmarks: React.FC<IBookmarks> = ({ params }) => {
}));
};
const emptyMessage = <FormattedMessage id='empty_column.bookmarks' defaultMessage="You don't have any bookmarks yet. When you add one, it will show up here." />;
const emptyMessage = folderId
? <FormattedMessage id='empty_column.bookmarks.folder' defaultMessage="You don't have any bookmarks in this folder yet. When you add one, it will show up here." />
: <FormattedMessage id='empty_column.bookmarks' defaultMessage="You don't have any bookmarks yet. When you add one, it will show up here." />;
const items = folderId ? [
{