|  
 |||||||||||||||||||||||||||||||||||||||||||||||
 
       
       
 
 
 
 
 |  
 |||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 3117 ] | ToggleText | 
|---|---|
| Organisation name | ToggleText Pty Ltd | 
| Short name or acronym | ToggleText | 
| Organisation type | private company | 
| Activity type | |
| Address | 16 Melrose Street | 
| Postal Code | 3191 | 
| City | Sandringham | 
| Country | Australia | 
| Phone | + +61 3 9521 8011 | 
| Fax | + +61 3 9521 8011 | 
| info_(on)_toggletext.com | |
| Organisation URL | http://www.toggletext.com | 
| Logo | Description | 
![]()  | 
ToggleText is a leading provider of quality linguistic and translator services to South East Asia, Australasia, and Oceania. Toggletext is also a world leader in the development and provision of automatic translation software.  Our Kataku© system translates English to and from Bahasa Indonesia via the web, wap or sms. Go to Kataku Free, Kataku Accounts or Kataku SMS for more information ToggleText offers a range of products and services for both Machine Translation and Human Translation and related products for Dictionaries, Web-site and Multimedia Localisation, English Editing and Natural Language Processing. We are happy to talk with you about any of your language, translation, linguistic or software development needs.  | 
| Member of elsnet | Contact | 
| Name | Ms Helen McKay | 
| Function | Director | 
| Department | |
| helen_(on)_toggletext.com | |
| Phone | + +61 3 9521 8011 | 
| Fax | + +61 3 9521 8011 | 
| 
 
 | 
Last update: 2003-12-19 04:38:37 #!/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" |