d103bc0438ed65caaa9361cafcd259edc9bc2f64
[scpubgit/stemmatology.git] / lib / Text / Tradition / Language / French.pm
1 package Text::Tradition::Language::French;
2
3 #use Flemm;
4 use Text::Tradition::Collation::Reading::WordForm;
5
6 =head1 NAME
7
8 Text::Tradition::Language::French - language-specific modules for French
9
10 =head1 DESCRIPTION
11
12 Implements morphology lookup for French words in context.
13
14 =head1 SUBROUTINES
15
16 =head2 lemmatize( $text )
17
18 Evaluates the string using the Flemm package, and returns the results.
19
20 =cut
21
22 sub lemmatize {
23         my $text = shift;
24         
25         
26 }
27
28 =head2 word_lookup( $word )
29
30 Looks up a word using the Flemm package, and returns the possible results.
31 It is better to use L<lemmatize> for context sensitivity.
32
33 =cut
34
35 sub word_lookup {
36         my $word = shift;
37         
38 }
39
40 =head1 LICENSE
41
42 This package is free software and is provided "as is" without express
43 or implied warranty.  You can redistribute it and/or modify it under
44 the same terms as Perl itself.
45
46 =head1 AUTHOR
47
48 Tara L Andrews E<lt>aurum@cpan.orgE<gt>