import type { Dictionary } from '@shoptet/ui-core-web'; export type PasswordFieldTranslations = { tooShort: string; weak: string; good: string; strong: string; }; export const dictionary: Dictionary = { 'en-US': { tooShort: 'Too short', weak: 'Weak', good: 'Good', strong: 'Strong', }, 'cs-CZ': { tooShort: 'Moc krátké', weak: 'Slabé', good: 'Dobré', strong: 'Silné', }, 'de-DE': { tooShort: 'Zu kurz', weak: 'Schwach', good: 'Gut', strong: 'Stark', }, 'hu-HU': { tooShort: 'Túl rövid', weak: 'Gyenge', good: 'Jó', strong: 'Erős', }, 'pl-PL': { tooShort: 'Za krótki', weak: 'Słaby', good: 'Dobry', strong: 'Silny', }, 'ro-RO': { tooShort: 'Prea scurt', weak: 'Slab', good: 'Bun', strong: 'Puternic', }, 'sk-SK': { tooShort: 'Príliš krátke', weak: 'Slabé', good: 'Dobré', strong: 'Silné', }, 'vi-VN': { tooShort: 'Quá ngắn', weak: 'Yếu', good: 'Tốt', strong: 'Mạnh', }, } as const;