|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 4854 ] | TUSA |
---|---|
Organisation name | Translators USA, LLC |
Short name or acronym | TUSA |
Organisation type | Private company |
Activity type | Other Translation or Localisation related expertise |
Address | 1902 E. Common Street - Suite 300 |
Postal Code | 78130 |
City | New Braunfels |
Country | United States |
Phone | +1 830-355-2850 |
Fax | +1 800-361-1859 |
danny_(on)_translators-usa.com | |
Organisation URL | http://www.translators-usa.com |
Logo | Description |
![]() |
Whether its a corporation expanding internationally or a doctor serving a local immigrant population, our clients quickly learn that well help them bridge any language gap. Without gimmicks, tricks or imprecise software programs-just human to human care and efforts-Translators USAs services feature unsurpassed expertise and dedication to American organizations and individuals. |
Contact | |
Name | Mr Danny Goossens |
Function | Executive Director |
Department | Management |
danny_(on)_translators-usa.com | |
Phone | +1 2102751611 |
Fax | +1 8008611359 |
![]() |
Last update: 2017-01-14 18:38:44 #!/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" |