Changeset 488

Show
Ignore:
Timestamp:
08/16/08 00:50:19 (5 months ago)
Author:
ogawa
Message:

fix for lexicon.

Location:
Templets/trunk/Templets
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • Templets/trunk/Templets/Templets.pl

    r487 r488  
    1818my $plugin = __PACKAGE__->new( 
    1919    { 
    20         id   => 'templets', 
    21         name => 'Templets', 
    22         description => 
    23 q(<MT_TRANS phrase="Templets plugin provides a framework for making Template Sets pluggable.">), 
     20        name        => 'Templets', 
     21        id          => 'templets', 
     22        key         => 'templets', 
     23        description => q(<__trans phrase="_TEMPLETS_DESCRIPTION">), 
    2424        doc_link    => 'http://code.as-is.net/public/wiki/Templets', 
    2525        author_name => 'Hirotaka Ogawa', 
    2626        author_link => 'http://as-is.net/blog/', 
     27        l10n_class  => 'Templets::L10N', 
    2728        version     => $VERSION, 
    28         l10n_class  => 'Templets::L10N', 
    2929    } 
    3030); 
  • Templets/trunk/Templets/lib/Templets/L10N/en_us.pm

    r482 r488  
    44use strict; 
    55use base qw( Templets::L10N ); 
    6 use vars qw( %Lexicon ); 
    76 
    8 our %Lexicon = ( 
    9 ); 
     7our %Lexicon = 
     8  ( '_TEMPLETS_DESCRIPTION' => 
     9qq{Templets plugin provides a framework for making Template Sets pluggable.}, 
     10  ); 
    1011 
    11121; 
  • Templets/trunk/Templets/lib/Templets/L10N/ja.pm

    r487 r488  
    44use strict; 
    55use base qw( Templets::L10N ); 
    6 use vars qw( %Lexicon ); 
    76 
    87our %Lexicon = ( 
    9     qq{Templets plugin provides a framework for making Template Sets pluggable.} 
    10       => qq{Templetsプラグインは、テンプレートセットをpluggableにするためのフレームワークを提供します。}, 
     8    '_TEMPLETS_DESCRIPTION' => 
     9qq{Templetsプラグインは、テンプレートセットをpluggableにするためのフレームワークを提供します。}, 
    1110    'Append a templet' => 'テンプレットを追加', 
    1211    'Select a templet' => 'テンプレットの選択',