Przeglądaj źródła

fix i18n warning

kaori 4 lat temu
rodzic
commit
dec69d7309

+ 1 - 1
packages/app/src/components/Sidebar/PageTree/Item.tsx

@@ -221,7 +221,7 @@ const Item: FC<ItemProps> = (props: ItemProps) => {
       {isEnableActions && (
         <ClosableTextInput
           isShown={isNewPageInputShown}
-          placeholder={t('Input title')}
+          placeholder={t('Input page name')}
           onClickOutside={() => { setNewPageInputShown(false) }}
           onPressEnter={onPressEnterHandler}
           inputValidator={inputValidator}