mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-04-23 03:00:31 -04:00
add translations
This commit is contained in:
committed by
psychedelicious
parent
b8d37257c0
commit
168d8cbaa0
@@ -1,30 +1,32 @@
|
||||
import { Flex, UnorderedList, ListItem, Icon, Text } from '@invoke-ai/ui-library';
|
||||
import { useTranslation } from 'react-i18next';
|
||||
import { PiArrowSquareOutBold } from 'react-icons/pi';
|
||||
|
||||
export const CanvasV2Announcement = () => {
|
||||
const { t } = useTranslation();
|
||||
return (
|
||||
<Flex gap={4} flexDir="column">
|
||||
<UnorderedList fontSize="sm">
|
||||
<ListItem>A poweful new control canvas</ListItem>
|
||||
<ListItem>New layer types for even more control</ListItem>
|
||||
<ListItem>Support for the Flux family of models</ListItem>
|
||||
<ListItem>{t('whatsNew.canvasV2Announcement.newCanvas')}</ListItem>
|
||||
<ListItem>{t('whatsNew.canvasV2Announcement.newLayerTypes')}</ListItem>
|
||||
<ListItem>{t('whatsNew.canvasV2Announcement.fluxSupport')}</ListItem>
|
||||
</UnorderedList>
|
||||
<Flex flexDir="column" gap={1}>
|
||||
<Flex gap={2}>
|
||||
<Text as="a" target="_blank" href="" fontWeight="semibold">
|
||||
Read Release Notes
|
||||
<Text as="a" target="_blank" href="https://github.com/invoke-ai/InvokeAI/releases" fontWeight="semibold">
|
||||
{t('whatsNew.canvasV2Announcement.readReleaseNotes')}
|
||||
</Text>
|
||||
<Icon as={PiArrowSquareOutBold} />
|
||||
</Flex>
|
||||
<Flex gap={2}>
|
||||
<Text as="a" target="_blank" href="" fontWeight="semibold">
|
||||
Watch Release Video
|
||||
<Text as="a" target="_blank" href="https://www.youtube.com/@invokeai/videos" fontWeight="semibold">
|
||||
{t('whatsNew.canvasV2Announcement.watchReleaseVideo')}
|
||||
</Text>
|
||||
<Icon as={PiArrowSquareOutBold} />
|
||||
</Flex>
|
||||
<Flex gap={2}>
|
||||
<Text as="a" target="_blank" href="" fontWeight="semibold">
|
||||
Watch UI Updates Overview
|
||||
<Text as="a" target="_blank" href="https://www.youtube.com/@invokeai/videos" fontWeight="semibold">
|
||||
{t('whatsNew.canvasV2Announcement.watchUiUpdatesOverview')}
|
||||
</Text>
|
||||
<Icon as={PiArrowSquareOutBold} />
|
||||
</Flex>
|
||||
|
||||
Reference in New Issue
Block a user