123456789101112131415161718192021222324252627282930313233 |
- <?php
- /* For licensing terms, see /license.txt */
- $strings['plugin_title'] = 'Speech authentication with Whispeak';
- $strings['plugin_comment'] = 'Allow speech authentication in Chamilo.';
- $strings['enable'] = 'Enable';
- $strings['api_url'] = 'API URL';
- $strings['api_url_help'] = 'http://api.whispeak.io:8080/v1/';
- $strings['token'] = 'API key';
- $strings['instruction'] = '<p>Add <code>$_configuration[\'whispeak_auth_enabled\'] = true;</code>'.
- 'in the <code>configuration.php</code> file</p>';
- $strings['EnrollmentSampleText'] = 'The famous Mona Lisa painting was painted by Leonardo Da Vinci.';
- $strings['AuthentifySampleText1'] = 'Dropping Like Flies.';
- $strings['AuthentifySampleText2'] = 'Keep Your Eyes Peeled.';
- $strings['AuthentifySampleText3'] = 'The fox screams at midnight.';
- $strings['AuthentifySampleText4'] = 'Go Out On a Limb.';
- $strings['AuthentifySampleText5'] = 'Under the Water.';
- $strings['AuthentifySampleText6'] = 'Barking Up The Wrong Tree.';
- $strings['RepeatThisPhrase'] = 'Repeat this phrase three times after allowing audio recording:';
- $strings['EnrollmentSignature0'] = 'Unsustainable signature requires a new enrollment.';
- $strings['EnrollmentSignature1'] = 'Passable signature, advice to make a new enrollment.';
- $strings['EnrollmentSignature2'] = 'Correct signature.';
- $strings['EnrollmentSignature3'] = 'Good signature.';
- $strings['SpeechAuthAlreadyEnrolled'] = 'Speech authentication already enrolled previously.';
- $strings['SpeechAuthentication'] = 'Speech authentication';
- $strings['EnrollmentFailed'] = 'Enrollment failed.';
- $strings['EnrollmentSuccess'] = 'Enrollment success.';
- $strings['AuthentifyFailed'] = 'Login failed.';
- $strings['AuthentifySuccess'] = 'Authentication success!';
- $strings['TryAgain'] = 'Try again';
|