english.php 1.7 KB

123456789101112131415161718192021222324252627282930313233
  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['api_url'] = 'API URL';
  7. $strings['api_url_help'] = 'http://api.whispeak.io:8080/v1/';
  8. $strings['token'] = 'API key';
  9. $strings['instruction'] = '<p>Add <code>$_configuration[\'whispeak_auth_enabled\'] = true;</code>'.
  10. 'in the <code>configuration.php</code> file</p>';
  11. $strings['EnrollmentSampleText'] = 'The famous Mona Lisa painting was painted by Leonardo Da Vinci.';
  12. $strings['AuthentifySampleText1'] = 'Dropping Like Flies.';
  13. $strings['AuthentifySampleText2'] = 'Keep Your Eyes Peeled.';
  14. $strings['AuthentifySampleText3'] = 'The fox screams at midnight.';
  15. $strings['AuthentifySampleText4'] = 'Go Out On a Limb.';
  16. $strings['AuthentifySampleText5'] = 'Under the Water.';
  17. $strings['AuthentifySampleText6'] = 'Barking Up The Wrong Tree.';
  18. $strings['RepeatThisPhrase'] = 'Repeat this phrase three times after allowing audio recording:';
  19. $strings['EnrollmentSignature0'] = 'Unsustainable signature requires a new enrollment.';
  20. $strings['EnrollmentSignature1'] = 'Passable signature, advice to make a new enrollment.';
  21. $strings['EnrollmentSignature2'] = 'Correct signature.';
  22. $strings['EnrollmentSignature3'] = 'Good signature.';
  23. $strings['SpeechAuthAlreadyEnrolled'] = 'Speech authentication already enrolled previously.';
  24. $strings['SpeechAuthentication'] = 'Speech authentication';
  25. $strings['EnrollmentFailed'] = 'Enrollment failed.';
  26. $strings['EnrollmentSuccess'] = 'Enrollment success.';
  27. $strings['AuthentifyFailed'] = 'Login failed.';
  28. $strings['AuthentifySuccess'] = 'Authentication success!';
  29. $strings['TryAgain'] = 'Try again';