Changes between Initial Version and Version 3 of Ticket #11384


Ignore:
Timestamp:
Feb 1, 2010, 6:56:13 PM (15 years ago)
Author:
Ramiro Morales
Comment:

(reformatted description)

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #11384

    • Property Owner changed from nobody to Marc Garcia
    • Property Cc michal@… added
  • Ticket #11384 – Description

    initial v3  
    33The documentation says:
    44
    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.''
    76
    87Which makes perfect sense to have distributable apps and be able to override such translations provided with the app
     
    1211But having a distributable app with its translation, living outside the project path, lets say:
    1312
     13{{{
    1414$VIRTUALENV/$APPPATH/locale/<language>/LC_MESSAGES/django.po
    1515$VIRTUALENV/$APPPATH/locale/<language>/LC_MESSAGES/django.mo
     16}}}
    1617
    1718And trying to override such translation with:
    1819
     20{{{
    1921$PROJECTPATH/locale/<language>/LC_MESSAGES/django.po
    2022$PROJECTPATH/locale/<language>/LC_MESSAGES/django.mo
     23}}}
    2124
    2225It will pick up the translation from the app ignoring the one in the project path.
Back to Top