|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3108 ] | Argos |
---|---|
Organisation name | Argos Company Ltd. |
Short name or acronym | Argos |
Organisation type | Translation and Localization Services (East European languages) |
Activity type | Translation and Localization |
Address | Garczynskiego 5/3 |
Postal Code | 31-524 |
City | Krakow |
Country | Poland |
Phone | + +48-12-410-1310 |
Fax | + +48-12-422-6388 |
maria.kania_(on)_argos.com.pl | |
Organisation URL | http://www.argos.com.pl |
Logo | Description |
![]() |
Argos focuses on providing technical, IT, e-commerce, telecommunications, business/marketing, financial, insurance, economics, legal, and medical translations. We have extensive experience in localization of websites, software, online help, and multimedia projects. We offer translation services from English into Polish, Russian, Czech, Hungarian, Slovak, Romanian, and Slovene (we also offer German/French into Polish translations). We work with such well-known companies as SDL International, Bowne Global, HP, OECD, Warsaw Stock Exchange, Sony, Corel, GEMS, Roche, SkillSoft (e-learning), Ricoh, JVC, and NCR. |
Contact | |
Name | Ms. Maria Kania-Tasak |
Function | Business Development Manager |
Department | Sales and Marketing |
maria.kania_(on)_argos.com.pl | |
Phone | + +410-21-04-2104 |
Fax | + +48-12-422-6388 |
![]() |
Last update: 2002-11-25 14:34:02 #!/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" |