Reduce data size a bit by using unescaped unicode

This commit is contained in:
Niklas Laxström
2013-11-01 08:45:32 +00:00
parent 5444e17727
commit 67cc85f5ee
2 changed files with 2 additions and 2 deletions

View File

@@ -70,7 +70,7 @@ foreach ( $supplementalData->territoryInfo->territory as $territoryRecord ) {
}
print "Writing JSON langdb...\n";
$json = json_encode( $parsedLangdb );
$json = json_encode( $parsedLangdb, JSON_UNESCAPED_UNICODE );
$js = <<<JAVASCRIPT
// Please do not edit. This file is generated from data/langdb.yaml by ulsdata2json.php
( function ( $ ) {

File diff suppressed because one or more lines are too long