import type { Dictionary } from '@shoptet/ui-core-web'; export type LoaderTranslations = { loading: string; }; export const dictionary: Dictionary = { 'en-US': { loading: 'Loading' }, 'cs-CZ': { loading: 'Načítání' }, 'de-DE': { loading: 'Wird geladen' }, 'hu-HU': { loading: 'Betöltés' }, 'pl-PL': { loading: 'Ładowanie' }, 'ro-RO': { loading: 'Se încarcă' }, 'sk-SK': { loading: 'Načítavanie' }, 'vi-VN': { loading: 'Đang tải' }, } as const;