Source code for stoqlib.l10n.generic.generic
# -*- coding: utf-8 -*-
# vi:si:et:sw=4:sts=4:ts=4
##
## Copyright (C) 2012 Async Open Source
##
## This program is free software; you can redistribute it and/or
## modify it under the terms of the GNU Lesser General Public License
## as published by the Free Software Foundation; either version 2
## of the License, or (at your option) any later version.
##
## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU Lesser General Public License for more details.
##
## You should have received a copy of the GNU Lesser General Public License
## along with this program; if not, write to the Free Software
## Foundation, Inc., or visit: http://www.gnu.org/.
##
##
## Author(s): Stoq Team <stoq-devel@async.com.br>
##
##
from stoqlib.lib.translation import stoqlib_gettext
_ = stoqlib_gettext
# January, 01 2012
full_date_format = "%B, %d %Y"
# FIXME: We use those as generic for a long time for cardinals formatting.
# But, is dollar a good generic currency name?
currency_names = ("dollar", "dollars",
"cent", "cents")
#: This will be used when detecting duplicated persons
common_street_prefixes = []
[docs]class CompanyDocument(object):
label = _('Document')
entry_mask = None
[docs] def validate(self, value):
return True
company_document = CompanyDocument()
[docs]class PersonDocument(object):
label = _('Document')
entry_mask = None
[docs] def validate(self, value):
return True
person_document = PersonDocument()
# This is not actually a state, it's more like a country subdivsion, see:
# http://en.wikipedia.org/wiki/Country_subdivision
# FIXME: We don't want to disable this warning, but we have to change
# the api to fix it.
# pylint: disable=W0621
[docs]class State(object):
label = _('State')
state_list = []
[docs] def validate(self, value):
return True
state = State()
[docs]class City(object):
label = _('City')
[docs] def validate(self, city, state=None, country=None):
return True
city = City()
# pylint: enable=W0621