Use proper casing for i18n locales (#1998)

This commit is contained in:
Jeff
2026-05-11 19:42:07 -07:00
committed by GitHub
parent e49e488b4c
commit e2a1d813a9
224 changed files with 17323 additions and 18474 deletions
@@ -56,7 +56,7 @@ export const FolderListHeaderFilters = () => {
onClick: () => void;
}> = [];
const homeLabel = t('common.home', { postProcess: 'titleCase' });
const homeLabel = t('common.home');
items.push({
fullLabel: homeLabel,
id: 'folder-root',
@@ -18,7 +18,7 @@ interface FolderListHeaderProps {
export const FolderListHeader = ({ title }: FolderListHeaderProps) => {
const { t } = useTranslation();
const pageTitle = title || t('page.folderList.title', { postProcess: 'titleCase' });
const pageTitle = title || t('page.folderList.title');
return (
<Stack gap={0}>