packages feed

gf-3.1.6: lib/src/bulgarian/TextBul.gf

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} ;

}