Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class TestHostComponent {
});
loading = false;
errorsMessages = {
required: 'Заполните поле'
required: 'Обязательное поле'
};
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ describe('EvoControlErrorComponent', () => {
* @see evo-control-error.component.ts
*/
const defaultErrorMessages = {
required: 'Заполните поле',
required: 'Обязательное поле',
email: 'Неправильно указана почта',
phone: 'Введите телефон',
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export class EvoControlErrorComponent {
@Input() showCount = 1;

private defaultErrorMessages: IEvoControlError = {
required: 'Заполните поле',
required: 'Обязательное поле',
email: 'Неправильно указана почта',
phone: 'Введите телефон',
};
Expand Down
2 changes: 1 addition & 1 deletion src/stories/components/evo-autocomplete.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const searchParty$: Subject<string> = new Subject();
const searchFio$: Subject<string> = new Subject();

const errorsMessages = {
required: 'Заполните поле',
required: 'Обязательное поле',
};

export default {
Expand Down
Loading