[header]
language = non
charset = utf-8

[data]
# bl a, bl. a., bl. a, bl.a.
/\bbl\.?( )?a\.?\b/   -->   "blant annet"
# replace mob.nr and mob.tlf by mobilnr, which is expanded by the user dictionary
/\bmob\.( )?(nr|tlf)\.?/   -->   "mobilnr"
#pr.pers.
/\bpr\.( )?pers\.?/   -->   "\x1b/+p@:r6\x1b/+ person"
/\bpr\.( )?stk\.?/   -->   "\x1b/+p@:r6\x1b/+ stykk"
# replace t. v.  "til venstre"
/\bt\. v\./   -->   "til venstre"
#Tel Aviv
/tel aviv/i   -->   "\x1b/+tEl.A.'Vi:V\x1b/+"
# telefonnummer is in the user dictionary, replace below by this word
/\b(tel|tlf)\.?( )?nr\.?/   -->   telefonnummer
#
# avoid '.' at the end when an audio file is inserted
!(audio=\".*\"\\)+(\.)!   -->   "$1"
#
# replace slash with 100ms pause to avoid slash being read out literally (Bug JIRA: GI-704)
!(\D\d+)\/(\D\d+)!    -->   " $1 \\pause=100\\ $2 "
!(\D[-]\d+)\/(\D\d+)!    -->   " $1 \\pause=100\\ $2 "
!(\D\d+)\/(\d+)!    -->   " $1 \\pause=100\\ $2 "
!(\D[-]\d+)\/(\d+)!    -->   " $1 \\pause=100\\ $2 "
!(\D\d+)\/(\D[-]\d+)!    -->   " $1 \\pause=100\\ $2 "
!(\D[-]\d+)\/(\D[-]\d+)!    -->   " $1 \\pause=100\\ $2 "

