7 lines
152 B
Python
7 lines
152 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
from django.utils.translation import ugettext_lazy as _
|
||
|
TEMPLATES = {
|
||
|
'blog.html': _('Blog'),
|
||
|
'page.html': _('Page'),
|
||
|
}
|