import { type Dictionary, t } from 'intlayer';
export const breadCrumbContent = {
key: 'breadcrumb',
content: {
linkLabel: t({
en: 'Go to',
fr: 'Aller à',
es: 'Ir a',
'en-GB': 'Go to',
de: 'Gehe zu',
ja: 'に移動',
ko: '로 이동',
zh: '转到',
it: 'Vai a',
pt: 'Ir para',
hi: 'कर जाएं',
ar: 'اذهب إلى',
ru: 'Перейти на',
tr: 'Git',
pl: 'Przejdź do',
id: 'Pergi ke',
vi: 'Đi tới',
}),
},
title: 'Breadcrumb navigation',
description:
"Content declaration for the breadcrumb component's navigation label, used to guide users through hierarchical structures within the interface.",
tags: ['navigation', 'breadcrumb'],
} satisfies Dictionary;
export default breadCrumbContent;