Ignore:
Timestamp:
2008-06-16T11:16:36+12:00 (16 years ago)
Author:
kjdon
Message:

updated soem plugin names in some of the keys for strings.properties

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gsdl/trunk/perllib/plugins/AcronymExtractor.pm

    r15918 r16013  
    100100
    101101    # print $outhandle " extracting acronyms ...\n"
    102     gsprintf($outhandle, " {BasPlug.extracting_acronyms}...\n")
     102    gsprintf($outhandle, " {AcronymExtractor.extracting_acronyms}...\n")
    103103    if ($self->{'verbosity'} > 2);
    104104
     
    114114        $seen_before = "true";
    115115        if ($self->{'verbosity'} >= 4) {
    116             gsprintf($outhandle, " {BasPlug.already_seen} " .
     116            gsprintf($outhandle, " {AcronymExtractor.already_seen} " .
    117117                 $acro->to_string() . "\n");
    118118        }
     
    126126        #do the normal acronym
    127127        $doc_obj->add_utf8_metadata($thissection, "Acronym",  $acro->to_string());
    128         gsprintf($outhandle, " {BasPlug.adding} ".$acro->to_string()."\n")
     128        gsprintf($outhandle, " {AcronymExtractor.adding} ".$acro->to_string()."\n")
    129129        if ($self->{'verbosity'} > 3);
    130130    }
    131131    }
    132132
    133     gsprintf($outhandle, " {BasPlug.done_acronym_extract}\n")
     133    gsprintf($outhandle, " {AcronymExtractor.done_acronym_extract}\n")
    134134    if ($self->{'verbosity'} > 2);
    135135}
     
    140140    my $outhandle = $self->{'outhandle'};
    141141
    142     gsprintf($outhandle, " {BasPlug.marking_up_acronyms}...\n")
     142    gsprintf($outhandle, " {AcronymExtractor.marking_up_acronyms}...\n")
    143143    if ($self->{'verbosity'} > 2);
    144144
     
    146146    $text = &acronym::markup_acronyms($text, $self);
    147147
    148     gsprintf($outhandle, " {BasPlug.done_acronym_markup}\n")
     148    gsprintf($outhandle, " {AcronymExtractor.done_acronym_markup}\n")
    149149    if ($self->{'verbosity'} > 2);
    150150
Note: See TracChangeset for help on using the changeset viewer.