Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 9f6a6e9

Browse files
author
Liudmila Mantrova
committed
DOC: documented Nepali language support (hunspell and snowball)
1 parent 5c6680d commit 9f6a6e9

File tree

4 files changed

+62
-0
lines changed

4 files changed

+62
-0
lines changed

doc/src/sgml/contrib.sgml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,7 @@ CREATE EXTENSION <replaceable>module_name</> FROM unpackaged;
151151
&seg;
152152
&sepgsql;
153153
&shared-ispell;
154+
&snowball-ext;
154155
&sr-plan;
155156
&sslinfo;
156157
&tablefunc;

doc/src/sgml/filelist.sgml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,7 @@
161161
<!ENTITY contrib-spi SYSTEM "contrib-spi.sgml">
162162
<!ENTITY sepgsql SYSTEM "sepgsql.sgml">
163163
<!ENTITY shared-ispell SYSTEM "shared-ispell.sgml">
164+
<!ENTITY snowball-ext SYSTEM "snowball-ext.sgml">
164165
<!ENTITY sslinfo SYSTEM "sslinfo.sgml">
165166
<!ENTITY sr-plan SYSTEM "sr_plan.sgml">
166167
<!ENTITY tablefunc SYSTEM "tablefunc.sgml">

doc/src/sgml/hunspell-dict.sgml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,12 @@
5151
<entry><literal>russian_hunspell</literal></entry>
5252
<entry><literal>russian_hunspell</literal></entry>
5353
</row>
54+
<row>
55+
<entry>Nepali</entry>
56+
<entry><filename>hunspell_ne_np</filename></entry>
57+
<entry><literal>nepali_hunspell</literal></entry>
58+
<entry><literal>nepali_hunspell</literal></entry>
59+
</row>
5460
</tbody>
5561
</tgroup>
5662
</table>

doc/src/sgml/snowball-ext.sgml

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
<!-- doc/src/sgml/snowball-ext.sgml -->
2+
3+
<sect1 id="snowball-ext" xreflabel="snowball_ext">
4+
<title>snowball_ext</title>
5+
6+
<indexterm zone="snowball-ext">
7+
<primary>snowball-ext</primary>
8+
</indexterm>
9+
10+
<para>
11+
The <filename>snowball_ext</filename> module enables full-text
12+
search support for the Nepali language in the Snowball dictionary.
13+
This module adds the <literal>nepali_stem</literal> stemmer and
14+
the <literal>nepali</literal> configuration, as well as creates
15+
a full-text search template <literal>snowball_ext</literal>.
16+
</para>
17+
18+
<sect2>
19+
<title>Installation</title>
20+
21+
<para>
22+
The <filename>snowball_ext</filename> module is included into
23+
<productname>&project;</productname>. Once you have <productname>&project;</productname>
24+
installed, create the <filename>snowball_ext</filename> extension
25+
using the following statement:
26+
<programlisting>
27+
CREATE EXTENSION snowball_ext;
28+
</programlisting>
29+
</para>
30+
31+
</sect2>
32+
33+
<sect2>
34+
<title>Usage</title>
35+
36+
<para>
37+
The functionality of the <filename>snowball_ext</filename> extension
38+
for the Nepali language is identical to the one provided by the
39+
built-in Snowball dictionary for other supported languages. For
40+
details on configuring full-text search, see <xref linkend="textsearch">.
41+
</para>
42+
43+
</sect2>
44+
45+
<sect2>
46+
<title>Authors</title>
47+
48+
<para>
49+
Postgres Professional, Moscow, Russia
50+
</para>
51+
52+
</sect2>
53+
54+
</sect1>

0 commit comments

Comments
 (0)