#!/usr/bin/perl -T

$lang_charset = 'iso-8859-2';

%lang_folders =
   (
   INBOX => 'BEJV',
   SAVED => 'MENTETT',
   SENT  => 'KLDTT',
   DRAFT => 'DRAFT',
   TRASH => 'SZEMETES',
   DELETE => '--DELETE--'
   );

%lang_sortlabels =
   (
   status      => 'Status (Unread first)',
   date        => 'Dtum (Elre az j)',
   date_rev    => 'Dtum (Elre a rgi)',
   sender      => 'Kld (ABC sorrend)',
   sender_rev  => 'Kld (Fordtott ABC sorrend)',
   size        => 'Mret (Elre a nagyok)',
   size_rev    => 'Mret (Elre a kicsik)',
   subject     => 'Trgy (ABC szerint)',
   subject_rev => 'Trgy (Fordtott ABC szerint)'
   );

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

%lang_text =
   (  
   login      => 'Login',
   clear      => 'Trl',
   of         => '',
   messages   => 'zenetek',
   unread     => 'olvasatlan',
   nomessages => 'Nincs zenet',
   composenew => 'j zenet',
   refresh    => 'Frisst',
   userprefs  => 'Belltsok',
   addressbook=> 'Cmjegyzk',
   folders    => 'Mappk',
   emptytrash => 'Szemetes rtse',
   logout     => 'Kijelentkezs',
   page       => 'Oldal',
   copyconfirm=> '\'Are you sure you want to copy the selected message(s)?\'',
   copy       => 'Copy',
   moveconfirm=> '\'Biztosan mozgatod a kijellt zenet(ek)et?\'',
   move       => 'Mozgat',
   date       => 'Dtum',
   recipient  => 'Cmzett',
   sender     => 'Kld',
   subject    => 'Trgy',
   size       => 'Mret',
   backto     => 'Vissza:',
   reply      => 'Vlasz',
   replyall   => 'Vlasz mindnek',
   forward    => 'Tovbb',
   from       => 'Kld',
   replyto    => 'Vlaszcm',
   to         => 'Cmzett',
   cc         => 'Msolat',
   bcc        => 'Titkos Msolat',
   simplehead => 'Egyszer fejlcek',
   allhead    => 'Teljes fejlcek',
   simpleattmode => 'Simple attachments',
   allattmode    => 'All attachments',
   attachment => 'Csatols',
   type       => 'Tipus',
   filename   => 'Filenv',
   encoding   => 'Kdols',
   download   => 'Letlts',
   editdraft  => 'Edit Draft',
   savedraft  => 'Save Draft',
   send       => 'Kld',
   cancel     => 'Mgsem',
   continue   => 'Folytat',
   for        => 'FOR',
   yourname   => 'Neved',
   save       => 'Ment',
   add        => 'Hozzad',
   folderconf => '\'Biztosan trld a mappt s annak tartalmt?\'',
   delete     => 'Trl',
   importadd  => 'Cmek importlsa',
   import     => 'Importl',
   addmod     => 'Hozzad / Mdost',
   abooktitle => 'Cmjegyzk',
   abook      => 'CMJEGYZK',
   quota_hit  => 'KVTA',
   pop3book   => 'POP3 Setup',
   retr_pop3s => 'Retrieve POP3 Mail',
   filterbook => 'Mail Filter Setup',
   include    => 'Include',
   exclude    => 'Exclude',
   smtprelay  => 'SMTP Relay',
   header     => 'Header',
   body       => 'Body',
   attfilename=> 'AttFilename',
   enable     => 'Enable',
   disable    => 'Disable',
   blockrelay => 'Block SMTP Relay',
   read       => 'Read',
   yourmsg    => 'Your message',
   delivered  => 'Delivered',
   wasreadon1 => 'was read on',
   wasreadon2 => '.',
   globaladdressbook => 'Global AddressBook',
   globalfilterrule => 'Global FilterRule',
   readonly   => 'ReadOnly',
   content    => 'content',
   search     => 'Search'
   );

%lang_err = (
            has_illegal_chars => 'Illeglis karakterek!!',
            couldnt_open      => 'Nem nyithat meg',
            couldnt_locksh    => 'Couldn\'t get read lock on',
            couldnt_lock      => 'Nem rhat',
            couldnt_seek      => 'Nem tallom az elejt',
            couldnt_close     => 'Nem tudom bezrni',
            norootlogin       => 'Sajnlom, biztonsgi okokbl root nem jelentkezhet be.',
            shouldnt_move_here=> 'Ide nem kellene zenetet mozgatnod!',
            destination_folder=> 'Clmappa',
            doesnt_exist      => 'nem ltezik!',
            foldername_long   => 'Mappanv nem lehet 16 karakternl hosszabb!',
            folder_with_name  => 'Ilyen nev mappa:',
            already_exists    => 'mr ltezik!',
            cant_create_folder=> 'A mappa nem hozhat ltre!',
            abook_invalid     => 'Sajnlom, de ez az llomny nem szablyosan exportlt Outlook vagy Communicator cmjegyzk. Menj vissza',
            back              => 'vissza',
            tryagain          => 's prbld jra.',
            abook_toobig      => 'Sajnlom, ezzel tllpnd a mrethatrt. Menj vissza ',
            cant_create_dir   => 'Nem tudom ltrehozni a mappdat!',
            folder_hitquota   => 'Sajnlom, de elrted a kvtdat, s tbb levelet nem tudsz elmenteni. Trlj nhnyat s prbld jra.',
            att_overlimit     => 'Sajnlom, a csatols tllpte a mengedett mrethatrt, ami ',
            inv_msg_op        => 'Invalid operation for message',
            inv_sessid        => 'Your request didn\'t contain the proper session ID cookie -- access denied!',
            user_not_exist    => 'user does not exist',
            password_error    => 'wrong password',
            network_server_error => 'network server error',
            sendmail_error    => 'Sorry, there was a problem sending your message.  Please click your browser\'s Back button, check your message, and try again.'
            );

1;
