mirror of
https://gh.wpcy.net/https://github.com/WeblateOrg/weblate.git
synced 2026-05-03 02:46:53 +08:00
It contains quite a lot of code and deserves to be separate. Issue #1820 Signed-off-by: Michal Čihař <michal@cihar.com>
46 lines
1.5 KiB
Python
46 lines
1.5 KiB
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
# Copyright © 2012 - 2018 Michal Čihař <michal@cihar.com>
|
|
#
|
|
# This file is part of Weblate <https://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 <https://www.gnu.org/licenses/>.
|
|
#
|
|
"""Quality check example for Czech plurals."""
|
|
|
|
from weblate.checks.base import TargetCheck
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
|
|
class PluralCzechCheck(TargetCheck):
|
|
|
|
# Used as identifier for check, should be unique
|
|
# Has to be shorter than 50 chars
|
|
check_id = 'foo'
|
|
|
|
# Short name used to display failing check
|
|
name = _('Foo check')
|
|
|
|
# Description for failing check
|
|
description = _('Your translation is foo')
|
|
|
|
# Real check code
|
|
def check_target_unit(self, sources, targets, unit):
|
|
if self.is_language(unit, ('cs', )):
|
|
return targets[1] == targets[2]
|
|
return False
|
|
|
|
def check_single(self, source, target, unit):
|
|
"""We don't check target strings here."""
|
|
return False
|