correct language link in header notification (#29799)

This commit is contained in:
Peter Bengtsson 2022-08-10 17:52:24 +02:00 коммит произвёл GitHub
Родитель 101e7155c8
Коммит 5084160024
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -31,9 +31,13 @@ export const HeaderNotifications = () => {
const translationNotices: Array<Notif> = []
if (router.locale === 'en') {
if (userLanguage && userLanguage !== 'en') {
let href = `/${userLanguage}`
if (currentPathWithoutLanguage !== '/') {
href += currentPathWithoutLanguage
}
translationNotices.push({
type: NotificationType.TRANSLATION,
content: `This article is also available in <a href="/${userLanguage}${currentPathWithoutLanguage}">${languages[userLanguage]?.name}</a>.`,
content: `This article is also available in <a href="${href}">${languages[userLanguage]?.name}</a>.`,
})
}
} else {