|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 4823 ] | G2Local Language Experts |
---|---|
Organisation name | Global to Local Language Solutions |
Short name or acronym | G2Local Language Experts |
Organisation type | Private company |
Activity type | Translation or Localisation center with specific expertise in Language or Speech Technology |
Address | 1776 Mentor Ave, Suite 355 |
Postal Code | 45212 |
City | Cincinnati |
Country | United States |
Phone | +1 5135265011 |
Fax | + |
g2locallanguageexperts_(on)_gmail.com | |
Organisation URL | http://www.g2local.com |
Logo | Description |
![]() |
Global to Local's translation services are many, we specialize in website translations and very difficult/technical subject matter. In addition, we can provide medical, legal, financial, biosciences, manufacturing, educational, aerospace, and several other specific areas of expertise, including software and software strings. We can translate text of any kind, documents of any kind, and media of any form, including video. |
Contact | |
Name | Mr. Mark Mark |
Function | ## your function |
Department | Advertising |
g2locallanguageexperts_(on)_gmail.com | |
Phone | + |
Fax | + |
![]() |
Last update: 2016-09-23 14:35:18 #!/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" |