diff --git a/src/components/Apps/AppsCategoryDesktop.tsx b/src/components/Apps/AppsCategoryDesktop.tsx index bd52a53..4c4a541 100644 --- a/src/components/Apps/AppsCategoryDesktop.tsx +++ b/src/components/Apps/AppsCategoryDesktop.tsx @@ -145,7 +145,9 @@ export const AppsCategoryDesktop = ({ postProcess: 'capitalizeFirstChar', })} inputProps={{ - 'aria-label': 'Search for apps', + 'aria-label': t('core:action.search_apps', { + postProcess: 'capitalizeFirstChar', + }), fontSize: '16px', fontWeight: 400, }} diff --git a/src/components/Chat/ChatOptions.tsx b/src/components/Chat/ChatOptions.tsx index a79a4a2..f4dfb9c 100644 --- a/src/components/Chat/ChatOptions.tsx +++ b/src/components/Chat/ChatOptions.tsx @@ -426,7 +426,9 @@ export const ChatOptions = ({ postProcess: 'capitalizeFirstChar', })} inputProps={{ - 'aria-label': 'Search for apps', + 'aria-label': t('core:action.search_apps', { + postProcess: 'capitalizeFirstChar', + }), fontSize: '16px', fontWeight: 400, }} diff --git a/src/components/Group/AddGroup.tsx b/src/components/Group/AddGroup.tsx index 2028dea..1916aaa 100644 --- a/src/components/Group/AddGroup.tsx +++ b/src/components/Group/AddGroup.tsx @@ -433,7 +433,7 @@ export const AddGroup = ({ address, open, setOpen }) => { }} > - {t('group:approval_threshold', { + {t('group:message.generic.group_approval_threshold', { postProcess: 'capitalizeFirstChar', })} @@ -442,7 +442,9 @@ export const AddGroup = ({ address, open, setOpen }) => { labelId="demo-simple-select-label" id="demo-simple-select" value={approvalThreshold} - label="Group Approval Threshold" + label={t('group:group.approval_threshold', { + postProcess: 'capitalizeFirstChar', + })} onChange={handleChangeApprovalThreshold} > diff --git a/src/components/Group/AddGroupList.tsx b/src/components/Group/AddGroupList.tsx index 64c4b3b..eaa7f4d 100644 --- a/src/components/Group/AddGroupList.tsx +++ b/src/components/Group/AddGroupList.tsx @@ -312,9 +312,15 @@ export const AddGroupList = ({ setInfoSnack, setOpenSnack }) => { flexGrow: 1, }} > - Groups list + + {t('core:list.groups', { + postProcess: 'capitalizeFirstChar', + })} + { setCurrentTab(newValue)} sx={{ mt: 2, mb: 2 }} > - - + + @@ -412,6 +422,7 @@ export default function ThemeManager() { setOpenEditor(false)}> {t('core:action.cancel', { postProcess: 'capitalizeFirstChar' })} + { const { t } = useTranslation(['auth', 'core', 'group']); - const { themeMode, toggleTheme } = useThemeContext(); return ( @@ -22,10 +21,10 @@ const ThemeSelector = () => {
Groups list
+ {t('core:list.groups', { + postProcess: 'capitalizeFirstChar', + })} +