File indexing completed on 2024-03-24 17:21:46

0001 # -*- coding: UTF-8 -*-
0002 
0003 """
0004 Equip catalog headers within KDE Translation Project with extra information.
0005 
0006 Documented in C{doc/user/sieving.docbook}.
0007 
0008 @author: Chusslove Illich (Часлав Илић) <caslav.ilic@gmx.net>
0009 @license: GPLv3
0010 """
0011 
0012 from pology import _, n_
0013 from pology.proj.kde.header import equip_header
0014 
0015 
0016 def setup_sieve (p):
0017 
0018     p.set_desc(_("@info sieve discription",
0019     "Equip catalog headers within KDE Translation Project "
0020     "with extra information."
0021     ))
0022 
0023 
0024 class Sieve (object):
0025 
0026     def __init__ (self, params):
0027 
0028         pass
0029 
0030 
0031     def process_header (self, hdr, cat):
0032 
0033         equip_header(hdr, cat)
0034