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

50 lines
1.3 KiB
JavaScript
Raw Normal View History

2016-05-05 13:00:58 +00:00
'use strict';
angular.module('forms').config(['$translateProvider', function ($translateProvider) {
$translateProvider.translations('english', {
FORM_SUCCESS: 'Form entry successfully submitted!',
2016-05-05 13:00:58 +00:00
SUBMIT: 'Submit',
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-09 16:14:00 +00:00
UPLOAD_FILE: 'Upload your File',
2016-05-25 20:16:19 +00:00
<<<<<<< 04151ddc774be8fe7230557c3695e9d16fade1e6
2016-05-09 16:14:00 +00:00
<<<<<<< 0e63943bc6423cb59a8a1be0d0fc09f1cd9fcfcd
=======
SUBMIT: 'Submit'
>>>>>>> translate submit button
2016-05-25 20:16:19 +00:00
=======
SUBMIT: 'Submit',
Y: 'Y',
N: 'N',
YES: 'Yes',
NO: 'No'
>>>>>>> translate yes/no field
2016-05-05 13:00:58 +00:00
});
$translateProvider.preferredLanguage('english')
.fallbackLanguage('english')
.useSanitizeValueStrategy('escape');
2016-05-09 16:14:00 +00:00
2016-05-05 13:00:58 +00:00
}]);