Issues (248)

web/js/partials/localization.js (1 issue)

Labels
Severity
1
Messages =
0 ignored issues
show
The variable Messages seems to be never declared. Assigning variables without defining them first makes them global. If this was intended, consider making it explicit like using window.Messages.
Loading history...
2
    {
3
        'en':
4
            {
5
                PROMO_NOT_VALID:'Not valid promotional code',
6
                FIELD_REQUIRED:'This field is required.',
7
                CORRECT_NAME:'Please specify the correct name.',
8
                CORRECT_SURNAME:'Please specify the correct surname.',
9
                CORRECT_EMAIL:'Please specify the correct email.',
10
                CORRECT_PHONE:'Please specify the correct phone.',
11
                CORRECT_MIN:'Minimum number of characters {0}.',
12
                CORRECT_MAX:'Maximum number of characters {0}.'
13
            },
14
15
        'uk':
16
            {
17
                PROMO_NOT_VALID:'Невірний промокод',
18
                FIELD_REQUIRED:'Це поле є обов\'язковим.',
19
                CORRECT_NAME:"Вкажіть правильне і'мя.",
20
                CORRECT_SURNAME:'Вкажіть правильне прізвище.',
21
                CORRECT_EMAIL:'Вкажіть правильний email.',
22
                CORRECT_PHONE:'Вкажіть правильний номер.',
23
                CORRECT_MIN:'Мінімальна кількість символів {0}.',
24
                CORRECT_MAX:'Максимальна кількість символів {0}.'
25
            }
26
    };
27