import type { Dictionary } from '@shoptet/ui-core-web'; export type TableEmptyTranslations = { noEntriesFound: string; }; export const dictionary: Dictionary = { 'en-US': { noEntriesFound: 'No entries found...', }, 'cs-CZ': { noEntriesFound: 'Záznamy nebyly nalezeny...', }, 'de-DE': { noEntriesFound: 'Keine Einträge gefunden...', }, 'hu-HU': { noEntriesFound: 'Bejegyzés nem található...', }, 'pl-PL': { noEntriesFound: 'Wpisy nie zostały znalezione…', }, 'ro-RO': { noEntriesFound: 'Nu s-au găsit înregistrări...', }, 'sk-SK': { noEntriesFound: 'Záznamy neboli nájdené...', }, 'vi-VN': { noEntriesFound: 'Không tìm thấy mục nào...', }, } as const;