aboutsummaryrefslogtreecommitdiffstats
path: root/www/js
diff options
context:
space:
mode:
Diffstat (limited to 'www/js')
-rw-r--r--www/js/strings.js25
1 files changed, 25 insertions, 0 deletions
diff --git a/www/js/strings.js b/www/js/strings.js
new file mode 100644
index 0000000..1e2f727
--- /dev/null
+++ b/www/js/strings.js
@@ -0,0 +1,25 @@
+;(function (FMS, _) {
+ _.extend( FMS, {
+ validationStrings: {
+ update: 'Please enter a message',
+ title: 'Please enter a subject',
+ detail: 'Please enter some details',
+ name: {
+ required: 'Please enter your name',
+ validName: '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: 'Please choose a category',
+ rznvy: {
+ required: 'Please enter your email',
+ email: 'Please enter a valid email'
+ },
+ email: {
+ required: 'Please enter your email',
+ email: 'Please enter a valid email'
+ },
+ password: 'Please enter a password'
+ },
+ strings: {
+ }
+ })
+})(FMS, _);