Remove useless translations

This commit is contained in:
ajnart
2023-01-08 16:24:01 +09:00
parent e2c0ee18ee
commit c71337bc99
3 changed files with 4 additions and 6 deletions

View File

@@ -1,11 +1,9 @@
{
"pageTitle": {
"label": "Page Title",
"placeholder": "Homarr"
"label": "Page Title"
},
"metaTitle": {
"label": "Meta Title",
"placeholder": "Homarr 🦞"
"label": "Meta Title"
},
"logo": {
"label": "Logo"

View File

@@ -36,7 +36,7 @@ export const MetaTitleChanger = ({ defaultValue }: MetaTitleChangerProps) => {
return (
<TextInput
label={t('metaTitle.label')}
placeholder={t('metaTitle.placeholder')}
placeholder="homarr - the best dashboard"
value={metaTitle}
onChange={handleChange}
/>

View File

@@ -36,7 +36,7 @@ export const PageTitleChanger = ({ defaultValue }: PageTitleChangerProps) => {
return (
<TextInput
label={t('pageTitle.label')}
placeholder={t('pageTitle.placeholder')}
placeholder="homarr"
value={pageTitle}
onChange={handleChange}
/>