import type { Dictionary } from '@shoptet/ui-core-web'; export type SectionTranslations = { previous: string; next: string; }; export const dictionary: Dictionary = { 'en-US': { previous: 'Previous', next: 'Next', }, 'cs-CZ': { previous: 'Předchozí', next: 'Další', }, 'de-DE': { previous: 'Vorherige', next: 'Nächste', }, 'hu-HU': { previous: 'Előző', next: 'Következő', }, 'pl-PL': { previous: 'Poprzednia', next: 'Następna', }, 'ro-RO': { previous: 'Anterior', next: 'Următorul', }, 'sk-SK': { previous: 'Predchádzajúca', next: 'Ďalšia', }, 'vi-VN': { previous: 'Trước', next: 'Kế tiếp', }, } as const;