1<?php 2/** 3 * english language file 4 * 5 * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) 6 * @author René Drießel <rene@driessel.de> 7 */ 8 9$lang['no_ssl'] = 'You access this page without the usage of SSL. The password will transmitted unencrypted.'; 10$lang['standard_hint'] = 'Please Input Your Secret.'; 11 12$lang['js']['input_secret'] = 'Secret'; 13$lang['js']['repeat_secret'] = 'Repeat'; 14 15$lang['js']['encrypt_button'] = 'Encrypt'; 16$lang['js']['decrypt_button'] = 'Decrypt'; 17 18$lang['js']['encrypt_secrets_dont_match'] = 'Secrets do not match!'; 19$lang['js']['decrypt_wrong_secret'] = 'Wrong Secret!'; 20 21$lang['js']['encrypt_dialog_title'] = 'Please Input Your Secret'; 22$lang['js']['decrypt_dialog_title'] = 'Please Input Your Secret'; 23