Changeset 3360
- Timestamp:
- 03/29/08 15:51:03 (17 years ago)
- Location:
- pykota/trunk/bin
- Files:
-
- 7 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/bin/autopykota
r3330 r3360 120 120 dest="initbalance", 121 121 default=0.0, 122 help=_("Set the user's initial account balance value. If the user already exists, actual balance is left unchanged. If unset, the default value is %default "))122 help=_("Set the user's initial account balance value. If the user already exists, actual balance is left unchanged. If unset, the default value is %default.")) 123 123 parser.add_option("-e", "--email", 124 124 dest="email", 125 help=_("Set the user's email address "))125 help=_("Set the user's email address.")) 126 126 127 127 parser.add_example('--email="@example.com" --initbalance=10.0', -
pykota/trunk/bin/pkbanner
r3337 r3360 234 234 dest="logo", 235 235 default=u"/usr/share/pykota/logos/pykota.jpeg", 236 help=_("The image to use as a logo. The logo will be drawn at the center top of the page. The default logo is %default "))236 help=_("The image to use as a logo. The logo will be drawn at the center top of the page. The default logo is %default.")) 237 237 parser.add_option("-p", "--pagesize", 238 238 type="string", … … 241 241 dest="pagesize", 242 242 default=u"A4", 243 help=_("Set the size of the page. Most well known page sizes are recognized, like 'A4' or 'Letter' to name a few. The default page size is %default "))243 help=_("Set the size of the page. Most well known page sizes are recognized, like 'A4' or 'Letter' to name a few. The default page size is %default.")) 244 244 parser.add_option("-s", "--savetoner", 245 245 type="float", … … 252 252 dest="url", 253 253 default=u"http://www.pykota.com", 254 help=_("Set the url to write at the bottom of the banner page. The default url is %default "))254 help=_("Set the url to write at the bottom of the banner page. The default url is %default.")) 255 255 parser.add_example('--logo="" --savetoner=75', 256 256 _("This would generate a banner in the default page size, with no logo, and text luminosity would be increased by 75%.")) -
pykota/trunk/bin/pkinvoice
r3346 r3360 274 274 dest="logo", 275 275 default=u"/usr/share/pykota/logos/pykota.jpeg", 276 help=_("The image to use as a logo. The logo will be drawn at the center top of the page. The default logo is %default "))276 help=_("The image to use as a logo. The logo will be drawn at the center top of the page. The default logo is %default.")) 277 277 parser.add_option("-p", "--pagesize", 278 278 type="string", … … 281 281 dest="pagesize", 282 282 default=u"A4", 283 help=_("Set the size of the page. Most well known page sizes are recognized, like 'A4' or 'Letter' to name a few. The default page size is %default "))283 help=_("Set the size of the page. Most well known page sizes are recognized, like 'A4' or 'Letter' to name a few. The default page size is %default.")) 284 284 parser.add_option("-n", "--number", 285 285 dest="number", … … 288 288 callback=checkandset_positiveint, 289 289 default=1, 290 help=_("Sets the number of the first invoice. This number will automatically be incremented for each invoice. The default value is %default "))290 help=_("Sets the number of the first invoice. This number will automatically be incremented for each invoice. The default value is %default.")) 291 291 parser.add_option("-o", "--output", 292 292 dest="output", -
pykota/trunk/bin/pkrefund
r3347 r3360 306 306 dest="logo", 307 307 default=u"/usr/share/pykota/logos/pykota.jpeg", 308 help=_("The image to use as a logo. The logo will be drawn at the center top of the page. The default logo is %default "))308 help=_("The image to use as a logo. The logo will be drawn at the center top of the page. The default logo is %default.")) 309 309 parser.add_option("-p", "--pagesize", 310 310 type="string", … … 313 313 dest="pagesize", 314 314 default=u"A4", 315 help=_("Set the size of the page. Most well known page sizes are recognized, like 'A4' or 'Letter' to name a few. The default page size is %default "))315 help=_("Set the size of the page. Most well known page sizes are recognized, like 'A4' or 'Letter' to name a few. The default page size is %default.")) 316 316 parser.add_option("-n", "--number", 317 317 dest="number", … … 320 320 callback=checkandset_positiveint, 321 321 default=1, 322 help=_("Sets the number of the first receipt. This number will automatically be incremented for each receipt. The default value is %default "))322 help=_("Sets the number of the first receipt. This number will automatically be incremented for each receipt. The default value is %default.")) 323 323 parser.add_option("-o", "--output", 324 324 dest="output", -
pykota/trunk/bin/pykosd
r3330 r3360 167 167 dest="font", 168 168 default=pyosd.default_font, 169 help=_("Set the font to use. Defaults to %default "))169 help=_("Set the font to use. Defaults to %default.")) 170 170 parser.add_option("-l", "--loop", 171 171 type="int", -
pykota/trunk/bin/pykotme
r3358 r3360 117 117 118 118 parser.add_example("--printer apple file1.ps <file2.pclxl", 119 _("This would show the number of pages needed to print these two files, as well as the cost of printing them to the 'apple' printer ."))119 _("This would show the number of pages needed to print these two files, as well as the cost of printing them to the 'apple' printer for the user who launched this command.")) 120 120 parser.add_example("--user john", 121 121 _("This would show the number of pages needed to print the content of the standard input, and the cost of printing this on all printers for user 'john'.")) -
pykota/trunk/bin/repykota
r3356 r3360 92 92 parser.add_option("-i", "--ingroups", 93 93 dest="ingroups", 94 help=_("Only report susers who are members of the specified groups. This option is reserved to PyKota administrators."))94 help=_("Only report users who are members of the specified groups. This option is reserved to PyKota administrators.")) 95 95 parser.add_option("-P", "--printer", 96 96 dest="printer",