@@ -33,7 +33,7 @@ Additionally, the library requires you to load:
3333* The ` weekData ` for the day of week formatting.
3434
3535``` javascript
36- import { load } from ' @telerik /kendo-intl' ;
36+ import { load } from ' @progress /kendo-intl' ;
3737
3838load (
3939 require (" cldr-data/supplemental/likelySubtags.json" ),
@@ -55,7 +55,7 @@ For more examples and available configuration options, refer to the article on [
5555Date parsing converts a string into a ` Date ` object by using the specific settings of the locale.
5656
5757``` js
58- import { parseDate } from ' @telerik /kendo-intl' ;
58+ import { parseDate } from ' @progress /kendo-intl' ;
5959
6060parseDate (" 11/6/2000" , [" G" , " d" ]); // Mon Nov 06 2000
6161parseDate (" Montag, 6.11.2000" , " EEEE, d.MM.y" , " de" ); // Mon Nov 06 2000
@@ -69,7 +69,7 @@ For more examples and available configuration options, refer to the article on [
6969Date formatting converts a ` Date ` object into a human-readable string by using the specific settings of the locale.
7070
7171``` js
72- import { formatDate } from ' @telerik /kendo-intl' ;
72+ import { formatDate } from ' @progress /kendo-intl' ;
7373
7474formatDate (new Date (2000 , 10 , 6 ), " d" ); // 11/6/2000
7575formatDate (new Date (2000 , 10 , 6 ), " yMd" , " de" ); // 6.11.2000
@@ -83,7 +83,7 @@ For more examples and available configuration options, refer to the article on [
8383Number parsing converts a string into a ` Number ` object by using the specific settings of the locale.
8484
8585``` js
86- import { parseNumber } from ' @telerik /kendo-intl' ;
86+ import { parseNumber } from ' @progress /kendo-intl' ;
8787
8888parseNumber (" 12.22" ); // 12.22
8989parseNumber (" 1.212,22 €" , " de" ); // 1212.22
@@ -98,7 +98,7 @@ For more examples and available configuration options, refer to the article on [
9898Number formatting converts a ` Number ` object into a human-readable string using the specific settings of the locale.
9999
100100``` js
101- import { formatNumber } from ' @telerik /kendo-intl' ;
101+ import { formatNumber } from ' @progress /kendo-intl' ;
102102
103103formatNumber (1234.567 , " n2" ); // 1,234.57
104104
@@ -120,7 +120,7 @@ For more examples and available configuration options, refer to the article on [
120120General formatting provides methods for independent placeholder and type formatting by using the specific settings of the locale.
121121
122122``` js
123- import { format , toString } from ' @telerik /kendo-intl' ;
123+ import { format , toString } from ' @progress /kendo-intl' ;
124124
125125format (' Date: {0:d} - Price: {1:c}' , [new Date (), 10.5 ], " en" ) // Date: 1/5/2017 - Price: $10.50
126126
@@ -138,20 +138,20 @@ For more examples and available configuration options, refer to the article on [
1381382 . Download and install the module:
139139
140140 ``` bash
141- npm install --save ' @telerik /kendo-intl' ;
141+ npm install --save ' @progress /kendo-intl' ;
142142 ```
143143
1441443. Once installed, import the Internationalization in your application root module:
145145
146146 ` ` ` javascript
147147 // ES2015 module syntax
148- import { formatDate, parseDate } from ' @telerik /kendo-intl' ;
148+ import { formatDate, parseDate } from ' @progress /kendo-intl' ;
149149 //or
150- import { formatNumber, parseNumber } from ' @telerik /kendo-intl' ;
150+ import { formatNumber, parseNumber } from ' @progress /kendo-intl' ;
151151 ` ` `
152152 ` ` ` javascript
153153 // CommonJS format
154- var numbers = require(' @telerik /kendo-intl/number' ).numbers;
154+ var numbers = require(' @progress /kendo-intl/number' ).numbers;
155155 //or
156- var dates = require(' @telerik /kendo-intl/dates' ).dates;
156+ var dates = require(' @progress /kendo-intl/dates' ).dates;
157157 ` ` `
0 commit comments