|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3517 ] | Today Translations |
---|---|
Organisation name | Today Translations |
Short name or acronym | Today Translations |
Organisation type | Private company |
Activity type | Translation or Localisation center without specific expertise in Lang+Speech Technology |
Address | 13-14 King Street |
Postal Code | EC2V 8EA |
City | London |
Country | United Kingdom |
Phone | +44 (0) 845 034 7007 |
Fax | +44 (0) 845 034 7017 |
info_(on)_todaytranslations.com | |
Organisation URL | http://www.todaytranslations.com/ |
Logo | Description |
![]() |
If you want an agency providing translation, localisation and conference-interpreting services, you have plenty of choice. But how many truly offer you the wow factor? At Today Translations, we do. It comes from our passion for languages and dedication to international business - qualities that won us the Duke of Edinburgh Award for Enhancing International Trade. It comes from our own high standards, which we have insisted on since our formation in 2001. And which won us a Shell LiveWire Award in 2003. It comes from our fast turnaround, made possible with a database of over 2,600 linguists, interpreting and translating in more than 160 languages for over 2000 clients. So, what do you need? |
Contact | |
Name | |
Function | |
Department | |
info_(on)_todaytranslations.com | |
Phone | +44 (0) 845 034 7007 |
Fax | +44 (0) 845 034 7017 |
![]() |
Last update: 2010-03-05 18:00: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" |