#!/usr/bin/perl

# Ukrainian translation by Volodymyr M. Lisivka, lvm.AT.mystery.lviv.net
# charset: koi8-u

%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_ctrlpositionlabels =
   (
   top => 'At top',
   bottom => 'At bottom'
   );

%lang_sendpositionlabels =
   (
   before => 'Before mail edit area',
   after => 'After mail edit area',
   both  => 'Before and after mail edit area'
   );

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

%lang_advsearchlabels =
   (
   contains    => 'contains',
   notcontains => 'does not contain',
   is          => 'is',
   isnot       => 'is not',
   startswith  => 'starts with',
   endswith    => 'ends with',
   regexp      => 'matches regexp',
   );

%lang_sizes =
   (
   mb   => 'MB',	# mega bytes
   kb   => 'KB',	# kilo bytes
   byte => 'Byte'
   );

%lang_calendar = 
   (
   yearview  => 'Yearview',
   monthview => 'Monthview',
   weekview  => 'Weekview',
   dayview   => 'Dayview',
   listview  => 'Listview'
   );

%lang_month =
   (
   1  => 'January',
   2  => 'February',
   3  => 'March',
   4  => 'April',
   5  => 'May',
   6  => 'June',
   7  => 'July',
   8  => 'August',
   9  => 'September',
   10 => 'October',
   11 => 'November',
   12 => 'December'
   );

%lang_wday =
   (
   0 => 'Sunday',
   1 => 'Monday',
   2 => 'Tuesday',
   3 => 'Wednesday',
   4 => 'Thursday',
   5 => 'Friday',
   6 => 'Saturday'
   );

%lang_wday_abbrev =
   (
   week => 'WK',
   0 => 'S',
   1 => 'M',
   2 => 'T',
   3 => 'W',
   4 => 'T',
   5 => 'F',
   6 => 'S'
   );

%lang_order =
   (
   1 => '1st',
   2 => '2nd',
   3 => '3rd',
   4 => '4th',
   5 => 'last'
   );

%lang_wdbutton =
   (
   refresh  => 'Refresh',
   preview  => 'Preview',
   edit     => 'Edit',
   listarchive=> 'List',
   decompress=>'Decompress',
   extract  => 'Extract',
   chdir    => 'ChDir',
   mkdir    => 'MkDir',
   newfile  => 'NewFile',
   delete   => 'Delete',
   copy     => 'Copy',
   move     => 'Move',
   gzip     => 'gzCompress',
   mkzip    => 'MkZip',
   mktgz    => 'MkTgz',
   mkthumbnail  => 'MkThumb',
   download => 'Download',
   upload   => 'Upload',
   );   

%lang_text =
   (
   login      => 'Ȧ',
   clear      => 'ͦ',
   point      => 'Point',
   pixel      => 'Pixel',
   changepwd  => 'ͦ ',
   viewhistory=> ' Ҧ',
   of         => '',
   messages   => 'צ',
   unread     => '',
   nomessages => ' צ',
   inmessages => 'Incoming msgs',
   composenew => ' צ',
   refresh    => '',
   userprefs  => '',
   addressbook=> ' ',
   folders    => '',
   emptytrash => ' ͦ',
   totrash    => 'Move to Trash',
   forever    => '',
   delatlogout=> 'Delete at Logout',
   userdef    => ' ',
   logout     => 'Ȧ',
   page       => 'Ҧ',
   msgcopyconf=> '\' Φ   Ц Φ צ?\'',
   copy       => 'Ц',
   msgmoveconf=> '\' Φ צ?\'',
   move       => '',
   markasread => 'ͦ  ',
   markasunread => 'ͦ  ',
   dateformat => ' ',
   date       => '',
   recipient  => '',
   sender     => '',
   subject    => '',
   thread     => '',
   size       => 'ͦ',
   backto     => ' ',
   reply      => 'צ',
   replyall   => 'צ Ӧ',
   forward    => '',
   forwardasatt=>'  ',
   printfriendly=> 'Print friendly',
   from       => '',
   replyto    => ' ',
   to         => ' ',
   cc         => 'Ц',
   bcc        => ' Ц',
   simplehead => ' ',
   allhead    => ' ',
   simpleattmode => 'Ԧ ',
   allattmode    => 'Φ ',
   attachment => '',
   type       => '',
   filename   => '\' ',
   encoding   => '',
   description=> 'Description',
   download   => '',
   charset    => 'Charset',
   samecharset=> 'The same as composing charset',
   thisispartialmsg => 'This is a partial message.',
   msgrebuild => ' צ',
   editdraft  => ' ',
   savedraft  => ' ',
   send       => '',
   about      => 'About',
   close      => 'Close',
   cancel     => 'ͦ',
   ok         => 'Ok',
   continue   => '',
   loginagain => 'Login again',
   exit       => '',
   for        => '',
   yourname   => ' \'',
   save       => '',
   add        => '',
   folderrenprop => '\'  Ħ    æ \'',
   rename     => '',
   folderdelconf => '    ͦ?',
   markread   => 'MarkRead',
   foldermarkreadconf => '\'Are you going to mark read on all messages in this folder?\'',
   chkindex   => 'CheckIndex',
   folderchkindexconf => '\'Are you going to check the index of this folder?\'',
   reindex    => 'ReIndex',
   folderreindexconf => '\'Are you sure you want to reindex this folder?\'',
   total      => '',
   edit       => 'Edit',
   delete     => '',
   reserve    => '',
   clearadd   => ' Ӧ ',
   importadd  => ' ϧ ',
   exportadd  => ' ',
   import     => '',
   addmod     => '/ͦ',
   modify     => 'ͦ',
   abooktitle => '  ',
   abook      => ' ',
   name       => '\'',
   email      => '.',
   note       => 'ͦ',
   group      => '',
   quota_hit  => ' ',
   usage      => '',
   tzmap      => 'World timezone map',
   testsound  => 'Test sound',
   editfroms  => '   ϧ ',
   pop3book   => ' POP3',
   retr_pop3s => ' POP3-',
   filterbook => '  Ʀ',
   include    => '',
   exclude    => '',
   smtprelay  => 'SMTP-',
   header     => '',
   body       => '',
   attfilename=> '  ',
   all        => 'Ӧ',
   enable     => '',
   disable    => '',
   filtered   => 'Ʀ',
   blockrelay => '   SMTP',
   blockemail => ' ',
   read       => '',
   yourmsg    => ' צ',
   delivered  => '',
   wasreadon1 => ' ',
   wasreadon2 => '.',
   globaladdressbook => '  ',
   globalfilterrule => '  Ʀ',
   readonly   => '  ',
   textcontent=> ' ͦ',
   search     => '',
   advsearch  => 'Advanced search',
   folder     => 'Folder',
   nofoldersel=> 'No Folder selected',
   showall    => 'Show All',
   spellcheck => 'צ ',
   checkagain => 'צ ',
   finishchecking => ' צ',
   manuallyfix=> ' ',
   editstat   => 'Edit Stationery',
   savestat   => 'Save Stationery',
   clearstat  => 'Clear All Stationery',
   statreply  => '-- Stationery for Reply --',
   calendar   => 'Calendar',
   am         => 'am',
   pm         => 'pm',
   calfmt_year          => 'Year @@@YEAR@@@',
   calfmt_yearmonth     => '@@@MONTH_STR@@@ @@@YEAR@@@',
   calfmt_yearmonthday  => '@@@MONTH_STR@@@ @@@DAY@@@ @@@YEAR@@@',
   calfmt_yearmonthdaywday => '@@@MONTH_STR@@@ @@@DAY@@@ @@@YEAR@@@ @@@WEEKDAY_STR@@@',
   calfmt_hourminampm => '@@@HOURMIN@@@ @@@AMPM@@@',
   none       => 'None',
   moreitems  => 'more items',
   multieditconf => 'This item was added for multiple dates.\\nEditing it will change the item for all dates.\\nContinue with Edit?',
   multidelconf  => 'This item was added for multiple dates.\\nDeleting it will delete the item for all dates.\\nContinue with Delete?',
   noitemforthisday => 'No items for this day',
   thisday_only          => 'This day\'s date only',
   the_wday_of_thismonth => 'The @@@ORDER@@@ @@@WDAY@@@ of the month',
   every_wday_thismonth  => 'Every @@@WDAY@@@ this month',
   thismonth_only           => 'This month only',
   every_oddmonth_thisyear  => 'Every odd month this year',
   every_evenmonth_thisyear => 'Every even month this year',
   every_month_thisyear     => 'Every month this year',
   webdisk      => 'WebDisk',
   sshterm      => 'SSH Terminal',
   dir          => 'Dir',
   dirs         => 'Dirs',
   file         => 'File',
   files        => 'Files',
   program      => 'Program',
   dest_of_chdir  => 'the destined directory',
   name_of_newdir => 'the directory name to create',
   name_of_newfile=> 'the filename to create',
   dest_of_thecopy=> 'the destined directory or file of the copy',
   dest_of_themove=> 'the destined directory or file of the move',
   dest_of_thezip=> 'the destined filename of the new zip',
   dest_of_thetgz=> 'the destined filename of the new tgz',
   homedir      => 'Homedir',
   showthumbnail    => 'Thumbnails',
   showhidden   => 'Show hidden files',
   lastmodified => 'Last modified time',
   perm         => 'Perm',
   permission   => 'Access Permission',
   noitemfound  => 'No item found',
   savefile     => 'Savefile',
   succeeded    => 'succeeded',
   failed       => 'failed',
   savefile_towd=> 'Save file to WebDisk',
   saveatt_towd => 'Save attachment to WebDisk',
   addatt_fromwd=> 'Add attachment from WebDisk'
   );

%lang_err =
   (
   has_illegal_chars => 'ͦ ͦ !',
   couldnt_open      => ' צ',
   couldnt_locksh    => '     ',
   couldnt_lock      => '     ',
   couldnt_seek      => '  ',
   couldnt_close     => ' ',
   couldnt_updatedb  => 'Couldn\'t update index db ',
   disallowed_pop3   => ' POP3 ',
   disallowed_client => 'You are not allowed to connect from this client',
   disallowed_receiverdomain => 'You are not allowed to send message to this email address',
   norootlogin       => 'Sorry, root login is disabled for security\'s sake.',
   shouldnt_move_here=> '  Φ   צ !',
   destination_folder=> ' ',
   doesnt_exist      => ' դ!',
   foldername_long   => '\'     ¦ Φ 16 ̦!',
   folder_with_name  => '  ',
   already_exists    => ' դ!',
   cant_create_folder=> '  !',
   under_indexing    => '  դ,  ЦΦ',
   abook_invalid     => 'Sorry, this file doesn\'t appear to be an address book exported from Microsoft Outlook Express 5 in CSV format.  Make sure that when viewing it in a text editor, the first line starts out "Name,E-mail Address", then go',
   back              => '',
   tryagain          => '  .',
   abook_toobig      => ',   դ ̦ͦ  ͦ ϧ .   , Ħ',
   cant_create_dir   => '  ۦ    !',
   folder_hitquota   => 'Sorry, you\'ve hit your quota, and no more mail can be stored in your mail folders.  You will be unable to move messages anywhere but to the TRASH, where they will be deleted.  Go back, delete some messages or empty your trash, and try again.',
   folder_cutdone    => 'Warning, since the folderquota limit(@@@FOLDERQUOTA@@@) were hit, oldest messages in folders have been removed automatcially',
   att_overlimit     => ',   դ  ̦ͦ  ',
   inv_msg_op        => ' æ  צ',
   sess_cookieerr    => 'Your request didn\'t contain the proper sessionid cookie -- access denied!',
   sess_iperr        => 'Your request didn\'t come from the same ip of this session -- access denied!',
   no_endpart        => '   ',
   part_missing      => '˦  Φ',
   rebuild_fmterr    => '  Ԧ  צ',
   rebuild_sizeerr   => 'צצ ͦ  צ',
   user_not_exist    => '  դ',
   func_notsupported => 'æ  Цդ',
   auth_syserr       => '  ͦ Ʀæ',
   param_fmterr      => '  Ԧ ',
   pwd_incorrect     => 'צ ',
   pwd_tooshort      => 'Password too short (minimum length @@@PASSWDMINLEN@@@)',
   pwd_toosimple     => 'Password too simple (both alphabet and digit are required)',
   network_server_error => 'network server error',
   sendmail_error    => ' -    צ ϧ . Φ  <>   ަ, צ     .',
   at_char_not_allowed => 'The @ character is not allowed in this field.  Press browser back button and try again',
   badnum_in_days => 'bad number in consecutive days field',
   access_denied     => 'Access denied',
   couldnt_chdirto   => 'Couldn\'t chdir to',
   isnt_a_dir        => 'is not a directory',
   edit_notfordir    => 'You can\'t edit a directory',
   onefileonly       => 'Only one file is allowed for this operation',
   no_file_todownload=> 'No file is specified for download',
   upload_overlimit  => 'Upload file size is over the limit',
   decomp_notsupported=>'Decompression support is not available for this file.',
   webdisk_hitquota   => 'Sorry, you\'ve hit your webdisk quota, please delete some files first.',
   webdisk_readonly   => 'Sorry, your webdisk is read only.'
   );

1;
