From ffcaade413142dffe651281e93047d8d472b7a62 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Tue, 17 Jun 2014 23:51:45 +0200 Subject: [PATCH] Add locales directory and initial json file. --- app/coffee/modules/locales/.empty | 0 app/locales/en/app.json | 31 +++++++++++++++++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 app/coffee/modules/locales/.empty create mode 100644 app/locales/en/app.json diff --git a/app/coffee/modules/locales/.empty b/app/coffee/modules/locales/.empty new file mode 100644 index 00000000..e69de29b diff --git a/app/locales/en/app.json b/app/locales/en/app.json new file mode 100644 index 00000000..4790f011 --- /dev/null +++ b/app/locales/en/app.json @@ -0,0 +1,31 @@ +{ + "checksley": { + "defaultMessage": "This value seems to be invalid.", + "type-email": "This value should be a valid email.", + "type-url": "This value should be a valid url.", + "type-urlstrict": "This value should be a valid url.", + "type-number": "This value should be a valid number.", + "type-digits": "This value should be digits.", + "type-dateIso": "This value should be a valid date (YYYY-MM-DD).", + "type-alphanum": "This value should be alphanumeric.", + "type-phone": "This value should be a valid phone number.", + "notnull": "This value should not be null.", + "notblank": "This value should not be blank.", + "required": "This value is required.", + "regexp": "This value seems to be invalid.", + "min": "This value should be greater than or equal to %s.", + "max": "This value should be lower than or equal to %s.", + "range": "This value should be between %s and %s.", + "minlength": "This value is too short. It should have %s characters or more.", + "maxlength": "This value is too long. It should have %s characters or less.", + "rangelength": "This value length is invalid. It should be between %s and %s characters long.", + "mincheck": "You must select at least %s choices.", + "maxcheck": "You must select %s choices or less.", + "rangecheck": "You must select between %s and %s choices.", + "equalto": "This value should be the same." + }, + "pagination": { + "next": "Next", + "prev": "Previous" + } +}