$ret = '{CRYPT}' . crypt($pass,GenerateRandomString(2,$extra_salt_chars,7));
} else {
array_push($msgs,sprintf(_("Unsupported crypto: %s"),'crypt')
- . _("System crypt library doesn't support standard des crypt."));
+ . _("System crypt library doesn't support standard DES crypt."));
}
break;
case 'md5crypt':
$ret = '{CRYPT}' . crypt($pass,'$1$' . GenerateRandomString(9,$extra_salt_chars,7));
} else {
array_push($msgs,sprintf(_("Unsupported crypto: %s"),'md5crypt')
- . _("System crypt library doesn't have md5 support."));
+ . _("System crypt library doesn't have MD5 support."));
}
break;
case 'extcrypt':
$ret = '{CRYPT}' . crypt($pass,'_' . GenerateRandomString(8,$extra_salt_chars,7));
} else {
array_push($msgs,sprintf(_("Unsupported crypto: %s"),'ext_des')
- . _("System crypt library doesn't support extended des crypt."));
+ . _("System crypt library doesn't support extended DES crypt."));
}
break;
case 'blowfish':
// FIXME: guinea pigs with blowfish support needed.
$ret = '{CRYPT}' . crypt($pass,'$2$' . GenerateRandomString(13,$extra_salt_chars,7));
} else {
- array_push($msgs,sprintf(_("Unsupported crypto: %s"),'blowfish')
- . _("System crypt library doesn't have blowfish support."));
+ array_push($msgs,sprintf(_("Unsupported crypto: %s"),'Blowfish')
+ . _("System crypt library doesn't have Blowfish support."));
}
break;
case 'plaintext':
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2005-02-27 23:00+0100\n"
+"POT-Creation-Date: 2005-02-27 23:42+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
msgid "PHP mhash extension is missing."
msgstr ""
-msgid "System crypt library doesn't support standard des crypt."
+msgid "System crypt library doesn't support standard DES crypt."
msgstr ""
-msgid "System crypt library doesn't have md5 support."
+msgid "System crypt library doesn't have MD5 support."
msgstr ""
-msgid "System crypt library doesn't support extended des crypt."
+msgid "System crypt library doesn't support extended DES crypt."
msgstr ""
-msgid "System crypt library doesn't have blowfish support."
+msgid "System crypt library doesn't have Blowfish support."
msgstr ""
msgid "unknown"