english.php 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. $strings['plugin_title'] = 'Speech authentication with Whispeak';
  4. $strings['plugin_comment'] = 'Allow speech authentication in Chamilo.';
  5. $strings['enable'] = 'Enable';
  6. $strings['enable_help'] = 'Add <code>$_configuration[\'whispeak_auth_enabled\'] = true;</code> in the <code>configuration.php</code> file';
  7. $strings['api_url'] = 'API URL';
  8. $strings['api_url_help'] = 'http://api.whispeak.io:8080/v1/';
  9. $strings['token'] = 'API key';
  10. $strings['max_attempts'] = 'Max attempts';
  11. $strings['max_attempts_help'] = '(Optional) If the Whispeak authentication is failed x times, then ask and verify the password of the user';
  12. $strings['2fa'] = 'Two-Factor Authentication';
  13. $strings['2fa_help'] = 'Allows extend the login page with a Two-Factor Authentication process. After the classic login, the user must authenticate through Whispeak.';
  14. $strings['EnrollmentSampleText'] = 'The famous Mona Lisa painting was painted by Leonardo Da Vinci.';
  15. $strings['AuthentifySampleText1'] = 'Dropping Like Flies.';
  16. $strings['AuthentifySampleText2'] = 'Keep Your Eyes Peeled.';
  17. $strings['AuthentifySampleText3'] = 'The fox screams at midnight.';
  18. $strings['AuthentifySampleText4'] = 'Go Out On a Limb.';
  19. $strings['AuthentifySampleText5'] = 'Under the Water.';
  20. $strings['AuthentifySampleText6'] = 'Barking Up The Wrong Tree.';
  21. $strings['RepeatThisPhrase'] = 'Repeat this phrase three times after allowing audio recording:';
  22. $strings['EnrollmentSignature0'] = 'Unsustainable signature requires a new enrollment.';
  23. $strings['EnrollmentSignature1'] = 'Passable signature, advice to make a new enrollment.';
  24. $strings['EnrollmentSignature2'] = 'Correct signature.';
  25. $strings['EnrollmentSignature3'] = 'Good signature.';
  26. $strings['SpeechAuthAlreadyEnrolled'] = 'Speech authentication already enrolled previously.';
  27. $strings['SpeechAuthNotEnrolled'] = 'Speech authentication not enrolled previously.';
  28. $strings['SpeechAuthentication'] = 'Speech authentication';
  29. $strings['EnrollmentFailed'] = 'Enrollment failed.';
  30. $strings['EnrollmentSuccess'] = 'Enrollment success.';
  31. $strings['AuthentifyFailed'] = 'Login failed.';
  32. $strings['AuthentifySuccess'] = 'Authentication success!';
  33. $strings['TryAgain'] = 'Try again';
  34. $strings['MaxAttemptsReached'] = 'You reached the maximum number of attempts allowed.';
  35. $strings['LoginWithUsernameAndPassword'] = 'You should login using the username and password.';
  36. $strings['YouNeedToIdentifyYourselfToAnswerThisQuestion'] = 'You need to identify yourself to answer this question.';
  37. $strings['IdentifyMe'] = 'Identify me';
  38. $strings['PleaseWaitWhileLoading'] = "Please wait while loading...";
  39. $strings['Quality'] = 'Quality';
  40. $strings['Failed'] = "Failed";
  41. $strings['ActivityId'] = "Activity ID";
  42. $strings['Success'] = "Success";
  43. $strings['AudioQualityShort'] = 'Too short audio';
  44. $strings['AudioQualityQuiet'] = 'Too quiet audio';
  45. $strings['AudioQualityLoud'] = 'Too loud audio';
  46. $strings['AudioQualityNoisy'] = 'Too noisy audio';
  47. $strings['AudioQualityFrequency'] = 'Missing some audio frequencies';
  48. $strings['AudioQualityPoorness'] = 'Too poor general audio quality';
  49. $strings['AgreeAllowResearch'] = 'I agree to allow the use of data for research (no commercial usage).';
  50. $strings['MarkForSpeechAuthentication'] = 'Mark it for speech authentication';