diff --git a/docs/intro/tutorial01.txt b/docs/intro/tutorial01.txt
index 6e5988b..3f6cf71 100644
a
|
b
|
Let's look at what :djadmin:`startproject` created::
|
99 | 99 | |
100 | 100 | These files are: |
101 | 101 | |
102 | | * The outer :file:`mysite/` directory is just a container for your |
| 102 | * The outer :file:`mysite/` project root directory is just a container for your |
103 | 103 | project. Its name doesn't matter to Django; you can rename it to anything |
104 | 104 | you like. |
105 | 105 | |
… |
… |
These files are:
|
107 | 107 | Django project in various ways. You can read all the details about |
108 | 108 | :file:`manage.py` in :doc:`/ref/django-admin`. |
109 | 109 | |
110 | | * The inner :file:`mysite/` directory is the actual Python package for your |
111 | | project. Its name is the Python package name you'll need to use to import |
112 | | anything inside it (e.g. ``import mysite.settings``). |
| 110 | * The inner :file:`mysite/` directory, also known as the project module, is the |
| 111 | actual Python package for your project. Its name is the Python package name |
| 112 | you'll need to use to reference anything inside it (e.g. ``mysite.urls``). |
113 | 113 | |
114 | 114 | * :file:`mysite/__init__.py`: An empty file that tells Python that this |
115 | 115 | directory should be considered a Python package. (Read `more about |
diff --git a/docs/topics/i18n/translation.txt b/docs/topics/i18n/translation.txt
index 80925d7..0d51bac 100644
a
|
b
|
German.
|
1238 | 1238 | |
1239 | 1239 | The script should be run from one of two places: |
1240 | 1240 | |
1241 | | * The root directory of your Django project. |
1242 | | * The root directory of your Django app. |
| 1241 | * The root directory of your Django project (the one that contains |
| 1242 | ``manage.py``). |
| 1243 | * The root directory of one of your Django apps. |
1243 | 1244 | |
1244 | 1245 | The script runs over your project source tree or your application source tree |
1245 | 1246 | and pulls out all strings marked for translation (see |