Package translate :: Package lang :: Module pa
[hide private]
[frames] | no frames]

Source Code for Module translate.lang.pa

 1  #!/usr/bin/env python 
 2  # -*- coding: utf-8 -*- 
 3  # 
 4  # Copyright 2010 Zuza Software Foundation 
 5  # 
 6  # This file is part of the Translate Toolkit. 
 7  # 
 8  # This program is free software; you can redistribute it and/or modify 
 9  # it under the terms of the GNU General Public License as published by 
10  # the Free Software Foundation; either version 2 of the License, or 
11  # (at your option) any later version. 
12  # 
13  # This program is distributed in the hope that it will be useful, 
14  # but WITHOUT ANY WARRANTY; without even the implied warranty of 
15  # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
16  # GNU General Public License for more details. 
17  # 
18  # You should have received a copy of the GNU General Public License 
19  # along with this program; if not, see <http://www.gnu.org/licenses/>. 
20   
21  """This module represents Punjabi language. 
22   
23  For more information, see U{http://en.wikipedia.org/wiki/Punjabi_language} 
24  """ 
25   
26  import re 
27   
28  from translate.lang import common 
29   
30   
31 -class pa(common.Common):
32 """This class represents Punjabi.""" 33 34 sentenceend = u"।!?…" 35 36 sentencere = re.compile(r"""(?s) # make . also match newlines 37 .*? # anything, but match non-greedy 38 [%s] # the puntuation for sentence ending 39 \s+ # the spacing after the puntuation 40 (?=[^a-z\d])# lookahead that next part starts with 41 # caps 42 """ % sentenceend, re.VERBOSE) 43 44 puncdict = { 45 u". ": u"। ", 46 u".\n": u"।\n", 47 } 48 49 ignoretests = ["startcaps", "simplecaps"]
50