Changeset 1646
- Timestamp:
- 07/27/04 09:07:27 (20 years ago)
- Location:
- pykota/trunk
- Files:
-
- 17 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/po/br/pykota.po
r1628 r1646 86 86 87 87 #, python-format 88 msgid "Invalid poor man's t reshold %s"88 msgid "Invalid poor man's threshold %s" 89 89 msgstr "Valor 'poor man' %s inv�do" 90 90 -
pykota/trunk/po/en/pykota.po
r1628 r1646 89 89 90 90 #, python-format 91 msgid "Invalid poor man's t reshold %s"91 msgid "Invalid poor man's threshold %s" 92 92 msgstr "" 93 93 -
pykota/trunk/po/es/pykota.po
r1628 r1646 86 86 87 87 #, python-format 88 msgid "Invalid poor man's t reshold %s"88 msgid "Invalid poor man's threshold %s" 89 89 msgstr "Valor 'poor man' %s inv�do" 90 90 -
pykota/trunk/po/fr/pykota.po
r1628 r1646 90 90 91 91 #, python-format 92 msgid "Invalid poor man's t reshold %s"92 msgid "Invalid poor man's threshold %s" 93 93 msgstr "Valeur 'pauvre homme' %s invalide" 94 94 -
pykota/trunk/po/it/pykota.po
r1628 r1646 92 92 93 93 #, python-format 94 msgid "Invalid poor man's t reshold %s"95 msgstr "Poor man's t reshold non valido %s"94 msgid "Invalid poor man's threshold %s" 95 msgstr "Poor man's threshold non valido %s" 96 96 97 97 msgid "" -
pykota/trunk/po/pt/pykota.po
r1628 r1646 86 86 87 87 #, python-format 88 msgid "Invalid poor man's t reshold %s"88 msgid "Invalid poor man's threshold %s" 89 89 msgstr "Valor 'poor man' %s inv�do" 90 90 -
pykota/trunk/po/pykota.pot
r1628 r1646 89 89 90 90 #, python-format 91 msgid "Invalid poor man's t reshold %s"91 msgid "Invalid poor man's threshold %s" 92 92 msgstr "" 93 93 -
pykota/trunk/po/sv/pykota.po
r1632 r1646 89 89 90 90 #, python-format 91 msgid "Invalid poor man's t reshold %s"92 msgstr "Ogiltigt fattigmansv�e (poor man's t reshold) %s"91 msgid "Invalid poor man's threshold %s" 92 msgstr "Ogiltigt fattigmansv�e (poor man's threshold) %s" 93 93 94 94 msgid "" -
pykota/trunk/po/th/pykota.po
r1645 r1646 89 89 90 90 #, python-format 91 msgid "Invalid poor man's t reshold %s"92 msgstr "��poor man's t reshold %s ��١��"91 msgid "Invalid poor man's threshold %s" 92 msgstr "��poor man's threshold %s ��١��" 93 93 94 94 msgid "" -
pykota/trunk/pykota/config.py
r1518 r1646 22 22 # 23 23 # $Log$ 24 # Revision 1.50 2004/07/27 07:07:27 jalet 25 # Typo : treshold ==> threshold 26 # 24 27 # Revision 1.49 2004/06/03 21:53:24 jalet 25 28 # crashrecipient directive … … 458 461 459 462 def getPoorMan(self) : 460 """Returns the poor man's t reshold."""463 """Returns the poor man's threshold.""" 461 464 try : 462 465 pm = self.getGlobalOption("poorman") … … 466 469 return float(pm) 467 470 except (TypeError, ValueError) : 468 raise PyKotaConfigError, _("Invalid poor man's t reshold %s") % pm471 raise PyKotaConfigError, _("Invalid poor man's threshold %s") % pm 469 472 470 473 def getPoorWarn(self) :