STUB Hungarian language file

This commit is contained in:
Brion Vibber 2003-07-08 10:10:05 +00:00
parent 755aad04f2
commit 016b19a75e

24
languages/LanguageHu.php Normal file
View file

@ -0,0 +1,24 @@
<?
# See language.doc
include_once("Utf8Case.php");
class LanguageHu extends LanguageUtf8 {
# Inherit everything
function checkTitleEncoding( $s ) {
global $wgInputEncoding;
# Check for non-UTF-8 URLs; assume they are 8859-2
$ishigh = preg_match( '/[\x80-\xff]/', $s);
$isutf = ($ishigh ? preg_match( '/^([\x00-\x7f]|[\xc0-\xdf][\x80-\xbf]|' .
'[\xe0-\xef][\x80-\xbf]{2}|[\xf0-\xf7][\x80-\xbf]{3})+$/', $s ) : true );
if( $ishigh and !$isutf )
return iconv( "iso8859-2", "utf-8", $s );
return $s;
}
}
?>