Add pt-br to production askbot.

This commit is contained in:
Kevin Fenzi 2014-01-21 19:35:55 +00:00
parent 821aae5366
commit 2e909f8205

View file

@ -258,7 +258,7 @@ LANGUAGES = (
('zh-tw', gettext('Chinese')), ('zh-tw', gettext('Chinese')),
('fr', gettext('French')), ('fr', gettext('French')),
('el', gettext('Greek')), ('el', gettext('Greek')),
('id', gettext('Indonesia')), ('id', gettext('Indonesian')),
) )
{% else %} {% else %}
DOMAIN_NAME = 'ask.fedoraproject.org' DOMAIN_NAME = 'ask.fedoraproject.org'
@ -275,6 +275,7 @@ gettext = lambda s: s
LANGUAGES = ( LANGUAGES = (
('es', gettext('Spanish')), ('es', gettext('Spanish')),
('en', gettext('English')), ('en', gettext('English')),
('pt-br', gettext('Brazilian Portuguese')),
) )
{% endif %} {% endif %}