Skip to content

Commit 5635838

Browse files
committed
Minor doc tweak.
1 parent 78b2f0f commit 5635838

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ needs to be in your project package directory.
1919

2020
### Extraction Method Mapping
2121

22-
So `django-babel` comes with an extraction method plugin that can extract
22+
So BabelDjango comes with an extraction method plugin that can extract
2323
localizable messages from Django template files. Python is supported out of the
2424
box by Babel. To use this extraction functionality, create a file called
2525
`babel.cfg` in your project directory (the directory above your project
@@ -41,7 +41,7 @@ Also, any files with the extension `.py` inside your package directory (replace
4141
“mypkg” with the actual name of your Django project package) are processed by
4242
the “python” extraction method.
4343

44-
If you don't use setuptools, or for some reason haven't installed !BabelDjango
44+
If you don't use setuptools, or for some reason haven't installed BabelDjango
4545
using setuptools/pip, you'll need to define what function the extraction method
4646
“django” maps to. This is done in an extra section at the top of the
4747
configuration file:
@@ -148,12 +148,12 @@ locale from a thread-local cache.
148148

149149
## Using the Template Tags
150150

151-
The template filters provided by !BabelDjango allow formatting of date/time and
151+
The template filters provided by BabelDjango allow formatting of date/time and
152152
number values in a locale-sensitive manner, providing much more powerful
153153
alternatives to the `date`, `time`, and `floatformat` filters that come with
154154
Django.
155155

156-
To make the template filters/tags available, you need to add !BabelDjango to
156+
To make the template filters/tags available, you need to add BabelDjango to
157157
the list of `INSTALLED_APPS` in your settings module:
158158

159159
```python
@@ -165,7 +165,7 @@ INSTALLED_APPS = (
165165
```
166166

167167
And in every template you want to use the filters, you need to explicitly load
168-
the !BabelDjango library:
168+
the BabelDjango library:
169169

170170
```jinja
171171
{% load babel %}

0 commit comments

Comments
 (0)