aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/guide/i18n.ngdoc
diff options
context:
space:
mode:
authorMaarten Stolte2013-09-19 10:09:30 +0200
committerPete Bacon Darwin2013-09-19 11:27:20 +0100
commit4f107acfcfc141555cf4419e5f9b4c89199a49d5 (patch)
tree47115b530cab2bfcde6b2627681c6057b90a2a8f /docs/content/guide/i18n.ngdoc
parentf363bcb4376b5394c73cccbc112fbe7955e9d023 (diff)
downloadangular.js-4f107acfcfc141555cf4419e5f9b4c89199a49d5.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.ngdoc8
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>