| Home | Trees | Indices | Help |
|
|---|
|
|
1 # -*- coding: utf-8 -*-
2 from __future__ import unicode_literals
3 from .base import * # noqa
4
5 # don't use an unicode string
6 localeID = 'en_AU'
7 dateSep = ['-', '/']
8 uses24 = False
9
10 dateFormats = {
11 'full': 'EEEE, d MMMM yyyy',
12 'long': 'd MMMM yyyy',
13 'medium': 'dd/MM/yyyy',
14 'short': 'd/MM/yy',
15 }
16
17 timeFormats = {
18 'long': timeFormats['full'],
19 }
20
21 dp_order = ['d', 'm', 'y']
22
| Home | Trees | Indices | Help |
|
|---|
| Generated by Epydoc 3.0.1 | http://epydoc.sourceforge.net |