@@ -64,7 +64,7 @@ Current progress is as follows:
64
64
- Properties of the ` Intl.NumberFormat ` Constructor ([ 11.2] ( http://www.ecma-international.org/ecma-402/1.0/#sec-11.2 ) )
65
65
- Properties of the ` Intl.NumberFormat ` Prototype Object ([ 11.3] ( http://www.ecma-international.org/ecma-402/1.0/#sec-11.3 ) )
66
66
- Properties of Intl.NumberFormat Instances([ 11.4] ( http://www.ecma-international.org/ecma-402/1.0/#sec-11.4 ) )
67
- - __ ` Intl.DateTimeFormat ` __
67
+ - __ ` Intl.DateTimeFormat ` __
68
68
- The ` Intl.DateTimeFormat ` constructor ([ 12.1] ( http://www.ecma-international.org/ecma-402/1.0/#sec-12.1 ) )
69
69
- Properties of the ` Intl.DateTimeFormat ` Constructor ([ 12.2] ( http://www.ecma-international.org/ecma-402/1.0/#sec-12.2 ) )
70
70
- Properties of the ` Intl.DateTimeFormat ` Prototype Object ([ 12.3] ( http://www.ecma-international.org/ecma-402/1.0/#sec-12.3 ) )
@@ -100,7 +100,7 @@ are several reasons, including:
100
100
- The CLDR convertor does not automatically convert collation data to JSON
101
101
- The Unicode Collation Algorithm is more complicated that originally anticipated,
102
102
and would increase the code size of Intl.js too much.
103
- - The Default Unicode Collation Element Table is huge, even after compression, and
103
+ - The Default Unicode Collation Element Table is huge, even after compression, and
104
104
converting to a native JavaScript object would probably make it slightly larger.
105
105
Server-side JavaScript environments will (hopefully) soon support Intl.Collator,
106
106
and we can't really expect client environments to download this data.
@@ -124,8 +124,8 @@ in the [tools](https://github.com/andyearnshaw/Intl.js/tree/master/tools) folder
124
124
125
125
The main ` Intl.js ` file contains no locale data itself. In browser environments, the
126
126
data should be provided, parsed into a JavaScript object, using the
127
- ` Intl.__addLocaleData() ` method. In Node.js, or when using ` Intl.complete.js ` , the data
128
- is pre-compiled into the end of the file and does not need to be provided.
127
+ ` Intl.__addLocaleData() ` method. In Node.js, or when using ` require('intl') ` , the data
128
+ is automatically added to the runtime and does not need to be provided.
129
129
130
130
Contents of the ` locale-data ` directory are a modified form of the Unicode CLDR
131
131
data found at http://www.unicode.org/cldr/data/ . See the ` LICENSE.txt ` file
0 commit comments