summaryrefslogtreecommitdiff
path: root/next-lib/src/bulgarian/TextBul.gf
blob: 21e624b8eefef72b39ca39a7b5087e2cbf619729 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
concrete TextBul of Text = CatBul ** {
  flags coding=cp1251 ;


-- This will work for almost all languages except Spanish.

  lin
    TEmpty = {s = []} ;
    TFullStop x xs = {s = x.s ++ "." ++ xs.s} ;
    TQuestMark x xs = {s = x.s ++ "?" ++ xs.s} ;
    TExclMark x xs = {s = x.s ++ "!" ++ xs.s} ;

}