[Rt-commit] r5370 - in Locale-Maketext-Lexicon: .
inc/Module/Install lib/Locale/Maketext
lib/Locale/Maketext/Extract lib/Locale/Maketext/Lexicon script t
audreyt at bestpractical.com
audreyt at bestpractical.com
Thu Jun 15 10:58:38 EDT 2006
Author: audreyt
Date: Thu Jun 15 10:58:36 2006
New Revision: 5370
Modified:
Locale-Maketext-Lexicon/Changes
Locale-Maketext-Lexicon/Makefile.PL
Locale-Maketext-Lexicon/README
Locale-Maketext-Lexicon/inc/Module/Install.pm
Locale-Maketext-Lexicon/inc/Module/Install/Makefile.pm
Locale-Maketext-Lexicon/lib/Locale/Maketext/Extract.pm
Locale-Maketext-Lexicon/lib/Locale/Maketext/Extract/Run.pm
Locale-Maketext-Lexicon/lib/Locale/Maketext/Lexicon.pm
Locale-Maketext-Lexicon/lib/Locale/Maketext/Lexicon/Auto.pm
Locale-Maketext-Lexicon/lib/Locale/Maketext/Lexicon/Gettext.pm
Locale-Maketext-Lexicon/lib/Locale/Maketext/Lexicon/Msgcat.pm
Locale-Maketext-Lexicon/lib/Locale/Maketext/Lexicon/Tie.pm
Locale-Maketext-Lexicon/script/xgettext.pl
Locale-Maketext-Lexicon/t/1-basic.t
Locale-Maketext-Lexicon/t/6-gettext.t
Locale-Maketext-Lexicon/t/gencat.m
Locale-Maketext-Lexicon/t/messages.po
Log:
* commit from CPAN 0.61.
Modified: Locale-Maketext-Lexicon/Changes
==============================================================================
--- Locale-Maketext-Lexicon/Changes (original)
+++ Locale-Maketext-Lexicon/Changes Thu Jun 15 10:58:36 2006
@@ -1,3 +1,12 @@
+[Changes for 0.61 - 2006-04-27]
+
+* LICENSING CHANGE: This compilation and all individual files in it
+ are now under the permissive "MIT" license. See the COPYRIGHT
+ section in README for the new terms.
+
+* Repair Perl 5.005 compatibility in the build system.
+ Reported By: Rong-En Fan
+
[Changes for 0.60 - 2006-04-13]
* Locale::Maketext::Extract: Bump version to 0.20.
Modified: Locale-Maketext-Lexicon/Makefile.PL
==============================================================================
--- Locale-Maketext-Lexicon/Makefile.PL (original)
+++ Locale-Maketext-Lexicon/Makefile.PL Thu Jun 15 10:58:36 2006
@@ -3,15 +3,13 @@
use 5.005;
use inc::Module::Install;
-author ('Audrey Tang <audreyt at audreyt.org>');
-abstract ('Use other catalog formats in Maketext');
-name ('Locale-Maketext-Lexicon');
-version_from ('lib/Locale/Maketext/Lexicon.pm',);
-license ('perl');
-install_script ('script/xgettext.pl');
-requires (
- 'Test::More' => '0.01',
- 'Locale::Maketext' => '0.01',
-);
+author 'Audrey Tang <cpan at audreyt.org>';
+abstract 'Use other catalog formats in Maketext';
+name 'Locale-Maketext-Lexicon';
+license 'mit';
+all_from 'lib/Locale/Maketext/Lexicon.pm';
+install_script 'script/xgettext.pl';
+requires 'Locale::Maketext' => '0.01';
+include_deps 'Test::More';
-WriteAll( sign => 1 );
+sign; WriteAll;
Modified: Locale-Maketext-Lexicon/README
==============================================================================
--- Locale-Maketext-Lexicon/README (original)
+++ Locale-Maketext-Lexicon/README Thu Jun 15 10:58:36 2006
@@ -22,11 +22,23 @@
make test
make install
-* Copyright
+* COPYRIGHT (The "MIT" License)
-Copyright 2002-2006 by Audrey Tang <audreyt at audreyt.org>.
+Copyright 2002-2006 by Audrey Tang <cpan at audreyt.org>.
-All rights reserved. You can redistribute and/or modify
-this bundle under the same terms as Perl itself.
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is fur-
+nished to do so, subject to the following conditions:
-See <http://www.perl.com/perl/misc/Artistic.html>.
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT-
+NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X
+CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Modified: Locale-Maketext-Lexicon/inc/Module/Install.pm
==============================================================================
--- Locale-Maketext-Lexicon/inc/Module/Install.pm (original)
+++ Locale-Maketext-Lexicon/inc/Module/Install.pm Thu Jun 15 10:58:36 2006
@@ -116,7 +116,7 @@
my %seen;
foreach my $obj ( @exts ) {
while (my ($method, $glob) = each %{ref($obj) . '::'}) {
- next unless exists &{ref($obj).'::'.$method};
+ next unless $obj->can($method);
next if $method =~ /^_/;
next if $method eq uc($method);
$seen{$method}++;
Modified: Locale-Maketext-Lexicon/inc/Module/Install/Makefile.pm
==============================================================================
--- Locale-Maketext-Lexicon/inc/Module/Install/Makefile.pm (original)
+++ Locale-Maketext-Lexicon/inc/Module/Install/Makefile.pm Thu Jun 15 10:58:36 2006
@@ -175,6 +175,9 @@
$makefile =~ s/^PERL_LIB = .+/PERL_LIB =/m;
#$makefile =~ s/^PERL_ARCHLIB = .+/PERL_ARCHLIB =/m;
+ # Perl 5.005 mentions PERL_LIB explicitly, so we have to remove that as well.
+ $makefile =~ s/("?)-I\$\(PERL_LIB\)\1//g;
+
# XXX - This is currently unused; not sure if it breaks other MM-users
# $makefile =~ s/^pm_to_blib\s+:\s+/pm_to_blib :: /mg;
@@ -202,4 +205,4 @@
__END__
-#line 331
+#line 334
Modified: Locale-Maketext-Lexicon/lib/Locale/Maketext/Extract.pm
==============================================================================
--- Locale-Maketext-Lexicon/lib/Locale/Maketext/Extract.pm (original)
+++ Locale-Maketext-Lexicon/lib/Locale/Maketext/Extract.pm Thu Jun 15 10:58:36 2006
@@ -1,5 +1,5 @@
package Locale::Maketext::Extract;
-$Locale::Maketext::Extract::VERSION = '0.20';
+$Locale::Maketext::Extract::VERSION = '0.21';
use strict;
@@ -507,15 +507,27 @@
=head1 AUTHORS
-Audrey Tang E<lt>audreyt at audreyt.orgE<gt>
+Audrey Tang E<lt>cpan at audreyt.orgE<gt>
-=head1 COPYRIGHT
+=head1 COPYRIGHT (The "MIT" License)
-Copyright 2003, 2004, 2005, 2006 by Audrey Tang E<lt>audreyt at audreyt.orgE<gt>.
+Copyright 2003, 2004, 2005, 2006 by Audrey Tang E<lt>cpan at audreyt.orgE<gt>.
-This program is free software; you can redistribute it and/or
-modify it under the same terms as Perl itself.
-
-See L<http://www.perl.com/perl/misc/Artistic.html>
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is fur-
+nished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT-
+NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X
+CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
=cut
Modified: Locale-Maketext-Lexicon/lib/Locale/Maketext/Extract/Run.pm
==============================================================================
--- Locale-Maketext-Lexicon/lib/Locale/Maketext/Extract/Run.pm (original)
+++ Locale-Maketext-Lexicon/lib/Locale/Maketext/Extract/Run.pm Thu Jun 15 10:58:36 2006
@@ -1,8 +1,20 @@
package Locale::Maketext::Extract::Run;
+$Locale::Maketext::Lexicon::Extract::Run::VERSION = '0.01';
use strict;
use vars qw( @ISA @EXPORT_OK );
+=head1 NAME
+
+Locale::Maketext::Extract::Run - Module interface to xgettext.pl
+
+=head1 SYNOPSIS
+
+ use Locale::Maketext::Extract::Run 'xgettext';
+ xgettext(@ARGV);
+
+=cut
+
use Cwd;
use Config ();
use File::Find;
@@ -84,3 +96,26 @@
}
1;
+
+=head1 COPYRIGHT (The "MIT" License)
+
+Copyright 2003, 2004, 2005, 2006 by Audrey Tang E<lt>cpan at audreyt.orgE<gt>.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is fur-
+nished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT-
+NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X
+CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+=cut
Modified: Locale-Maketext-Lexicon/lib/Locale/Maketext/Lexicon.pm
==============================================================================
--- Locale-Maketext-Lexicon/lib/Locale/Maketext/Lexicon.pm (original)
+++ Locale-Maketext-Lexicon/lib/Locale/Maketext/Lexicon.pm Thu Jun 15 10:58:36 2006
@@ -1,6 +1,7 @@
package Locale::Maketext::Lexicon;
-$Locale::Maketext::Lexicon::VERSION = '0.60';
+$Locale::Maketext::Lexicon::VERSION = '0.61';
+use 5.004;
use strict;
=head1 NAME
@@ -9,8 +10,8 @@
=head1 VERSION
-This document describes version 0.60 of Locale::Maketext::Lexicon,
-released April 13, 2006.
+This document describes version 0.61 of Locale::Maketext::Lexicon,
+released April 27, 2006.
=head1 SYNOPSIS
@@ -288,7 +289,7 @@
my @content = eval {
$class->lexicon_get($src, scalar caller, $lang);
};
- next if $@ and "$@" =~ /^next\b/o;
+ next if $@ and $@ eq 'next';
die $@ if $@;
no strict 'refs';
@@ -502,15 +503,27 @@
=head1 AUTHORS
-Audrey Tang E<lt>audreyt at audreyt.orgE<gt>
+Audrey Tang E<lt>cpan at audreyt.orgE<gt>
-=head1 COPYRIGHT
+=head1 COPYRIGHT (The "MIT" License)
-Copyright 2002-2006 by Audrey Tang E<lt>audreyt at audreyt.orgE<gt>.
+Copyright 2002-2006 by Audrey Tang <cpan at audreyt.org>.
-This program is free software; you can redistribute it and/or
-modify it under the same terms as Perl itself.
-
-See L<http://www.perl.com/perl/misc/Artistic.html>
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is fur-
+nished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT-
+NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X
+CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
=cut
Modified: Locale-Maketext-Lexicon/lib/Locale/Maketext/Lexicon/Auto.pm
==============================================================================
--- Locale-Maketext-Lexicon/lib/Locale/Maketext/Lexicon/Auto.pm (original)
+++ Locale-Maketext-Lexicon/lib/Locale/Maketext/Lexicon/Auto.pm Thu Jun 15 10:58:36 2006
@@ -1,5 +1,5 @@
package Locale::Maketext::Lexicon::Auto;
-$Locale::Maketext::Lexicon::Auto::VERSION = '0.02';
+$Locale::Maketext::Lexicon::Auto::VERSION = '0.03';
use strict;
@@ -45,15 +45,27 @@
=head1 AUTHORS
-Audrey Tang E<lt>audreyt at audreyt.orgE<gt>
+Audrey Tang E<lt>cpan at audreyt.orgE<gt>
-=head1 COPYRIGHT
+=head1 COPYRIGHT (The "MIT" License)
-Copyright 2002, 2003, 2004 by Audrey Tang E<lt>audreyt at audreyt.orgE<gt>.
+Copyright 2002, 2003, 2004 by Audrey Tang E<lt>cpan at audreyt.orgE<gt>.
-This program is free software; you can redistribute it and/or
-modify it under the same terms as Perl itself.
-
-See L<http://www.perl.com/perl/misc/Artistic.html>
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is fur-
+nished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT-
+NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X
+CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
=cut
Modified: Locale-Maketext-Lexicon/lib/Locale/Maketext/Lexicon/Gettext.pm
==============================================================================
--- Locale-Maketext-Lexicon/lib/Locale/Maketext/Lexicon/Gettext.pm (original)
+++ Locale-Maketext-Lexicon/lib/Locale/Maketext/Lexicon/Gettext.pm Thu Jun 15 10:58:36 2006
@@ -1,5 +1,5 @@
package Locale::Maketext::Lexicon::Gettext;
-$Locale::Maketext::Lexicon::Gettext::VERSION = '0.14';
+$Locale::Maketext::Lexicon::Gettext::VERSION = '0.15';
use strict;
@@ -273,15 +273,27 @@
=head1 AUTHORS
-Audrey Tang E<lt>audreyt at audreyt.orgE<gt>
+Audrey Tang E<lt>cpan at audreyt.orgE<gt>
-=head1 COPYRIGHT
+=head1 COPYRIGHT (The "MIT" License)
-Copyright 2002, 2003, 2004 by Audrey Tang E<lt>audreyt at audreyt.orgE<gt>.
+Copyright 2002, 2003, 2004 by Audrey Tang E<lt>cpan at audreyt.orgE<gt>.
-This program is free software; you can redistribute it and/or
-modify it under the same terms as Perl itself.
-
-See L<http://www.perl.com/perl/misc/Artistic.html>
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is fur-
+nished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT-
+NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X
+CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
=cut
Modified: Locale-Maketext-Lexicon/lib/Locale/Maketext/Lexicon/Msgcat.pm
==============================================================================
--- Locale-Maketext-Lexicon/lib/Locale/Maketext/Lexicon/Msgcat.pm (original)
+++ Locale-Maketext-Lexicon/lib/Locale/Maketext/Lexicon/Msgcat.pm Thu Jun 15 10:58:36 2006
@@ -1,5 +1,5 @@
package Locale::Maketext::Lexicon::Msgcat;
-$Locale::Maketext::Lexicon::Msgcat::VERSION = '0.02';
+$Locale::Maketext::Lexicon::Msgcat::VERSION = '0.03';
use strict;
@@ -109,15 +109,27 @@
=head1 AUTHORS
-Audrey Tang E<lt>audreyt at audreyt.orgE<gt>
+Audrey Tang E<lt>cpan at audreyt.orgE<gt>
-=head1 COPYRIGHT
+=head1 COPYRIGHT (The "MIT" License)
-Copyright 2002, 2003, 2004 by Audrey Tang E<lt>audreyt at audreyt.orgE<gt>.
+Copyright 2002, 2003, 2004 by Audrey Tang E<lt>cpan at audreyt.orgE<gt>.
-This program is free software; you can redistribute it and/or
-modify it under the same terms as Perl itself.
-
-See L<http://www.perl.com/perl/misc/Artistic.html>
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is fur-
+nished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT-
+NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X
+CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
=cut
Modified: Locale-Maketext-Lexicon/lib/Locale/Maketext/Lexicon/Tie.pm
==============================================================================
--- Locale-Maketext-Lexicon/lib/Locale/Maketext/Lexicon/Tie.pm (original)
+++ Locale-Maketext-Lexicon/lib/Locale/Maketext/Lexicon/Tie.pm Thu Jun 15 10:58:36 2006
@@ -1,5 +1,5 @@
package Locale::Maketext::Lexicon::Tie;
-$Locale::Maketext::Lexicon::Tie::VERSION = '0.03';
+$Locale::Maketext::Lexicon::Tie::VERSION = '0.04';
use strict;
use Symbol ();
@@ -53,15 +53,27 @@
=head1 AUTHORS
-Audrey Tang E<lt>audreyt at audreyt.orgE<gt>
+Audrey Tang E<lt>cpan at audreyt.orgE<gt>
-=head1 COPYRIGHT
+=head1 COPYRIGHT (The "MIT" License)
-Copyright 2002, 2003, 2004 by Audrey Tang E<lt>audreyt at audreyt.orgE<gt>.
+Copyright 2002, 2003, 2004 by Audrey Tang E<lt>cpan at audreyt.orgE<gt>.
-This program is free software; you can redistribute it and/or
-modify it under the same terms as Perl itself.
-
-See L<http://www.perl.com/perl/misc/Artistic.html>
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is fur-
+nished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT-
+NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X
+CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
=cut
Modified: Locale-Maketext-Lexicon/script/xgettext.pl
==============================================================================
--- Locale-Maketext-Lexicon/script/xgettext.pl (original)
+++ Locale-Maketext-Lexicon/script/xgettext.pl Thu Jun 15 10:58:36 2006
@@ -88,11 +88,11 @@
=head1 AUTHORS
-Audrey Tang E<lt>audreyt at audreyt.orgE<gt>
+Audrey Tang E<lt>cpan at audreyt.orgE<gt>
=head1 COPYRIGHT
-Copyright 2002, 2003, 2004 by Audrey Tang E<lt>audreyt at audreyt.orgE<gt>.
+Copyright 2002, 2003, 2004 by Audrey Tang E<lt>cpan at audreyt.orgE<gt>.
This program is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.
Modified: Locale-Maketext-Lexicon/t/1-basic.t
==============================================================================
--- Locale-Maketext-Lexicon/t/1-basic.t (original)
+++ Locale-Maketext-Lexicon/t/1-basic.t Thu Jun 15 10:58:36 2006
@@ -184,8 +184,8 @@
"Project-Id-Version: Test App 0.01\n"
"POT-Creation-Date: 2002-05-02 11:36+0800\n"
"PO-Revision-Date: 2002-05-13 02:00+0800\n"
-"Last-Translator: <audreyt at audreyt.org>\n"
-"Language-Team: German <audreyt at audreyt.org>\n"
+"Last-Translator: <cpan at audreyt.org>\n"
+"Language-Team: German <cpan at audreyt.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: Locale-Maketext-Lexicon/t/6-gettext.t
==============================================================================
--- Locale-Maketext-Lexicon/t/6-gettext.t (original)
+++ Locale-Maketext-Lexicon/t/6-gettext.t Thu Jun 15 10:58:36 2006
@@ -21,7 +21,6 @@
'Msgcat' => 't/gencat.m',
'Gettext' => 't/messages.po',
],
- ru => ['Gettext' => 't/notexist.po'],
_style => 'gettext',
},
);
@@ -30,7 +29,6 @@
Locale::Maketext::Lexicon->import({
de_de => ['Gettext' => \*::DATA],
- ru => ['Gettext' => 't/notexist.po'],
_use_fuzzy => 1,
});
@@ -187,8 +185,8 @@
"Project-Id-Version: Test App 0.01\n"
"POT-Creation-Date: 2002-05-02 11:36+0800\n"
"PO-Revision-Date: 2002-05-13 02:00+0800\n"
-"Last-Translator: <audreyt at audreyt.org>\n"
-"Language-Team: German <audreyt at audreyt.org>\n"
+"Last-Translator: <cpan at audreyt.org>\n"
+"Language-Team: German <cpan at audreyt.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: Locale-Maketext-Lexicon/t/gencat.m
==============================================================================
--- Locale-Maketext-Lexicon/t/gencat.m (original)
+++ Locale-Maketext-Lexicon/t/gencat.m Thu Jun 15 10:58:36 2006
@@ -1,4 +1,4 @@
-$ by Audrey Tang <audreyt at audreyt.org>
+$ by Audrey Tang <cpan at audreyt.org>
$set 1 # $Id: //member/autrijus/Locale-Maketext-Lexicon/t/gencat.m#1 $
1 First string
2 Second \
Modified: Locale-Maketext-Lexicon/t/messages.po
==============================================================================
--- Locale-Maketext-Lexicon/t/messages.po (original)
+++ Locale-Maketext-Lexicon/t/messages.po Thu Jun 15 10:58:36 2006
@@ -1,6 +1,6 @@
msgid ""
msgstr ""
-"Last-Translator: Audrey Tang <audreyt at audreyt.org>\n"
+"Last-Translator: Audrey Tang <cpan at audreyt.org>\n"
"Language-Team: Chinese <contact at ourinet.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
More information about the Rt-commit
mailing list