|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 3386 ] | LID |
|---|---|
| Organisation name | LID Editorial Empresarial |
| Short name or acronym | LID |
| Organisation type | Private company |
| Activity type | Lang+Speech Technology provider |
| Address | Musgo 5 |
| Postal Code | 28023 |
| City | Madrid |
| Country | Spain |
| Phone | + +34 91 372 9003 |
| Fax | + +34 91 372 8514 |
| info_(on)_lideditorial.com | |
| Organisation URL | http://www.lideditorial.com |
| Logo | Description |
![]() |
Spanish publishing company dedicated to specialised multilingual dictionaries with definition. LID has a database containing around 32.000 terms in 19 languages and definitions in 15 languages. Current dictionaries include: - Business and economics (with definitions in Spanish and translation of the term in English, French, German, Italian and Portuguese) - Information technologies (Spanish definitions, term in English and French) - Construction and Real Estate (definitions in Spanish, term in English, French, German and Italian) In the coming months: - Logistics and Transport (in 12 European languages) - Advertising and marketing (Spanish-English) - Franchising and Commerce (Spanish-English) - Diplomacy and International Relations and more in the fields of medicine and tourism. |
| Contact | |
| Name | Marcelino Elosua |
| Function | Editor |
| Department | |
| elosua_(on)_alumni-gsb.stanford.edu | |
| Phone | + +34 91 372 9003 |
| Fax | + |
|
|
Last update: 2004-07-20 15:22:06 #!/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" |