Changeset 1091

Show
Ignore:
Timestamp:
07/22/03 01:01:56 (21 years ago)
Author:
jalet
Message:

Modified some messages aout soft limit

Location:
pykota/trunk
Files:
5 modified

Legend:

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

    r1077 r1091  
    2121# 
    2222# $Log$ 
     23# Revision 1.32  2003/07/21 23:01:55  jalet 
     24# Modified some messages aout soft limit 
     25# 
    2326# Revision 1.31  2003/07/08 19:43:50  jalet 
    2427# Configurable warning messages. 
     
    252255msgstr "" 
    253256 
    254 msgid "Print Quota soft limit exceeded for user %s on printer %s" 
     257msgid "Print Quota low for user %s on printer %s" 
    255258msgstr "" 
    256259 
     
    329332msgstr "" 
    330333 
    331 msgid "Print Quota soft limit exceeded for group %s on printer %s" 
     334msgid "Print Quota low for group %s on printer %s" 
    332335msgstr "" 
    333336 
  • pykota/trunk/po/fr/pykota.po

    r1077 r1091  
    2121# 
    2222# $Log$ 
     23# Revision 1.31  2003/07/21 23:01:56  jalet 
     24# Modified some messages aout soft limit 
     25# 
    2326# Revision 1.30  2003/07/08 19:43:51  jalet 
    2427# Configurable warning messages. 
     
    261264msgstr "Adresse d'imprimante inconnue dans SNMP(%s, %s) pour l'imprimante %s" 
    262265 
    263 msgid "Print Quota soft limit exceeded for user %s on printer %s" 
    264 msgstr "Limite souple de Quota d'Impression d�ss�pour l'utilisateur %s sur l'imprimante %s" 
     266msgid "Print Quota low for user %s on printer %s" 
     267msgstr "Quota d'Impression faible pour l'utilisateur %s sur l'imprimante %s" 
    265268 
    266269msgid "Unsupported logging subsystem %s" 
     
    338341msgstr "D�ssement de Quota d'impression pour le groupe %s sur l'imprimante %s" 
    339342 
    340 msgid "Print Quota soft limit exceeded for group %s on printer %s" 
    341 msgstr "Limite souple de Quota d'Impression d�ss�pour le groupe %s sur l'imprimante %s" 
     343msgid "Print Quota low for group %s on printer %s" 
     344msgstr "Quota d'Impression faible pour le groupe %s sur l'imprimante %s" 
    342345 
    343346msgid "Totals may be inaccurate if some users are members of several groups." 
  • pykota/trunk/po/pykota.pot

    r1077 r1091  
    2121# 
    2222# $Log$ 
     23# Revision 1.32  2003/07/21 23:01:55  jalet 
     24# Modified some messages aout soft limit 
     25# 
    2326# Revision 1.31  2003/07/08 19:43:50  jalet 
    2427# Configurable warning messages. 
     
    252255msgstr "" 
    253256 
    254 msgid "Print Quota soft limit exceeded for user %s on printer %s" 
     257msgid "Print Quota low for user %s on printer %s" 
    255258msgstr "" 
    256259 
     
    329332msgstr "" 
    330333 
    331 msgid "Print Quota soft limit exceeded for group %s on printer %s" 
     334msgid "Print Quota low for group %s on printer %s" 
    332335msgstr "" 
    333336 
  • pykota/trunk/pykota/tool.py

    r1087 r1091  
    2121# 
    2222# $Log$ 
     23# Revision 1.48  2003/07/21 23:01:56  jalet 
     24# Modified some messages aout soft limit 
     25# 
    2326# Revision 1.47  2003/07/16 21:53:08  jalet 
    2427# Really big modifications wrt new configuration file's location and content. 
     
    485488                    self.sendMessageToUser(admin, adminmail, user, _("Print Quota Exceeded"), self.config.getHardWarn(printer.Name)) 
    486489        elif action == "WARN" :     
    487             adminmessage = _("Print Quota soft limit exceeded for group %s on printer %s") % (group.Name, printer.Name) 
     490            adminmessage = _("Print Quota low for group %s on printer %s") % (group.Name, printer.Name) 
    488491            self.logger.log_message(adminmessage) 
    489492            if mailto in [ "BOTH", "ADMIN" ] : 
     
    516519                self.sendMessageToAdmin(adminmail, _("Print Quota"), adminmessage) 
    517520        elif action == "WARN" :     
    518             adminmessage = _("Print Quota soft limit exceeded for user %s on printer %s") % (user.Name, printer.Name) 
     521            adminmessage = _("Print Quota low for user %s on printer %s") % (user.Name, printer.Name) 
    519522            self.logger.log_message(adminmessage) 
    520523            if mailto in [ "BOTH", "USER" ] :