Changeset 11049


Ignore:
Timestamp:
03/10/10 12:03:51 (2 years ago)
Author:
jagd
Message:

fix RegexEditor? Quantifier description of {m,n} and {n}

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Padre/lib/Padre/Wx/Dialog/RegexEditor.pm

    r11045 r11049  
    103103                '01+'     => Wx::gettext('Match 1 or more times'), 
    104104                '02?'     => Wx::gettext('Match 1 or 0 times'), 
    105                 '03{m}'   => Wx::gettext('Match exactly n times'), 
     105                '03{m}'   => Wx::gettext('Match exactly m times'), 
    106106                '05{n,}'  => Wx::gettext('Match at least n times'), 
    107                 '05{m,n}' => Wx::gettext('Match at least n but not more than m times'), 
     107                '05{m,n}' => Wx::gettext('Match at least m but not more than n times'), 
    108108            } 
    109109        }, 
Note: See TracChangeset for help on using the changeset viewer.