Changeset 1646

Show
Ignore:
Timestamp:
07/27/04 09:07:27 (20 years ago)
Author:
jalet
Message:

Typo : treshold ==> threshold

Location:
pykota/trunk
Files:
17 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/po/br/pykota.po

    r1628 r1646  
    8686 
    8787#, python-format 
    88 msgid "Invalid poor man's treshold %s" 
     88msgid "Invalid poor man's threshold %s" 
    8989msgstr "Valor 'poor man' %s inv�do" 
    9090 
  • pykota/trunk/po/en/pykota.po

    r1628 r1646  
    8989 
    9090#, python-format 
    91 msgid "Invalid poor man's treshold %s" 
     91msgid "Invalid poor man's threshold %s" 
    9292msgstr "" 
    9393 
  • pykota/trunk/po/es/pykota.po

    r1628 r1646  
    8686 
    8787#, python-format 
    88 msgid "Invalid poor man's treshold %s" 
     88msgid "Invalid poor man's threshold %s" 
    8989msgstr "Valor 'poor man' %s inv�do" 
    9090 
  • pykota/trunk/po/fr/pykota.po

    r1628 r1646  
    9090 
    9191#, python-format 
    92 msgid "Invalid poor man's treshold %s" 
     92msgid "Invalid poor man's threshold %s" 
    9393msgstr "Valeur 'pauvre homme' %s invalide" 
    9494 
  • pykota/trunk/po/it/pykota.po

    r1628 r1646  
    9292 
    9393#, python-format 
    94 msgid "Invalid poor man's treshold %s" 
    95 msgstr "Poor man's treshold non valido %s" 
     94msgid "Invalid poor man's threshold %s" 
     95msgstr "Poor man's threshold non valido %s" 
    9696 
    9797msgid "" 
  • pykota/trunk/po/pt/pykota.po

    r1628 r1646  
    8686 
    8787#, python-format 
    88 msgid "Invalid poor man's treshold %s" 
     88msgid "Invalid poor man's threshold %s" 
    8989msgstr "Valor 'poor man' %s inv�do" 
    9090 
  • pykota/trunk/po/pykota.pot

    r1628 r1646  
    8989 
    9090#, python-format 
    91 msgid "Invalid poor man's treshold %s" 
     91msgid "Invalid poor man's threshold %s" 
    9292msgstr "" 
    9393 
  • pykota/trunk/po/sv/pykota.po

    r1632 r1646  
    8989 
    9090#, python-format 
    91 msgid "Invalid poor man's treshold %s" 
    92 msgstr "Ogiltigt fattigmansv�e (poor man's treshold) %s" 
     91msgid "Invalid poor man's threshold %s" 
     92msgstr "Ogiltigt fattigmansv�e (poor man's threshold) %s" 
    9393 
    9494msgid "" 
  • pykota/trunk/po/th/pykota.po

    r1645 r1646  
    8989 
    9090#, python-format 
    91 msgid "Invalid poor man's treshold %s" 
    92 msgstr "��poor man's treshold %s ��١��" 
     91msgid "Invalid poor man's threshold %s" 
     92msgstr "��poor man's threshold %s ��١��" 
    9393 
    9494msgid "" 
  • pykota/trunk/pykota/config.py

    r1518 r1646  
    2222# 
    2323# $Log$ 
     24# Revision 1.50  2004/07/27 07:07:27  jalet 
     25# Typo : treshold ==> threshold 
     26# 
    2427# Revision 1.49  2004/06/03 21:53:24  jalet 
    2528# crashrecipient directive 
     
    458461             
    459462    def getPoorMan(self) :     
    460         """Returns the poor man's treshold.""" 
     463        """Returns the poor man's threshold.""" 
    461464        try : 
    462465            pm = self.getGlobalOption("poorman") 
     
    466469            return float(pm) 
    467470        except (TypeError, ValueError) :     
    468             raise PyKotaConfigError, _("Invalid poor man's treshold %s") % pm 
     471            raise PyKotaConfigError, _("Invalid poor man's threshold %s") % pm 
    469472             
    470473    def getPoorWarn(self) :