|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 4740 ] | Toptranslation |
---|---|
Organisation name | Toptranslation GmbH |
Short name or acronym | Toptranslation |
Organisation type | Other |
Activity type | Translation or Localisation center with specific expertise in Language or Speech Technology |
Address | Ferdinandstr. 29-33 |
Postal Code | 20095 |
City | Hamburg |
Country | Germany |
Phone | +49 8007239798 |
Fax | +49 40609464199 |
clients_(on)_toptranslation.com | |
Organisation URL | https://www.toptranslation.com/de |
Logo | Description |
![]() |
A performance-driven and fast-growing translation services provider, Toptranslation has carved its special-ised niche by delivering high-quality, technically perfect translations in 53 languages to medium-sized en-terprises and large corporations. The company blends certified industry expertise with the transparency, speed and efficiency of a web-based corporate solution. Over 3,000 specialist translators from 73 countries work exclusively in their native language to service the linguistic needs of clients in more than 20 countries. Toptranslation has offices in Hamburg, Vienna, Zurich and Paris. - 53 languages and over 500 language combinations - Double and triple-checking to ensure faultless technical translations - Quality assurance according to ISO 9001 and DIN EN 15038 - Over 3,000 expert native speakers around the world, working in 15 sectors - Translation memory systems to cut the cost of translation - Certified translations - Express translations (in less than 60 minutes) - Typesetting and layout editing (translations directly in Adobe InDesign, for instance) - In-house IT infrastructure - Individual client Dashboard to control and monitor projects - Document management - Secure data transmission using AES 256-bit SSL encryption (online banking standard) |
Contact | |
Name | Ms Johanna Frank |
Function | Communications |
Department | |
johanna.frank_(on)_toptranslation.com | |
Phone | + |
Fax | + |
![]() |
Last update: 2015-04-01 00:11: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" |