Blame translate/skeleton.pm0

Packit 667938
###### PATCHTAG00 ###################################################
Packit 667938
# -*- mode: Perl -*-
Packit 667938
######################################################################
Packit 667938
### Localization of mrtg output pages
Packit 667938
######################################################################
Packit 667938
#                                                                    #
Packit 667938
#   This is a generated perl module file.                            #
Packit 667938
#   Please see the perl script mergelocale.pl and the language       #
Packit 667938
#   databasefiles skelton.pm0 and locale.*.pmd in translate/.        #
Packit 667938
#   If you want to contribute to mrtg change in the *.pmd files.     #
Packit 667938
#   If you just want to change your own mrtg: Go ahead and edit!     #
Packit 667938
#                                                                    #
Packit 667938
######################################################################
Packit 667938
### Defines programs which handles centralized pattern matching and pattern 
Packit 667938
### replacements in order to translate the given strings
Packit 667938
######################################################################
Packit 667938
### Created by:  Morten Storgaard Nielsen <msn@ipt.dtu.dk>
Packit 667938
###################################################################
Packit 667938
#
Packit 667938
# Distributed under the GNU copyleft
Packit 667938
#
Packit 667938
###################################################################
Packit 667938
### Locale by: 
Packit 667938
###### PATCHTAG10 ###################################################
Packit 667938
###
Packit 667938
### Contributions and fixes by:
Packit 667938
###
Packit 667938
###      0.05 fixed DARK GREEN entry		(msn@ipt.dtu.dk)
Packit 667938
###           fixed credits for native language (msn@ipt.dtu.dk)
Packit 667938
###	 0.06 added the PATCHTAGs               (msn@ipt.dtu.dk)
Packit 667938
###           fixed several small errors        (msn@ipt.dtu.dk)
Packit 667938
###	 0.07 changed PATCHTAG to support 
Packit 667938
###           mergelocale.pl                    (msn@ipt.dtu.dk)
Packit 667938
###
Packit 667938
######################################################################
Packit 667938
###
Packit 667938
package locales_mrtg;
Packit 667938
Packit 667938
require 5.002;
Packit 667938
# make sure we do not get hit by UTF-8 here
Packit 667938
no locale;
Packit 667938
use strict;
Packit 667938
use vars qw(@ISA @EXPORT $VERSION);
Packit 667938
use Exporter;
Packit 667938
Packit 667938
$VERSION = '0.07';
Packit 667938
Packit 667938
@ISA = qw(Exporter);
Packit 667938
Packit 667938
@EXPORT = qw
Packit 667938
(
Packit 667938
  &english
Packit 667938
###### PATCHTAG20 ###################################################
Packit 667938
);
Packit 667938
Packit 667938
%lang2tran::LOCALE=  
Packit 667938
(
Packit 667938
  'english'      => \&english,
Packit 667938
  'default'      => \&english, 
Packit 667938
###### PATCHTAG30 ###################################################
Packit 667938
);
Packit 667938
Packit 667938
%credits::LOCALE=
Packit 667938
  (
Packit 667938
# default
Packit 667938
   'default' =>
Packit 667938
   "Prepared for localization by
Packit 667938
				Morten S. Nielsen
Packit 667938
				<msn\@ipt.dtu.dk>",
Packit 667938
###### PATCHTAG40 ###################################################
Packit 667938
  );
Packit 667938
Packit 667938
###### PATCHTAG50 ###################################################
Packit 667938
Packit 667938
# English - default
Packit 667938
sub english
Packit 667938
{
Packit 667938
  return shift;
Packit 667938
};
Packit 667938
Packit 667938
###### PATCHTAG60 ###################################################
Packit 667938