Changes between Initial Version and Version 3 of Ticket #11384
- Timestamp:
- Feb 1, 2010, 6:56:13 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #11384
- Property Owner changed from to
- Property Cc added
-
Ticket #11384 – Description
initial v3 3 3 The documentation says: 4 4 5 *** you can write applications that include their own translations, and you can override base translations in your project path.*** Or, you can just build a big project out of several apps and put all 6 translations into one big project message file. The choice is yours. 5 '''you can write applications that include their own translations, and you can override base translations in your project path.''' ''Or, you can just build a big project out of several apps and put all translations into one big project message file. The choice is yours.'' 7 6 8 7 Which makes perfect sense to have distributable apps and be able to override such translations provided with the app … … 12 11 But having a distributable app with its translation, living outside the project path, lets say: 13 12 13 {{{ 14 14 $VIRTUALENV/$APPPATH/locale/<language>/LC_MESSAGES/django.po 15 15 $VIRTUALENV/$APPPATH/locale/<language>/LC_MESSAGES/django.mo 16 }}} 16 17 17 18 And trying to override such translation with: 18 19 20 {{{ 19 21 $PROJECTPATH/locale/<language>/LC_MESSAGES/django.po 20 22 $PROJECTPATH/locale/<language>/LC_MESSAGES/django.mo 23 }}} 21 24 22 25 It will pick up the translation from the app ignoring the one in the project path.