diff --git a/web/apps/photos/src/components/Collections/AllCollections/index.tsx b/web/apps/photos/src/components/Collections/AllCollections/index.tsx index ebbfc9a3ed..4a199dc576 100644 --- a/web/apps/photos/src/components/Collections/AllCollections/index.tsx +++ b/web/apps/photos/src/components/Collections/AllCollections/index.tsx @@ -115,7 +115,11 @@ const AllCollectionsHeader = ({ {t("albums_count", { count: collectionCount })} diff --git a/web/apps/photos/src/components/Collections/CollectionShare.tsx b/web/apps/photos/src/components/Collections/CollectionShare.tsx index 6aceae2e9b..4f40cb1a22 100644 --- a/web/apps/photos/src/components/Collections/CollectionShare.tsx +++ b/web/apps/photos/src/components/Collections/CollectionShare.tsx @@ -981,7 +981,6 @@ const ManageEmailShare: React.FC = ({ ))} } - fontWeight={"bold"} onClick={openAddViewer} label={ viewers?.length @@ -1894,7 +1893,7 @@ function PublicLinkSetPassword({ {t("password_lock")} diff --git a/web/apps/photos/src/components/Export.tsx b/web/apps/photos/src/components/Export.tsx index d54654cba1..da95e7fc49 100644 --- a/web/apps/photos/src/components/Export.tsx +++ b/web/apps/photos/src/components/Export.tsx @@ -178,7 +178,7 @@ export const Export: React.FC = ({ return ( - + {t("export_data")} diff --git a/web/apps/photos/src/components/Notification.tsx b/web/apps/photos/src/components/Notification.tsx index ae0d9dd685..64175bc0c9 100644 --- a/web/apps/photos/src/components/Notification.tsx +++ b/web/apps/photos/src/components/Notification.tsx @@ -92,12 +92,12 @@ export default function Notification({ )} {attributes.message && ( - + {attributes.message} )} {attributes.title && ( - + {attributes.title} )} diff --git a/web/apps/photos/src/components/PhotoViewer/FileInfo.tsx b/web/apps/photos/src/components/PhotoViewer/FileInfo.tsx index 681541c165..c53bba6e04 100644 --- a/web/apps/photos/src/components/PhotoViewer/FileInfo.tsx +++ b/web/apps/photos/src/components/PhotoViewer/FileInfo.tsx @@ -249,7 +249,7 @@ export const FileInfo: React.FC = ({ href={openStreetMapLink(location)} target="_blank" rel="noopener" - sx={{ fontWeight: "bold" }} + sx={{ fontWeight: "medium" }} > {t("view_on_map")} @@ -261,7 +261,7 @@ export const FileInfo: React.FC = ({ sx={{ textDecoration: "none", color: "text.muted", - fontWeight: "bold", + fontWeight: "medium", }} > {t("disable_map")} @@ -301,7 +301,7 @@ export const FileInfo: React.FC = ({ sx={{ textDecoration: "none", color: "text.muted", - fontWeight: "bold", + fontWeight: "medium", }} > {t("view_exif")} diff --git a/web/apps/photos/src/components/PhotoViewer/ImageEditorOverlay.tsx b/web/apps/photos/src/components/PhotoViewer/ImageEditorOverlay.tsx index dee3e1ab2b..e509249f67 100644 --- a/web/apps/photos/src/components/PhotoViewer/ImageEditorOverlay.tsx +++ b/web/apps/photos/src/components/PhotoViewer/ImageEditorOverlay.tsx @@ -543,7 +543,7 @@ export const ImageEditorOverlay: React.FC = ( alignItems: "center", }} > - + {t("photo_editor")} = ({ usage, storage }) => { {`${formattedStorageByteSize(usage, { round: true })} ${t( @@ -164,9 +164,9 @@ const StorageSection: React.FC = ({ usage, storage }) => { {`${bytesInGB(usage)} / ${bytesInGB(storage)} ${t("storage_unit.gb")} ${t("used")}`} @@ -205,7 +205,7 @@ const IndividualUsageSection: React.FC = ({ {`${formattedStorageByteSize( storage - usage, )} ${t("free")}`} - + {t("photos_count", { count: fileCount ?? 0 })} @@ -262,7 +262,7 @@ const FamilyUsageSection: React.FC = ({ - + {t("photos_count", { count: fileCount ?? 0 })} @@ -332,7 +332,7 @@ interface LegendProps { const Legend: React.FC = ({ label, color }) => ( - + {label} diff --git a/web/apps/photos/src/components/Sidebar/index.tsx b/web/apps/photos/src/components/Sidebar/index.tsx index b76b11a477..6887f0c7c8 100644 --- a/web/apps/photos/src/components/Sidebar/index.tsx +++ b/web/apps/photos/src/components/Sidebar/index.tsx @@ -349,12 +349,7 @@ function MemberSubscriptionManage({ open, userDetails, onClose }) { - + {t("subscription")} diff --git a/web/apps/photos/src/components/WatchFolder.tsx b/web/apps/photos/src/components/WatchFolder.tsx index d8767ce59e..e12cc59fdf 100644 --- a/web/apps/photos/src/components/WatchFolder.tsx +++ b/web/apps/photos/src/components/WatchFolder.tsx @@ -120,7 +120,7 @@ export const WatchFolder: React.FC = ({ PaperProps={{ sx: { height: "448px", maxWidth: "414px" } }} > - + {t("watched_folders")} @@ -183,7 +183,7 @@ const NoWatches: React.FC = () => { return ( - + {t("no_folders_added")} = ({ fullWidth > - + {t("recovery_key")} diff --git a/web/packages/base/components/OverflowMenu.tsx b/web/packages/base/components/OverflowMenu.tsx index 2b96e76854..c93c7bda22 100644 --- a/web/packages/base/components/OverflowMenu.tsx +++ b/web/packages/base/components/OverflowMenu.tsx @@ -148,7 +148,7 @@ export const OverflowMenuOption: React.FC< }} > {startIcon} - + {children} {endIcon} diff --git a/web/packages/base/components/Titlebar.tsx b/web/packages/base/components/Titlebar.tsx index d4973b4238..7088b37391 100644 --- a/web/packages/base/components/Titlebar.tsx +++ b/web/packages/base/components/Titlebar.tsx @@ -46,7 +46,7 @@ export const Titlebar: React.FC = ({ - + {title} = ({ - + {title} = ({ PaperProps={{ sx: { maxWidth: "490px" } }} > - + {titleForAction(action)} diff --git a/web/packages/new/photos/components/PlanSelector.tsx b/web/packages/new/photos/components/PlanSelector.tsx index 243de85586..50b4a974e1 100644 --- a/web/packages/new/photos/components/PlanSelector.tsx +++ b/web/packages/new/photos/components/PlanSelector.tsx @@ -309,7 +309,7 @@ const FreeSubscriptionPlanSelectorCard: React.FC< children, }) => ( <> - + {t("choose_plan")} @@ -365,7 +365,7 @@ const PaidSubscriptionPlanSelectorCard: React.FC< - + {t("subscription")} @@ -380,7 +380,7 @@ const PaidSubscriptionPlanSelectorCard: React.FC< - + ( > {option.suggestion.label} diff --git a/web/packages/new/photos/components/gallery/PeopleHeader.tsx b/web/packages/new/photos/components/gallery/PeopleHeader.tsx index 3d9636b5f1..e3f1027b3a 100644 --- a/web/packages/new/photos/components/gallery/PeopleHeader.tsx +++ b/web/packages/new/photos/components/gallery/PeopleHeader.tsx @@ -356,7 +356,7 @@ const AddPersonDialog: React.FC = ({ PaperProps={{ sx: { maxWidth: "490px" } }} > - + {t("add_name")} diff --git a/web/packages/shared/components/Menu/EnteMenuItem.tsx b/web/packages/shared/components/Menu/EnteMenuItem.tsx index e4c4b3f472..8c7c6ef297 100644 --- a/web/packages/shared/components/Menu/EnteMenuItem.tsx +++ b/web/packages/shared/components/Menu/EnteMenuItem.tsx @@ -41,7 +41,7 @@ export const EnteMenuItem: React.FC = ({ subIcon, checked, variant = "primary", - fontWeight = "bold", + fontWeight = "medium", labelComponent, disabled = false, }) => {