fix typo errors (#279)

This commit is contained in:
Ilya Y 2023-10-24 13:43:52 +03:00 committed by GitHub
parent 7ec3be0b2f
commit 7b5324a728
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 4 deletions

View File

@ -183,8 +183,8 @@
"Join the global community of authors!": "Join the global community of authors from all over the world!",
"Just start typing...": "Just start typing...",
"Knowledge base": "Knowledge base",
"Last rev.": "Посл. изм.",
"Language": "Language",
"Last rev.": "Посл. изм.",
"Let's log in": "Let's log in",
"Link copied": "Link copied",
"Link sent, check your email": "Link sent, check your email",
@ -299,6 +299,7 @@
"Start conversation": "Start a conversation",
"Subsccriptions": "Subscriptions",
"Subscribe": "Subscribe",
"Subscribe to the best publications newsletter": "Subscribe to the best publications newsletter",
"Subscribe us": "Subscribe us",
"Subscribe what you like to tune your personal feed": "Subscribe to topics that interest you to customize your personal feed and get instant updates on new posts and discussions",
"Subscribe who you like to tune your personal feed": "Subscribe to authors you're interested in to customize your personal feed and get instant updates on new posts and discussions",

View File

@ -318,6 +318,7 @@
"Subheader": "Подзаголовок",
"Subscribe": "Подписаться",
"Subscribe to comments": "Подписаться на комментарии",
"Subscribe to the best publications newsletter": "Подпишитесь на рассылку лучших публикаций",
"Subscribe us": "Подпишитесь на нас",
"Subscribe what you like to tune your personal feed": "Подпишитесь на интересующие вас темы, чтобы настроить вашу персональную ленту и моментально узнавать о новых публикациях и обсуждениях",
"Subscribe who you like to tune your personal feed": "Подпишитесь на интересующих вас авторов, чтобы настроить вашу персональную ленту и моментально узнавать о новых публикациях и обсуждениях",

View File

@ -143,8 +143,8 @@ export const HeaderAuth = (props: Props) => {
<Show when={!session()}>
<div class={styles.userControlItem} onClick={handleBellIconClick}>
<div class={styles.button}>
<Icon name="bell-white" counter="1" class={styles.icon} />
<Icon name="bell-white-hover" counter="1" class={clsx(styles.icon, styles.iconHover)} />
<Icon name="bell-white" counter={1} class={styles.icon} />
<Icon name="bell-white-hover" counter={1} class={clsx(styles.icon, styles.iconHover)} />
</div>
</div>
</Show>

View File

@ -106,7 +106,7 @@ export const Subscribe = (props: Props) => {
<Icon name="arrow-right" />
</button>
</div>
<div class="description">Подпишитесь на рассылку лучших публикаций</div>
<div class="description">Подпишитесь на рассылку лучших публикаций</div>
</Show>
<Show when={emailError()}>
<div class={styles.error}>{emailError()}</div>