2009-12-23 01:58:49 +08:00
|
|
|
import os
|
|
|
|
import gettext as gettext_module
|
|
|
|
|
2006-05-02 09:31:56 +08:00
|
|
|
from django import http
|
2009-03-19 00:55:59 +08:00
|
|
|
from django.conf import settings
|
|
|
|
from django.utils import importlib
|
2005-12-04 20:06:16 +08:00
|
|
|
from django.utils.translation import check_for_language, activate, to_locale, get_language
|
|
|
|
from django.utils.text import javascript_quote
|
2009-12-31 06:11:11 +08:00
|
|
|
from django.utils.encoding import smart_unicode
|
2009-12-23 01:58:49 +08:00
|
|
|
from django.utils.formats import get_format_modules
|
2005-11-04 12:59:46 +08:00
|
|
|
|
|
|
|
def set_language(request):
|
|
|
|
"""
|
|
|
|
Redirect to a given url while setting the chosen language in the
|
|
|
|
session or cookie. The url and the language code need to be
|
2007-09-14 15:33:45 +08:00
|
|
|
specified in the request parameters.
|
|
|
|
|
|
|
|
Since this view changes how the user will see the rest of the site, it must
|
|
|
|
only be accessed as a POST request. If called as a GET request, it will
|
|
|
|
redirect to the page in the request (the 'next' parameter) without changing
|
|
|
|
any state.
|
2005-11-04 12:59:46 +08:00
|
|
|
"""
|
2007-09-16 04:00:14 +08:00
|
|
|
next = request.REQUEST.get('next', None)
|
2005-11-04 12:59:46 +08:00
|
|
|
if not next:
|
|
|
|
next = request.META.get('HTTP_REFERER', None)
|
|
|
|
if not next:
|
|
|
|
next = '/'
|
2006-05-02 09:31:56 +08:00
|
|
|
response = http.HttpResponseRedirect(next)
|
2007-09-14 15:33:45 +08:00
|
|
|
if request.method == 'POST':
|
|
|
|
lang_code = request.POST.get('language', None)
|
|
|
|
if lang_code and check_for_language(lang_code):
|
|
|
|
if hasattr(request, 'session'):
|
|
|
|
request.session['django_language'] = lang_code
|
|
|
|
else:
|
2008-03-01 02:38:44 +08:00
|
|
|
response.set_cookie(settings.LANGUAGE_COOKIE_NAME, lang_code)
|
2005-11-04 12:59:46 +08:00
|
|
|
return response
|
2005-12-04 20:06:16 +08:00
|
|
|
|
2009-12-23 01:58:49 +08:00
|
|
|
def get_formats():
|
|
|
|
"""
|
2009-12-31 06:12:16 +08:00
|
|
|
Returns all formats strings required for i18n to work
|
2009-12-23 01:58:49 +08:00
|
|
|
"""
|
2009-12-31 06:12:16 +08:00
|
|
|
FORMAT_SETTINGS = (
|
|
|
|
'DATE_FORMAT', 'DATETIME_FORMAT', 'TIME_FORMAT',
|
2009-12-23 01:58:49 +08:00
|
|
|
'YEAR_MONTH_FORMAT', 'MONTH_DAY_FORMAT', 'SHORT_DATE_FORMAT',
|
|
|
|
'SHORT_DATETIME_FORMAT', 'FIRST_DAY_OF_WEEK', 'DECIMAL_SEPARATOR',
|
2009-12-31 06:12:16 +08:00
|
|
|
'THOUSAND_SEPARATOR', 'NUMBER_GROUPING',
|
|
|
|
'DATE_INPUT_FORMATS', 'TIME_INPUT_FORMATS', 'DATETIME_INPUT_FORMATS'
|
|
|
|
)
|
2009-12-23 01:58:49 +08:00
|
|
|
result = {}
|
2009-12-31 06:12:16 +08:00
|
|
|
for module in [settings] + get_format_modules(reverse=True):
|
2009-12-23 01:58:49 +08:00
|
|
|
for attr in FORMAT_SETTINGS:
|
|
|
|
try:
|
|
|
|
result[attr] = getattr(module, attr)
|
|
|
|
except AttributeError:
|
|
|
|
pass
|
2010-01-04 10:28:34 +08:00
|
|
|
src = []
|
|
|
|
for k, v in result.items():
|
|
|
|
if isinstance(v, (basestring, int)):
|
|
|
|
src.append("formats['%s'] = '%s';\n" % (javascript_quote(k), javascript_quote(smart_unicode(v))))
|
|
|
|
elif isinstance(v, (tuple, list)):
|
|
|
|
v = [javascript_quote(smart_unicode(value)) for value in v]
|
|
|
|
src.append("formats['%s'] = ['%s'];\n" % (javascript_quote(k), "', '".join(v)))
|
|
|
|
return ''.join(src)
|
2009-12-23 01:58:49 +08:00
|
|
|
|
2005-12-04 20:06:16 +08:00
|
|
|
NullSource = """
|
|
|
|
/* gettext identity library */
|
|
|
|
|
2006-07-01 11:17:18 +08:00
|
|
|
function gettext(msgid) { return msgid; }
|
|
|
|
function ngettext(singular, plural, count) { return (count == 1) ? singular : plural; }
|
|
|
|
function gettext_noop(msgid) { return msgid; }
|
2005-12-04 20:06:16 +08:00
|
|
|
"""
|
|
|
|
|
|
|
|
LibHead = """
|
|
|
|
/* gettext library */
|
|
|
|
|
|
|
|
var catalog = new Array();
|
|
|
|
"""
|
|
|
|
|
|
|
|
LibFoot = """
|
|
|
|
|
|
|
|
function gettext(msgid) {
|
2006-07-01 11:17:18 +08:00
|
|
|
var value = catalog[msgid];
|
|
|
|
if (typeof(value) == 'undefined') {
|
|
|
|
return msgid;
|
|
|
|
} else {
|
|
|
|
return (typeof(value) == 'string') ? value : value[0];
|
|
|
|
}
|
2005-12-04 20:06:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
function ngettext(singular, plural, count) {
|
2006-07-01 11:17:18 +08:00
|
|
|
value = catalog[singular];
|
|
|
|
if (typeof(value) == 'undefined') {
|
|
|
|
return (count == 1) ? singular : plural;
|
|
|
|
} else {
|
|
|
|
return value[pluralidx(count)];
|
|
|
|
}
|
2005-12-04 20:06:16 +08:00
|
|
|
}
|
|
|
|
|
2006-07-01 11:17:18 +08:00
|
|
|
function gettext_noop(msgid) { return msgid; }
|
2010-01-04 10:28:34 +08:00
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
LibFormatHead = """
|
|
|
|
/* formatting library */
|
|
|
|
|
|
|
|
var formats = new Array();
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
LibFormatFoot = """
|
|
|
|
function get_format(format_type) {
|
|
|
|
var value = formats[format_type];
|
|
|
|
if (typeof(value) == 'undefined') {
|
|
|
|
return msgid;
|
|
|
|
} else {
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
}
|
2005-12-04 20:06:16 +08:00
|
|
|
"""
|
|
|
|
|
|
|
|
SimplePlural = """
|
2006-07-01 11:17:18 +08:00
|
|
|
function pluralidx(count) { return (count == 1) ? 0 : 1; }
|
2005-12-04 20:06:16 +08:00
|
|
|
"""
|
|
|
|
|
|
|
|
InterPolate = r"""
|
|
|
|
function interpolate(fmt, obj, named) {
|
2006-07-01 11:17:18 +08:00
|
|
|
if (named) {
|
2007-08-11 18:51:02 +08:00
|
|
|
return fmt.replace(/%\(\w+\)s/g, function(match){return String(obj[match.slice(2,-2)])});
|
2006-07-01 11:17:18 +08:00
|
|
|
} else {
|
2007-08-11 18:51:02 +08:00
|
|
|
return fmt.replace(/%s/g, function(match){return String(obj.shift())});
|
2006-07-01 11:17:18 +08:00
|
|
|
}
|
2005-12-04 20:06:16 +08:00
|
|
|
}
|
|
|
|
"""
|
|
|
|
|
2008-03-24 21:27:19 +08:00
|
|
|
PluralIdx = r"""
|
|
|
|
function pluralidx(n) {
|
|
|
|
var v=%s;
|
|
|
|
if (typeof(v) == 'boolean') {
|
|
|
|
return v ? 1 : 0;
|
|
|
|
} else {
|
|
|
|
return v;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"""
|
|
|
|
|
2006-07-01 11:09:14 +08:00
|
|
|
def null_javascript_catalog(request, domain=None, packages=None):
|
|
|
|
"""
|
|
|
|
Returns "identity" versions of the JavaScript i18n functions -- i.e.,
|
|
|
|
versions that don't actually do anything.
|
|
|
|
"""
|
2010-01-04 10:28:34 +08:00
|
|
|
src = [NullSource, InterPolate, LibFormatHead, get_formats(), LibFormatFoot]
|
|
|
|
return http.HttpResponse(''.join(src), 'text/javascript')
|
2006-07-01 11:09:14 +08:00
|
|
|
|
2005-12-04 20:06:16 +08:00
|
|
|
def javascript_catalog(request, domain='djangojs', packages=None):
|
|
|
|
"""
|
|
|
|
Returns the selected language catalog as a javascript library.
|
|
|
|
|
|
|
|
Receives the list of packages to check for translations in the
|
|
|
|
packages parameter either from an infodict or as a +-delimited
|
|
|
|
string from the request. Default is 'django.conf'.
|
|
|
|
|
|
|
|
Additionally you can override the gettext domain for this view,
|
|
|
|
but usually you don't want to do that, as JavaScript messages
|
|
|
|
go to the djangojs domain. But this might be needed if you
|
|
|
|
deliver your JavaScript source from Django templates.
|
|
|
|
"""
|
|
|
|
if request.GET:
|
2007-04-26 21:30:48 +08:00
|
|
|
if 'language' in request.GET:
|
2005-12-04 20:06:16 +08:00
|
|
|
if check_for_language(request.GET['language']):
|
|
|
|
activate(request.GET['language'])
|
|
|
|
if packages is None:
|
|
|
|
packages = ['django.conf']
|
2009-12-31 06:12:16 +08:00
|
|
|
if isinstance(packages, basestring):
|
2005-12-04 20:06:16 +08:00
|
|
|
packages = packages.split('+')
|
2005-12-04 20:57:46 +08:00
|
|
|
packages = [p for p in packages if p == 'django.conf' or p in settings.INSTALLED_APPS]
|
2005-12-04 20:06:16 +08:00
|
|
|
default_locale = to_locale(settings.LANGUAGE_CODE)
|
|
|
|
locale = to_locale(get_language())
|
|
|
|
t = {}
|
|
|
|
paths = []
|
2005-12-07 04:30:56 +08:00
|
|
|
# first load all english languages files for defaults
|
2005-12-04 20:06:16 +08:00
|
|
|
for package in packages:
|
2009-03-19 00:55:59 +08:00
|
|
|
p = importlib.import_module(package)
|
2005-12-04 20:06:16 +08:00
|
|
|
path = os.path.join(os.path.dirname(p.__file__), 'locale')
|
|
|
|
paths.append(path)
|
2007-11-30 01:29:54 +08:00
|
|
|
try:
|
|
|
|
catalog = gettext_module.translation(domain, path, ['en'])
|
|
|
|
t.update(catalog._catalog)
|
|
|
|
except IOError:
|
|
|
|
# 'en' catalog was missing. This is harmless.
|
|
|
|
pass
|
2005-12-07 04:30:56 +08:00
|
|
|
# next load the settings.LANGUAGE_CODE translations if it isn't english
|
|
|
|
if default_locale != 'en':
|
|
|
|
for path in paths:
|
|
|
|
try:
|
|
|
|
catalog = gettext_module.translation(domain, path, [default_locale])
|
2006-01-19 09:06:12 +08:00
|
|
|
except IOError:
|
2005-12-07 04:30:56 +08:00
|
|
|
catalog = None
|
|
|
|
if catalog is not None:
|
|
|
|
t.update(catalog._catalog)
|
|
|
|
# last load the currently selected language, if it isn't identical to the default.
|
2005-12-04 20:06:16 +08:00
|
|
|
if locale != default_locale:
|
|
|
|
for path in paths:
|
|
|
|
try:
|
|
|
|
catalog = gettext_module.translation(domain, path, [locale])
|
2006-01-19 09:06:12 +08:00
|
|
|
except IOError:
|
2005-12-04 20:06:16 +08:00
|
|
|
catalog = None
|
|
|
|
if catalog is not None:
|
|
|
|
t.update(catalog._catalog)
|
|
|
|
src = [LibHead]
|
|
|
|
plural = None
|
2007-04-26 21:30:48 +08:00
|
|
|
if '' in t:
|
2005-12-07 04:30:56 +08:00
|
|
|
for l in t[''].split('\n'):
|
|
|
|
if l.startswith('Plural-Forms:'):
|
|
|
|
plural = l.split(':',1)[1].strip()
|
2005-12-04 20:06:16 +08:00
|
|
|
if plural is not None:
|
|
|
|
# this should actually be a compiled function of a typical plural-form:
|
|
|
|
# Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;
|
|
|
|
plural = [el.strip() for el in plural.split(';') if el.strip().startswith('plural=')][0].split('=',1)[1]
|
2008-03-24 21:27:19 +08:00
|
|
|
src.append(PluralIdx % plural)
|
2005-12-04 20:06:16 +08:00
|
|
|
else:
|
|
|
|
src.append(SimplePlural)
|
|
|
|
csrc = []
|
|
|
|
pdict = {}
|
|
|
|
for k, v in t.items():
|
|
|
|
if k == '':
|
|
|
|
continue
|
2009-12-31 06:12:16 +08:00
|
|
|
if isinstance(k, basestring):
|
2005-12-04 20:06:16 +08:00
|
|
|
csrc.append("catalog['%s'] = '%s';\n" % (javascript_quote(k), javascript_quote(v)))
|
2009-12-31 06:12:16 +08:00
|
|
|
elif isinstance(k, tuple):
|
2007-04-26 21:30:48 +08:00
|
|
|
if k[0] not in pdict:
|
2005-12-04 20:06:16 +08:00
|
|
|
pdict[k[0]] = k[1]
|
|
|
|
else:
|
|
|
|
pdict[k[0]] = max(k[1], pdict[k[0]])
|
|
|
|
csrc.append("catalog['%s'][%d] = '%s';\n" % (javascript_quote(k[0]), k[1], javascript_quote(v)))
|
|
|
|
else:
|
2010-01-11 02:36:20 +08:00
|
|
|
raise TypeError(k)
|
2005-12-04 20:06:16 +08:00
|
|
|
csrc.sort()
|
2009-12-23 01:58:49 +08:00
|
|
|
for k, v in pdict.items():
|
2005-12-04 20:06:16 +08:00
|
|
|
src.append("catalog['%s'] = [%s];\n" % (javascript_quote(k), ','.join(["''"]*(v+1))))
|
|
|
|
src.extend(csrc)
|
|
|
|
src.append(LibFoot)
|
|
|
|
src.append(InterPolate)
|
2010-01-04 10:28:34 +08:00
|
|
|
src.append(LibFormatHead)
|
|
|
|
src.append(get_formats())
|
|
|
|
src.append(LibFormatFoot)
|
2005-12-04 20:06:16 +08:00
|
|
|
src = ''.join(src)
|
2006-05-02 09:31:56 +08:00
|
|
|
return http.HttpResponse(src, 'text/javascript')
|
2009-12-23 01:58:49 +08:00
|
|
|
|