Opened 11 years ago
Closed 10 years ago
#22822 closed Bug (fixed)
Javascript en_* translations ignored if no en or en_us translations exist
| Reported by: | Owned by: | anonymous | |
|---|---|---|---|
| Component: | Internationalization | Version: | 1.6 |
| Severity: | Normal | Keywords: | |
| Cc: | Triage Stage: | Accepted | |
| Has patch: | yes | Needs documentation: | no |
| Needs tests: | no | Patch needs improvement: | yes |
| Easy pickings: | no | UI/UX: | no |
Description (last modified by )
If there is no djangojs.mo in either the en, en_US, en_US.ISO8859-1 or en.ISO8859-1 directories, then the django.mo translation files in any other en based translation directory (such as en_gb or en_ca) will be ignored.
This is because of the lines:
if en_selected and en_catalog_missing:
t = {}
else: #.... actually go on and build up the dictionary for the catalog.
Without an en or en_us translation, en_catalog_missing will be true and for something like en_gb, en_selected will also be true. This means that en_gb will never be loaded.
This error can happen often since much of the time you won't bother creating an en or en_us translation file since that is the main language you are building in.
Change History (8)
comment:1 by , 11 years ago
| Owner: | changed from to |
|---|---|
| Status: | new → assigned |
comment:2 by , 11 years ago
| Component: | Uncategorized → Translations |
|---|---|
| Type: | Uncategorized → Bug |
comment:3 by , 11 years ago
| Description: | modified (diff) |
|---|
comment:4 by , 11 years ago
| Component: | Translations → Internationalization |
|---|---|
| Triage Stage: | Unreviewed → Accepted |
comment:6 by , 10 years ago
| Needs tests: | unset |
|---|
comment:8 by , 10 years ago
| Resolution: | → fixed |
|---|---|
| Status: | assigned → closed |
I suspect and hope [11c60b529816] will have fixed this also.
I haven't used
javascript_catalogbefore, but this does seems like a funny restriction. If it cannot be fixed for some reason, we should at least document it.