update localization for notifications, colors, and icons across multiple components

This commit is contained in:
Mo Tarbin
2026-08-18 00:06:34 -04:00
parent 77f87daeba
commit cc2e656e14
7 changed files with 97 additions and 16 deletions

View File

@@ -202,7 +202,7 @@ const AdvancedFilterBuilder = ({
{FILTER_COLORS.map(c => (
<Box
key={c.value}
title={t(`common:colors.${c.key}`)}
title={t(`common:colors.${c.name}`)}
onClick={() => setFilterColor(c.value)}
sx={{
width: 26,

View File

@@ -90,7 +90,7 @@ const IconPickerModal = ({
lineHeight: 1.2,
}}
>
{t(`icons.${iconData.key}`)}
{t(`icons.${iconData.value}`)}
</Typography>
</Box>
</Grid>