Working on Russian translation found this little typos in English language file.
phpMyAdmin 3.2.3
Line 1037:
$strSetupServers_connect_type_desc = 'How to connect to server, keep [kdb]tcp[/kdb] if unsure';
[kdb] - is a mistake; have to be [kbd]. So:
$strSetupServers_connect_type_desc = 'How to connect to server, keep [kbd]tcp[/kbd] if unsure';
Line 1081:
$strSetupServers_ssl_desc = '';
Empty string. Can be something like:
$strSetupServers_ssl_desc = 'Enable SSL for connection to MySQL server';
Fixed in subversion, thanks for reporting.