blob: 70a0ed41cecda75763984adde60c998e739f0baf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
validation_strings = {
update: '[% loc('Please enter a message') %]',
title: '[% loc('Please enter a subject') %]',
detail: '[% loc('Please enter some details') %]',
name: {
required: '[% loc('Please enter your name') %]',
validName: '[% loc('Please enter your full name, councils need this information – if you do not wish your name to be shown on the site, untick the box below') %]'
},
category: '[% loc('Please choose a category') %]',
rznvy: {
required: '[% loc('Please enter your email') %]',
email: '[% loc('Please enter a valid email') %]'
},
email: {
required: '[% loc('Please enter your email') %]',
email: '[% loc('Please enter a valid email') %]'
}
};
|