class Command(BaseCommand):
option_list = BaseCommand.option_list + (
make_option('-d', '--directory', help='Specify which directory should hold generated PO files', dest='directory'),
make_option('-l', '--load', help='load locales back to source', action='store_true', dest='load', default=False),
make_option('-L', '--language', help='locales to load', dest='lang', default=None),
make_option('-n', '--poname', help='name of the po file [no extension]', dest='poname', default=None),
class Command(BaseCommand):
option_list = BaseCommand.option_list + (
make_option('-d', '--directory', help='Specify which directory should hold generated PO files', dest='directory'),
make_option('-l', '--load', help='load locales back to source', action='store_true', dest='load', default=False),
make_option('-L', '--language', help='locales to load', dest='lang', default=None),
make_option('-n', '--poname', help='name of the po file [no extension]', dest='poname', default=None),