convert EN localization to use proper casing, remove postprocessing from renderer

This commit is contained in:
jeffvli
2026-04-29 13:37:57 -07:00
parent bc7ef0624b
commit 4424e9ae33
193 changed files with 2267 additions and 3399 deletions
@@ -31,12 +31,12 @@ const ActionRequiredRoute = () => {
const checks = [
{
component: <ServerCredentialRequired />,
title: t('error.credentialsRequired', { postProcess: 'sentenceCase' }),
title: t('error.credentialsRequired'),
valid: !isCredentialRequired,
},
{
component: <ServerRequired />,
title: t('error.serverRequired', { postProcess: 'serverRequired' }),
title: t('error.serverRequired'),
valid: !isServerRequired,
},
];
@@ -47,7 +47,7 @@ const ActionRequiredRoute = () => {
const handleManageServersModal = () => {
openModal({
children: <ServerList />,
title: t('page.appMenu.manageServers', { postProcess: 'sentenceCase' }),
title: t('page.appMenu.manageServers'),
});
};
@@ -79,9 +79,7 @@ const ActionRequiredRoute = () => {
onClick={handleManageServersModal}
variant="filled"
>
{t('page.appMenu.manageServers', {
postProcess: 'sentenceCase',
})}
{t('page.appMenu.manageServers')}
</Button>
</Group>
)}