|  
 |||||||||||||||||||||||||||||||||||||||||||||||
 
       
       
 
 
 
 
 |  
 |||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 3728 ] | CLS | 
|---|---|
| Organisation name | CLS Communication | 
| Short name or acronym | CLS | 
| Organisation type | Private company | 
| Activity type | Language or Speech Technology service provider | 
| Address | Dianastrasse 6 | 
| Postal Code | 8002 | 
| City | Zurich | 
| Country | Switzerland | 
| Phone | +41 206 68 68 | 
| Fax | +41 206 68 90 | 
| info_(on)_cls-communication.com | |
| Organisation URL | http://www.cls-communication.com | 
| Logo | Description | 
![]()  | 
CLS Communication, headquartered in Switzerland, is a globally active service and technology provider specialized in translating, editing and processing multilingual content for the finance, life science, legal and telecommunications industries. Over 400 well-known global organizations are partnering with CLS Communication for solutions that boost the efficiency of their corporate communication. CLS Communication has 280 in-house experts in Europe, the United States and Asia and a global network of some 1000 specialists, enabling corporations to communicate more effectively in their global markets. Through state-of-the-art language and content technologies, Swiss bank security standards and customer-centric services, CLS Communication can offer international clients a broad range of tailor-made services and solutions. This wide spectrum of services ranges from the editing of multilingual annual reports, the machine translation of a colleagues memo from overseas, the translation of corporate communication texts and the adaptation of advertising or marketing material all the way to the outsourcing of corporate language departments.  | 
| Contact | |
| Name | Dr. Elisabeth Maier | 
| Function | Chief Technology Officer | 
| Department | IT & Support | 
| elisabeth.maier_(on)_cls-communication.com | |
| Phone | +41 61 205 27 49 | 
| Fax | +41 61 205 27 90 | 
| 
 
 | 
Last update: 2007-01-09 15:45:48 #!/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" |