import type { SupportedLocale } from '@shoptet/ui-core-web'; export type PaginationLimitsTranslations = { itemsPerPage: string; }; export const dictionary: Record = { 'en-US': { itemsPerPage: 'Items per page', }, 'cs-CZ': { itemsPerPage: 'Položek na stránku', }, 'de-DE': { itemsPerPage: 'Elemente pro Seite', }, 'hu-HU': { itemsPerPage: 'Elemek oldalanként', }, 'pl-PL': { itemsPerPage: 'Elementy na stronie', }, 'ro-RO': { itemsPerPage: 'Elemente pe pagină', }, 'sk-SK': { itemsPerPage: 'Položiek na stránku', }, 'vi-VN': { itemsPerPage: 'Số mục trên mỗi trang', }, } as const;