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