Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 80ab7ea

Browse files
maartenstpetebacondarwin
authored andcommitted
docs(guide/i18n): change non-existent de-ge to de-de
The de-ge locale does not exist Closes #4053
1 parent a1c4f6f commit 80ab7ea

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/content/guide/i18n.ngdoc

+4-4
Original file line numberDiff line numberDiff line change
@@ -56,22 +56,22 @@ locale-specific file to the end of `angular.js` or `angular.min.js` file.
5656
For example on *nix, to create an angular.js file that contains localization rules for german
5757
locale, you can do the following:
5858

59-
`cat angular.js i18n/angular-locale_de-ge.js > angular_de-ge.js`
59+
`cat angular.js i18n/angular-locale_de-de.js > angular_de-de.js`
6060

61-
When the application containing `angular_de-ge.js` script instead of the generic angular.js script
61+
When the application containing `angular_de-de.js` script instead of the generic angular.js script
6262
starts, Angular is automatically pre-configured with localization rules for the german locale.
6363

6464
**2. Including locale js script in index.html page**
6565

6666
You can also include the locale specific js file in the index.html page. For example, if one client
67-
requires German locale, you would serve index_de-ge.html which will look something like this:
67+
requires German locale, you would serve index_de-de.html which will look something like this:
6868

6969
<pre>
7070
<html ng-app>
7171
<head>
7272
….
7373
<script src="angular.js"></script>
74-
<script src="i18n/angular-locale_de-ge.js"></script>
74+
<script src="i18n/angular-locale_de-de.js"></script>
7575
….
7676
</head>
7777
</html>

0 commit comments

Comments
 (0)