Skip to content

Commit

Permalink
Models should use ugettext_lazy
Browse files Browse the repository at this point in the history
  • Loading branch information
gvangool committed Jul 16, 2014
1 parent 5701ce0 commit 916acb2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions country_dialcode/models.py
@@ -1,9 +1,9 @@
from django.db import models
from django.utils.translation import ugettext as _
from django.utils.translation import ugettext_lazy as _
from country_dialcode.intermediate_model_base_class import Model

prefix_type_list = ((0, _("landline").title()),
(1, _("mobile").title()),
prefix_type_list = ((0, _("Landline")),
(1, _("Mobile")),
(2, _("NGN (Non Geographic Numbers)")))


Expand Down

0 comments on commit 916acb2

Please sign in to comment.