#!/usr/bin/perl -T

$lang_charset = 'GB2312';

%lang_folders =
   (
   INBOX => 'ռ',
   'saved-messages' => 'ʼֿ',
   'sent-mail'      => 'ѷʼ',
   'saved-drafts'   => 'ݸ',
   'mail-trash'     => '',
   DELETE => '--ֱɾ--'
   );

%lang_sortlabels =
   (
   status      => '״̬δȣ',
   date        => 'ڣȣ',
   date_rev    => 'ڣȣ',
   sender      => 'ˣʻ٣',
   sender_rev  => 'ˣʻࣩ',
   size        => 'Сȣ',
   size_rev    => 'ССȣ',
   subject     => '⣨',
   subject_rev => '⣨ݼ'
   );

%lang_mualabels =
   (
   outlookexp5 => 'Outlook Express 5',
   nsmail      => 'Netscape Mail 4.x'
   );

%lang_text =
   (  
   login      => '¼',
   clear      => '',
   of         => '/',
   messages   => '',
   unread     => 'δ',
   nomessages => 'ʼ',
   composenew => 'дʼ',
   refresh    => 'ˢ',
   userprefs  => '趨ģ',
   addressbook=> 'ַ',
   folders    => 'ʼ',
   emptytrash => '',
   forever    => 'ñ',
   logout     => '˳',
   page       => 'ҳ',
   msgcopyconf=> '\'ȷҪѡʼ\'',
   copy       => '',
   msgmoveconf=> '\'ȷҪתѡʼ\'',
   move       => 'ƶ',
   date       => '',
   recipient  => 'ռ',
   sender     => '',
   subject    => '',
   size       => 'С',
   backto     => 'ص',
   reply      => 'ظ',
   replyall   => 'ȫظ',
   forward    => 'ת',
   forwardasatt=>'Ըʽת',
   from       => '',
   replyto    => 'ظ',
   to         => 'ռ',
   cc         => '',
   bcc        => 'ܼ',
   simplehead => 'ʼͷ',
   allhead    => 'ȫʼͷ',
   simpleattmode => 'и',
   allattmode    => 'и',
   attachment => '',
   type       => '',
   filename   => 'ļ',
   encoding   => '',
   download   => '',
   editdraft  => '༭ݸ',
   savedraft  => 'ݴݸ',
   send       => '',
   cancel     => 'ȡ',
   continue   => '',
   for        => 'FOR',
   yourname   => '',
   save       => '',
   add        => '',
   folderrenprop => '\'ʼеơ\'',
   rename     => '',
   folderdelconf => '\'ȷҪɾʼм\'',
   total      => 'ܼ',
   delete     => 'ɾ',
   reserve    => '',
   clearadd   => 'еַ',
   importadd  => 'ַ',
   exportadd  => 'ַ',
   import     => '',
   addmod     => '/޸',
   abooktitle => 'ַ',
   abook      => 'ַ',
   group      => 'ʼ',
   quota_hit  => '洢ռ',
   pop3book   => '趨POP3ʼ',
   retr_pop3s => 'ȡPOP3ʼ',
   filterbook => '趨ʼ',
   include    => '',
   exclude    => '',
   smtprelay  => 'ת',
   header     => 'żͷ',
   body       => '',
   attfilename=> '',
   all        => 'ȫ',
   enable     => '',
   disable    => 'ͣ',
   blockrelay => 'ת',
   read       => 'ȡ',
   yourmsg    => 'ʼ',
   delivered  => '',
   wasreadon1 => '',
   wasreadon2 => 'ȡ',
   globaladdressbook => 'ַ',
   globalfilterrule => 'ʼ˹',
   readonly   => 'ֻ',
   textcontent=> '',
   search     => '',
   spellcheck => 'ƴд',
   checkagain => '¼',
   finishchecking => '',
   cancel     => 'ȡ',
   manuallyfix=> 'ֶ'
   );

%lang_err = (
            has_illegal_chars => 'зǷַ',
            couldnt_open      => '޷',
            couldnt_locksh    => 'ȡ޷',
            couldnt_lock      => 'д޷',
            couldnt_seek      => '޷Ѱ',
            couldnt_close     => '޷ر',
            norootlogin       => 'root¼',
            shouldnt_move_here=> 'תż',
            destination_folder=> 'Ŀʼ',
            doesnt_exist      => 'ڣ',
            foldername_long   => 'ʼƲܳ16ַ',
            folder_with_name  => 'Ƶʼ',
            already_exists    => 'Ѵڣ',
            cant_create_folder=> 'ܽʼУ',
            under_indexing    => 'УԺ',
            abook_invalid     => 'ǸļOutlook Express5CSVʽ',
            back              => 'һҳ',
            tryagain          => '.',
            abook_toobig      => 'ַơ',
            cant_create_dir   => '޷ʹĿ¼',
            folder_hitquota   => 'ǸѾƣȽҪżɾ䣬ղʼ',
            att_overlimit     => 'С',
            inv_msg_op        => 'Чʼ',
            inv_sessid        => 'ʹ˵ session id ظ¼ -- ܾȡ',
            user_not_exist    => 'ʹ߲',
            password_error    => '',
            network_server_error => '',
            sendmail_error    => 'Ǹ޷ĳʼصһҳǷؼһΡ'
            );

1;
