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
@@ -275,7 +275,7 @@ export function VirtualMultiSelect<T>({
) : stableOptions.length === 0 ? (
<Center h="100%" w="100%">
<Text isMuted isNoSelect size="sm">
{t('common.noResultsFromQuery', { postProcess: 'sentenceCase' })}
{t('common.noResultsFromQuery')}
</Text>
</Center>
) : (
@@ -12,11 +12,11 @@ export const YesNoSelect = ({ ...props }: YesNoSelectProps) => {
clearable
data={[
{
label: t('common.no', { postProcess: 'sentenceCase' }),
label: t('common.no'),
value: 'false',
},
{
label: t('common.yes', { postProcess: 'sentenceCase' }),
label: t('common.yes'),
value: 'true',
},
]}