import type { SupportedLocale } from '@shoptet/ui-core-web'; export type PaginationPagesTranslations = { previousPage: string; nextPage: string; }; export const dictionary: Record = { 'en-US': { previousPage: 'Previous page', nextPage: 'Next page', }, 'cs-CZ': { previousPage: 'Předchozí stránka', nextPage: 'Další stránka', }, 'de-DE': { previousPage: 'Vorherige Seite', nextPage: 'Nächste Seite', }, 'hu-HU': { previousPage: 'Előző oldal', nextPage: 'Következő oldal', }, 'pl-PL': { previousPage: 'Poprzednia strona', nextPage: 'Następna strona', }, 'ro-RO': { previousPage: 'Pagina anterioară', nextPage: 'Pagina următoare', }, 'sk-SK': { previousPage: 'Predchádzajúca stránka', nextPage: 'Ďalšia stránka', }, 'vi-VN': { previousPage: 'Trang trước', nextPage: 'Trang tiếp theo', }, } as const;