Merge pull request #115 from Nikerabbit/master

Reduce data size a bit by using unescaped unicode
This commit is contained in:
Santhosh Thottingal
2013-11-01 02:01:36 -07:00
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"; print "Writing JSON langdb...\n";
$json = json_encode( $parsedLangdb ); $json = json_encode( $parsedLangdb, JSON_UNESCAPED_UNICODE );
$js = <<<JAVASCRIPT $js = <<<JAVASCRIPT
// Please do not edit. This file is generated from data/langdb.yaml by ulsdata2json.php // Please do not edit. This file is generated from data/langdb.yaml by ulsdata2json.php
( function ( $ ) { ( function ( $ ) {

File diff suppressed because one or more lines are too long