diff --git a/src/components/Author/AuthorCard/AuthorCard.tsx b/src/components/Author/AuthorCard/AuthorCard.tsx
index 713605de..395498a3 100644
--- a/src/components/Author/AuthorCard/AuthorCard.tsx
+++ b/src/components/Author/AuthorCard/AuthorCard.tsx
@@ -193,12 +193,13 @@ export const AuthorCard = (props: Props) => {
{name()}
- {/*TODO: implement plurals by i18n*/}
{props.author.stat?.shouts} публикаций
+
+ {t('PublicationsWithCount', { count: props.author.stat?.shouts ?? 0 })}
+
) : (
''
)
diff --git a/src/components/Editor/Editor.tsx b/src/components/Editor/Editor.tsx
index 8b6ecfb5..817a570b 100644
--- a/src/components/Editor/Editor.tsx
+++ b/src/components/Editor/Editor.tsx
@@ -181,7 +181,7 @@ export const Editor = (props: Props) => {
})
.run()
} catch (error) {
- console.log('!!! Paste image Error:', error)
+ console.error('[Paste Image Error]:', error)
}
}
diff --git a/src/components/Topic/TopicBadge/TopicBadge.tsx b/src/components/Topic/TopicBadge/TopicBadge.tsx
index ee43e986..3d958645 100644
--- a/src/components/Topic/TopicBadge/TopicBadge.tsx
+++ b/src/components/Topic/TopicBadge/TopicBadge.tsx
@@ -56,7 +56,7 @@ export const TopicBadge = (props: Props) => {
when={props.topic.body}
fallback={
- {props.topic.stat.shouts ?? 0} {t('Publications')}
+ {t('PublicationsWithCount', { count: props.topic.stat.shouts ?? 0 })}
}
>
diff --git a/src/components/Views/Author/Author.tsx b/src/components/Views/Author/Author.tsx
index cd479d8f..73b15285 100644
--- a/src/components/Views/Author/Author.tsx
+++ b/src/components/Views/Author/Author.tsx
@@ -35,8 +35,6 @@ export const AuthorView = (props: Props) => {
const { page } = useRouter()
const author = createMemo(() => authorEntities()[props.authorSlug])
-
- console.log('!!! author:', author())
const [isLoadMoreButtonVisible, setIsLoadMoreButtonVisible] = createSignal(false)
const [isBioExpanded, setIsBioExpanded] = createSignal(false)
const [followers, setFollowers] = createSignal([])
diff --git a/src/pages/profile/profileSettings.page.tsx b/src/pages/profile/profileSettings.page.tsx
index 02326938..eddb61d0 100644
--- a/src/pages/profile/profileSettings.page.tsx
+++ b/src/pages/profile/profileSettings.page.tsx
@@ -123,7 +123,7 @@ export const ProfileSettingsPage = () => {
{t('Here you can customize your profile the way you want.')}