r56021 - in /branches/upstream/liblocale-maketext-lexicon-perl/current: AUTHORS Changes META.yml lib/Locale/Maketext/Extract.pm lib/Locale/Maketext/Extract/Plugin/Base.pm lib/Locale/Maketext/Extract/Plugin/TT2.pm lib/Locale/Maketext/Lexicon.pm

ansgar-guest at users.alioth.debian.org ansgar-guest at users.alioth.debian.org
Mon Apr 12 14:35:01 UTC 2010


Author: ansgar-guest
Date: Mon Apr 12 14:34:44 2010
New Revision: 56021

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=56021
Log:
[svn-upgrade] Integrating new upstream version, liblocale-maketext-lexicon-perl (0.82)

Modified:
    branches/upstream/liblocale-maketext-lexicon-perl/current/AUTHORS
    branches/upstream/liblocale-maketext-lexicon-perl/current/Changes
    branches/upstream/liblocale-maketext-lexicon-perl/current/META.yml
    branches/upstream/liblocale-maketext-lexicon-perl/current/lib/Locale/Maketext/Extract.pm
    branches/upstream/liblocale-maketext-lexicon-perl/current/lib/Locale/Maketext/Extract/Plugin/Base.pm
    branches/upstream/liblocale-maketext-lexicon-perl/current/lib/Locale/Maketext/Extract/Plugin/TT2.pm
    branches/upstream/liblocale-maketext-lexicon-perl/current/lib/Locale/Maketext/Lexicon.pm

Modified: branches/upstream/liblocale-maketext-lexicon-perl/current/AUTHORS
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/liblocale-maketext-lexicon-perl/current/AUTHORS?rev=56021&op=diff
==============================================================================
--- branches/upstream/liblocale-maketext-lexicon-perl/current/AUTHORS (original)
+++ branches/upstream/liblocale-maketext-lexicon-perl/current/AUTHORS Mon Apr 12 14:34:44 2010
@@ -7,6 +7,7 @@
 
 Alain Barbet            (ALIAN)
 Andy Wardley            (ABW)
+Ansgar Burchardt
 Brian Cassidy           (BRICAS)
 Charlie Garrison        (CNG)
 Christian Hansen

Modified: branches/upstream/liblocale-maketext-lexicon-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/liblocale-maketext-lexicon-perl/current/Changes?rev=56021&op=diff
==============================================================================
--- branches/upstream/liblocale-maketext-lexicon-perl/current/Changes (original)
+++ branches/upstream/liblocale-maketext-lexicon-perl/current/Changes Mon Apr 12 14:34:44 2010
@@ -1,3 +1,9 @@
+[Changes for 0.82 - 2010-04-12]
+* Locale::Maketext::Extract::Plugin::Base
+* Locale::Maketext::Extract::Plugin::TT2
+* Locale::Maketext::Extract
+    - fixed some spelling errors - thanks to Ansgar Burchardt for the patch
+
 [Changes for 0.81 - 2010-04-09]
 * Locale::Maketext::Extract::PLugin::FormFu
     - the plugin now understands YAML of the form:

Modified: branches/upstream/liblocale-maketext-lexicon-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/liblocale-maketext-lexicon-perl/current/META.yml?rev=56021&op=diff
==============================================================================
--- branches/upstream/liblocale-maketext-lexicon-perl/current/META.yml (original)
+++ branches/upstream/liblocale-maketext-lexicon-perl/current/META.yml Mon Apr 12 14:34:44 2010
@@ -29,4 +29,4 @@
 requires:
   Locale::Maketext: 0.01
   perl: 5.005
-version: 0.81
+version: 0.82

Modified: branches/upstream/liblocale-maketext-lexicon-perl/current/lib/Locale/Maketext/Extract.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/liblocale-maketext-lexicon-perl/current/lib/Locale/Maketext/Extract.pm?rev=56021&op=diff
==============================================================================
--- branches/upstream/liblocale-maketext-lexicon-perl/current/lib/Locale/Maketext/Extract.pm (original)
+++ branches/upstream/liblocale-maketext-lexicon-perl/current/lib/Locale/Maketext/Extract.pm Mon Apr 12 14:34:44 2010
@@ -1,5 +1,5 @@
 package Locale::Maketext::Extract;
-$Locale::Maketext::Extract::VERSION = '0.36';
+$Locale::Maketext::Extract::VERSION = '0.37';
 
 use strict;
 use Locale::Maketext::Lexicon();
@@ -97,8 +97,8 @@
   [% 'string' | l(arg1,argn) %]
   [% l('string',arg1,argn) %]
 
-  FILTER and | are interchangable
-  l and loc are interchangable
+  FILTER and | are interchangeable
+  l and loc are interchangeable
   args are optional
 
 =item Text::Template (plugin: text)
@@ -123,6 +123,7 @@
 
 We extract the text after C<_loc: >:
     content_loc: this is the string
+    message_loc: ['Max string length: [_1]', 10]
 
 =item Generic Template (plugin: generic)
 

Modified: branches/upstream/liblocale-maketext-lexicon-perl/current/lib/Locale/Maketext/Extract/Plugin/Base.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/liblocale-maketext-lexicon-perl/current/lib/Locale/Maketext/Extract/Plugin/Base.pm?rev=56021&op=diff
==============================================================================
--- branches/upstream/liblocale-maketext-lexicon-perl/current/lib/Locale/Maketext/Extract/Plugin/Base.pm (original)
+++ branches/upstream/liblocale-maketext-lexicon-perl/current/lib/Locale/Maketext/Extract/Plugin/Base.pm Mon Apr 12 14:34:44 2010
@@ -200,7 +200,7 @@
     }
 
 Determines whether the current file should be handled by this parser, based
-either on the list of file_types speficied when this object was created,
+either on the list of file_types specified when this object was created,
 or the default file_types specified in the module.
 
 =cut

Modified: branches/upstream/liblocale-maketext-lexicon-perl/current/lib/Locale/Maketext/Extract/Plugin/TT2.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/liblocale-maketext-lexicon-perl/current/lib/Locale/Maketext/Extract/Plugin/TT2.pm?rev=56021&op=diff
==============================================================================
--- branches/upstream/liblocale-maketext-lexicon-perl/current/lib/Locale/Maketext/Extract/Plugin/TT2.pm (original)
+++ branches/upstream/liblocale-maketext-lexicon-perl/current/lib/Locale/Maketext/Extract/Plugin/TT2.pm Mon Apr 12 14:34:44 2010
@@ -40,9 +40,9 @@
 
 =back
 
-l and loc are interchangable.
-
-| and FILTER are interchangable.
+l and loc are interchangeable.
+
+| and FILTER are interchangeable.
 
 =head1 KNOWN FILE TYPES
 

Modified: branches/upstream/liblocale-maketext-lexicon-perl/current/lib/Locale/Maketext/Lexicon.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/liblocale-maketext-lexicon-perl/current/lib/Locale/Maketext/Lexicon.pm?rev=56021&op=diff
==============================================================================
--- branches/upstream/liblocale-maketext-lexicon-perl/current/lib/Locale/Maketext/Lexicon.pm (original)
+++ branches/upstream/liblocale-maketext-lexicon-perl/current/lib/Locale/Maketext/Lexicon.pm Mon Apr 12 14:34:44 2010
@@ -1,5 +1,5 @@
 package Locale::Maketext::Lexicon;
-$Locale::Maketext::Lexicon::VERSION = '0.81';
+$Locale::Maketext::Lexicon::VERSION = '0.82';
 
 use 5.004;
 use strict;




More information about the Pkg-perl-cvs-commits mailing list