import type { Dictionary } from '@shoptet/ui-core-web'; export type SectionControlsTranslations = { moreFunctions: string; closeMenu: string; }; export const dictionary: Dictionary = { 'en-US': { moreFunctions: 'More functions', closeMenu: 'Close menu', }, 'cs-CZ': { moreFunctions: 'Více funkcí', closeMenu: 'Zavřít menu', }, 'de-DE': { moreFunctions: 'Mehr Funktionen', closeMenu: 'Menü schließen', }, 'hu-HU': { moreFunctions: 'További funkciók', closeMenu: 'Menü bezárása', }, 'pl-PL': { moreFunctions: 'Więcej funkcji', closeMenu: 'Zamknij menu', }, 'ro-RO': { moreFunctions: 'Mai multe funcții', closeMenu: 'Închideți meniul', }, 'sk-SK': { moreFunctions: 'Viac funkcií', closeMenu: 'Zavrieť menu', }, 'vi-VN': { moreFunctions: 'Nhiều chức năng hơn', closeMenu: 'Đóng menu', }, } as const;