| 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['long'] = timeFormats['full']
18
19 dp_order = ['d', 'm', 'y']
20
| Home | Trees | Indices | Help |
|
|---|
| Generated by Epydoc 3.0.1 on Thu Feb 8 08:16:37 2018 | http://epydoc.sourceforge.net |