import type { Dictionary } from '@shoptet/ui-core-web'; type ModalTranslations = { footerLabel: string; }; export const dictionary: Dictionary = { 'en-US': { footerLabel: 'Modal footer' }, 'cs-CZ': { footerLabel: 'Zápatí modálního okna' }, 'de-DE': { footerLabel: 'Modal-Fußzeile' }, 'hu-HU': { footerLabel: 'Modális ablak lábléce' }, 'pl-PL': { footerLabel: 'Stopka modalu' }, 'ro-RO': { footerLabel: 'Subsol modal' }, 'sk-SK': { footerLabel: 'Päta modálneho okna' }, 'vi-VN': { footerLabel: 'Chân trang modal' }, } as const;