mirror of
https://github.com/jeffvli/feishin.git
synced 2026-06-12 23:32:19 +02:00
Use proper casing for i18n locales (#1998)
This commit is contained in:
@@ -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',
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user