dictionary.sh.in
上传用户:weiyuanprp
上传日期:2020-05-20
资源大小:1169k
文件大小:1k
源码类别:

传真(Fax)编程

开发平台:

C/C++

  1. #! @SCRIPT_SH@
  2. #    $Id: dictionary.sh.in,v 1.25 2007/12/23 15:50:28 faxguy Exp $
  3. LANG=`echo $LANG | sed 's/^cn_/zh_/'` # fix wrong Chinese locale
  4. case "$LANG" in
  5.     pl_*)
  6. . bin/dict/pl
  7. ;;
  8.     fr_*)
  9. . bin/dict/fr
  10. ;;
  11.     it_*)
  12. . bin/dict/it
  13. ;;
  14.     pt_BR*)
  15. . bin/dict/pt_BR
  16. ;;
  17.     pt_*)
  18. . bin/dict/pt
  19. ;;
  20.     es_*)
  21. . bin/dict/es
  22. ;;
  23.     de_*)
  24. . bin/dict/de
  25. ;;
  26.     ro_*)
  27. . bin/dict/ro
  28. ;;
  29.     tr_*)
  30. . bin/dict/tr
  31. ;;
  32.     zh_*)
  33. . bin/dict/zh
  34. ;;
  35.     sr_*)
  36. . bin/dict/sr
  37. ;;
  38.     *)
  39. . bin/dict/en
  40. ;;
  41. esac
  42. #
  43. # Modify LANG according to CHARSET
  44. #
  45. LANG="`echo $LANG | $SED 's/..*//'`.$CHARSET"
  46. export LANG