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
@@ -30,9 +30,7 @@ export const ShowInFileExplorerAction = ({ items }: ShowInFileExplorerActionProp
} catch (error) {
toast.error({
message: (error as Error).message,
title: t('error.openError', {
postProcess: 'sentenceCase',
}),
title: t('error.openError'),
});
}
}, [items, t]);
@@ -47,7 +45,7 @@ export const ShowInFileExplorerAction = ({ items }: ShowInFileExplorerActionProp
return (
<ContextMenu.Item disabled={isDisabled} leftIcon="folder" onSelect={onSelect}>
{t('page.itemDetail.openFile', { postProcess: 'sentenceCase' })}
{t('page.itemDetail.openFile')}
</ContextMenu.Item>
);
};