|  [ ID = 4846 ]  | Romanian Conference Interpreter  | 
| Organisation name | Romanianconferenceinterpreter.com  | 
| Short name or acronym | Romanian Conference Interpreter  | 
| Organisation type | Private company  | 
| Activity type | Other Translation or Localisation related expertise  | 
| Address  | 62 Cross Road  | 
| Postal Code  | SW19 1PF  | 
| City  | London  | 
| Country  | United Kingdom  | 
| Phone  | +44 7807179216 | 
| Fax  | + United Kingdom | 
| Email  | constantin_(on)_romanianconferenceinterpreter.com  | 
| Organisation URL  | http://www.interpretdeconferinta.co.uk  | 
| 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 | Project Manager  | 
| Department | Languages  | 
| Email | constantin_(on)_romanianconferenceinterpreter.com  | 
| Phone | +44 7807179216 | 
| Fax | +  | 
 
 
Update this profile
 | 
Last update: 2016-12-15 08:38:36
#!/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"
 |