Ignore:
Timestamp:
Jun 23, 2014, 9:45:51 PM (11 years ago)
Author:
dmik
Message:

git: Merge version 2.0.0 from vendor to dmik branch.

Location:
git/branches/dmik
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • git/branches/dmik

  • TabularUnified git/branches/dmik/perl/Git/I18N.pm

    r626 r782  
    33use strict;
    44use warnings;
    5 use Exporter 'import';
     5BEGIN {
     6        require Exporter;
     7        if ($] < 5.008003) {
     8                *import = \&Exporter::import;
     9        } else {
     10                # Exporter 5.57 which supports this invocation was
     11                # released with perl 5.8.3
     12                Exporter->import('import');
     13        }
     14}
    615
    716our @EXPORT = qw(__);
     
    6069        print __("Welcome to Git!\n");
    6170
    62         printf __("The following error occured: %s\n"), $error;
     71        printf __("The following error occurred: %s\n"), $error;
    6372
    6473=head1 DESCRIPTION
Note: See TracChangeset for help on using the changeset viewer.