#!/usr/bin/perl -T

$lang_charset = 'koi8-r';

%lang_folders =
   (
   INBOX => '',
   SAVED => '',
   SENT  => '',
   TRASH => ''
   );

%lang_sortlabels =
   (
   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 => ' ',
   logout     => '',
   page       => '',
   moveconfirm=> '\'  ?\'',
   move       => '',
   date       => '',
   recipient  => '',
   sender     => '',
   subject    => '',
   size       => '',
   backto     => ' ',
   reply      => '',
   replyall   => ' ',
   forward    => '',
   from       => '',
   replyto    => ' ',
   to         => '',
   cc         => '',
   bcc        => 'BCC',
   simplehead => '',
   allhead    => '',
   attachment => '',
   type       => '',
   filename   => ' ',
   encoding   => '',
   download   => '',
   send       => '',
   cancel     => '',
   continue   => '',
   for        => '',
   yourname   => ' ',
   save       => '',
   add        => '',
   folderconf => '   ţ ?',
   delete     => '',
   importadd  => '  ',
   import     => '',
   addmod     => '/',
   abooktitle => '  NeoMail',
   abook      => ' ',
   quota_hit  => ' '
   );

%lang_err = (
            has_illegal_chars => '  !',
            couldnt_open      => '  ',
            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=> '   !',
            abook_invalid     => ',         Microsoft Outlook Express 5  CSV .  ,      ,       "Name,E-mail Address",  ',
            back              => '',
            tryagain          => '   .',
            abook_toobig      => ',    .',
            cant_create_dir   => '     !',
            folder_hitquota   => ',     ,         .        ,   ,    .   ,       ,    .',
            att_overlimit     => ',     , ',
            inv_sessid        => 'Your request didn\'t contain the proper session ID cookie -- access denied!'
            );

1;
