|  
 |||||||||||||||||||||||||||||||||||||||||||||||
 
       
       
 
 
 
 
 |  
 |||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 4638 ] | Übersetzungsbüro Perfekt | 
|---|---|
| Organisation name | Übersetzungsbüro Perfekt | 
| Short name or acronym | Übersetzungsbüro Perfekt | 
| Organisation type | Private company | 
| Activity type | Translation or Localisation center without specific expertise in Language or Speech Technology | 
| Address | Neuer Wall 50 | 
| Postal Code | 20354 | 
| City | Hamburg | 
| Country | Germany | 
| Phone | +49 (0)4087408330 | 
| Fax | + | 
| info_(on)_uebersetzungsbuero-perfekt.de | |
| Organisation URL | http://www.uebersetzungsbuero-perfekt.de | 
| Logo | Description | 
![]()  | 
Our agency offers translations into 35 different languages. We focus on website, technical, legal, marketing and medical translations. Übersetzungsbüro Perfect is ISO 9001 and NEN-EN15038 certified.  | 
| Contact | |
| Name | Mrs Friederike Ost | 
| Function | Project manager | 
| Department | Marketing | 
| f.ost_(on)_uebersetzungsbuero-perfekt.de | |
| Phone | +49 (0)4087408330 | 
| Fax | + | 
| 
 
 | 
Last update: 2014-03-14 10:45:31 #!/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" |