Exemple #1
0
# -*- coding: utf-8 -*-
#
# Copyright © 2012 - 2013 Michal Čihař <*****@*****.**>
#
# This file is part of Weblate <http://weblate.org/>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
#

from weblate import appsettings
from trans.util import load_class

# Initialize checks list
CHECKS = {}
for path in appsettings.CHECK_LIST:
    cls = load_class(path)
    CHECKS[cls.check_id] = cls()
Exemple #2
0
# -*- coding: utf-8 -*-
#
# Copyright © 2012 - 2013 Michal Čihař <*****@*****.**>
#
# This file is part of Weblate <http://weblate.org/>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
#

from weblate import appsettings
from trans.util import load_class

# Initialize checks list
MACHINE_TRANSLATION_SERVICES = {}
for path in appsettings.MACHINE_TRANSLATION_SERVICES:
    obj = load_class(path)()
    MACHINE_TRANSLATION_SERVICES[obj.mtid] = obj
Exemple #3
0
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
#
'''
Import all the autofixes defined in settings.  Note, unlike checks, using
a sortable data object so fixes are applied in desired order.
'''

from weblate import appsettings
from trans.util import load_class

autofixes = []
for path in appsettings.AUTOFIX_LIST:
    autofixes.append(load_class(path)())


def fix_target(target, unit):
    '''
    Apply each autofix to the target translation.
    '''
    fixups = []
    for fix in autofixes:
        target, fixed = fix.fix_target(target, unit)
        if fixed:
            fixups.append(fix.name)

    return target, fixups