blob: e8e07a35312a74290fc8f7f4ab944f94339613a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (C) 2012 Étienne Loks <etienne.loks_AT_peacefrogsDOTnet>
"""
import os
os.environ['DJANGO_SETTINGS_MODULE'] = 'example_project.settings'
from django.utils.translation import ugettext as _
try:
# strings to be considered for translation
# templates/chimere/edit.html, templates/chimere/edit_route.html
_(u"Multimedia files")
_(u"Picture files")
except ImportError:
pass
"""
VERSION = (2, 0)
def get_version():
return u'.'.join((unicode(num) for num in VERSION))
__version__ = get_version()
|