re-import sources as agreed with the maintainer
This commit is contained in:
parent
169da75d0b
commit
f9ea3ae7c8
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,4 +1,2 @@
|
||||
SOURCES/en_GB.zip
|
||||
SOURCES/rel-2014.08.11.1.tar.gz
|
||||
/en_GB.zip
|
||||
/rel-2014.08.11.1.tar.gz
|
||||
|
18
hunspell-en-irregular-plural-possessive.patch
Normal file
18
hunspell-en-irregular-plural-possessive.patch
Normal file
@ -0,0 +1,18 @@
|
||||
--- wordlist.orig/scowl/src/add-affixes 2012-10-11 13:05:58.864864580 +0100
|
||||
+++ wordlist/scowl/src/add-affixes 2012-10-11 14:11:05.144908897 +0100
|
||||
@@ -74,6 +74,15 @@
|
||||
@a = grep {not $remove{"$w:$p:$_"}} @a;
|
||||
next unless @a;
|
||||
$lookup{$w} .= join("\n",@a)."\n";
|
||||
+ next unless $p eq 'N';
|
||||
+
|
||||
+ # For irregular nouns that have plurals that do not end in s
|
||||
+ # then add the possessive form of the plural as well
|
||||
+ foreach (@a) {
|
||||
+ next unless (substr($_,-1,1) ne 's');
|
||||
+ $possessive{$_} = "$_\'s\n";
|
||||
+ $lookup{$w} .= $possessive{$_};
|
||||
+ }
|
||||
}
|
||||
|
||||
unless ($no_possessive) {
|
Loading…
Reference in New Issue
Block a user