[ ID = 4845 ] | Diana Singureanu |
Organisation name | Diana Singureanu Language Services |
Short name or acronym | Diana Singureanu |
Organisation type | Private company |
Activity type | Translation or Localisation center with specific expertise in Language or Speech Technology |
Address | Cross Road |
Postal Code | |
City | London |
Country | United Kingdom |
Phone | +44 7807179216 |
Fax | + United Kingdom |
Email | diana_(on)_romanianconferenceinterpreter.com |
Organisation URL | http://www.romaniantranslator.com |
Logo | Description |
 |
I am the only UK based Romanian Translator and Romanian Interpreter (Romanian
Conference Interpreter) holding Masters in Translation Studies and in
Conference Interpreting from a UK University. I am also a Professional Police
and Court Romanian Interpreter (NRPSI registered) successfully training
students sitting the DPSI exam since 2010 and DipTrans from 2011
|
| Contact |
Name | Mrs Diana Singureanu |
Function | Translator & Interpreter Teacher |
Department | Languages |
Email | diana_(on)_romanianconferenceinterpreter.com |
Phone | +7807179216 7807179216 |
Fax | + |
Update this profile
|
Last update: 2016-12-15 08:22:53
#!/usr/bin/ksh
# cntr.cgi --
# version 0
DOC=$DOCUMENT_ROOT$DOCUMENT_URI
VSTART=28-08-2008
WRONGLOG=${DOCUMENT_ROOT}/cntr.txt
echo Content-type:text/html
echo
case $DOC in
*experts*) CDIR=${DOCUMENT_ROOT}/cntex ;;
*orgs*) CDIR=${DOCUMENT_ROOT}/cntor ;;
*) WRONG=yes ;;
esac
CFILE=${DOC##*/}
case ${CFILE} in
[0-9][0-9][0-9][0-9].html) WRONG=no ;;
*) WRONG=yes ;;
esac
[ $WRONG = yes ] &&
{ echo "$(date) $REMOTE_ADDR ${DOC}" >> $WRONGLOG
exit
}
CCNT=${CDIR}/${CFILE%.html}.txt
CLCK=${CDIR}/${CFILE%.html}.lck
[ -s $CCNT ] && COUNT=$(head -1 $CCNT)
COUNT=$(( ${COUNT:-0} + 1 ))
[ -f $CLCK ] ||
{ touch $CLCK
echo $COUNT > $CCNT
rm -f $CLCK
}
echo " Visits since $VSTART: $COUNT"
|