import type { Dictionary } from '@shoptet/ui-core-web'; type ColorPaletteTranslations = { add: string; edit: string; close: string; addColor: string; addToMyColors: string; removeColor: (color: string) => string; swatchLabel: (color: string) => string; hexInputLabel: string; colorPickerLabel: string; }; export const dictionary: Dictionary = { 'en-US': { add: 'Add', edit: 'Edit', close: 'Close', addColor: 'Add color', addToMyColors: 'Add the selected color to my colors', removeColor: (color: string) => `Remove color #${color}`, swatchLabel: (color: string) => `Color #${color}`, hexInputLabel: 'Color hex value', colorPickerLabel: 'Open color picker', }, 'cs-CZ': { add: 'Přidat', edit: 'Upravit', close: 'Zavřít', addColor: 'Přidat barvu', addToMyColors: 'Přidat vybranou barvu do mých barev', removeColor: (color: string) => `Odebrat barvu #${color}`, swatchLabel: (color: string) => `Barva #${color}`, hexInputLabel: 'Hex hodnota barvy', colorPickerLabel: 'Otevřít výběr barvy', }, 'de-DE': { add: 'Hinzufügen', edit: 'Bearbeiten', close: 'Schließen', addColor: 'Farbe hinzufügen', addToMyColors: 'Ausgewählte Farbe zu meinen Farben hinzufügen', removeColor: (color: string) => `Farbe #${color} entfernen`, swatchLabel: (color: string) => `Farbe #${color}`, hexInputLabel: 'Hex-Wert der Farbe', colorPickerLabel: 'Farbauswahl öffnen', }, 'hu-HU': { add: 'Hozzáadás', edit: 'Szerkesztés', close: 'Bezárás', addColor: 'Szín hozzáadása', addToMyColors: 'A kiválasztott szín hozzáadása a színeimhez', removeColor: (color: string) => `#${color} szín eltávolítása`, swatchLabel: (color: string) => `#${color} szín`, hexInputLabel: 'Szín hex értéke', colorPickerLabel: 'Színválasztó megnyitása', }, 'pl-PL': { add: 'Dodaj', edit: 'Edytuj', close: 'Zamknij', addColor: 'Dodaj kolor', addToMyColors: 'Dodaj wybrany kolor do moich kolorów', removeColor: (color: string) => `Usuń kolor #${color}`, swatchLabel: (color: string) => `Kolor #${color}`, hexInputLabel: 'Wartość hex koloru', colorPickerLabel: 'Otwórz próbnik kolorów', }, 'ro-RO': { add: 'Adaugă', edit: 'Editează', close: 'Închide', addColor: 'Adaugă culoare', addToMyColors: 'Adaugă culoarea selectată la culorile mele', removeColor: (color: string) => `Elimină culoarea #${color}`, swatchLabel: (color: string) => `Culoarea #${color}`, hexInputLabel: 'Valoarea hex a culorii', colorPickerLabel: 'Deschide selectorul de culori', }, 'sk-SK': { add: 'Pridať', edit: 'Upraviť', close: 'Zavrieť', addColor: 'Pridať farbu', addToMyColors: 'Pridať vybranú farbu do mojich farieb', removeColor: (color: string) => `Odstrániť farbu #${color}`, swatchLabel: (color: string) => `Farba #${color}`, hexInputLabel: 'Hex hodnota farby', colorPickerLabel: 'Otvoriť výber farby', }, 'vi-VN': { add: 'Thêm', edit: 'Chỉnh sửa', close: 'Đóng', addColor: 'Thêm màu', addToMyColors: 'Thêm màu đã chọn vào màu của tôi', removeColor: (color: string) => `Xóa màu #${color}`, swatchLabel: (color: string) => `Màu #${color}`, hexInputLabel: 'Giá trị hex của màu', colorPickerLabel: 'Mở bộ chọn màu', }, } as const;