diff options
| author | Maarten Stolte | 2013-09-19 10:09:30 +0200 |
|---|---|---|
| committer | Pete Bacon Darwin | 2013-09-19 11:06:59 +0100 |
| commit | 80ab7eaf150294558405ee124c4aa9c384578b2a (patch) | |
| tree | 60ecc2a97582ddd2fd48006bb95ef7ea073ce41b /docs/content/guide/i18n.ngdoc | |
| parent | a1c4f6fbb70d8cbc99d23928a03e554807e9ee22 (diff) | |
| download | angular.js-80ab7eaf150294558405ee124c4aa9c384578b2a.tar.bz2 | |
docs(guide/i18n): change non-existent de-ge to de-de
The de-ge locale does not exist
Closes #4053
Diffstat (limited to 'docs/content/guide/i18n.ngdoc')
| -rw-r--r-- | docs/content/guide/i18n.ngdoc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/content/guide/i18n.ngdoc b/docs/content/guide/i18n.ngdoc index 0c94bf6d..7042991c 100644 --- a/docs/content/guide/i18n.ngdoc +++ b/docs/content/guide/i18n.ngdoc @@ -56,22 +56,22 @@ locale-specific file to the end of `angular.js` or `angular.min.js` file. For example on *nix, to create an angular.js file that contains localization rules for german locale, you can do the following: -`cat angular.js i18n/angular-locale_de-ge.js > angular_de-ge.js` +`cat angular.js i18n/angular-locale_de-de.js > angular_de-de.js` -When the application containing `angular_de-ge.js` script instead of the generic angular.js script +When the application containing `angular_de-de.js` script instead of the generic angular.js script starts, Angular is automatically pre-configured with localization rules for the german locale. **2. Including locale js script in index.html page** You can also include the locale specific js file in the index.html page. For example, if one client -requires German locale, you would serve index_de-ge.html which will look something like this: +requires German locale, you would serve index_de-de.html which will look something like this: <pre> <html ng-app> <head> …. <script src="angular.js"></script> - <script src="i18n/angular-locale_de-ge.js"></script> + <script src="i18n/angular-locale_de-de.js"></script> …. </head> </html> |
