Co-authored-by: Kevin Heis <heiskr@users.noreply.github.com>
This commit is contained in:
Peter Bengtsson 2023-11-13 13:03:57 -05:00 коммит произвёл GitHub
Родитель 14ce71e813
Коммит f86ebbca67
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 5 добавлений и 1 удалений

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

@ -16,6 +16,7 @@ header:
ghes_release_notes_upgrade_patch_and_release: 📣 This is not the <a href="#{{ latestPatch }}">latest patch release</a> of this release series, and this is not the <a href="/enterprise-server@{{ latestRelease }}/admin/release-notes">latest release</a> of Enterprise Server.
sign_up_cta: Sign up
menu: Menu
go_home: Home
picker:
language_picker_label: Language
product_picker_default_text: All products

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

@ -2,10 +2,12 @@ import { useRouter } from 'next/router'
import { ArrowLeftIcon } from '@primer/octicons-react'
import { DEFAULT_VERSION, useVersion } from 'src/versions/components/useVersion'
import { Link } from 'src/frame/components/Link'
import { useTranslation } from 'src/languages/components/useTranslation'
export const AllProductsLink = () => {
const router = useRouter()
const { currentVersion } = useVersion()
const { t } = useTranslation('header')
const currentVersionPathSegment = currentVersion === DEFAULT_VERSION ? '' : `/${currentVersion}`
return (
@ -15,7 +17,7 @@ export const AllProductsLink = () => {
className="f6 pl-2 pr-5 ml-n1 pb-1 Link--primary color-fg-default"
>
<ArrowLeftIcon size="small" className="mr-1" />
Home
{t('go_home')}
</Link>
</div>
)

1
tests/fixtures/data/ui.yml поставляемый
Просмотреть файл

@ -16,6 +16,7 @@ header:
ghes_release_notes_upgrade_patch_and_release: 📣 This is not the <a href="#{{ latestPatch }}">latest patch release</a> of this release series, and this is not the <a href="/enterprise-server@{{ latestRelease }}/admin/release-notes">latest release</a> of Enterprise Server.
sign_up_cta: Sign up
menu: Menu
go_home: Home
picker:
language_picker_label: Language
product_picker_default_text: All products