Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/translate-toolkit-1.5.1/translate/lang/bn.py
diff options
context:
space:
mode:
Diffstat (limited to 'translate-toolkit-1.5.1/translate/lang/bn.py')
-rw-r--r--translate-toolkit-1.5.1/translate/lang/bn.py48
1 files changed, 48 insertions, 0 deletions
diff --git a/translate-toolkit-1.5.1/translate/lang/bn.py b/translate-toolkit-1.5.1/translate/lang/bn.py
new file mode 100644
index 0000000..1cfe066
--- /dev/null
+++ b/translate-toolkit-1.5.1/translate/lang/bn.py
@@ -0,0 +1,48 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+#
+# Copyright 2008 Zuza Software Foundation
+#
+# This file is part of translate.
+#
+# translate 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 2 of the License, or
+# (at your option) any later version.
+#
+# translate 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 translate; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+
+"""This module represents Bengali language.
+
+For more information, see U{http://en.wikipedia.org/wiki/Bengali_language}
+"""
+
+import re
+
+from translate.lang import common
+
+class bn(common.Common):
+ """This class represents Bengali."""
+
+ sentenceend = u"।!?…"
+
+ sentencere = re.compile(r"""(?s) #make . also match newlines
+ .*? #anything, but match non-greedy
+ [%s] #the puntuation for sentence ending
+ \s+ #the spacing after the puntuation
+ (?=[^a-z\d])#lookahead that next part starts with caps
+ """ % sentenceend, re.VERBOSE)
+
+ puncdict = {
+ u". ": u"। ",
+ u".\n": u"।\n",
+ }
+
+ ignoretests = ["startcaps", "simplecaps"]