STUB Hungarian language file
This commit is contained in:
parent
755aad04f2
commit
016b19a75e
1 changed files with 24 additions and 0 deletions
24
languages/LanguageHu.php
Normal file
24
languages/LanguageHu.php
Normal 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;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
Loading…
Reference in a new issue