blob: a7083c7988eed0cdd2d8d98db37096ffc2c6c7d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (C) 2012 Étienne Loks <etienne.loks_AT_peacefrogsDOTnet>
from django.utils.translation import ugettext as _
# templates/chimere/edit.html, templates/chimere/edit_route.html
_(u"Multimedia files")
_(u"Picture files")
VERSION = (2, 0)
def get_version():
return u'.'.join((unicode(num) for num in VERSION))
__version__ = get_version()
|