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

Source Code for Module translate.lang.el

 1  #!/usr/bin/env python 
 2  # -*- coding: utf-8 -*- 
 3  # 
 4  # Copyright 2007-2009,2011 Zuza Software Foundation 
 5  # 
 6  # This file is part of translate. 
 7  # 
 8  # translate 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  # translate 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 translate; if not, write to the Free Software 
20  # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA 
21   
22  """This module represents Greek language. 
23   
24  For more information, see U{http://en.wikipedia.org/wiki/Greek_language} 
25  """ 
26   
27  import re 
28   
29  from translate.lang import common 
30   
31   
32 -class el(common.Common):
33 """This class represents Greek.""" 34 35 # Greek uses ; as question mark and the middot instead 36 sentenceend = u".!;…" 37 38 sentencere = re.compile(ur"""(?s) #make . also match newlines 39 .*? #anything, but match non-greedy 40 [%s] #the puntuation for sentence ending 41 \s+ #the spacing after the puntuation 42 (?=[^a-zά-ώ\d])#lookahead that next part starts with caps 43 """ % sentenceend, re.VERBOSE | re.UNICODE) 44 45 puncdict = { 46 u"?": u";", 47 u";": u"·", 48 } 49 50 # Valid latin characters for use as accelerators 51 valid_latin_accel = u"abcdefghijklmnopqrstuvwxyz" + \ 52 u"ABCDEFGHIJKLMNOPQRSTUVWXYZ" + \ 53 u"1234567890" 54 55 # Valid greek characters for use as accelerators (accented characters 56 # and "ς" omitted) 57 valid_greek_accel = u"αβγδεζηθικλμνξοπρστυφχψω" + \ 58 u"ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩ" 59 60 # Valid accelerators 61 validaccel = u"".join([valid_latin_accel, valid_greek_accel])
62