skeleton.pm0
上传用户:shbosideng
上传日期:2013-05-04
资源大小:1555k
文件大小:3k
源码类别:

SNMP编程

开发平台:

C/C++

  1. ###### PATCHTAG00 ###################################################
  2. # -*- mode: Perl -*-
  3. ######################################################################
  4. ### Localization of mrtg output pages
  5. ######################################################################
  6. #                                                                    #
  7. #   This is a generated perl module file.                            #
  8. #   Please see the perl script mergelocale.pl and the language       #
  9. #   databasefiles skelton.pm0 and locale.*.pmd in translate/.        #
  10. #   If you want to contribute to mrtg change in the *.pmd files.     #
  11. #   If you just want to change your own mrtg: Go ahead and edit!     #
  12. #                                                                    #
  13. ######################################################################
  14. ### Defines programs which handles centralized pattern matching and pattern 
  15. ### replacements in order to translate the given strings
  16. ######################################################################
  17. ### Created by:  Morten Storgaard Nielsen <msn@ipt.dtu.dk>
  18. ###################################################################
  19. #
  20. # Distributed under the GNU copyleft
  21. #
  22. ###################################################################
  23. ### Locale by: 
  24. ###### PATCHTAG10 ###################################################
  25. ###
  26. ### Contributions and fixes by:
  27. ###
  28. ###      0.05 fixed DARK GREEN entry (msn@ipt.dtu.dk)
  29. ###           fixed credits for native language (msn@ipt.dtu.dk)
  30. ###  0.06 added the PATCHTAGs               (msn@ipt.dtu.dk)
  31. ###           fixed several small errors        (msn@ipt.dtu.dk)
  32. ###  0.07 changed PATCHTAG to support 
  33. ###           mergelocale.pl                    (msn@ipt.dtu.dk)
  34. ###
  35. ######################################################################
  36. ###
  37. package locales_mrtg;
  38. require 5.002;
  39. # make sure we do not get hit by UTF-8 here
  40. no locale;
  41. use strict;
  42. use vars qw(@ISA @EXPORT $VERSION);
  43. use Exporter;
  44. $VERSION = '0.07';
  45. @ISA = qw(Exporter);
  46. @EXPORT = qw
  47. (
  48.   &english
  49. ###### PATCHTAG20 ###################################################
  50. );
  51. %lang2tran::LOCALE=  
  52. (
  53.   'english'      => &english,
  54.   'default'      => &english, 
  55. ###### PATCHTAG30 ###################################################
  56. );
  57. %credits::LOCALE=
  58.   (
  59. # default
  60.    'default' =>
  61.    "Prepared for localization by
  62. <a href="http://www.ipt.dtu.dk">Morten S. Nielsen</a>
  63. <a href="mailto:msn@ipt.dtu.dk">&lt;msn@ipt.dtu.dk&gt;</a>",
  64. ###### PATCHTAG40 ###################################################
  65.   );
  66. ###### PATCHTAG50 ###################################################
  67. # English - default
  68. sub english
  69. {
  70.   return shift;
  71. };
  72. ###### PATCHTAG60 ###################################################