1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
  
     | 
    
      # $Id: lsorbian.perl,v 1.1 1998/08/25 01:59:03 RRM Exp $
#
# lsorbian.perl for lsorbian babel, inspired heavily by german.perl
# by Ross Moore <ross@mpce.mq.edu.au>
package lsorbian;
print " [lsorbian]";
sub main'lsorbian_translation { @_[0] }
package main;
if (defined &addto_languages) { &addto_languages('lsorbian') };
&do_require_extension('latin2');
sub lsorbian_titles {
    $toc_title = "Wopśimjeśe";
    $lof_title = "Zapis wobrazow";
    $lot_title = "Zapis tabulkow";
    $idx_title = "Indeks";
    $ref_title = "Referency";
    $bib_title = "Literatura";
    $abs_title = "Abstrakt";
    $app_title = "Dodawki";
    $pre_title = "Zawod";
##    $foot_title = "";
##    $thm_title = "";
    $fig_name = "Wobraz";
    $tab_name = "Tabulka";
    $prf_name = "Proof"; # needs translation
    $page_name = "Strona";
  #  Sectioning-level titles
    $part_name = "Źěl";
    $chapter_name = "Kapitl";
#    $section_name = "";
#    $subsection_name = "";
#    $subsubsection_name = "";
#    $paragraph_name = "";
  #  Misc. strings
##    $child_name = "";
##    $info_title = "";
    $also_name = "gl.teke";
    $see_name = "gl.";
  #  names in navigation panels
##    $next_name = "";
##    $up_name = "";
##    $prev_name = "";
##    $group_name = "";
  #  mail fields
    $encl_name = "Pśiłoga";
    $headto_name = "Komu";
    $cc_name = "CC";
    @Month = ('', 'januara', 'februara', 'měrca', 'apryla', 'maja', 'junija',
	'julija', 'awgusta', 'septembra', 'oktobra', 'nowembra', 'decembra');
#    $GENERIC_WORDS = "";
}
sub lsorbian_today {
    local($today) = &get_date();
    $today =~ s|(\d+)/0?(\d+)/|$2. $Month[$1] |;
    join('',$today,$_[0]);
}
# use'em
&lsorbian_titles;
$default_language = 'lsorbian';
$TITLES_LANGUAGE = 'lsorbian';
$lsorbian_encoding = 'iso-8859-2';
# $Log: lsorbian.perl,v $
# Revision 1.1  1998/08/25 01:59:03  RRM
# 	Babel language support
#
#
1;
 
     |