Closed
Bug 873612
Opened 12 years ago
Closed 12 years ago
eu locale not working in Bedrock
Categories
(www.mozilla.org :: Bedrock, defect)
www.mozilla.org
Bedrock
Tracking
(Not tracked)
RESOLVED
WORKSFORME
People
(Reporter: sgarrity, Unassigned)
Details
While porting the Mozilla Manifesto localized versions to Bedrock in Bug 869489, I've run into the Basque "eu" locale not seeming to work in Bedrock.
I've got a .lang file in locale/eu/mozorg/about/manifesto.lang and I have Dev = TRUE in my settings/local.py, but when I try to load /eu/about/manifesto/, it redirects to /en-US/eu/about/manifesto/
All other locales load the appropriate localized version of the manifesto file as expected.
Any ideas?
Comment 1•12 years ago
|
||
Can you hit http://localhost:8000/eu/contribute/ locally? That page works fine for me.
It looks like 'eu' is not making into your settings.DEV_LANGUAGES list, which is autopopulated from the directories under "locale" in your local environment. Can you go to the project in a shell and paste the output of the following:
./manage.py shell
from django.conf import settings
'eu' in settings.DEV_LANGUAGES
If the output is "False", that's the issue. If not, maybe paste what is in DEV_LANGUAGES.
| Reporter | ||
Comment 2•12 years ago
|
||
This is now working for me. Whatever I was doing wrong before, I'm not anymore. Thanks.
Status: NEW → RESOLVED
Closed: 12 years ago
Resolution: --- → WORKSFORME
You need to log in
before you can comment on or make changes to this bug.
Description
•