#!/usr/bin/perl -T
#
# Bulgarian translation by Veselin Slavov, vess@btc.net, 2002/04/02
# Bulgarian alphabet encoded by windows-1251
#

$lang_charset = 'windows-1251';

%lang_folders =
   (
   INBOX => '',
   'saved-messages' => '',
   'sent-mail'      => '',
   'saved-drafts'   => '',
   'mail-trash'     => '',
   DELETE => '----'
   );

%lang_sortlabels =
   (
   status      => ' ( )',
   date        => ' ( )',
   date_rev    => ' ( )',
   sender      => ' ( )',
   sender_rev  => ' ( )',
   subject     => ' ( )',
   subject_rev => ' ( )',
   size        => ' ( )',
   size_rev    => ' ( )'
   );

%lang_prioritylabels =
   (
   normal      => '',
   urgent      => '',
   'non-urgent'=> '  '
   );

%lang_withoriglabels =
   (
   at_beginning => ' ',
   at_end      => ' ',
   none        => ''
   );

%lang_receiptlabels =
   (
   ask => '  ',
   yes => '',
   no  => ''
   );

%lang_timelabels =
   (
     10 => '10 ',
     30 => '30 ',
     60 => '60 ',
    120 => '2 ',
    180 => '3 ',
    360 => '6 ',
    720 => '12 ',
   1440 => '24 '
   );

%lang_text =
   (  
   login      => '',
   clear      => '',
   changepwd  => '  ',
   viewhistory=> '',
   of         => '',
   messages   => '',
   unread     => '',
   nomessages => ' ',
   composenew => '   ',
   refresh    => '',
   userprefs  => ' ',
   addressbook=> '  ',
   folders    => '',
   emptytrash => ' ',
   forever    => '',
   userdef    => '  ',
   logout     => '',
   page       => '',
   msgcopyconf=> '\'   \'',
   copy       => '',
   msgmoveconf=> '\'   \'',
   move       => '',
   markasread => '  ',
   markasunread => '  ',
   dateformat => '  ',
   date       => '',
   recipient  => '',
   sender     => '',
   subject    => '',
   thread     => '',
   size       => '',
   backto     => ' ',
   reply      => '',
   replyall   => '  ',
   forward    => '',
   forwardasatt=>'  ',
   printfriendly=> '  ',
   from       => '',
   replyto    => ' ',
   to         => '',
   cc         => ' ',
   bcc        => ' ',
   simplehead => ' ',
   allhead    => '',
   simpleattmode => '   ',
   allattmode    => '  ',
   attachment => '',
   type       => '',
   filename   => '  ',
   encoding   => '',
   description=> '',
   download   => '',
   thisispartialmsg => '    ',
   msgrebuild => '  ',
   editdraft  => ' ',
   savedraft  => ' ',
   send       => '',
   about      => 'About',
   close      => 'Close',
   cancel     => '',
   continue   => '',
   loginagain => ' ',
   exit       => '',
   for        => '',
   yourname   => ' ',
   save       => '',
   add        => '',
   folderrenprop => '\'      \'',
   rename     => ' ',
   folderdelconf => '\'        !\'',
   chkindex    => '  ',
   folderchkindexconf => '\'       ?\'',
   reindex    => ' ',
   folderreindexconf => '\'  ,      ?\'',
   total      => '',
   delete     => '',
   reserve    => '',
   clearadd   => '    ',
   importadd  => ' ',
   exportadd  => '  ',
   import     => '',
   addmod     => '/',
   modify     => '',
   abooktitle => '  ',
   abook      => '  ',
   name       => '',
   email      => '',
   note       => '',
   group      => '',
   quota_hit  => '',
   usage      => '',
   editfroms  => '   ',
   pop3book   => 'POP3 ',
   retr_pop3s => '  POP3 ',
   filterbook => '  ',
   include    => '',
   exclude    => ' ',
   smtprelay  => 'SMTP Relay',
   header     => '',
   body       => '',
   attfilename=> ' ',
   all        => '',
   enable     => '',
   disable    => '',
   filtered   => '',
   blockrelay => ' SMTP Relay',
   blockemail => ' ',
   read       => '',
   yourmsg    => ' ',
   delivered  => '',
   wasreadon1 => '  ',
   wasreadon2 => '.',
   globaladdressbook => '  ',
   globalfilterrule => '  ',
   readonly   => '  ',
   textcontent=> '',
   search     => '',
   spellcheck => ' ',
   checkagain => ' ',
   finishchecking => '  ',
   manuallyfix=> ' '
   );

%lang_err = (
            has_illegal_chars => '  !',
            couldnt_open      => ' ',
            couldnt_locksh    => '    ',
            couldnt_lock      => '    ',
            couldnt_seek      => '    ',
            couldnt_close     => ' ',
            disallowed_pop3   => ' POP3 ',
            disallowed_client => '   ',
            disallowed_receiverdomain => '      ',
            norootlogin       => '  root   .',
            shouldnt_move_here=> '   !',
            destination_folder=> ' ',
            doesnt_exist      => ' !',
            foldername_long   => '       -  16 !',
            folder_with_name  => '   ',
            already_exists    => ' !',
            cant_create_folder=> '     !',
            under_indexing    => '   ,   ',
            abook_invalid     => '      Microsoft Outlook Express 5  CSV .     ,      ",E-mail ",  ',
            back              => '',
            tryagain          => '  .',
            abook_toobig      => '        .   ',
            cant_create_dir   => '      !',
            folder_hitquota   => '  ,        .       ,   ,    .    ,        .',
            att_overlimit     => '      ,  ',
            inv_msg_op        => '   ',
            inv_sessid        => '  -   !',
            no_endpart        => ' ',
            part_missing      => ' ',
            rebuild_fmterr    => '  ',
            rebuild_sizeerr   => '  ',
            user_not_exist    => ' ',
            func_notsupported => ' ',
            auth_syserr       => '   ',
            param_fmterr      => '  ',
            pwd_incorrect     => ' ',
            network_server_error => '    ',
            sendmail_error    => '    .        .'
            );

1;
