Remove useless translations

This commit is contained in:
Thomas Camlong
2022-11-02 16:56:50 +09:00
committed by GitHub
parent ea02cca452
commit 69298142b7

View File

@@ -47,22 +47,22 @@ export default function TitleChanger() {
<Stack> <Stack>
<TextInput <TextInput
label={t('pageTitle.label')} label={t('pageTitle.label')}
placeholder={t('pageTitle.placeholder')} placeholder={'Homarr 🦞'}
{...form.getInputProps('title')} {...form.getInputProps('title')}
/> />
<TextInput <TextInput
label={t('logo.label')} label={t('logo.label')}
placeholder={t('logo.placeholder')} placeholder={'/imgs/logo.png}
{...form.getInputProps('logo')} {...form.getInputProps('logo')}
/> />
<TextInput <TextInput
label={t('favicon.label')} label={t('favicon.label')}
placeholder={t('favicon.placeholder')} placeholder={'/imgs/favicon/favicon.png'}
{...form.getInputProps('favicon')} {...form.getInputProps('favicon')}
/> />
<TextInput <TextInput
label={t('background.label')} label={t('background.label')}
placeholder={t('background.placeholder')} placeholder={'/img/background.png'}
{...form.getInputProps('background')} {...form.getInputProps('background')}
/> />
<Textarea <Textarea