import type { Dictionary } from '@shoptet/ui-core-web'; type BreadcrumbsTranslations = { homeLabel: string; navigationLabel: string; }; export const dictionary: Dictionary = { 'en-US': { homeLabel: 'Home', navigationLabel: 'Breadcrumb navigation', }, 'cs-CZ': { homeLabel: 'Domů', navigationLabel: 'Drobečková navigace', }, 'de-DE': { homeLabel: 'Startseite', navigationLabel: 'Brotkrümel-Navigation', }, 'hu-HU': { homeLabel: 'Főoldal', navigationLabel: 'Navigációs útvonal', }, 'pl-PL': { homeLabel: 'Strona główna', navigationLabel: 'Nawigacja okruszkowa', }, 'ro-RO': { homeLabel: 'Acasă', navigationLabel: 'Navigare breadcrumb', }, 'sk-SK': { homeLabel: 'Domov', navigationLabel: 'Navigácia drobčekov', }, 'vi-VN': { homeLabel: 'Trang chủ', navigationLabel: 'Điều hướng breadcrumb', }, } as const;