Added public methods and fixed bugs

This commit is contained in:
MaxOvs
2023-01-11 18:41:33 +03:00
parent 7b057ab486
commit f72084e44e
3 changed files with 100 additions and 27 deletions

View File

@@ -0,0 +1,13 @@
import { ILanguage } from '../interfaces/language.interface';
export const ru: ILanguage = {
selectPlaceholder: 'Выберите элемент...',
placeholder: 'Поиск...',
textInListSearch: 'Совпадений нет...',
};
export const en: ILanguage = {
selectPlaceholder: 'Select element...',
placeholder: 'Search...',
textInListSearch: 'No matches...',
};