|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 4359 ] | WorldAccent |
|---|---|
| Organisation name | WorldAccent Translation |
| Short name or acronym | WorldAccent |
| Organisation type | Private company |
| Activity type | Translation or Localisation center without specific expertise in Language or Speech Technology |
| Address | 31 Great Sutton Street |
| Postal Code | EC1V 0NA |
| City | London |
| Country | United Kingdom |
| Phone | +44 2078658300 |
| Fax | +44 2078658400 |
| info_(on)_worldaccent.com | |
| Organisation URL | http://www.worldaccent.com |
| Logo | Description |
![]() |
Experts on multilingual communication - translation, typesetting and website localisation in the world's languages. We aim to utilise and expand upon the latest technological developments in language technology, CAT, etc. Website also contains a guide to translation terminology and jargon. |
| Contact | |
| Name | Mr Jim Dickson |
| Function | Director |
| Department | Translation |
| info_(on)_worldaccent.com | |
| Phone | +44 2078658300 |
| Fax | +44 2078658400 |
|
|
Last update: 2011-01-04 12:50:28 #!/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" |