tellform/public/modules/forms/base/config/i18n/english.js

37 lines
1.1 KiB
JavaScript
Raw Normal View History

2016-05-05 13:00:58 +00:00
'use strict';
angular.module('forms').config(['$translateProvider', function ($translateProvider) {
2016-06-16 00:38:22 +00:00
$translateProvider.translations('en', {
2016-05-05 13:00:58 +00:00
FORM_SUCCESS: 'Form entry successfully submitted!',
2016-05-05 13:00:58 +00:00
REVIEW: 'Review',
2016-05-05 13:00:58 +00:00
BACK_TO_FORM: 'Go back to Form',
EDIT_FORM: 'Edit this TellForm',
CREATE_FORM: 'Create this TellForm',
ADVANCEMENT: '{{done}} out of {{total}} answered',
CONTINUE_FORM: 'Continue to Form',
REQUIRED: 'required',
2016-05-05 13:00:58 +00:00
COMPLETING_NEEDED: '{{answers_not_completed}} answer(s) need completing',
2016-05-05 13:00:58 +00:00
OPTIONAL: 'optional',
ERROR_EMAIL_INVALID: 'Please enter a valid email address',
ERROR_NOT_A_NUMBER: 'Please enter valid numbers only',
ERROR_URL_INVALID: 'Please a valid url',
OK: 'OK',
ENTER: 'press ENTER',
2016-05-05 13:00:58 +00:00
YES: 'Yes',
NO: 'No',
NEWLINE: 'press SHIFT+ENTER to create a newline',
2016-05-05 13:00:58 +00:00
CONTINUE: 'Continue',
LEGAL_ACCEPT: 'I accept',
LEGAL_NO_ACCEPT: 'I dont accept',
DELETE: 'Delete',
CANCEL: 'Cancel',
2016-05-25 20:16:19 +00:00
SUBMIT: 'Submit',
UPLOAD_FILE: 'Upload your File',
TYPE_OR_SELECT_OPTION: 'Type or select an option',
ABORT_UPLOAD: 'Abort ongoing upload',
CLEAR_SELECTED_FILES: 'Clear selected files'
2016-05-05 13:00:58 +00:00
});
2016-05-05 13:00:58 +00:00
}]);