[dutch-svn] r149 - in trunk: . debian

Kurt Roeckx kroeckx at alioth.debian.org
Wed Nov 11 15:31:28 UTC 2009


Author: kroeckx
Date: 2009-11-11 15:31:27 +0000 (Wed, 11 Nov 2009)
New Revision: 149

Modified:
   trunk/convert
   trunk/debian/changelog
Log:
Mark words beginning with ij or IJ as keep case.


Modified: trunk/convert
===================================================================
--- trunk/convert	2009-10-22 16:41:37 UTC (rev 148)
+++ trunk/convert	2009-11-11 15:31:27 UTC (rev 149)
@@ -32,6 +32,7 @@
 #   subscript 2 with a 2, so we get CO2.
 # - No spelling software can deal with "IJ" being uppercase of "ij",
 #   so we add those words twice, once with "ij", once with "IJ"
+#   add mark them with "keep case"
 # - No spelling software can deal with words with a space or dash (-) in it.
 #   We also add the word splitted, which also means it will approve
 #   words that can never be used alone.
@@ -124,6 +125,10 @@
    # Convert first char to uppercase add a /c and append to list
    echo $w | sed -e 's/\(.*\)/\u\1\/c/' >> tmp.txt;
 done
+# Words beginning with "ij" or "IJ" need to have the c flag.
+sed -i -e 's/^\(ij[^/]*\)\/\?/\1\/c/' tmp.txt;
+sed -i -e 's/^\(IJ[^/]*\)\/\?/\1\/c/' tmp.txt;
+# create final file
 wc -l < tmp.txt > $LATIN1MYSPELL
 cat tmp.txt >> $LATIN1MYSPELL
 

Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog	2009-10-22 16:41:37 UTC (rev 148)
+++ trunk/debian/changelog	2009-11-11 15:31:27 UTC (rev 149)
@@ -1,3 +1,9 @@
+dutch (1:1.10-4) unstable; urgency=low
+
+  * Mark words beginning with ij or IJ as keep case.
+
+ -- Kurt Roeckx <kurt at roeckx.be>  Wed, 11 Nov 2009 16:30:40 +0100
+
 dutch (1:1.10-3) unstable; urgency=low
 
   * myspell-nl: move files over to /usr/share/hunspell and




More information about the pkg-dutch-commit mailing list