mirror of
https://github.com/NaN-tic/trytond-translate_apertium.git
synced 2023-12-14 02:03:02 +01:00
14 lines
458 B
Python
14 lines
458 B
Python
#This file is part translate module for Tryton.
|
|
#The COPYRIGHT file at the top level of this repository contains
|
|
#the full copyright notices and license terms.
|
|
from trytond.model import fields
|
|
from trytond.pool import PoolMeta
|
|
|
|
__all__ = ['Configuration']
|
|
|
|
|
|
class Configuration:
|
|
__metaclass__ = PoolMeta
|
|
__name__ = 'translate.configuration'
|
|
apertium_unknown_words = fields.Boolean('Unknown Words',
|
|
help='Dissable Apertium unknown words')
|