import type { Dictionary } from '@shoptet/ui-core-web'; export type ReorderableListingTranslations = { dragHandle: string; hide: string; show: string; }; export const dictionary: Dictionary = { 'en-US': { dragHandle: 'Drag to reorder', hide: 'Hide', show: 'Show', }, 'cs-CZ': { dragHandle: 'Přetažením změníte pořadí', hide: 'Skrýt', show: 'Zobrazit', }, 'de-DE': { dragHandle: 'Zum Sortieren ziehen', hide: 'Ausblenden', show: 'Anzeigen', }, 'hu-HU': { dragHandle: 'Húzással átrendezhető', hide: 'Elrejtés', show: 'Megjelenítés', }, 'pl-PL': { dragHandle: 'Przeciągnij, aby zmienić kolejność', hide: 'Ukryj', show: 'Pokaż', }, 'ro-RO': { dragHandle: 'Trage pentru a reordona', hide: 'Ascunde', show: 'Afișează', }, 'sk-SK': { dragHandle: 'Potiahnutím zmeníte poradie', hide: 'Skryť', show: 'Zobraziť', }, 'vi-VN': { dragHandle: 'Kéo để sắp xếp lại', hide: 'Ẩn', show: 'Hiện', }, } as const;