|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3278 ] | PROMT |
---|---|
Organisation name | PROMT |
Short name or acronym | PROMT |
Organisation type | Joint Stock Company |
Activity type | Machine Translation |
Address | 16 Birzhevaya Liniya, Vasilievsky Island |
Postal Code | 199034 |
City | St. Petersburg |
Country | Russian Federation |
Phone | + +78123274425 |
Fax | + +78123274483 |
info_(on)_e-promt.com | |
Organisation URL | http://www.online-translator.com |
Logo | Description |
![]() |
Founded in 1991, PROMT really started more than 20 years ago as a group of researchers involved in machine translation technology at an academic level. PROMT is currently one of the world leaders in language processing technologies developing and marketing the integrated MT+TM translation solutions for the Internet, corporate Intranets/LANs, PCs, and pocket devices, under the trademark of @promt . The brand new dictionary architecture of the underlying PROMT eXcellent Translation Technology (PROMT XT) reflects a new approach in building MT dictionaries. Intellectual algorithms of PROMT XT ensure dramatical improvement in the translation productivity and accuracy for all types of content. XML and XBRL documents translation is possible. There is also the translation solution for Microsoft .NET. Free online test available at www.Online-Translator.com. Companies that use PROMT solutions include NASA, NEC, Lucent Technologies, Lycos and many others. |
Contact | |
Name | Ms. Elena Tokareva |
Function | Overseas Sales Coordinator |
Department | Overseas Sales |
elena.tokareva_(on)_e-promt.com | |
Phone | + +78123274425 |
Fax | + +78123274483 |
![]() |
Last update: 2003-12-19 15:14:20 #!/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" |