summaryrefslogtreecommitdiff
path: root/docs/topics
diff options
context:
space:
mode:
authorDave Hodder <dmh@dmh.org.uk>2015-04-30 20:39:29 +0100
committerTim Graham <timograham@gmail.com>2015-05-01 13:26:42 -0400
commit08c980d752bc7f31f146facadfec3d284c4115c6 (patch)
treeba32460d9bc0123a687f5e55aec787fdd12a541a /docs/topics
parent57202a112a966593857725071ecd652a87c157fb (diff)
Updated capitalization in the word "JavaScript" for consistency
Diffstat (limited to 'docs/topics')
-rw-r--r--docs/topics/forms/media.txt2
-rw-r--r--docs/topics/i18n/formatting.txt2
-rw-r--r--docs/topics/i18n/translation.txt2
3 files changed, 3 insertions, 3 deletions
diff --git a/docs/topics/forms/media.txt b/docs/topics/forms/media.txt
index 09184fe15f..a7975b4bce 100644
--- a/docs/topics/forms/media.txt
+++ b/docs/topics/forms/media.txt
@@ -207,7 +207,7 @@ be prepended with the value of the appropriate prefix.
As part of the introduction of the
:doc:`staticfiles app </ref/contrib/staticfiles>` two new settings were added
-to refer to "static files" (images, CSS, Javascript, etc.) that are needed
+to refer to "static files" (images, CSS, JavaScript, etc.) that are needed
to render a complete web page: :setting:`STATIC_URL` and :setting:`STATIC_ROOT`.
To find the appropriate prefix to use, Django will check if the
diff --git a/docs/topics/i18n/formatting.txt b/docs/topics/i18n/formatting.txt
index b62eb04625..62e4cc9ede 100644
--- a/docs/topics/i18n/formatting.txt
+++ b/docs/topics/i18n/formatting.txt
@@ -64,7 +64,7 @@ will try to use a locale specific format whenever it outputs a value
in a template.
However, it may not always be appropriate to use localized values --
-for example, if you're outputting Javascript or XML that is designed
+for example, if you're outputting JavaScript or XML that is designed
to be machine-readable, you will always want unlocalized values. You
may also want to use localization in selected templates, rather than
using localization everywhere.
diff --git a/docs/topics/i18n/translation.txt b/docs/topics/i18n/translation.txt
index 354905ab78..92ece9df2f 100644
--- a/docs/topics/i18n/translation.txt
+++ b/docs/topics/i18n/translation.txt
@@ -1187,7 +1187,7 @@ whenever you restart your application server.
def cached_javascript_catalog(request, domain='djangojs', packages=None):
return javascript_catalog(request, domain, packages)
-You can even pre-generate the javascript catalog as part of your deployment
+You can even pre-generate the JavaScript catalog as part of your deployment
procedure and serve it as a static file. This radical technique is implemented
in django-statici18n_.