Changeset 782 for git/branches/dmik/perl/Git/I18N.pm
- Timestamp:
- Jun 23, 2014, 9:45:51 PM (11 years ago)
- Location:
- git/branches/dmik
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
git/branches/dmik ¶
- Property svn:mergeinfo changed
/git/vendor/2.0.0 (added) merged: 777 /git/vendor/current merged: 772,774,776
- Property svn:mergeinfo changed
-
TabularUnified git/branches/dmik/perl/Git/I18N.pm ¶
r626 r782 3 3 use strict; 4 4 use warnings; 5 use Exporter 'import'; 5 BEGIN { 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 } 6 15 7 16 our @EXPORT = qw(__); … … 60 69 print __("Welcome to Git!\n"); 61 70 62 printf __("The following error occur ed: %s\n"), $error;71 printf __("The following error occurred: %s\n"), $error; 63 72 64 73 =head1 DESCRIPTION
Note:
See TracChangeset
for help on using the changeset viewer.