The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

#---------------------------------------------------------------------------
package Apache::MP3::L10N::ru;  # Russian
use strict;
use Apache::MP3::L10N;
use vars qw($VERSION @ISA %Lexicon);
@ISA = qw(Apache::MP3::L10N);
sub language_tag {__PACKAGE__->SUPER::language_tag}

# Translators for this module, in no particular order:
#  Nikolayev Dmitry, nicky@nm.ru or nick@perl.dp.ua

sub encoding { "windows-1251" }   # Windows

%Lexicon = (
 '_VERSION' => __PACKAGE__ . ' v' . 
 ($VERSION=   '20020612'), # Last modified

 # These are links as well as button text:
 'Play All' => "Èãðàòü âñ¸",
 'Shuffle All' => "Èãðàòü âñ¸ â ïðîèçâîëüíîì ïîðÿäêå",  # Stream all in random order
 'Stream All' => "Èãðàòü âñ¸",

 # This one in just button text
 'Play Selected' => "Èãðàòü âûáðàííûå",

 "In this demo, streaming is limited to approximately [quant,_1,second,seconds]."
  => " ýòîé äåìî-âåðñèè ïðîèãðûâàíèå îãðàíè÷åíî ïðèáëèçèòåëíî [quant,_1,ñåêóíäà,ñåêóíäû].",
  # In [quant,_1,seconde,secondes], the seconde is the singular form, and the secondes is the plural.

 # Headings:
 'CD Directories ([_1])' => "Àëüáîìíûå êàòàëîãè ([_1])",
 'Playlists ([_1])' => "Ôàéëû ñïèñêîâ ([_1])",        # .m3u files
 'Song List ([_1])' => "Ñïèñîê ïåñåí ([_1])", # i.e., file list


 'Playlist' => "Ñïèñîê ôàéëîâ äëÿ âîñïðîèçâåäåíèÿ",
 'Select' => "Âûáðàòü",

 'fetch'  => "ñêà÷àòü", # Send/download/save this file
 'stream' => "èãðàòü",    # this file

 'Shuffle'  => "Èãðàòü â ïðîèçâîëüíîì ïîðÿäêå",  # a subdirectory, recursively
 'Stream'   => "Èãðàòü",            # a subdirectory, recursively

 # Label for a link to "http://[servername]/"
 'Home' => "Íà ãëàâíóþ",


 'unknown' => "?",
   # Used when a file doesn't specify its album name, artist name,
   # year of release, etc.


 # Metadata fields:
 'Artist' => "Èñïîëíèòåëü",
 'Comment' => "Êîììåíòàðèè",
 'Duration' => "Äëèíà",
 'Filename' => "Èìÿ ôàéëà",
 'Genre' => "Æàíð",  # i.e., what kind of music
 'Album' => "Àëüáîì",
 'Min' => "Ìèí",  # abbreviation for "minutes"
 'Track' => "Òðýê",  # just the track number (not the track name)
 'Sec' => "Ñåê",  # abbreviation for "seconds"
 'Seconds' => "Ñåêóíäû",
 'Title' => "Íàçâàíèå",
 'Year' => "Ãîä",

 'Samplerate' => "Êà÷åñòâî ïåðåä ñæàòèåì",
 'Bitrate' => "Êà÷åñòâî ïîñëå ñæàòèÿ",

 # Now the stuff for the help page:

 'Quick Help Summary' => "Ïîìîùü",
  # page title as well as the text we use for linking to that page

 "= Stream all songs" => "= Èãðàòü âñ¸",
 "= Shuffle-play all Songs" => "= Èãðàòü âñå ïåñíè â ïðîèçâîëüíîì ïîðÿäêå",
 "= Go to earlier directory" => "= Èäòè ê ðîäèòåëüñêîìó êàòàëîãó",
       # i.e., just a link to ../ or higher
 "= Stream contents" => "= Èãðàòü ñîäåðæàíèå êàòàëîãà",
 "= Enter directory" => "= Âîéòè â êàòàëîã",
 "= Stream this song" => "= Èãðàòü ýòó ïåñíþ",
 "= Select for streaming" => "= Âûáðàòü äëÿ âîñïðîèçâåäåíèÿ",
 "= Download this song" => "= Ñêà÷àòü ýòó ïåñíþ",
 "= Stream this song" => "= Èãðàòü ýòó ïåñíþ",
 "= Sort by field" => "= Ñîðòèðîâàòü ïî ...",
    # "sort" in the sense of ordering, not separating out.

 "_CREDITS_before_author" => "Àâòîðîì Apache::MP3 ÿâëÿåòñÿ ",
 "_CREDITS_author" =>        "Lincoln D. Stein",
 "_CREDITS_after_author" =>  ".",

);

1;