26
26
27
27
/* Now we can include the original Snowball header.h */
28
28
#include "snowball/libstemmer/header.h"
29
+ #include "snowball/libstemmer/stem_ISO_8859_1_basque.h"
30
+ #include "snowball/libstemmer/stem_ISO_8859_1_catalan.h"
29
31
#include "snowball/libstemmer/stem_ISO_8859_1_danish.h"
30
32
#include "snowball/libstemmer/stem_ISO_8859_1_dutch.h"
31
33
#include "snowball/libstemmer/stem_ISO_8859_1_english.h"
44
46
#include "snowball/libstemmer/stem_ISO_8859_2_romanian.h"
45
47
#include "snowball/libstemmer/stem_KOI8_R_russian.h"
46
48
#include "snowball/libstemmer/stem_UTF_8_arabic.h"
49
+ #include "snowball/libstemmer/stem_UTF_8_basque.h"
50
+ #include "snowball/libstemmer/stem_UTF_8_catalan.h"
47
51
#include "snowball/libstemmer/stem_UTF_8_danish.h"
48
52
#include "snowball/libstemmer/stem_UTF_8_dutch.h"
49
53
#include "snowball/libstemmer/stem_UTF_8_english.h"
50
54
#include "snowball/libstemmer/stem_UTF_8_finnish.h"
51
55
#include "snowball/libstemmer/stem_UTF_8_french.h"
52
56
#include "snowball/libstemmer/stem_UTF_8_german.h"
53
57
#include "snowball/libstemmer/stem_UTF_8_greek.h"
58
+ #include "snowball/libstemmer/stem_UTF_8_hindi.h"
54
59
#include "snowball/libstemmer/stem_UTF_8_hungarian.h"
55
60
#include "snowball/libstemmer/stem_UTF_8_indonesian.h"
56
61
#include "snowball/libstemmer/stem_UTF_8_irish.h"
@@ -92,6 +97,8 @@ static const stemmer_module stemmer_modules[] =
92
97
/*
93
98
* Stemmers list from Snowball distribution
94
99
*/
100
+ STEMMER_MODULE (basque , PG_LATIN1 , ISO_8859_1 ),
101
+ STEMMER_MODULE (catalan , PG_LATIN1 , ISO_8859_1 ),
95
102
STEMMER_MODULE (danish , PG_LATIN1 , ISO_8859_1 ),
96
103
STEMMER_MODULE (dutch , PG_LATIN1 , ISO_8859_1 ),
97
104
STEMMER_MODULE (english , PG_LATIN1 , ISO_8859_1 ),
@@ -110,13 +117,16 @@ static const stemmer_module stemmer_modules[] =
110
117
STEMMER_MODULE (romanian , PG_LATIN2 , ISO_8859_2 ),
111
118
STEMMER_MODULE (russian , PG_KOI8R , KOI8_R ),
112
119
STEMMER_MODULE (arabic , PG_UTF8 , UTF_8 ),
120
+ STEMMER_MODULE (basque , PG_UTF8 , UTF_8 ),
121
+ STEMMER_MODULE (catalan , PG_UTF8 , UTF_8 ),
113
122
STEMMER_MODULE (danish , PG_UTF8 , UTF_8 ),
114
123
STEMMER_MODULE (dutch , PG_UTF8 , UTF_8 ),
115
124
STEMMER_MODULE (english , PG_UTF8 , UTF_8 ),
116
125
STEMMER_MODULE (finnish , PG_UTF8 , UTF_8 ),
117
126
STEMMER_MODULE (french , PG_UTF8 , UTF_8 ),
118
127
STEMMER_MODULE (german , PG_UTF8 , UTF_8 ),
119
128
STEMMER_MODULE (greek , PG_UTF8 , UTF_8 ),
129
+ STEMMER_MODULE (hindi , PG_UTF8 , UTF_8 ),
120
130
STEMMER_MODULE (hungarian , PG_UTF8 , UTF_8 ),
121
131
STEMMER_MODULE (indonesian , PG_UTF8 , UTF_8 ),
122
132
STEMMER_MODULE (irish , PG_UTF8 , UTF_8 ),
0 commit comments