Show
Ignore:
Timestamp:
03/26/06 11:58:23 (18 years ago)
Author:
jerome
Message:

PyKota v1.24beta is out.

Files:
1 modified

Legend:

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

    r2627 r2808  
    2525"Project-Id-Version: PyKota v1.20\n" 
    2626"Report-Msgid-Bugs-To: alet@librelogiciel.com\n" 
    27 "POT-Creation-Date: 2004-11-25 10:16+0100\n" 
     27"POT-Creation-Date: 2006-03-26 11:13+0200\n" 
    2828"PO-Revision-Date: 2004-07-21 15:35:00+0100\n" 
    2929"Last-Translator: Jurandy Martins <jurandy@ic.unicamp.br>\n" 
     
    5959 
    6060#, python-format 
     61msgid "" 
     62"edpykota v%(__version__)s (c) %(__years__)s %(__author__)s\n" 
     63"\n" 
     64"A Print Quota editor for PyKota.\n" 
     65"\n" 
     66"command line usage :\n" 
     67"\n" 
     68"  edpykota [options] user1 user2 ... userN\n" 
     69"  \n" 
     70"  edpykota [options] group1 group2 ... groupN\n" 
     71"\n" 
     72"options :\n" 
     73"\n" 
     74"  -v | --version       Prints edpykota's version number then exits.\n" 
     75"  -h | --help          Prints this message then exits.\n" 
     76"  \n" 
     77"  -a | --add           Adds users or groups print quota entries if\n" 
     78"                       they don't exist in database.\n" 
     79"                       \n" 
     80"  -d | --delete        Deletes users or groups print quota entries.\n" 
     81"                       Users or groups are never deleted, you have\n" 
     82"                       to use the pkusers command to delete them.\n" 
     83"                       The history will be purge from all matching\n" 
     84"                       jobs, unless -g | --groups is used.\n" 
     85"  \n" 
     86"  -P | --printer p     Edit quotas on printer p only. Actually p can\n" 
     87"                       use wildcards characters to select only\n" 
     88"                       some printers. The default value is *, meaning\n" 
     89"                       all printers. \n" 
     90"                       You can specify several names or wildcards, \n" 
     91"                       by separating them with commas.\n" 
     92"  \n" 
     93"  -g | --groups        Edit groups print quota entries instead of \n" 
     94"                       users print quota entries.\n" 
     95"                          \n" 
     96"  -L | --list          Lists users or groups print quota entries.\n" 
     97"  \n" 
     98"  -n | --noquota       Sets both soft and hard limits to None for users\n" 
     99"                       or groups print quota entries.\n" 
     100"  \n" 
     101"  -r | --reset         Resets the actual page counter for the user\n" 
     102"                       or group to zero on the specified printers. \n" 
     103"                       The life time page counter is kept unchanged.\n" 
     104"                       \n" 
     105"  -R | --hardreset     Resets the actual and life time page counters\n" 
     106"                       for the user or group to zero on the specified \n" 
     107"                       printers. This is a shortcut for '--used 0'.\n" 
     108"                       \n" 
     109"  -s | --skipexisting  In combination with the --add option above, tells\n" 
     110"                       edpykota to not modify existing print quota entries.\n" 
     111"                       \n" 
     112"  -S | --softlimit sl  Sets the quota soft limit to sl " 
     113"pages.                       \n" 
     114"  \n" 
     115"  -H | --hardlimit hl  Sets the quota hard limit to hl pages.\n" 
     116"  \n" 
     117"  -I | --increase v    Increase existing Soft and Hard limits by the value\n" 
     118"                       of v. You can prefix v with + or -, if no sign is\n" 
     119"                       used, + is assumed.\n" 
     120"\n" 
     121"  -U | --used u        Sets the page counters for the user u pages on\n" 
     122"                       the selected printers. Doesn't work for groups, " 
     123"since\n" 
     124"                       their page counters are the sum of all their " 
     125"members'\n" 
     126"                       page counters.\n" 
     127"                       Useful for migrating users from a different system\n" 
     128"                       where they have already used some pages. Actual\n" 
     129"                       and Life Time page counters may be increased or " 
     130"decreased\n" 
     131"                       if u is prefixed with + or -.\n" 
     132"                       WARNING : BOTH page counters are modified in all " 
     133"cases,\n" 
     134"                       so be careful.\n" 
     135"                       NB : if u equals '0', then the action taken is\n" 
     136"                       the same as if --hardreset was used.\n" 
     137"\n" 
     138"  user1 through userN and group1 through groupN can use wildcards\n" 
     139"  if the --add option is not set.\n" 
     140"  \n" 
     141"examples :                              \n" 
     142"\n" 
     143"  $ edpykota --add john paul george ringo\n" 
     144"  \n" 
     145"  This will create print quota entries for users john, paul, george\n" 
     146"  and ringo on all printers. These print quota entries will have no\n" 
     147"  limit set.\n" 
     148"  \n" 
     149"  $ edpykota --printer lp -S 50 -H 60 jerome\n" 
     150"  \n" 
     151"  This will set jerome's print quota on the lp printer to a soft limit\n" 
     152"  of 50 pages, and a hard limit of 60 pages. Both user jerome and\n" 
     153"  printer lp have been previously created with the pkusers and pkprinters\n" 
     154"  commands, respectively.\n" 
     155"\n" 
     156"  $ edpykota -g -S 500 -H 550 financial support            \n" 
     157"  \n" 
     158"  This will set print quota soft limit to 500 pages and hard limit\n" 
     159"  to 550 pages for groups financial and support on all printers.\n" 
     160"  \n" 
     161"  $ edpykota --reset jerome \"jo*\"\n" 
     162"  \n" 
     163"  This will reset jerome's page counter to zero on all printers, as\n" 
     164"  well as every user whose name begins with 'jo'.\n" 
     165"  Their life time page counter on each printer will be kept unchanged.\n" 
     166"  You can also reset the life time page counters by using the\n" 
     167"  --hardreset | -R command line option.\n" 
     168"  \n" 
     169"  $ edpykota --printer hpcolor --noquota jerome\n" 
     170"  \n" 
     171"  This will tell PyKota to not limit jerome when printing on the \n" 
     172"  hpcolor printer. All his jobs will be allowed on this printer, but \n" 
     173"  accounting of the pages he prints will still be kept.\n" 
     174"  Print Quotas for jerome on other printers are unchanged.\n" 
     175"  \n" 
     176"  $ edpykota --delete --printer \"HP*,XER*\" jerome rachel\n" 
     177"  \n" 
     178"  This will delete users jerome and rachel's print quota\n" 
     179"  entries on all printers which name begin with 'HP' or\n" 
     180"  'XER'. The jobs printed by these users on these printers\n" 
     181"  will be deleted from the history.\n" 
     182msgstr "" 
     183 
     184#, python-format 
     185msgid "You can't set negative limits for %s" 
     186msgstr "" 
     187 
     188msgid "Extracting datas" 
     189msgstr "" 
     190 
     191#, python-format 
     192msgid "Page counter : %s" 
     193msgstr "" 
     194 
     195#, python-format 
     196msgid "Lifetime page counter : %s" 
     197msgstr "" 
     198 
     199#, python-format 
     200msgid "Soft limit : %s" 
     201msgstr "" 
     202 
     203#, python-format 
     204msgid "Hard limit : %s" 
     205msgstr "" 
     206 
     207#, python-format 
     208msgid "Date limit : %s" 
     209msgstr "" 
     210 
     211#, python-format 
     212msgid "Maximum job size : %s" 
     213msgstr "" 
     214 
     215#, python-format 
     216msgid "%s pages" 
     217msgstr "" 
     218 
     219msgid "Unlimited" 
     220msgstr "" 
     221 
     222#, python-format 
     223msgid "Warning banners printed : %s" 
     224msgstr "" 
     225 
     226msgid "Deletion" 
     227msgstr "" 
     228 
     229#, python-format 
     230msgid "Invalid used value %s." 
     231msgstr "" 
     232 
     233#, python-format 
     234msgid "Invalid increase value %s." 
     235msgstr "" 
     236 
     237#, python-format 
     238msgid "Invalid softlimit value %s." 
     239msgstr "Valor incorreto para o limite %s." 
     240 
     241#, python-format 
     242msgid "Invalid hardlimit value %s." 
     243msgstr "Valor incorreto para o limite Maximo %s." 
     244 
     245#, python-format 
     246msgid "Hard limit %i is less than soft limit %i, values will be exchanged." 
     247msgstr "Limite maximo %i �enor que o limite %i, os valores ser�invertidos." 
     248 
     249#, python-format 
     250msgid "Undefined hard limit set to soft limit (%s)." 
     251msgstr "" 
     252 
     253#, python-format 
     254msgid "Undefined soft limit set to hard limit (%s)." 
     255msgstr "" 
     256 
     257msgid "Creation" 
     258msgstr "" 
     259 
     260#, python-format 
     261msgid "" 
     262"Impossible to create print quota entries if the user or group object '%s' " 
     263"doesn't already exist. Please use pkusers to create it first." 
     264msgstr "" 
     265 
     266msgid "Modification" 
     267msgstr "" 
     268 
     269msgid "incompatible options, see help." 
     270msgstr "O�s incompativeis, veja a ajuda." 
     271 
     272msgid "You have to pass user or group names on the command line" 
     273msgstr "Voce deve informar usuario ou grupo na linha de comando" 
     274 
     275#, python-format 
     276msgid "" 
     277"pkbanner v%(__version__)s (c) %(__years__)s %(__author__)s\n" 
     278"\n" 
     279"Generates banners.\n" 
     280"\n" 
     281"command line usage :\n" 
     282"\n" 
     283"  pkbanner  [options]  [more info]\n" 
     284"\n" 
     285"options :\n" 
     286"\n" 
     287"  -v | --version       Prints pkbanner's version number then exits.\n" 
     288"  -h | --help          Prints this message then exits.\n" 
     289"  \n" 
     290"  -l | --logo img      Use the image as the banner's logo. The logo will\n" 
     291"                       be drawn at the center top of the page. The default\n" 
     292"                       logo is /usr/share/pykota/logos/pykota.jpeg\n" 
     293"                       \n" 
     294"  -p | --pagesize sz   Sets sz as the page size. Most well known\n" 
     295"                       page sizes are recognized, like 'A4' or 'Letter'\n" 
     296"                       to name a few. The default size is A4.\n" 
     297"  \n" 
     298"  -s | --savetoner s   Sets the text luminosity factor to s%%. This can be \n" 
     299"                       used to save toner. The default value is 0, which\n" 
     300"                       means that no toner saving will be done.\n" 
     301"  \n" 
     302"  -u | --url u         Uses u as an url to be written at the bottom of \n" 
     303"                       the banner page. The default url is :\n" 
     304"                       http://www.librelogiciel.com/software/\n" 
     305"  \n" 
     306"examples :                              \n" 
     307"\n" 
     308"  Using pkbanner directly from the command line is not recommended,\n" 
     309"  excepted for testing purposes. You should use pkbanner in the\n" 
     310"  'startingbanner' or 'endingbanner' directives in pykota.conf\n" 
     311"  \n" 
     312"    startingbanner: /usr/bin/pkbanner --logo=\"\" --savetoner=75\n" 
     313"  \n" 
     314"      With such a setting in pykota.conf, all print jobs will be \n" 
     315"      prefixed with an A4 banner with no logo, and text luminosity will\n" 
     316"      be increased by 75%%. The PostScript output will be directly sent\n" 
     317"      to your printer.\n" 
     318"      \n" 
     319"  You'll find more examples in the sample configuration file included    \n" 
     320"  in PyKota.\n" 
     321msgstr "" 
     322 
     323msgid "Unknown" 
     324msgstr "" 
     325 
     326msgid "Username" 
     327msgstr "" 
     328 
     329msgid "More Info" 
     330msgstr "" 
     331 
     332msgid "Job" 
     333msgstr "" 
     334 
     335msgid "Date" 
     336msgstr "Data" 
     337 
     338msgid "Allowed" 
     339msgstr "" 
     340 
     341msgid "Denied" 
     342msgstr "" 
     343 
     344msgid "Allowed with Warning" 
     345msgstr "" 
     346 
     347msgid "Problem" 
     348msgstr "" 
     349 
     350msgid "Cancelled" 
     351msgstr "" 
     352 
     353msgid "Result" 
     354msgstr "" 
     355 
     356msgid "Title" 
     357msgstr "T�lo" 
     358 
     359msgid "Filename" 
     360msgstr "Nome do arquivo" 
     361 
     362#, python-format 
     363msgid "Pages printed so far on %s" 
     364msgstr "" 
     365 
     366msgid "Account balance" 
     367msgstr "" 
     368 
     369msgid "Soft Limit" 
     370msgstr "" 
     371 
     372msgid "Hard Limit" 
     373msgstr "" 
     374 
     375msgid "Date Limit" 
     376msgstr "" 
     377 
     378msgid "No Limit" 
     379msgstr "" 
     380 
     381msgid "No Accounting" 
     382msgstr "" 
     383 
     384msgid "Forbidden" 
     385msgstr "" 
     386 
     387msgid "Printing Mode" 
     388msgstr "" 
     389 
     390msgid "Allowed range is (0..99)" 
     391msgstr "" 
     392 
     393#, python-format 
     394msgid "Invalid 'savetoner' option %s : %s" 
     395msgstr "" 
     396 
     397#, python-format 
     398msgid "Invalid 'pagesize' option %s, defaulting to A4." 
     399msgstr "" 
     400 
     401#, python-format 
     402msgid "" 
     403"pkmail v%(__version__)s (c) %(__years__)s %(__author__)s\n" 
     404"\n" 
     405"Email gateway for PyKota.\n" 
     406"\n" 
     407"command line usage :\n" 
     408"\n" 
     409"  pkmail  [options]\n" 
     410"\n" 
     411"options :\n" 
     412"\n" 
     413"  -v | --version       Prints pkmail's version number then exits.\n" 
     414"  -h | --help          Prints this message then exits.\n" 
     415"  \n" 
     416"    \n" 
     417"  This command is meant to be used from your mail server's aliases file,\n" 
     418"  as a pipe. It will then accept commands send to it in email messages,\n" 
     419"  and will send the answer to the command's originator.\n" 
     420"  \n" 
     421"  To use this command, create an email alias in /etc/aliases with\n" 
     422"  the following format :\n" 
     423"  \n" 
     424"    pykotacmd: \"|/usr/bin/pkmail\"\n" 
     425"    \n" 
     426"  Then run the 'newaliases' command to regenerate the aliases database.\n" 
     427"  \n" 
     428"  You can now send commands by email to 'pykotacmd@yourdomain.com', with\n" 
     429"  the command in the subject.\n" 
     430"  \n" 
     431"  List of supported commands :\n" 
     432"  \n" 
     433"        report [username]\n" 
     434"  \n" 
     435"  NB : For pkmail to work correctly, you may have to put the 'mail'\n" 
     436"  system user in the 'pykota' system group to ensure this user can\n" 
     437"  read the /etc/pykota/pykotadmin.conf file, and restart your\n" 
     438"  mail server (e.g. /etc/init.d/exim restart). It is strongly advised\n" 
     439"  that you think at least twice before doing this though.\n" 
     440"  \n" 
     441"  Use at your own risk !\n" 
     442msgstr "" 
     443 
     444#, python-format 
     445msgid "" 
     446"pkturnkey v%(__version__)s (c) %(__years__)s %(__author__)s\n" 
     447"\n" 
     448"A turn key tool for PyKota. When launched, this command will initialize\n" 
     449"PyKota's database with all existing print queues and some or all users.\n" 
     450"For now, no prices or limits are set, so printing is fully accounted\n" 
     451"for, but not limited. That's why you'll probably want to also use\n" 
     452"edpykota once the database has been initialized.\n" 
     453"\n" 
     454"command line usage :\n" 
     455"\n" 
     456"  pkturnkey [options] [printqueues names]\n" 
     457"\n" 
     458"options :\n" 
     459"\n" 
     460"  -v | --version       Prints pkturnkey version number then exits.\n" 
     461"  -h | --help          Prints this message then exits.\n" 
     462"  \n" 
     463"  -c | --doconf        Give hints about what to put into pykota.conf\n" 
     464"  \n" 
     465"  -d | --dousers       Manages users accounts as well.\n" 
     466"  \n" 
     467"  -D | --dogroups      Manages users groups as well.\n" 
     468"                       Implies -d | --dousers.\n" 
     469"  \n" 
     470"  -e | --emptygroups   Includes empty groups.\n" 
     471"  \n" 
     472"  -f | --force         Modifies the database instead of printing what\n" 
     473"                       it would do.\n" 
     474"                       \n" 
     475"  -u | --uidmin uid    Only adds users whose uid is greater than or equal " 
     476"to\n" 
     477"                       uid. You can pass an username there as well, and its\n" 
     478"                       uid will be used automatically.\n" 
     479"                       If not set, 0 will be used automatically.\n" 
     480"                       Implies -d | --dousers.\n" 
     481"                       \n" 
     482"  -U | --uidmax uid    Only adds users whose uid is lesser than or equal to\n" 
     483"                       uid. You can pass an username there as well, and its\n" 
     484"                       uid will be used automatically.\n" 
     485"                       If not set, a large value will be used " 
     486"automatically.\n" 
     487"                       Implies -d | --dousers.\n" 
     488"\n" 
     489"  -g | --gidmin gid    Only adds groups whose gid is greater than or equal " 
     490"to\n" 
     491"                       gid. You can pass a groupname there as well, and its\n" 
     492"                       gid will be used automatically.\n" 
     493"                       If not set, 0 will be used automatically.\n" 
     494"                       Implies -D | --dogroups.\n" 
     495"                       \n" 
     496"  -G | --gidmax gid    Only adds groups whose gid is lesser than or equal " 
     497"to\n" 
     498"                       gid. You can pass a groupname there as well, and its\n" 
     499"                       gid will be used automatically.\n" 
     500"                       If not set, a large value will be used " 
     501"automatically.\n" 
     502"                       Implies -D | --dogroups.\n" 
     503"\n" 
     504"examples :                              \n" 
     505"\n" 
     506"  $ pkturnkey --dousers --uidmin jerome\n" 
     507"\n" 
     508"  Will simulate the initialization of PyKota's database will all existing\n" 
     509"  printers and print accounts for all users whose uid is greater than\n" 
     510"  or equal to jerome's one. Won't manage any users group.\n" 
     511"  \n" 
     512"  To REALLY initialize the database instead of simulating it, please\n" 
     513"  use the -f | --force command line switch.\n" 
     514"  \n" 
     515"  You can limit the initialization to only a subset of the existing\n" 
     516"  printers, by passing their names at the end of the command line.\n" 
     517msgstr "" 
     518 
     519#, python-format 
     520msgid "" 
     521"Printer %s is not managed by PyKota yet. Please modify printers.conf and " 
     522"restart CUPS." 
     523msgstr "" 
     524 
     525msgid "You're not allowed to use this command." 
     526msgstr "" 
     527 
     528msgid "Please be patient..." 
     529msgstr "" 
     530 
     531msgid "Don't worry, the database WILL NOT BE MODIFIED." 
     532msgstr "" 
     533 
     534msgid "Please WORRY NOW, the database WILL BE MODIFIED." 
     535msgstr "" 
     536 
     537msgid "System users will have a print account as well !" 
     538msgstr "" 
     539 
     540#, python-format 
     541msgid "Unknown username %s : %s" 
     542msgstr "" 
     543 
     544msgid "System groups will have a print account as well !" 
     545msgstr "" 
     546 
     547#, python-format 
     548msgid "Unknown groupname %s : %s" 
     549msgstr "" 
     550 
     551msgid "Simulation terminated." 
     552msgstr "" 
     553 
     554msgid "Database initialized !" 
     555msgstr "" 
     556 
     557msgid "The --uidmin or --uidmax command line option implies --dousers as well." 
     558msgstr "" 
     559 
     560msgid "" 
     561"The --gidmin or --gidmax command line option implies --dogroups as well." 
     562msgstr "" 
     563 
     564msgid "The --dogroups command line option implies --dousers as well." 
     565msgstr "" 
     566 
     567#, python-format 
     568msgid "" 
     569"pykosd v%(__version__)s (c) %(__years__)s %(__author__)s\n" 
     570"\n" 
     571"An OSD quota monitor for PyKota.\n" 
     572"\n" 
     573"command line usage :\n" 
     574"\n" 
     575"  pykosd [options]\n" 
     576"\n" 
     577"options :\n" 
     578"\n" 
     579"  -v | --version       Prints pykosd's version number then exits.\n" 
     580"  -h | --help          Prints this message then exits.\n" 
     581"  \n" 
     582"  -c | --color #rrggbb Sets the color to use for display as an hexadecimal\n" 
     583"                       triplet, for example #FF0000 is 100%% red.\n" 
     584"                       Defaults to 100%% green (#00FF00).\n" 
     585"                       \n" 
     586"  -d | --duration d    Sets the duration of the display in seconds. \n" 
     587"                       Defaults to 3 seconds.\n" 
     588"                       \n" 
     589"  -f | --font f        Sets the font to use for " 
     590"display.                      \n" 
     591"                       Defaults to the Python OSD library's default.\n" 
     592"  \n" 
     593"  -l | --loop n        Sets the number of times the info will be displayed.\n" 
     594"                       Defaults to 0, which means loop forever.\n" 
     595"                       \n" 
     596"  -s | --sleep s       Sets the sleeping duration between two displays \n" 
     597"                       in seconds. Defaults to 180 seconds (3 minutes).\n" 
     598"                       \n" 
     599"  \n" 
     600"examples :                              \n" 
     601"\n" 
     602"  $ pykosd -s 60 --loop 5\n" 
     603"  \n" 
     604"  Will launch pykosd. Display will be refreshed every 60 seconds,\n" 
     605"  and will last for 3 seconds (the default) each time. After five\n" 
     606"  iterations, the program will exit.\n" 
     607msgstr "" 
     608 
     609#, python-format 
     610msgid "Invalid duration option %s" 
     611msgstr "Op� %s inv�da para dura�" 
     612 
     613#, python-format 
     614msgid "Invalid loop option %s" 
     615msgstr "Op� %s inv�da para loop (la�" 
     616 
     617#, python-format 
     618msgid "Invalid sleep option %s" 
     619msgstr "Op� %s inv�da para sleep (sono)" 
     620 
     621#, python-format 
     622msgid "Invalid color option %s" 
     623msgstr "Op� %s inv�da para color (cor)" 
     624 
     625#, python-format 
     626msgid "User %s doesn't exist in PyKota's database" 
     627msgstr "Usu�o %s n�existe na base de dados do Pykota" 
     628 
     629#, python-format 
     630msgid "Pages used on %s : %s" 
     631msgstr "P�nas usadas em %s : %s" 
     632 
     633#, python-format 
     634msgid "PyKota Units left : %.2f" 
     635msgstr "Unidades restantes do PyKota : %.2f" 
     636 
     637msgid "Printing denied." 
     638msgstr "" 
     639 
     640msgid "Printing not limited." 
     641msgstr "" 
     642 
     643msgid "Printing not limited, no accounting." 
     644msgstr "" 
     645 
     646#, python-format 
     647msgid "" 
     648"repykota v%(__version__)s (c) %(__years__)s %(__author__)s\n" 
     649"\n" 
     650"Generates print quota reports.\n" 
     651"\n" 
     652"command line usage :\n" 
     653"\n" 
     654"  repykota [options] \n" 
     655"\n" 
     656"options :\n" 
     657"\n" 
     658"  -v | --version       Prints repykota's version number then exits.\n" 
     659"  -h | --help          Prints this message then exits.\n" 
     660"  \n" 
     661"  -u | --users         Generates a report on users quota, this is \n" 
     662"                       the default.\n" 
     663"  \n" 
     664"  -g | --groups        Generates a report on group quota instead of users.\n" 
     665"  \n" 
     666"  -i | --ingroups g1[,g2...]  Only lists users who are members of these\n" 
     667"                              groups. Reserved to PyKota Administrators.\n" 
     668"  \n" 
     669"  -P | --printer p     Report quotas on this printer only. Actually p can\n" 
     670"                       use wildcards characters to select only\n" 
     671"                       some printers. The default value is *, meaning\n" 
     672"                       all printers.\n" 
     673"                       You can specify several names or wildcards, \n" 
     674"                       by separating them with commas.\n" 
     675"  \n" 
     676"examples :                              \n" 
     677"\n" 
     678"  $ repykota --printer lp\n" 
     679"  \n" 
     680"  This will print the quota status for all users who use the lp printer.\n" 
     681"\n" 
     682"  $ repykota \n" 
     683"  \n" 
     684"  This will print the quota status for all users on all printers.\n" 
     685"  \n" 
     686"  $ repykota --printer \"laser*,*pson\" jerome \"jo*\"\n" 
     687"  \n" 
     688"  This will print the quota status for user jerome and all users\n" 
     689"  whose name begins with \"jo\" on all printers which name begins\n" 
     690"  with \"laser\" or ends with \"pson\".\n" 
     691"  \n" 
     692"  If launched by an user who is not a PyKota administrator, additionnal\n" 
     693"  arguments representing users or groups names are ignored, and only the\n" 
     694"  current user/group is reported.\n" 
     695msgstr "" 
     696 
     697msgid "Option --ingroups is reserved to PyKota Administrators." 
     698msgstr "" 
     699 
     700#, python-format 
     701msgid "There's no printer matching %s" 
     702msgstr "Impressora %s n�encontrada" 
     703 
     704#, python-format 
    61705msgid "SIGTERM received, job %s cancelled." 
    62706msgstr "SIGTERM recebida, trabalho %s reiniciado." 
     
    65709msgstr "" 
    66710 
    67 #, python-format 
    68 msgid "Unable to precompute the job's size with the generic PDL analyzer : %s" 
    69 msgstr "" 
    70 "Imposs�l calcular tamanho da tarefa usando analisador gen�o de PDL : %s" 
     711msgid "Print job cancelled." 
     712msgstr "" 
    71713 
    72714#, python-format 
     
    216858msgstr "Tarefa n�cont�nenhum dado. Impress�negada" 
    217859 
     860msgid "Error in external policy script. Printing is denied." 
     861msgstr "" 
     862 
     863#, python-format 
     864msgid "" 
     865"Still no print quota entry for user %s on printer %s after external policy. " 
     866"Printing is denied." 
     867msgstr "" 
     868 
     869msgid "Printing is denied by printer policy." 
     870msgstr "" 
     871 
    218872msgid "Job allowed by printer policy. No accounting will be done." 
    219873msgstr "" 
     
    249903msgstr "" 
    250904 
     905msgid "Job cancelled, no accounting will be done." 
     906msgstr "" 
     907 
    251908msgid "Job accounting begins." 
    252909msgstr "In�o da contagem da tarefa." 
     
    255912msgstr "" 
    256913 
     914msgid "Job cancelled, no accounting has been done." 
     915msgstr "" 
     916 
    257917msgid "Job accounting ends." 
    258918msgstr "Fim da contagem da tarefa." 
    259919 
     920msgid "" 
     921"Job size forced to 0 because the real CUPS backend failed. No accounting " 
     922"will be done." 
     923msgstr "" 
     924 
     925msgid "The real CUPS backend failed, but the job will be accounted for anyway." 
     926msgstr "" 
     927 
    260928msgid "Job size forced to 0 because printing is denied." 
    261929msgstr "Tamanho da tarefa zerado porque a impress�foi negada" 
    262930 
     931msgid "Job size forced to 0 because printing was cancelled." 
     932msgstr "" 
     933 
    263934#, python-format 
    264935msgid "Job size : %i" 
     
    278949#, python-format 
    279950msgid "Billing code %s was updated." 
     951msgstr "" 
     952 
     953#, python-format 
     954msgid "Incorrect value for the 'onbackenderror' directive in section [%s]" 
     955msgstr "" 
     956 
     957#, python-format 
     958msgid "The real backend produced an error, we will try again in %s seconds." 
     959msgstr "" 
     960 
     961#, python-format 
     962msgid "Job %s interrupted by the administrator !" 
     963msgstr "" 
     964 
     965#, python-format 
     966msgid "" 
     967"pkbcodes v%(__version__)s (c) %(__years__)s %(__author__)s\n" 
     968"\n" 
     969"A billing codes Manager for PyKota.\n" 
     970"\n" 
     971"command line usage :\n" 
     972"\n" 
     973"  pkbcodes [options] code1 code2 code3 ... codeN\n" 
     974"\n" 
     975"options :\n" 
     976"\n" 
     977"  -v | --version       Prints pkbcodes version number then exits.\n" 
     978"  -h | --help          Prints this message then exits.\n" 
     979"  \n" 
     980"  -a | --add           Adds billing codes if they don't exist in PyKota's\n" 
     981"                       database. If they exist, they are modified\n" 
     982"                       unless -s|--skipexisting is also used.\n" 
     983"\n" 
     984"  -d | --delete        Deletes billing codes from PyKota's database.\n" 
     985"                       NB : the history entries with this billing code\n" 
     986"                       are not deleted, voluntarily.\n" 
     987"\n" 
     988"  -D | --description d Adds a textual description to billing codes.\n" 
     989"\n" 
     990"  -l | --list          List informations about the billing codes.\n" 
     991"\n" 
     992"  -r | --reset         Resets the billing codes' balance and page counters\n" 
     993"                       to 0.\n" 
     994"\n" 
     995"  -s | --skipexisting  In combination with the --add option above, tells\n" 
     996"                       pkbcodes to not modify existing billing codes.\n" 
     997"\n" 
     998"  code1 through codeN can contain wildcards if the --add option\n" 
     999"  is not set.\n" 
     1000"\n" 
     1001"examples :                              \n" 
     1002"\n" 
     1003"  $ pkbcodes --add -D \"My project\" myproj\n" 
     1004"\n" 
     1005"  Will create the myproj billing code with \"My project\"\n" 
     1006"  as the description.\n" 
     1007"\n" 
     1008"  $ pkbcodes --delete \"*\"\n" 
     1009"\n" 
     1010"  This will completely delete all the billing codes, but without\n" 
     1011"  removing any matching job from the history. USE WITH CARE ANYWAY !\n" 
     1012"  \n" 
     1013"  $ pkbcodes --list \"my*\"\n" 
     1014"  \n" 
     1015"  This will list all billing codes which name begins with 'my'.\n" 
     1016msgstr "" 
     1017 
     1018#, python-format 
     1019msgid "There's no billingcode matching %s" 
     1020msgstr "" 
     1021 
     1022msgid "pages" 
     1023msgstr "" 
     1024 
     1025msgid "and" 
     1026msgstr "" 
     1027 
     1028msgid "credits" 
     1029msgstr "" 
     1030 
     1031#, python-format 
     1032msgid "Billing code [%s] already exists, skipping." 
     1033msgstr "" 
     1034 
     1035#, python-format 
     1036msgid "Billing code [%s] already exists, will be modified." 
     1037msgstr "" 
     1038 
     1039msgid "You have to pass billing codes on the command line" 
     1040msgstr "" 
     1041 
     1042#, python-format 
     1043msgid "" 
     1044"pknotify v%(__version__)s (c) %(__years__)s %(__author__)s\n" 
     1045"\n" 
     1046"Notifies or ask questions to end users who launched the PyKotIcon " 
     1047"application.\n" 
     1048"\n" 
     1049"command line usage :\n" 
     1050"\n" 
     1051"  pknotify  [options]  [arguments]\n" 
     1052"\n" 
     1053"options :\n" 
     1054"\n" 
     1055"  -v | --version             Prints pkbanner's version number then exits.\n" 
     1056"  -h | --help                Prints this message then exits.\n" 
     1057"  \n" 
     1058"  -d | --destination h[:p]   Sets the destination hostname and optional\n" 
     1059"                             port onto which contact the remote PyKotIcon\n" 
     1060"                             application. This option is mandatory.\n" 
     1061"                             When not specified, the port defaults to 7654.\n" 
     1062"                             \n" 
     1063"  -a | --ask                 Tells pknotify to ask something to the end\n" 
     1064"                             user. Then pknotify will output the result.\n" 
     1065"                       \n" 
     1066"  -C | --checkauth           When --ask is used and both an 'username' and " 
     1067"a\n" 
     1068"                             'password' are asked to the end user, then\n" 
     1069"                             pknotify will try to authenticate the user\n" 
     1070"                             through PAM. If authentified, this program\n" 
     1071"                             will print \"AUTH=YES\", else \"AUTH=NO\".\n" 
     1072"                             If a field is missing, \"AUTH=IMPOSSIBLE\" " 
     1073"will\n" 
     1074"                             be printed. If the user is authenticated, then\n" 
     1075"                             \"USERNAME=xxxx\" will be printed as well.\n" 
     1076"                             \n" 
     1077"  -c | --confirm             Tells pknotify to ask for either a " 
     1078"confirmation                       \n" 
     1079"                             or abortion.\n" 
     1080"                             \n" 
     1081"  -D | --denyafter N         With --checkauth above, makes pknotify " 
     1082"loop                           \n" 
     1083"                             up to N times if the password is incorrect.\n" 
     1084"                             After having reached the limit, \"DENY\" will\n" 
     1085"                             be printed, which effectively rejects the job.\n" 
     1086"                             The default value of N is 1, meaning the job\n" 
     1087"                             is denied after the first unsuccessful try.\n" 
     1088"                             \n" 
     1089"  -n | --notify              Tells pknotify to send an informational " 
     1090"message\n" 
     1091"                             message to the end user.\n" 
     1092"                             \n" 
     1093"  -q | --quit                Tells pknotify to send a message asking the\n" 
     1094"                             PyKotIcon application to exit. This option can\n" 
     1095"                             be combined with the other ones to make " 
     1096"PyKotIcon\n" 
     1097"                             exit after having sent the answer from the " 
     1098"dialog.\n" 
     1099"                             \n" 
     1100"  -t | --timeout T           Tells pknotify to ignore the end user's answer " 
     1101"if\n" 
     1102"                             it comes pas T seconds after the dialog box " 
     1103"being\n" 
     1104"                             opened. The default value is 0 seconds, which \n" 
     1105"                             tells pknotify to wait indefinitely.\n" 
     1106"                             Use this option to avoid having an user who\n" 
     1107"                             leaved his computer stall a whole print queue.\n" 
     1108"                             \n" 
     1109"  You MUST specify either --ask, --confirm, --notify or --quit.\n" 
     1110"\n" 
     1111"  arguments :             \n" 
     1112"  \n" 
     1113"    -a | --ask : Several arguments are accepted, or the form\n" 
     1114"                 \"label:varname:defaultvalue\". The result will\n" 
     1115"                 be printed to stdout in the following format :\n" 
     1116"                 VAR1NAME=VAR1VALUE\n" 
     1117"                 VAR2NAME=VAR2VALUE\n" 
     1118"                 ...\n" 
     1119"                 If the dialog was cancelled, nothing will be\n" 
     1120"                 printed. If one of the varname is 'password'\n" 
     1121"                 then this field is asked as a password (you won't\n" 
     1122"                 see what you type in), and is NOT printed. Although\n" 
     1123"                 it is not printed, it will be used to check if\n" 
     1124"                 authentication is valid if you specify --checkauth.\n" 
     1125"                 \n" 
     1126"    -c | --confirm : A single argument is expected, representing the\n" 
     1127"                     message to display. If the dialog is confirmed\n" 
     1128"                     then pknotify will print OK, else CANCEL.\n" 
     1129"                     \n" 
     1130"    -n | --notify : A single argument is expected, representing " 
     1131"the                 \n" 
     1132"                    message to display. In this case pknotify will\n" 
     1133"                    always print OK.\n" 
     1134"                    \n" 
     1135"examples :                    \n" 
     1136"\n" 
     1137"  pknotify -d client:7654 --confirm \"This job costs :\n" 
     1138"10 credits !\"\n" 
     1139"  \n" 
     1140"  Would display the cost of a print job and asks for confirmation.\n" 
     1141"  \n" 
     1142"  pknotify --destination $PYKOTAJOBORIGINATINGHOSTNAME:7654 \\\n" 
     1143"           --checkauth --ask \"Your name:username:\" \"Your password:" 
     1144"password:\"\n" 
     1145"           \n" 
     1146"  Asks an username and password, and checks if they are valid.         \n" 
     1147"  NB : The PYKOTAJOBORIGINATINGHOSTNAME environment variable is\n" 
     1148"  only set if you launch pknotify from cupspykota through a directive\n" 
     1149"  in ~pykota/pykota.conf\n" 
     1150"  \n" 
     1151"  The TCP port you'll use must be reachable on the client from the\n" 
     1152"  print server.\n" 
     1153msgstr "" 
     1154 
     1155msgid "You MUST install PyPAM for this functionnality to work !" 
     1156msgstr "" 
     1157 
     1158#, python-format 
     1159msgid "Authentication error for user %s : %s" 
     1160msgstr "" 
     1161 
     1162#, python-format 
     1163msgid "Internal error : can't authenticate user %s" 
     1164msgstr "" 
     1165 
     1166#, python-format 
     1167msgid "Password correct for user %s" 
     1168msgstr "" 
     1169 
     1170#, python-format 
     1171msgid "" 
     1172"The end user at %s:%i didn't answer within %i seconds. The print job will be " 
     1173"cancelled." 
     1174msgstr "" 
     1175 
     1176msgid "Connection error" 
     1177msgstr "" 
     1178 
     1179msgid "some options are mandatory, see help." 
     1180msgstr "" 
     1181 
     1182msgid "some options require arguments, see help." 
     1183msgstr "" 
     1184 
     1185#, python-format 
     1186msgid "" 
     1187"pkusers v%(__version__)s (c) %(__years__)s %(__author__)s\n" 
     1188"\n" 
     1189"An Users and Groups Manager for PyKota.\n" 
     1190"\n" 
     1191"command line usage :\n" 
     1192"\n" 
     1193"  pkusers [options] user1 user2 user3 ... userN\n" 
     1194"  \n" 
     1195"or :  \n" 
     1196"\n" 
     1197"  pkusers --groups [options] group1 group2 group3 ... groupN\n" 
     1198"\n" 
     1199"options :\n" 
     1200"\n" 
     1201"  -v | --version       Prints pkusers's version number then exits.\n" 
     1202"  -h | --help          Prints this message then exits.\n" 
     1203"  \n" 
     1204"  -a | --add           Adds users if they don't exist on the database.\n" 
     1205"                       If they exist, they are modified unless\n" 
     1206"                       -s|--skipexisting is also used.\n" 
     1207"                       \n" 
     1208"  -d | --delete        Deletes users from the quota storage.\n" 
     1209"  \n" 
     1210"  -D | --description d Adds a textual description to users or groups.\n" 
     1211"                       \n" 
     1212"  -g | --groups        Edit users groups instead of users.\n" 
     1213"                          \n" 
     1214"  -o | --overcharge f  Sets the overcharging factor applied to the user \n" 
     1215"                       when computing the cost of a print job. Positive or \n" 
     1216"                       negative floating point values are allowed,\n" 
     1217"                       this allows you to do some really creative\n" 
     1218"                       things like giving money to an user whenever\n" 
     1219"                       he prints. The number of pages in a print job\n" 
     1220"                       is not modified by this coefficient, only the\n" 
     1221"                       cost of the job for a particular user.\n" 
     1222"                       Only users have such a coefficient.\n" 
     1223"  \n" 
     1224"  -i | --ingroups g1[,g2...]  Puts the users into each of the groups\n" 
     1225"                              listed, separated by commas. The groups\n" 
     1226"                              must already exist in the Quota Storage.\n" 
     1227"                       \n" 
     1228"  -L | --list          Lists users or groups.\n" 
     1229"  \n" 
     1230"  -l | --limitby l     Choose if the user/group is limited in " 
     1231"printing                     \n" 
     1232"                       by its account balance or by its page quota.\n" 
     1233"                       The default value is 'quota'. Allowed values\n" 
     1234"                       are 'quota' 'balance' 'noquota' 'noprint' \n" 
     1235"                       and 'nochange' :\n" 
     1236"                       \n" 
     1237"                         - quota : limit by number of pages per printer.\n" 
     1238"                         - balance : limit by number of credits in account.\n" 
     1239"                         - noquota : no limit, accounting still done.\n" 
     1240"                         - nochange : no limit, accounting not done. \n" 
     1241"                         - noprint : printing is denied. \n" 
     1242"                       NB : nochange and noprint are not supported for " 
     1243"groups.\n" 
     1244"                       \n" 
     1245"  -b | --balance b     Sets the user's account balance to " 
     1246"b.                     \n" 
     1247"                       Account balance may be increase or decreased\n" 
     1248"                       if b is prefixed with + or -.\n" 
     1249"                       WARNING : when decreasing account balance,\n" 
     1250"                       the total paid so far by the user is decreased\n" 
     1251"                       too.\n" 
     1252"                       Groups don't have a real balance, but the\n" 
     1253"                       sum of their users' account balance.\n" 
     1254"                       \n" 
     1255"  -C | --comment txt   Defines some informational text to be associated\n" 
     1256"                       with a change to an user's account balance.\n" 
     1257"                       Only meaningful if -b | --balance is also used.\n" 
     1258"                       \n" 
     1259"                       \n" 
     1260"  -r | --remove        In combination with the --ingroups option " 
     1261"above,                       \n" 
     1262"                       remove users from the specified users groups.\n" 
     1263"                       \n" 
     1264"  -s | --skipexisting  In combination with the --add option above, tells\n" 
     1265"                       pkusers to not modify existing users.\n" 
     1266"                       \n" 
     1267"  user1 through userN and group1 through groupN can use wildcards\n" 
     1268"  if the --add option is not set.\n" 
     1269"  \n" 
     1270"examples :                              \n" 
     1271"\n" 
     1272"  $ pkusers --add john paul george ringo/ringo@example.com\n" 
     1273"  \n" 
     1274"  This will add users john, paul, george and ringo to the quota\n" 
     1275"  database. User ringo's email address will also be set to \n" 
     1276"  'ringo@example.com'\n" 
     1277"  \n" 
     1278"  $ pkusers --ingroups coders,it jerome\n" 
     1279"  \n" 
     1280"  User jerome is put into the groups \"coders\" and \"it\" which must\n" 
     1281"  already exist in the quota database.\n" 
     1282"            \n" 
     1283"  $ pkusers --limitby balance jerome\n" 
     1284"  \n" 
     1285"  This will tell PyKota to limit jerome by his account's balance\n" 
     1286"  when printing.\n" 
     1287"  \n" 
     1288"  $ pkusers --balance +10.0 --comment \"He paid with his blood !\" jerome\n" 
     1289"  \n" 
     1290"  This will increase jerome's account balance by 10.0 (in your\n" 
     1291"  own currency). You can decrease the account balance with a\n" 
     1292"  dash prefix, and set it to a fixed amount with no prefix.\n" 
     1293"  A comment will be stored for this balance change.\n" 
     1294"  \n" 
     1295"  $ pkusers --delete jerome rachel\n" 
     1296"  \n" 
     1297"  This will completely delete jerome and rachel from the quota\n" 
     1298"  database. All their quotas and jobs will be deleted too.\n" 
     1299"  \n" 
     1300"  $ pkusers --overcharge 2.5 poorstudent\n" 
     1301"  \n" 
     1302"  This will overcharge the poorstudent user by a factor of 2.5.\n" 
     1303"  \n" 
     1304"  $ pkusers --overcharge -1 jerome\n" 
     1305"  \n" 
     1306"  User jerome will actually earn money whenever he prints.\n" 
     1307"  \n" 
     1308"  $ pkusers --overcharge 0 boss\n" 
     1309"  \n" 
     1310"  User boss can print at will, it won't cost him anything because the\n" 
     1311"  cost of each print job will be multiplied by zero before charging\n" 
     1312"  his account.\n" 
     1313msgstr "" 
     1314 
     1315#, python-format 
     1316msgid "There's no %s matching %s" 
     1317msgstr "" 
     1318 
     1319#, python-format 
     1320msgid "Limited by : %s" 
     1321msgstr "" 
     1322 
     1323#, python-format 
     1324msgid "Account balance : %.2f" 
     1325msgstr "" 
     1326 
     1327#, python-format 
     1328msgid "Total paid so far : %.2f" 
     1329msgstr "" 
     1330 
     1331#, python-format 
     1332msgid "Overcharging factor : %.2f" 
     1333msgstr "" 
     1334 
     1335#, python-format 
     1336msgid "Group balance : %.2f" 
     1337msgstr "" 
     1338 
     1339#, python-format 
     1340msgid "Invalid limitby value %s" 
     1341msgstr "Valor do limitby %s inv�do" 
     1342 
     1343#, python-format 
     1344msgid "Invalid overcharge value %s" 
     1345msgstr "" 
     1346 
     1347#, python-format 
     1348msgid "Invalid balance value %s" 
     1349msgstr "Valor da media %s inv�do" 
     1350 
     1351#, python-format 
     1352msgid "There's no users group matching %s" 
     1353msgstr "" 
     1354 
     1355#, python-format 
     1356msgid "Invalid email address %s" 
     1357msgstr "Endere�email inv�do" 
     1358 
     1359#, python-format 
     1360msgid "Unknown group %s" 
     1361msgstr "" 
     1362 
     1363#, python-format 
     1364msgid "Unknown user %s" 
     1365msgstr "" 
     1366 
     1367#, python-format 
     1368msgid "%s %s already exists, skipping." 
     1369msgstr "" 
     1370 
     1371#, python-format 
     1372msgid "%s %s already exists, will be modified." 
     1373msgstr "" 
     1374 
     1375#, python-format 
     1376msgid "Invalid name %s" 
     1377msgstr "" 
     1378 
     1379msgid "You have to pass user groups names on the command line" 
     1380msgstr "" 
     1381 
     1382#, python-format 
     1383msgid "" 
     1384"pykotme v%(__version__)s (c) %(__years__)s %(__author__)s\n" 
     1385"\n" 
     1386"Gives print quotes to users.\n" 
     1387"\n" 
     1388"command line usage :\n" 
     1389"\n" 
     1390"  pykotme  [options]  [files]\n" 
     1391"\n" 
     1392"options :\n" 
     1393"\n" 
     1394"  -v | --version       Prints pykotme's version number then exits.\n" 
     1395"  -h | --help          Prints this message then exits.\n" 
     1396"  \n" 
     1397"  -P | --printer p     Gives a quote for this printer only. Actually p can\n" 
     1398"                       use wildcards characters to select only\n" 
     1399"                       some printers. The default value is *, meaning\n" 
     1400"                       all printers.\n" 
     1401"                       You can specify several names or wildcards, \n" 
     1402"                       by separating them with commas.\n" 
     1403"  \n" 
     1404"examples :                              \n" 
     1405"\n" 
     1406"  $ pykotme --printer apple file1.ps file2.ps\n" 
     1407"  \n" 
     1408"  This will give a print quote to the current user. The quote will show\n" 
     1409"  the price and size of a job consisting in file1.ps and file2.ps \n" 
     1410"  which would be sent to the apple printer.\n" 
     1411"  \n" 
     1412"  $ pykotme --printer apple,hplaser <file1.ps\n" 
     1413"  \n" 
     1414"  This will give a print quote to the current user. The quote will show\n" 
     1415"  the price and size of a job consisting in file1.ps as read from\n" 
     1416"  standard input, which would be sent to the apple or hplaser\n" 
     1417"  printer.\n" 
     1418"\n" 
     1419"  $ pykotme \n" 
     1420"  \n" 
     1421"  This will give a quote for a job consisting of what is on standard \n" 
     1422"  input. The quote will list the job size, and the price the job\n" 
     1423"  would cost on each printer.\n" 
     1424msgstr "" 
     1425 
     1426#, python-format 
     1427msgid "Your account balance : %.2f" 
     1428msgstr "Balan�de sua conta : %.2f" 
     1429 
     1430#, python-format 
     1431msgid "Job size : %i pages" 
     1432msgstr "Tamanho do JOB : %i p�nas" 
     1433 
     1434#, python-format 
     1435msgid "Cost on printer %s : %.2f" 
     1436msgstr "Custo da impresora %s : %.2f" 
     1437 
     1438msgid "won't be charged, printer is in passthrough mode" 
     1439msgstr "" 
     1440 
     1441msgid "won't be charged, your account is immutable" 
     1442msgstr "" 
     1443 
     1444#, python-format 
     1445msgid "" 
     1446"warnpykota v%(__version__)s (c) %(__years__)s %(__author__)s\n" 
     1447"\n" 
     1448"Sends mail to users over print quota.\n" 
     1449"\n" 
     1450"command line usage :\n" 
     1451"\n" 
     1452"  warnpykota  [options]  [names]\n" 
     1453"\n" 
     1454"options :\n" 
     1455"\n" 
     1456"  -v | --version       Prints warnpykota's version number then exits.\n" 
     1457"  -h | --help          Prints this message then exits.\n" 
     1458"  \n" 
     1459"  -u | --users         Warns users over their print quota, this is the \n" 
     1460"                       default.\n" 
     1461"  \n" 
     1462"  -g | --groups        Warns users whose groups quota are over limit.\n" 
     1463"  \n" 
     1464"  -P | --printer p     Verify quotas on this printer only. Actually p can\n" 
     1465"                       use wildcards characters to select only\n" 
     1466"                       some printers. The default value is *, meaning\n" 
     1467"                       all printers.\n" 
     1468"                       You can specify several names or wildcards, \n" 
     1469"                       by separating them with commas.\n" 
     1470"  \n" 
     1471"examples :                              \n" 
     1472"\n" 
     1473"  $ warnpykota --printer lp\n" 
     1474"  \n" 
     1475"  This will warn all users of the lp printer who have exceeded their\n" 
     1476"  print quota.\n" 
     1477"\n" 
     1478"  $ warnpykota \n" 
     1479"  \n" 
     1480"  This will warn all users  who have exceeded their print quota on\n" 
     1481"  any printer.\n" 
     1482"\n" 
     1483"  $ warnpykota --groups --printer \"laserjet*\" \"dev*\"\n" 
     1484"  \n" 
     1485"  This will warn all users of groups which names begins with \"dev\" and\n" 
     1486"  who have exceeded their print quota on any printer which name begins \n" 
     1487"  with \"laserjet\"\n" 
     1488"  \n" 
     1489"  If launched by an user who is not a PyKota administrator, additionnal\n" 
     1490"  arguments representing users or groups names are ignored, and only the\n" 
     1491"  current user/group is reported.\n" 
    2801492msgstr "" 
    2811493 
     
    3071519"                         - umembers : dumps user groups members.\n" 
    3081520"                         - billingcodes : dumps billing codes.\n" 
     1521"                         - all : dumps all PyKota datas. The output format\n" 
     1522"                                 is always XML in this case.\n" 
    3091523"                         \n" 
    3101524"                       NB : the -d | --data command line option   \n" 
     
    3191533"                         - ssv : separate datas with semicolons\n" 
    3201534"                         - tsv : separate datas with tabs\n" 
    321 "                         - xml : dump data as XML\n" 
     1535"                         - xml : dump data as XML \n" 
    3221536"                         - cups : dump datas in CUPS' page_log format :\n" 
    3231537"                                  ONLY AVAILABLE WITH --data history\n" 
     
    3791593#, python-format 
    3801594msgid "" 
    381 "edpykota v%(__version__)s (c) %(__years__)s %(__author__)s\n" 
    382 "\n" 
    383 "A Print Quota editor for PyKota.\n" 
     1595"pkinvoice v%(__version__)s (c) %(__years__)s %(__author__)s\n" 
     1596"\n" 
     1597"An invoice generator for PyKota.\n" 
    3841598"\n" 
    3851599"command line usage :\n" 
    3861600"\n" 
    387 "  edpykota [options] user1 user2 ... userN\n" 
    388 "  \n" 
    389 "  edpykota [options] group1 group2 ... groupN\n" 
     1601"  pkinvoice [options] user1 user2 ... userN\n" 
    3901602"\n" 
    3911603"options :\n" 
    3921604"\n" 
    3931605"  -v | --version       Prints edpykota's version number then exits.\n" 
    394 "  -h | --help          Prints this message then exits.\n" 
    395 "  \n" 
    396 "  -a | --add           Adds users and/or printers if they don't \n" 
    397 "                       exist on the Quota Storage Server.\n" 
    398 "                       \n" 
    399 "  -d | --delete        Deletes users/groups from the quota storage.\n" 
    400 "                       Printers are never deleted.\n" 
    401 "                       \n" 
    402 "  -c | --charge p[,j]  Sets the price per page and per job to charge\n" 
    403 "                       for a particular printer. Job price is optional.\n" 
    404 "                       If both are to be set, separate them with a comma.\n" 
    405 "                       Floating point values are allowed.\n" 
    406 "                       \n" 
    407 "  -o | --overcharge f  Sets the overcharging factor applied to the user \n" 
    408 "                       when computing the cost of a print job. Positive or \n" 
    409 "                       negative floating point values are allowed,\n" 
    410 "                       this allows you to do some really creative\n" 
    411 "                       things like giving money to an user whenever\n" 
    412 "                       he prints. The number of pages in a print job\n" 
    413 "                       is not modified by this coefficient, only the\n" 
    414 "                       cost of the job for a particular user.\n" 
    415 "                       Only users have a coefficient.\n" 
    416 "  \n" 
    417 "  -i | --ingroups g1[,g2...]  Puts the users into each of the groups\n" 
    418 "                              listed, separated by commas. The groups\n" 
    419 "                              must already exist in the Quota Storage.\n" 
    420 "  \n" 
    421 "  -u | --users         Edit users print quotas, this is the default.\n" 
    422 "  \n" 
    423 "  -P | --printer p     Edit quotas on printer p only. Actually p can\n" 
    424 "                       use wildcards characters to select only\n" 
    425 "                       some printers. The default value is *, meaning\n" 
    426 "                       all printers. \n" 
    427 "                       You can specify several names or wildcards, \n" 
    428 "                       by separating them with commas.\n" 
    429 "  \n" 
    430 "  -G | --pgroups pg1[,pg2...] Adds the printer(s) to the printer groups\n" 
    431 "                       pg1, pg2, etc... which must already exist.\n" 
    432 "                       A printer group is just like a normal printer,\n" 
    433 "                       only that it is usually unknown from the printing\n" 
    434 "                       system. Create printer groups exactly the same\n" 
    435 "                       way that you create printers, then add other \n" 
    436 "                       printers to them with this option.\n" 
    437 "                       Accounting is done on a printer and on all\n" 
    438 "                       the printer groups it belongs to, quota checking\n" 
    439 "                       is done on a printer and on all the printer groups\n" 
    440 "                       it belongs to.\n" 
    441 "  \n" 
    442 "  -g | --groups        Edit users groups print quotas instead of users.\n" 
    443 "                          \n" 
    444 "  -p | --prototype u|g Uses user u or group g as a prototype to set\n" 
    445 "                       print quotas\n" 
    446 "                       \n" 
    447 "  -n | --noquota       Sets both soft and hard limits to None for a\n" 
    448 "                       particular print quota entry.\n" 
    449 "                       This is NOT the same as --limitby noquota\n" 
    450 "                       which acts on ALL print quota entries for a\n" 
    451 "                       particular user.\n" 
    452 "  \n" 
    453 "  -r | --reset         Resets the actual page counter for the user\n" 
    454 "                       or group to zero on the specified printers. \n" 
    455 "                       The life time page counter is kept unchanged.\n" 
    456 "                       \n" 
    457 "  -R | --hardreset     Resets the actual and life time page counters\n" 
    458 "                       for the user or group to zero on the specified \n" 
    459 "                       printers. This is a shortcut for '--used 0'.\n" 
    460 "                       \n" 
    461 "  -l | --limitby l     Choose if the user/group is limited in " 
    462 "printing                     \n" 
    463 "                       by its account balance or by its page quota.\n" 
    464 "                       The default value is 'quota'. Allowed values\n" 
    465 "                       are 'quota' 'balance' 'noquota' 'noprint' \n" 
    466 "                       and 'nochange' :\n" 
    467 "                       \n" 
    468 "                         - quota : limit by number of pages per printer.\n" 
    469 "                         - balance : limit by number of credits in account.\n" 
    470 "                         - noquota : no limit, accounting still done.\n" 
    471 "                         - nochange : no limit, accounting not done. \n" 
    472 "                         - noprint : printing is denied. \n" 
    473 "                       NB : nochange and noprint are not supported for " 
    474 "groups.\n" 
    475 "                       \n" 
    476 "  -b | --balance b     Sets the user's account balance to " 
    477 "b.                     \n" 
    478 "                       Account balance may be increase or decreased\n" 
    479 "                       if b is prefixed with + or -.\n" 
    480 "                       WARNING : when decreasing account balance,\n" 
    481 "                       the total paid so far by the user is decreased\n" 
    482 "                       too.\n" 
    483 "                       Groups don't have a real balance, but the\n" 
    484 "                       sum of their users' account balance.\n" 
    485 "                       \n" 
    486 "  -C | --comment txt   Defines some informational text to be associated\n" 
    487 "                       with a change to an user's account balance.\n" 
    488 "                       Only meaningful if -b | --balance is also used.\n" 
    489 "                       \n" 
    490 "  -S | --softlimit sl  Sets the quota soft limit to sl " 
    491 "pages.                       \n" 
    492 "  \n" 
    493 "  -H | --hardlimit hl  Sets the quota hard limit to hl pages.\n" 
    494 "  \n" 
    495 "  -I | --increase v    Increase both Soft and Hard limits by the value\n" 
    496 "                       of v. You can prefix v with + or -, if no sign is\n" 
    497 "                       used, + is assumed.\n" 
    498 "\n" 
    499 "  -U | --used usage    Sets the pagecounters for the user to usage pages;\n" 
    500 "                       useful for migrating users from a different system\n" 
    501 "                       where they have already used some pages. Actual\n" 
    502 "                       and Life Time page counters may be increased or " 
    503 "decreased\n" 
    504 "                       if usage is prefixed with + or -.\n" 
    505 "                       WARNING : BOTH page counters are modified in all " 
    506 "cases,\n" 
    507 "                       so be careful.\n" 
    508 "                       NB : if 'usage' equals '0', then the action taken is\n" 
    509 "                       the same as if --hardreset was used.\n" 
    510 "\n" 
    511 "  user1 through userN and group1 through groupN can use wildcards\n" 
    512 "  if the --add option is not set.\n" 
    513 "  \n" 
    514 "examples :                              \n" 
    515 "\n" 
    516 "  $ edpykota --add -p jerome john paul george ringo/ringo@example.com\n" 
    517 "  \n" 
    518 "  This will add users john, paul, george and ringo to the quota\n" 
    519 "  database, and set their print quotas to the same values than user \n" 
    520 "  jerome. User jerome must already exist.\n" 
    521 "  User ringo's email address will also be set to 'ringo@example.com'\n" 
    522 "  \n" 
    523 "  $ edpykota --printer lp -S 50 -H 60 jerome\n" 
    524 "  \n" 
    525 "  This will set jerome's print quota on the lp printer to a soft limit\n" 
    526 "  of 50 pages, and a hard limit of 60 pages. If either user jerome or\n" 
    527 "  printer lp doesn't exist on the Quota Storage Server then nothing is " 
    528 "done.\n" 
    529 "\n" 
    530 "  $ edpykota --add --printer lp --ingroups coders,it -S 50 -H 60 jerome\n" 
    531 "  \n" 
    532 "  Same as above, but if either user jerome or printer lp doesn't exist \n" 
    533 "  on the Quota Storage Server they are automatically added. Also\n" 
    534 "  user jerome is put into the groups \"coders\" and \"it\" which must\n" 
    535 "  already exist in the Quota Storage.\n" 
    536 "            \n" 
    537 "  $ edpykota -g -S 500 -H 550 financial support            \n" 
    538 "  \n" 
    539 "  This will set print quota soft limit to 500 pages and hard limit\n" 
    540 "  to 550 pages for groups financial and support on all printers.\n" 
    541 "  \n" 
    542 "  $ edpykota --reset jerome \"jo*\"\n" 
    543 "  \n" 
    544 "  This will reset jerome's page counter to zero on all printers, as\n" 
    545 "  well as every user whose name begins with 'jo'.\n" 
    546 "  Their life time page counter on each printer will be kept unchanged.\n" 
    547 "  You can also reset the life time page counters by using the\n" 
    548 "  --hardreset | -R command line option.\n" 
    549 "  \n" 
    550 "  $ edpykota --printer hpcolor --noquota jerome\n" 
    551 "  \n" 
    552 "  This will tell PyKota to not limit jerome when printing on the \n" 
    553 "  hpcolor printer. All his jobs will be allowed on this printer, but \n" 
    554 "  accounting of the pages he prints will still be kept.\n" 
    555 "  Print Quotas for jerome on other printers are unchanged.\n" 
    556 "  \n" 
    557 "  $ edpykota --limitby balance jerome\n" 
    558 "  \n" 
    559 "  This will tell PyKota to limit jerome by his account's balance\n" 
    560 "  when printing.\n" 
    561 "  \n" 
    562 "  $ edpykota --balance +10.0 jerome\n" 
    563 "  \n" 
    564 "  This will increase jerome's account balance by 10.0 (in your\n" 
    565 "  own currency). You can decrease the account balance with a\n" 
    566 "  dash prefix, and set it to a fixed amount with no prefix.\n" 
    567 "  \n" 
    568 "  $ edpykota --delete jerome rachel\n" 
    569 "  \n" 
    570 "  This will completely delete jerome and rachel from the Quota Storage\n" 
    571 "  database. All their quotas and jobs will be deleted too.\n" 
    572 "  \n" 
    573 "  $ edpykota --printer lp --charge 0.1\n" 
    574 "  \n" 
    575 "  This will set the page price for printer lp to 0.1. Job price\n" 
    576 "  will not be changed.\n" 
    577 "  \n" 
    578 "  $ edpykota --printer hplj1,hplj2 --pgroups Laser,HP\n" 
    579 "  \n" 
    580 "  This will put printers hplj1 and hplj2 in printers groups Laser and HP.\n" 
    581 "  When printing either on hplj1 or hplj2, print quota will also be \n" 
    582 "  checked and accounted for on virtual printers Laser and HP.\n" 
    583 "  \n" 
    584 "  $ edpykota --overcharge 2.5 poorstudent\n" 
    585 "  \n" 
    586 "  This will overcharge the poorstudent user by a factor of 2.5.\n" 
    587 "  \n" 
    588 "  $ edpykota --overcharge -1 jerome\n" 
    589 "  \n" 
    590 "  User jerome will actually earn money whenever he prints.\n" 
    591 "  \n" 
    592 "  $ edpykota --overcharge 0 boss\n" 
    593 "  \n" 
    594 "  User boss can print at will, it won't cost him anything because the\n" 
    595 "  cost of each print job will be multiplied by zero before charging\n" 
    596 "  his account.\n" 
    597 msgstr "" 
    598  
    599 msgid "You're not allowed to use this command." 
    600 msgstr "" 
    601  
    602 #, python-format 
    603 msgid "Invalid limitby value %s" 
    604 msgstr "Valor do limitby %s inv�do" 
    605  
    606 #, python-format 
    607 msgid "Invalid used value %s." 
    608 msgstr "" 
    609  
    610 #, python-format 
    611 msgid "Invalid increase value %s." 
    612 msgstr "" 
    613  
    614 #, python-format 
    615 msgid "Invalid softlimit value %s." 
    616 msgstr "Valor incorreto para o limite %s." 
    617  
    618 #, python-format 
    619 msgid "Invalid hardlimit value %s." 
    620 msgstr "Valor incorreto para o limite Maximo %s." 
    621  
    622 #, python-format 
    623 msgid "Hard limit %i is less than soft limit %i, values will be exchanged." 
    624 msgstr "Limite maximo %i �enor que o limite %i, os valores ser�invertidos." 
    625  
    626 #, python-format 
    627 msgid "Invalid overcharge value %s" 
    628 msgstr "" 
    629  
    630 #, python-format 
    631 msgid "Invalid balance value %s" 
    632 msgstr "Valor da media %s inv�do" 
    633  
    634 #, python-format 
    635 msgid "Invalid charge amount value %s" 
    636 msgstr "Valor de carga: %s inv�do" 
    637  
    638 #, python-format 
    639 msgid "Impossible to add printer %s" 
    640 msgstr "Imposivel adicionar impressora %s" 
    641  
    642 #, python-format 
    643 msgid "Invalid printer name %s" 
    644 msgstr "Nome de impressora %s inv�do" 
    645  
    646 #, python-format 
    647 msgid "There's no printer matching %s" 
    648 msgstr "Impressora %s n�encontrada" 
    649  
    650 msgid "You have to pass user or group names on the command line" 
    651 msgstr "Voce deve informar usuario ou grupo na linha de comando" 
    652  
    653 #, python-format 
    654 msgid "Prototype object %s not found in Quota Storage." 
    655 msgstr "Objeto Prototipo %s n�encontrado no banco de dados." 
    656  
    657 #, python-format 
    658 msgid "Prototype %s not found in Quota Storage for printer %s." 
    659 msgstr "Prototipo %s n�encontrado no banco dedados para a impressora %s." 
    660  
    661 #, python-format 
    662 msgid "Undefined hard limit set to soft limit (%s) on printer %s." 
    663 msgstr "" 
    664 "O limite maximo invalido, configurando o limite minimo (%s) na impressora %s." 
    665  
    666 #, python-format 
    667 msgid "Undefined soft limit set to hard limit (%s) on printer %s." 
    668 msgstr "Limite indefinido, configurando a l�te maximo (%s) na impressora %s." 
    669  
    670 #, python-format 
    671 msgid "Invalid email address %s" 
    672 msgstr "Endere�email inv�do" 
    673  
    674 #, python-format 
    675 msgid "Unknown group %s" 
    676 msgstr "" 
    677  
    678 #, python-format 
    679 msgid "Unknown user %s" 
    680 msgstr "" 
    681  
    682 #, python-format 
    683 msgid "Invalid group name %s" 
    684 msgstr "O nome do grupo %s �nv�do" 
    685  
    686 #, python-format 
    687 msgid "Invalid user name %s" 
    688 msgstr "O nome de usuario %s �nv�do" 
    689  
    690 #, python-format 
    691 msgid "Quota not found for object %s on printer %s." 
    692 msgstr "Quota n�encontrada para o objeto %s para a impressora %s." 
    693  
    694 #, python-format 
    695 msgid "You can't increase limits by %s when no limit is set." 
    696 msgstr "" 
    697  
    698 msgid "You can't set negative limits." 
    699 msgstr "" 
    700  
    701 #, python-format 
    702 msgid "Group %s not found in the PyKota Storage." 
    703 msgstr "Grupo %s n�encontrado no banco de dados." 
    704  
    705 #, python-format 
    706 msgid "Nonexistent user %s or missing print quota entry." 
    707 msgstr "" 
    708  
    709 #, python-format 
    710 msgid "Nonexistent group %s or missing print quota entry." 
    711 msgstr "" 
    712  
    713 msgid "incompatible options, see help." 
    714 msgstr "O�s incompativeis, veja a ajuda." 
    715  
    716 #, python-format 
    717 msgid "" 
    718 "repykota v%(__version__)s (c) %(__years__)s %(__author__)s\n" 
    719 "\n" 
    720 "Generates print quota reports.\n" 
    721 "\n" 
    722 "command line usage :\n" 
    723 "\n" 
    724 "  repykota [options] \n" 
    725 "\n" 
    726 "options :\n" 
    727 "\n" 
    728 "  -v | --version       Prints repykota's version number then exits.\n" 
    729 "  -h | --help          Prints this message then exits.\n" 
    730 "  \n" 
    731 "  -u | --users         Generates a report on users quota, this is \n" 
    732 "                       the default.\n" 
    733 "  \n" 
    734 "  -g | --groups        Generates a report on group quota instead of users.\n" 
    735 "  \n" 
    736 "  -i | --ingroups g1[,g2...]  Only lists users who are members of these\n" 
    737 "                              groups. Reserved to PyKota Administrators.\n" 
    738 "  \n" 
    739 "  -P | --printer p     Report quotas on this printer only. Actually p can\n" 
    740 "                       use wildcards characters to select only\n" 
    741 "                       some printers. The default value is *, meaning\n" 
    742 "                       all printers.\n" 
    743 "                       You can specify several names or wildcards, \n" 
    744 "                       by separating them with commas.\n" 
    745 "  \n" 
    746 "examples :                              \n" 
    747 "\n" 
    748 "  $ repykota --printer lp\n" 
    749 "  \n" 
    750 "  This will print the quota status for all users who use the lp printer.\n" 
    751 "\n" 
    752 "  $ repykota \n" 
    753 "  \n" 
    754 "  This will print the quota status for all users on all printers.\n" 
    755 "  \n" 
    756 "  $ repykota --printer \"laser*,*pson\" jerome \"jo*\"\n" 
    757 "  \n" 
    758 "  This will print the quota status for user jerome and all users\n" 
    759 "  whose name begins with \"jo\" on all printers which name begins\n" 
    760 "  with \"laser\" or ends with \"pson\".\n" 
    761 "  \n" 
    762 "  If launched by an user who is not a PyKota administrator, additionnal\n" 
    763 "  arguments representing users or groups names are ignored, and only the\n" 
    764 "  current user/group is reported.\n" 
    765 msgstr "" 
    766  
    767 msgid "Option --ingroups is reserved to PyKota Administrators." 
    768 msgstr "" 
    769  
    770 #, python-format 
    771 msgid "" 
    772 "warnpykota v%(__version__)s (c) %(__years__)s %(__author__)s\n" 
    773 "\n" 
    774 "Sends mail to users over print quota.\n" 
    775 "\n" 
    776 "command line usage :\n" 
    777 "\n" 
    778 "  warnpykota  [options]  [names]\n" 
    779 "\n" 
    780 "options :\n" 
    781 "\n" 
    782 "  -v | --version       Prints warnpykota's version number then exits.\n" 
    783 "  -h | --help          Prints this message then exits.\n" 
    784 "  \n" 
    785 "  -u | --users         Warns users over their print quota, this is the \n" 
    786 "                       default.\n" 
    787 "  \n" 
    788 "  -g | --groups        Warns users whose groups quota are over limit.\n" 
    789 "  \n" 
    790 "  -P | --printer p     Verify quotas on this printer only. Actually p can\n" 
    791 "                       use wildcards characters to select only\n" 
    792 "                       some printers. The default value is *, meaning\n" 
    793 "                       all printers.\n" 
    794 "                       You can specify several names or wildcards, \n" 
    795 "                       by separating them with commas.\n" 
    796 "  \n" 
    797 "examples :                              \n" 
    798 "\n" 
    799 "  $ warnpykota --printer lp\n" 
    800 "  \n" 
    801 "  This will warn all users of the lp printer who have exceeded their\n" 
    802 "  print quota.\n" 
    803 "\n" 
    804 "  $ warnpykota \n" 
    805 "  \n" 
    806 "  This will warn all users  who have exceeded their print quota on\n" 
    807 "  any printer.\n" 
    808 "\n" 
    809 "  $ warnpykota --groups --printer \"laserjet*\" \"dev*\"\n" 
    810 "  \n" 
    811 "  This will warn all users of groups which names begins with \"dev\" and\n" 
    812 "  who have exceeded their print quota on any printer which name begins \n" 
    813 "  with \"laserjet\"\n" 
    814 "  \n" 
    815 "  If launched by an user who is not a PyKota administrator, additionnal\n" 
    816 "  arguments representing users or groups names are ignored, and only the\n" 
    817 "  current user/group is reported.\n" 
    818 msgstr "" 
    819  
    820 #, python-format 
    821 msgid "" 
    822 "pkbanner v%(__version__)s (c) %(__years__)s %(__author__)s\n" 
    823 "\n" 
    824 "Generates banners.\n" 
    825 "\n" 
    826 "command line usage :\n" 
    827 "\n" 
    828 "  pkbanner  [options]  [more info]\n" 
    829 "\n" 
    830 "options :\n" 
    831 "\n" 
    832 "  -v | --version       Prints pkbanner's version number then exits.\n" 
    8331606"  -h | --help          Prints this message then exits.\n" 
    8341607"  \n" 
     
    8401613"                       page sizes are recognized, like 'A4' or 'Letter'\n" 
    8411614"                       to name a few. The default size is A4.\n" 
    842 "  \n" 
    843 "  -s | --savetoner s   Sets the text luminosity factor to s%%. This can be \n" 
    844 "                       used to save toner. The default value is 0, which\n" 
    845 "                       means that no toner saving will be done.\n" 
    846 "  \n" 
    847 "  -u | --url u         Uses u as an url to be written at the bottom of \n" 
    848 "                       the banner page. The default url is :\n" 
    849 "                       http://www.librelogiciel.com/software/\n" 
    850 "  \n" 
    851 "examples :                              \n" 
    852 "\n" 
    853 "  Using pkbanner directly from the command line is not recommended,\n" 
    854 "  excepted for testing purposes. You should use pkbanner in the\n" 
    855 "  'startingbanner' or 'endingbanner' directives in pykota.conf\n" 
    856 "  \n" 
    857 "    startingbanner: /usr/bin/pkbanner --logo=\"\" --savetoner=75\n" 
    858 "  \n" 
    859 "      With such a setting in pykota.conf, all print jobs will be \n" 
    860 "      prefixed with an A4 banner with no logo, and text luminosity will\n" 
    861 "      be increased by 75%%. The PostScript output will be directly sent\n" 
    862 "      to your printer.\n" 
    863 "      \n" 
    864 "  You'll find more examples in the sample configuration file included    \n" 
    865 "  in PyKota.\n" 
    866 msgstr "" 
    867  
    868 msgid "Unknown" 
    869 msgstr "" 
    870  
    871 msgid "Username" 
    872 msgstr "" 
    873  
    874 msgid "More Info" 
    875 msgstr "" 
    876  
    877 msgid "Job" 
    878 msgstr "" 
    879  
    880 msgid "Date" 
    881 msgstr "Data" 
    882  
    883 msgid "Allowed" 
    884 msgstr "" 
    885  
    886 msgid "Denied" 
    887 msgstr "" 
    888  
    889 msgid "Allowed with Warning" 
    890 msgstr "" 
    891  
    892 msgid "Result" 
    893 msgstr "" 
    894  
    895 msgid "Title" 
    896 msgstr "T�lo" 
    897  
    898 msgid "Filename" 
    899 msgstr "Nome do arquivo" 
    900  
    901 #, python-format 
    902 msgid "Pages printed so far on %s" 
    903 msgstr "" 
    904  
    905 msgid "Account balance" 
    906 msgstr "" 
    907  
    908 msgid "Soft Limit" 
    909 msgstr "" 
    910  
    911 msgid "Hard Limit" 
    912 msgstr "" 
    913  
    914 msgid "Date Limit" 
    915 msgstr "" 
    916  
    917 msgid "Allowed range is (0..99)" 
    918 msgstr "" 
    919  
    920 #, python-format 
    921 msgid "Invalid 'savetoner' option %s : %s" 
    922 msgstr "" 
    923  
    924 #, python-format 
    925 msgid "Invalid 'pagesize' option %s, defaulting to A4." 
    926 msgstr "" 
    927  
    928 #, python-format 
    929 msgid "" 
    930 "pkbcodes v%(__version__)s (c) %(__years__)s %(__author__)s\n" 
    931 "\n" 
    932 "A billing codes Manager for PyKota.\n" 
    933 "\n" 
    934 "command line usage :\n" 
    935 "\n" 
    936 "  pkbcodes [options] code1 code2 code3 ... codeN\n" 
    937 "\n" 
    938 "options :\n" 
    939 "\n" 
    940 "  -v | --version       Prints pkbcodes version number then exits.\n" 
    941 "  -h | --help          Prints this message then exits.\n" 
    942 "  \n" 
    943 "  -a | --add           Adds billing codes if they don't exist in PyKota's\n" 
    944 "                       database. If they exist, they are modified\n" 
    945 "                       unless -s|--skipexisting is also used.\n" 
    946 "\n" 
    947 "  -d | --delete        Deletes billing codes from PyKota's database.\n" 
    948 "                       NB : the history entries with this billing code\n" 
    949 "                       are not deleted, voluntarily.\n" 
    950 "\n" 
    951 "  -D | --description d Adds a textual description to billing codes.\n" 
    952 "\n" 
    953 "  -l | --list          List informations about the billing codes.\n" 
    954 "\n" 
    955 "  -r | --reset         Resets the billing codes' balance and page counters\n" 
    956 "                       to 0.\n" 
    957 "\n" 
    958 "  -s | --skipexisting  In combination with the --add option above, tells\n" 
    959 "                       pkbcodes to not modify existing billing codes.\n" 
    960 "\n" 
    961 "  code1 through codeN can contain wildcards if the --add option\n" 
    962 "  is not set.\n" 
    963 "\n" 
    964 "examples :                              \n" 
    965 "\n" 
    966 "  $ pkbcodes --add -D \"My project\" myproj\n" 
    967 "\n" 
    968 "  Will create the myproj billing code with \"My project\"\n" 
    969 "  as the description.\n" 
    970 "\n" 
    971 "  $ pkbcodes --delete \"*\"\n" 
    972 "\n" 
    973 "  This will completely delete all the billing codes, but without\n" 
    974 "  removing any matching job from the history. USE WITH CARE ANYWAY !\n" 
    975 "  \n" 
    976 "  $ pkbcodes --list \"my*\"\n" 
    977 "  \n" 
    978 "  This will list all billing codes which name begins with 'my'.\n" 
    979 msgstr "" 
    980  
    981 #, python-format 
    982 msgid "Billing code [%s] already exists, skipping." 
    983 msgstr "" 
    984  
    985 #, python-format 
    986 msgid "Billing code [%s] already exists, will be modified." 
    987 msgstr "" 
    988  
    989 #, python-format 
    990 msgid "Impossible to add billingcode %s" 
    991 msgstr "" 
    992  
    993 #, python-format 
    994 msgid "There's no billingcode matching %s" 
    995 msgstr "" 
    996  
    997 msgid "pages" 
    998 msgstr "" 
    999  
    1000 msgid "and" 
    1001 msgstr "" 
    1002  
    1003 msgid "credits" 
    1004 msgstr "" 
    1005  
    1006 msgid "You have to pass billing codes on the command line" 
    1007 msgstr "" 
    1008  
    1009 #, python-format 
    1010 msgid "" 
    1011 "pkmail v%(__version__)s (c) %(__years__)s %(__author__)s\n" 
    1012 "\n" 
    1013 "Email gateway for PyKota.\n" 
    1014 "\n" 
    1015 "command line usage :\n" 
    1016 "\n" 
    1017 "  pkmail  [options]\n" 
    1018 "\n" 
    1019 "options :\n" 
    1020 "\n" 
    1021 "  -v | --version       Prints pkmail's version number then exits.\n" 
    1022 "  -h | --help          Prints this message then exits.\n" 
    1023 "  \n" 
    1024 "    \n" 
    1025 "  This command is meant to be used from your mail server's aliases file,\n" 
    1026 "  as a pipe. It will then accept commands send to it in email messages,\n" 
    1027 "  and will send the answer to the command's originator.\n" 
    1028 "  \n" 
    1029 "  To use this command, create an email alias in /etc/aliases with\n" 
    1030 "  the following format :\n" 
    1031 "  \n" 
    1032 "    pykotacmd: \"|/usr/bin/pkmail\"\n" 
    1033 "    \n" 
    1034 "  Then run the 'newaliases' command to regenerate the aliases database.\n" 
    1035 "  \n" 
    1036 "  You can now send commands by email to 'pykotacmd@yourdomain.com', with\n" 
    1037 "  the command in the subject.\n" 
    1038 "  \n" 
    1039 "  List of supported commands :\n" 
    1040 "  \n" 
    1041 "        report [username]\n" 
    1042 "  \n" 
    1043 "  NB : For pkmail to work correctly, you may have to put the 'mail'\n" 
    1044 "  system user in the 'pykota' system group to ensure this user can\n" 
    1045 "  read the /etc/pykota/pykotadmin.conf file, and restart your\n" 
    1046 "  mail server (e.g. /etc/init.d/exim restart). It is strongly advised\n" 
    1047 "  that you think at least twice before doing this though.\n" 
    1048 "  \n" 
    1049 "  Use at your own risk !\n" 
     1615"                       \n" 
     1616"  -n | --number N      Sets the number of the first invoice. This number\n" 
     1617"                       will automatically be incremented for each invoice.\n" 
     1618"                       \n" 
     1619"  -o | --output f.pdf  Defines the name of the invoice file which will\n" 
     1620"                       be generated as a PDF document. If not set or\n" 
     1621"                       set to '-', the PDF document is sent to standard\n" 
     1622"                       output. \n" 
     1623"                       \n" 
     1624"  -u | --unit u        Defines the name of the unit to use on the " 
     1625"invoice.                       \n" 
     1626"                       The default unit is 'Credits', optionally translated\n" 
     1627"                       to your native language if it is supported by " 
     1628"PyKota.\n" 
     1629"  \n" 
     1630"  -V | --vat p         Sets the percent value of the applicable VAT to be\n" 
     1631"                       exposed. The default is 0.0, meaning no VAT\n" 
     1632"                       information will be included.\n" 
     1633"                       \n" 
     1634"  -s | --start date    Sets the starting date for the print jobs invoiced.\n" 
     1635"  \n" 
     1636"  -e | --end date      Sets the ending date for the print jobs invoiced.\n" 
     1637"                       \n" 
     1638"  user1 through userN can use wildcards if needed. If no user argument is\n" 
     1639"  used, a wildcard of '*' is assumed, meaning include all users.\n" 
     1640"  \n" 
     1641"  Dates formating with --start and --end :\n" 
     1642"  \n" 
     1643"    YYYY : year boundaries\n" 
     1644"    YYYYMM : month boundaries\n" 
     1645"    YYYYMMDD : day boundaries\n" 
     1646"    YYYYMMDDhh : hour boundaries\n" 
     1647"    YYYYMMDDhhmm : minute boundaries\n" 
     1648"    YYYYMMDDhhmmss : second boundaries\n" 
     1649"    yesterday[+-NbDays] : yesterday more or less N days (e.g. : yesterday-" 
     1650"15)\n" 
     1651"    today[+-NbDays] : today more or less N days (e.g. : today-15)\n" 
     1652"    tomorrow[+-NbDays] : tomorrow more or less N days (e.g. : tomorrow-15)\n" 
     1653"    now[+-NbDays] : now more or less N days (e.g. now-15)\n" 
     1654"\n" 
     1655"  'now' and 'today' are not exactly the same since today represents the " 
     1656"first\n" 
     1657"  or last second of the day depending on if it's used in a start= or end=\n" 
     1658"  date expression. The utility to be able to specify dates in the future is\n" 
     1659"  a question which remains to be answered :-)\n" 
     1660"                                        \n" 
     1661"examples :                       \n" 
     1662"\n" 
     1663"  $ pkinvoice --unit EURO --output invoices.pdf --start=now-30\n" 
     1664"  \n" 
     1665"  Will generate a PDF document containing invoices for all users\n" 
     1666"  who have spent some credits last month. Invoices will be done in\n" 
     1667"  EURO.  No VAT information will be included.\n" 
     1668msgstr "" 
     1669 
     1670msgid "Invoice" 
     1671msgstr "" 
     1672 
     1673msgid "Since" 
     1674msgstr "" 
     1675 
     1676msgid "Until" 
     1677msgstr "" 
     1678 
     1679msgid "Edited on" 
     1680msgstr "" 
     1681 
     1682msgid "Number of pages printed" 
     1683msgstr "" 
     1684 
     1685msgid "Amount due" 
     1686msgstr "" 
     1687 
     1688msgid "Included VAT" 
     1689msgstr "" 
     1690 
     1691msgid "Here's the invoice for your printouts" 
     1692msgstr "" 
     1693 
     1694#, python-format 
     1695msgid "Incorrect value '%s' for the --vat command line option" 
     1696msgstr "" 
     1697 
     1698#, python-format 
     1699msgid "Incorrect value '%s' for the --number command line option" 
     1700msgstr "" 
     1701 
     1702msgid "Generating invoices" 
     1703msgstr "" 
     1704 
     1705msgid "Credits" 
    10501706msgstr "" 
    10511707 
     
    11481804 
    11491805#, python-format 
     1806msgid "Passthrough mode : %s" 
     1807msgstr "" 
     1808 
     1809msgid "ON" 
     1810msgstr "" 
     1811 
     1812msgid "OFF" 
     1813msgstr "" 
     1814 
     1815msgid "in" 
     1816msgstr "em" 
     1817 
     1818#, python-format 
     1819msgid "Invalid charge amount value %s" 
     1820msgstr "Valor de carga: %s inv�do" 
     1821 
     1822#, python-format 
    11501823msgid "Invalid maximum job size value %s" 
    11511824msgstr "" 
     
    11591832msgstr "Impressora %s j�xiste. Ser�eita uma modifica�." 
    11601833 
    1161 msgid "in" 
    1162 msgstr "em" 
    1163  
    1164 #, python-format 
    1165 msgid "Passthrough mode : %s" 
    1166 msgstr "" 
    1167  
    1168 msgid "ON" 
    1169 msgstr "" 
    1170  
    1171 msgid "OFF" 
    1172 msgstr "" 
    1173  
    1174 #, python-format 
    1175 msgid "Maximum job size : %s" 
    1176 msgstr "" 
    1177  
    1178 #, python-format 
    1179 msgid "%s pages" 
    1180 msgstr "" 
    1181  
    1182 msgid "Unlimited" 
    1183 msgstr "" 
     1834#, python-format 
     1835msgid "Invalid printer name %s" 
     1836msgstr "Nome de impressora %s inv�do" 
    11841837 
    11851838msgid "You have to pass printer groups names on the command line" 
     
    11911844 
    11921845#, python-format 
    1193 msgid "" 
    1194 "pkturnkey v%(__version__)s (c) %(__years__)s %(__author__)s\n" 
    1195 "\n" 
    1196 "A turn key tool for PyKota. When launched, this command will initialize\n" 
    1197 "PyKota's database with all existing print queues and some or all users.\n" 
    1198 "For now, no prices or limits are set, so printing is fully accounted\n" 
    1199 "for, but not limited. That's why you'll probably want to also use\n" 
    1200 "edpykota once the database has been initialized.\n" 
    1201 "\n" 
    1202 "command line usage :\n" 
    1203 "\n" 
    1204 "  pkturnkey [options] [printqueues names]\n" 
    1205 "\n" 
    1206 "options :\n" 
    1207 "\n" 
    1208 "  -v | --version       Prints pkturnkey version number then exits.\n" 
    1209 "  -h | --help          Prints this message then exits.\n" 
    1210 "  \n" 
    1211 "  -c | --doconf        Give hints about what to put into pykota.conf\n" 
    1212 "  \n" 
    1213 "  -d | --dousers       Manages users accounts as well.\n" 
    1214 "  \n" 
    1215 "  -D | --dogroups      Manages users groups as well.\n" 
    1216 "                       Implies -d | --dousers.\n" 
    1217 "  \n" 
    1218 "  -e | --emptygroups   Includes empty groups.\n" 
    1219 "  \n" 
    1220 "  -f | --force         Modifies the database instead of printing what\n" 
    1221 "                       it would do.\n" 
    1222 "                       \n" 
    1223 "  -u | --uidmin uid    Only adds users whose uid is greater than or equal " 
    1224 "to\n" 
    1225 "                       uid. You can pass an username there as well, and its\n" 
    1226 "                       uid will be used automatically.\n" 
    1227 "                       If not set, 0 will be used automatically.\n" 
    1228 "                       Implies -d | --dousers.\n" 
    1229 "                       \n" 
    1230 "  -U | --uidmax uid    Only adds users whose uid is lesser than or equal to\n" 
    1231 "                       uid. You can pass an username there as well, and its\n" 
    1232 "                       uid will be used automatically.\n" 
    1233 "                       If not set, a large value will be used " 
    1234 "automatically.\n" 
    1235 "                       Implies -d | --dousers.\n" 
    1236 "\n" 
    1237 "  -g | --gidmin gid    Only adds groups whose gid is greater than or equal " 
    1238 "to\n" 
    1239 "                       gid. You can pass a groupname there as well, and its\n" 
    1240 "                       gid will be used automatically.\n" 
    1241 "                       If not set, 0 will be used automatically.\n" 
    1242 "                       Implies -D | --dogroups.\n" 
    1243 "                       \n" 
    1244 "  -G | --gidmax gid    Only adds groups whose gid is lesser than or equal " 
    1245 "to\n" 
    1246 "                       gid. You can pass a groupname there as well, and its\n" 
    1247 "                       gid will be used automatically.\n" 
    1248 "                       If not set, a large value will be used " 
    1249 "automatically.\n" 
    1250 "                       Implies -D | --dogroups.\n" 
    1251 "\n" 
    1252 "examples :                              \n" 
    1253 "\n" 
    1254 "  $ pkturnkey --dousers --uidmin jerome\n" 
    1255 "\n" 
    1256 "  Will simulate the initialization of PyKota's database will all existing\n" 
    1257 "  printers and print accounts for all users whose uid is greater than\n" 
    1258 "  or equal to jerome's one. Won't manage any users group.\n" 
    1259 "  \n" 
    1260 "  To REALLY initialize the database instead of simulating it, please\n" 
    1261 "  use the -f | --force command line switch.\n" 
    1262 "  \n" 
    1263 "  You can limit the initialization to only a subset of the existing\n" 
    1264 "  printers, by passing their names at the end of the command line.\n" 
    1265 msgstr "" 
    1266  
    1267 #, python-format 
    1268 msgid "" 
    1269 "Printer %s is not managed by PyKota yet. Please modify printers.conf and " 
    1270 "restart CUPS." 
    1271 msgstr "" 
    1272  
    1273 msgid "Please be patient..." 
    1274 msgstr "" 
    1275  
    1276 msgid "Don't worry, the database WILL NOT BE MODIFIED." 
    1277 msgstr "" 
    1278  
    1279 msgid "Please WORRY NOW, the database WILL BE MODIFIED." 
    1280 msgstr "" 
    1281  
    1282 msgid "System users will have a print account as well !" 
    1283 msgstr "" 
    1284  
    1285 #, python-format 
    1286 msgid "Unknown username %s : %s" 
    1287 msgstr "" 
    1288  
    1289 msgid "System groups will have a print account as well !" 
    1290 msgstr "" 
    1291  
    1292 #, python-format 
    1293 msgid "Unknown groupname %s : %s" 
    1294 msgstr "" 
    1295  
    1296 msgid "Simulation terminated." 
    1297 msgstr "" 
    1298  
    1299 msgid "Database initialized !" 
    1300 msgstr "" 
    1301  
    1302 msgid "The --uidmin or --uidmax command line option implies --dousers as well." 
    1303 msgstr "" 
    1304  
    1305 msgid "" 
    1306 "The --gidmin or --gidmax command line option implies --dogroups as well." 
    1307 msgstr "" 
    1308  
    1309 msgid "The --dogroups command line option implies --dousers as well." 
    1310 msgstr "" 
    1311  
    1312 #, python-format 
    1313 msgid "" 
    1314 "pykosd v%(__version__)s (c) %(__years__)s %(__author__)s\n" 
    1315 "\n" 
    1316 "An OSD quota monitor for PyKota.\n" 
    1317 "\n" 
    1318 "command line usage :\n" 
    1319 "\n" 
    1320 "  pykosd [options]\n" 
    1321 "\n" 
    1322 "options :\n" 
    1323 "\n" 
    1324 "  -v | --version       Prints pykosd's version number then exits.\n" 
    1325 "  -h | --help          Prints this message then exits.\n" 
    1326 "  \n" 
    1327 "  -c | --color #rrggbb Sets the color to use for display as an hexadecimal\n" 
    1328 "                       triplet, for example #FF0000 is 100%% red.\n" 
    1329 "                       Defaults to 100%% green (#00FF00).\n" 
    1330 "                       \n" 
    1331 "  -d | --duration d    Sets the duration of the display in seconds. \n" 
    1332 "                       Defaults to 3 seconds.\n" 
    1333 "                       \n" 
    1334 "  -f | --font f        Sets the font to use for " 
    1335 "display.                      \n" 
    1336 "                       Defaults to the Python OSD library's default.\n" 
    1337 "  \n" 
    1338 "  -l | --loop n        Sets the number of times the info will be displayed.\n" 
    1339 "                       Defaults to 0, which means loop forever.\n" 
    1340 "                       \n" 
    1341 "  -s | --sleep s       Sets the sleeping duration between two displays \n" 
    1342 "                       in seconds. Defaults to 180 seconds (3 minutes).\n" 
    1343 "                       \n" 
    1344 "  \n" 
    1345 "examples :                              \n" 
    1346 "\n" 
    1347 "  $ pykosd -s 60 --loop 5\n" 
    1348 "  \n" 
    1349 "  Will launch pykosd. Display will be refreshed every 60 seconds,\n" 
    1350 "  and will last for 3 seconds (the default) each time. After five\n" 
    1351 "  iterations, the program will exit.\n" 
    1352 msgstr "" 
    1353  
    1354 #, python-format 
    1355 msgid "Invalid duration option %s" 
    1356 msgstr "Op� %s inv�da para dura�" 
    1357  
    1358 #, python-format 
    1359 msgid "Invalid loop option %s" 
    1360 msgstr "Op� %s inv�da para loop (la�" 
    1361  
    1362 #, python-format 
    1363 msgid "Invalid sleep option %s" 
    1364 msgstr "Op� %s inv�da para sleep (sono)" 
    1365  
    1366 #, python-format 
    1367 msgid "Invalid color option %s" 
    1368 msgstr "Op� %s inv�da para color (cor)" 
    1369  
    1370 #, python-format 
    1371 msgid "User %s doesn't exist in PyKota's database" 
    1372 msgstr "Usu�o %s n�existe na base de dados do Pykota" 
    1373  
    1374 #, python-format 
    1375 msgid "Pages used on %s : %s" 
    1376 msgstr "P�nas usadas em %s : %s" 
    1377  
    1378 #, python-format 
    1379 msgid "PyKota Units left : %.2f" 
    1380 msgstr "Unidades restantes do PyKota : %.2f" 
    1381  
    1382 #, python-format 
    1383 msgid "" 
    1384 "pykotme v%(__version__)s (c) %(__years__)s %(__author__)s\n" 
    1385 "\n" 
    1386 "Gives print quotes to users.\n" 
    1387 "\n" 
    1388 "command line usage :\n" 
    1389 "\n" 
    1390 "  pykotme  [options]  [files]\n" 
    1391 "\n" 
    1392 "options :\n" 
    1393 "\n" 
    1394 "  -v | --version       Prints pykotme's version number then exits.\n" 
    1395 "  -h | --help          Prints this message then exits.\n" 
    1396 "  \n" 
    1397 "  -P | --printer p     Gives a quote for this printer only. Actually p can\n" 
    1398 "                       use wildcards characters to select only\n" 
    1399 "                       some printers. The default value is *, meaning\n" 
    1400 "                       all printers.\n" 
    1401 "                       You can specify several names or wildcards, \n" 
    1402 "                       by separating them with commas.\n" 
    1403 "  \n" 
    1404 "examples :                              \n" 
    1405 "\n" 
    1406 "  $ pykotme --printer apple file1.ps file2.ps\n" 
    1407 "  \n" 
    1408 "  This will give a print quote to the current user. The quote will show\n" 
    1409 "  the price and size of a job consisting in file1.ps and file2.ps \n" 
    1410 "  which would be sent to the apple printer.\n" 
    1411 "  \n" 
    1412 "  $ pykotme --printer apple,hplaser <file1.ps\n" 
    1413 "  \n" 
    1414 "  This will give a print quote to the current user. The quote will show\n" 
    1415 "  the price and size of a job consisting in file1.ps as read from\n" 
    1416 "  standard input, which would be sent to the apple or hplaser\n" 
    1417 "  printer.\n" 
    1418 "\n" 
    1419 "  $ pykotme \n" 
    1420 "  \n" 
    1421 "  This will give a quote for a job consisting of what is on standard \n" 
    1422 "  input. The quote will list the job size, and the price the job\n" 
    1423 "  would cost on each printer.\n" 
    1424 msgstr "" 
    1425  
    1426 #, python-format 
    1427 msgid "Your account balance : %.2f" 
    1428 msgstr "Balan�de sua conta : %.2f" 
    1429  
    1430 #, python-format 
    1431 msgid "Job size : %i pages" 
    1432 msgstr "Tamanho do JOB : %i p�nas" 
    1433  
    1434 #, python-format 
    1435 msgid "Cost on printer %s : %.2f" 
    1436 msgstr "Custo da impresora %s : %.2f" 
    1437  
    1438 msgid "PyKota Data Dumper" 
    1439 msgstr "" 
    1440  
    1441 msgid "Dump" 
    1442 msgstr "" 
    1443  
    1444 msgid "Please click on the above button" 
    1445 msgstr "" 
    1446  
    1447 msgid "Data Type" 
    1448 msgstr "" 
    1449  
    1450 msgid "Output Format" 
    1451 msgstr "" 
    1452  
    1453 msgid "Filter" 
    1454 msgstr "" 
    1455  
    1456 msgid "Summarize" 
    1457 msgstr "" 
    1458  
    1459 msgid "only for payments or history" 
    1460 msgstr "" 
    1461  
    1462 msgid "PyKota Reports" 
    1463 msgstr "Relat� do Pykota" 
    1464  
    1465 msgid "Report" 
    1466 msgstr "Relat�" 
    1467  
    1468 msgid "Printer" 
    1469 msgstr "Impressora" 
    1470  
    1471 msgid "User / Group names mask" 
    1472 msgstr "M�ara de nomes para Usu�os / Grupos" 
    1473  
    1474 msgid "Groups report" 
    1475 msgstr "Relat� de Grupos" 
    1476  
    1477 msgid "History" 
    1478 msgstr "Hist�o" 
    1479  
    1480 msgid "Empty" 
    1481 msgstr "Vazio" 
    1482  
    1483 msgid "Action" 
    1484 msgstr "A�" 
    1485  
    1486 msgid "User" 
    1487 msgstr "Usu�o" 
    1488  
    1489 msgid "Hostname" 
    1490 msgstr "Nome do computador" 
    1491  
    1492 msgid "JobId" 
    1493 msgstr "Id da Tarefa" 
    1494  
    1495 msgid "Number of pages" 
    1496 msgstr "" 
    1497  
    1498 msgid "Cost" 
    1499 msgstr "" 
    1500  
    1501 msgid "Copies" 
    1502 msgstr "C�s" 
    1503  
    1504 msgid "Number of bytes" 
    1505 msgstr "" 
    1506  
    1507 msgid "Printer's internal counter" 
    1508 msgstr "" 
    1509  
    1510 msgid "Options" 
    1511 msgstr "Op�s" 
    1512  
    1513 msgid "MD5Sum" 
    1514 msgstr "" 
    1515  
    1516 msgid "Billing code" 
    1517 msgstr "" 
    1518  
    1519 msgid "Precomputed number of pages" 
    1520 msgstr "" 
    1521  
    1522 msgid "Precomputed cost" 
    1523 msgstr "" 
    1524  
    1525 msgid "Pages details" 
    1526 msgstr "" 
    1527  
    1528 msgid "(not supported yet)" 
    1529 msgstr "" 
    1530  
    1531 msgid "Previous page" 
    1532 msgstr "P�na anterior" 
    1533  
    1534 msgid "PyKota Quotes" 
    1535 msgstr "" 
    1536  
    1537 msgid "Quote" 
    1538 msgstr "" 
    1539  
    1540 msgid "" 
    1541 "The exact cost of a print job can only be determined for a particular user. " 
    1542 "Please retry while logged-in." 
    1543 msgstr "" 
    1544  
    1545 #, python-format 
    15461846msgid "Unsupported accounter backend %s" 
    15471847msgstr "Accounter Backend %s n�suportado" 
     
    15741874 
    15751875#, python-format 
     1876msgid "Invalid preaccounter %s for printer %s" 
     1877msgstr "" 
     1878 
     1879#, python-format 
     1880msgid "Option preaccounter in section %s only supports values in %s" 
     1881msgstr "" 
     1882 
     1883#, python-format 
    15761884msgid "Invalid accounter %s for printer %s" 
    15771885msgstr "Contador de p�nas %s inv�do, para a impressora %s" 
     
    15941902 
    15951903#, python-format 
     1904msgid "" 
     1905"Option onbackenderror in section %s only supports values 'charge', " 
     1906"'nocharge', and 'retry:num:delay'" 
     1907msgstr "" 
     1908 
     1909#, python-format 
    15961910msgid "Option onaccountererror in section %s only supports values in %s" 
    15971911msgstr "" 
     
    16201934msgid "Invalid poor man's threshold %s" 
    16211935msgstr "Valor 'poor man' %s inv�do" 
     1936 
     1937#, python-format 
     1938msgid "Invalid balancezero value %s" 
     1939msgstr "" 
    16221940 
    16231941msgid "" 
     
    16481966 
    16491967#, python-format 
     1968msgid "Incorrect value %s for the duplicatesdelay directive in section %s" 
     1969msgstr "" 
     1970 
     1971#, python-format 
    16501972msgid "Option accountbanner in section %s only supports values in %s" 
    16511973msgstr "" 
     
    16551977msgstr "" 
    16561978 
     1979msgid "History" 
     1980msgstr "Hist�o" 
     1981 
    16571982msgid "Users" 
    16581983msgstr "" 
     
    16822007msgstr "" 
    16832008 
     2009msgid "All" 
     2010msgstr "" 
     2011 
    16842012msgid "Comma Separated Values" 
    16852013msgstr "" 
     
    16982026 
    16992027#, python-format 
     2028msgid "Invalid modifier [%s] for --data command line option, see help." 
     2029msgstr "" 
     2030 
     2031msgid "" 
     2032"Dumping all PyKota's datas forces format to XML, and disables --sum and " 
     2033"filters." 
     2034msgstr "" 
     2035 
     2036#, python-format 
    17002037msgid "Invalid filter value [%s], see help." 
    1701 msgstr "" 
    1702  
    1703 #, python-format 
    1704 msgid "Invalid modifier [%s] for --data command line option, see help." 
    17052038msgstr "" 
    17062039 
     
    17712104msgstr "o banco de dados: %s  n�suportado" 
    17722105 
     2106msgid "Done" 
     2107msgstr "" 
     2108 
     2109msgid "Average speed" 
     2110msgstr "" 
     2111 
     2112msgid "entries per second" 
     2113msgstr "" 
     2114 
    17732115#, python-format 
    17742116msgid "Strange problem with uid(%s) : %s" 
     
    18442186msgid "Print Quota Low" 
    18452187msgstr "Quota de impress�baixa" 
    1846  
    1847 #, python-format 
    1848 msgid "A problem occured while reading printer %s's internal page counter." 
    1849 msgstr "" 
    1850  
    1851 #, python-format 
    1852 msgid "Retrieving printer %s's page counter from database instead." 
    1853 msgstr "" 
    1854  
    1855 #, python-format 
    1856 msgid "" 
    1857 "Couldn't retrieve printer %s's internal page counter either before or after " 
    1858 "printing." 
    1859 msgstr "" 
    1860  
    1861 #, python-format 
    1862 msgid "Job's size forced to 1 page for printer %s." 
    1863 msgstr "" 
    1864  
    1865 #, python-format 
    1866 msgid "No previous job in database for printer %s." 
    1867 msgstr "" 
    1868  
    1869 #, python-format 
    1870 msgid "Inconsistent values for printer %s's internal page counter." 
    1871 msgstr "" 
    1872  
    1873 #, python-format 
    1874 msgid "Unknown printer address in HARDWARE(%s) for printer %s" 
    1875 msgstr "Endere�invalido em  HARDWARE(%s) para a impressora %s" 
    1876  
    1877 #, python-format 
    1878 msgid "Launching HARDWARE(%s)..." 
    1879 msgstr "Tentando identifica� f�ca(%s)..." 
    1880  
    1881 #, python-format 
    1882 msgid "SIGTERM was sent to hardware accounter %s (pid: %s)" 
    1883 msgstr "Sinal SIGTERM enviado para contador f�co %s (pid : %s)" 
    1884  
    1885 #, python-format 
    1886 msgid "Line [%s] skipped in accounter's output. Trying again..." 
    1887 msgstr "" 
    1888  
    1889 #, python-format 
    1890 msgid "Hardware accounter %s exit code is %s" 
    1891 msgstr "" 
    1892  
    1893 #, python-format 
    1894 msgid "Unable to query printer %s via HARDWARE(%s)" 
    1895 msgstr "Imposive consultar a impressora %s via HARDWARE(%s)" 
    1896  
    1897 #, python-format 
    1898 msgid "Problem during connection to %s:%s : %s" 
    1899 msgstr "" 
    1900  
    1901 #, python-format 
    1902 msgid "Problem while sending PJL query to %s:%s : %s" 
    1903 msgstr "" 
    1904  
    1905 #, python-format 
    1906 msgid "Problem while receiving PJL answer from %s:%s : %s" 
    1907 msgstr "" 
    1908  
    1909 #, python-format 
    1910 msgid "Waiting for printer %s to be printing..." 
    1911 msgstr "" 
    1912  
    1913 #, python-format 
    1914 msgid "Waiting for printer %s's idle status to stabilize..." 
    1915 msgstr "" 
    1916  
    1917 #, python-format 
    1918 msgid "" 
    1919 "PJL querying stage interrupted. Using latest value seen for internal page " 
    1920 "counter (%s) on printer %s." 
    1921 msgstr "" 
    1922  
    1923 #, python-format 
    1924 msgid "Network error while doing SNMP queries on printer %s : %s" 
    1925 msgstr "" 
    1926  
    1927 #, python-format 
    1928 msgid "SNMP message decoding error for printer %s : %s" 
    1929 msgstr "" 
    1930  
    1931 #, python-format 
    1932 msgid "Problem encountered while doing SNMP queries on printer %s : %s" 
    1933 msgstr "" 
    1934  
    1935 #, python-format 
    1936 msgid "" 
    1937 "SNMP querying stage interrupted. Using latest value seen for internal page " 
    1938 "counter (%s) on printer %s." 
    1939 msgstr "" 
    1940  
    1941 #, python-format 
    1942 msgid "Launching SOFTWARE(%s)..." 
    1943 msgstr "Tentando identifica� l�a (%s)..." 
    1944  
    1945 #, python-format 
    1946 msgid "Unable to compute job size with accounter %s" 
    1947 msgstr "Impossivel calcular o tamanho do trabalho com o contador %s" 
    1948  
    1949 #, python-format 
    1950 msgid "Problem while waiting for software accounter pid %s to exit : %s" 
    1951 msgstr "Problema ao aguardar encerramento do contador l�o de pid %s : %s" 
    1952  
    1953 #, python-format 
    1954 msgid "Software accounter %s exit code is %s" 
    1955 msgstr "C�o de erro para contador l�o %s : %s" 
    1956  
    1957 msgid "Totals may be inaccurate if some users are members of several groups." 
    1958 msgstr "" 
    1959 "O Total pode n�ser exato se os usuarios forem mebros de varios grupos." 
    19602188 
    19612189#, python-format 
     
    20112239"pykotaGroup %s" 
    20122240 
    2013 msgid "ALLOW" 
    2014 msgstr "" 
    2015  
    2016 msgid "WARN" 
    2017 msgstr "" 
    2018  
    2019 msgid "DENY" 
    2020 msgstr "" 
    2021  
    2022 msgid "won't be charged, printer is in passthrough mode" 
    2023 msgstr "" 
    2024  
    2025 msgid "won't be charged, your account is immutable" 
    2026 msgstr "" 
    2027  
    2028 msgid "Printing denied." 
    2029 msgstr "" 
    2030  
    2031 msgid "Printing not limited." 
    2032 msgstr "" 
    2033  
    2034 msgid "Printing not limited, no accounting." 
    2035 msgstr "" 
    2036  
    2037 msgid "No Accounting" 
    2038 msgstr "" 
    2039  
    2040 msgid "No Limit" 
    2041 msgstr "" 
    2042  
    2043 msgid "Forbidden" 
    2044 msgstr "" 
    2045  
    2046 msgid "Printing Mode" 
    2047 msgstr "" 
     2241#, python-format 
     2242msgid "A problem occured while reading printer %s's internal page counter." 
     2243msgstr "" 
     2244 
     2245#, python-format 
     2246msgid "Retrieving printer %s's page counter from database instead." 
     2247msgstr "" 
     2248 
     2249#, python-format 
     2250msgid "" 
     2251"Couldn't retrieve printer %s's internal page counter either before or after " 
     2252"printing." 
     2253msgstr "" 
     2254 
     2255#, python-format 
     2256msgid "Job's size forced to 1 page for printer %s." 
     2257msgstr "" 
     2258 
     2259#, python-format 
     2260msgid "No previous job in database for printer %s." 
     2261msgstr "" 
     2262 
     2263#, python-format 
     2264msgid "Inconsistent values for printer %s's internal page counter." 
     2265msgstr "" 
     2266 
     2267#, python-format 
     2268msgid "Unknown printer address in HARDWARE(%s) for printer %s" 
     2269msgstr "Endere�invalido em  HARDWARE(%s) para a impressora %s" 
     2270 
     2271#, python-format 
     2272msgid "Launching HARDWARE(%s)..." 
     2273msgstr "Tentando identifica� f�ca(%s)..." 
     2274 
     2275#, python-format 
     2276msgid "SIGTERM was sent to hardware accounter %s (pid: %s)" 
     2277msgstr "Sinal SIGTERM enviado para contador f�co %s (pid : %s)" 
     2278 
     2279#, python-format 
     2280msgid "Line [%s] skipped in accounter's output. Trying again..." 
     2281msgstr "" 
     2282 
     2283#, python-format 
     2284msgid "Hardware accounter %s exit code is %s" 
     2285msgstr "" 
     2286 
     2287#, python-format 
     2288msgid "Unable to query printer %s via HARDWARE(%s)" 
     2289msgstr "Imposive consultar a impressora %s via HARDWARE(%s)" 
     2290 
     2291#, python-format 
     2292msgid "Problem during connection to %s:%s : %s" 
     2293msgstr "" 
     2294 
     2295#, python-format 
     2296msgid "Problem while sending PJL query to %s:%s : %s" 
     2297msgstr "" 
     2298 
     2299#, python-format 
     2300msgid "Problem while receiving PJL answer from %s:%s : %s" 
     2301msgstr "" 
     2302 
     2303#, python-format 
     2304msgid "Waiting for printer %s to be printing..." 
     2305msgstr "" 
     2306 
     2307#, python-format 
     2308msgid "Waiting for printer %s's idle status to stabilize..." 
     2309msgstr "" 
     2310 
     2311#, python-format 
     2312msgid "" 
     2313"PJL querying stage interrupted. Using latest value seen for internal page " 
     2314"counter (%s) on printer %s." 
     2315msgstr "" 
     2316 
     2317#, python-format 
     2318msgid "Network error while doing SNMP queries on printer %s : %s" 
     2319msgstr "" 
     2320 
     2321#, python-format 
     2322msgid "SNMP message decoding error for printer %s : %s" 
     2323msgstr "" 
     2324 
     2325#, python-format 
     2326msgid "Problem encountered while doing SNMP queries on printer %s : %s" 
     2327msgstr "" 
     2328 
     2329#, python-format 
     2330msgid "" 
     2331"SNMP querying stage interrupted. Using latest value seen for internal page " 
     2332"counter (%s) on printer %s." 
     2333msgstr "" 
     2334 
     2335#, python-format 
     2336msgid "Unable to precompute the job's size with the generic PDL analyzer : %s" 
     2337msgstr "" 
     2338"Imposs�l calcular tamanho da tarefa usando analisador gen�o de PDL : %s" 
     2339 
     2340#, python-format 
     2341msgid "Launching SOFTWARE(%s)..." 
     2342msgstr "Tentando identifica� l�a (%s)..." 
     2343 
     2344#, python-format 
     2345msgid "Unable to compute job size with accounter %s" 
     2346msgstr "Impossivel calcular o tamanho do trabalho com o contador %s" 
     2347 
     2348#, python-format 
     2349msgid "Problem while waiting for software accounter pid %s to exit : %s" 
     2350msgstr "Problema ao aguardar encerramento do contador l�o de pid %s : %s" 
     2351 
     2352#, python-format 
     2353msgid "Software accounter %s exit code is %s" 
     2354msgstr "C�o de erro para contador l�o %s : %s" 
     2355 
     2356msgid "Totals may be inaccurate if some users are members of several groups." 
     2357msgstr "" 
     2358"O Total pode n�ser exato se os usuarios forem mebros de varios grupos." 
     2359 
     2360#~ msgid "Impossible to add printer %s" 
     2361#~ msgstr "Imposivel adicionar impressora %s" 
     2362 
     2363#~ msgid "Prototype object %s not found in Quota Storage." 
     2364#~ msgstr "Objeto Prototipo %s n�encontrado no banco de dados." 
     2365 
     2366#~ msgid "Prototype %s not found in Quota Storage for printer %s." 
     2367#~ msgstr "Prototipo %s n�encontrado no banco dedados para a impressora %s." 
     2368 
     2369#~ msgid "Undefined hard limit set to soft limit (%s) on printer %s." 
     2370#~ msgstr "" 
     2371#~ "O limite maximo invalido, configurando o limite minimo (%s) na impressora " 
     2372#~ "%s." 
     2373 
     2374#~ msgid "Undefined soft limit set to hard limit (%s) on printer %s." 
     2375#~ msgstr "" 
     2376#~ "Limite indefinido, configurando a l�te maximo (%s) na impressora %s." 
     2377 
     2378#~ msgid "Invalid group name %s" 
     2379#~ msgstr "O nome do grupo %s �nv�do" 
     2380 
     2381#~ msgid "Invalid user name %s" 
     2382#~ msgstr "O nome de usuario %s �nv�do" 
     2383 
     2384#~ msgid "Quota not found for object %s on printer %s." 
     2385#~ msgstr "Quota n�encontrada para o objeto %s para a impressora %s." 
     2386 
     2387#~ msgid "Group %s not found in the PyKota Storage." 
     2388#~ msgstr "Grupo %s n�encontrado no banco de dados." 
     2389 
     2390#~ msgid "PyKota Reports" 
     2391#~ msgstr "Relat� do Pykota" 
     2392 
     2393#~ msgid "Report" 
     2394#~ msgstr "Relat�" 
     2395 
     2396#~ msgid "Printer" 
     2397#~ msgstr "Impressora" 
     2398 
     2399#~ msgid "User / Group names mask" 
     2400#~ msgstr "M�ara de nomes para Usu�os / Grupos" 
     2401 
     2402#~ msgid "Groups report" 
     2403#~ msgstr "Relat� de Grupos" 
     2404 
     2405#~ msgid "Empty" 
     2406#~ msgstr "Vazio" 
     2407 
     2408#~ msgid "Action" 
     2409#~ msgstr "A�" 
     2410 
     2411#~ msgid "User" 
     2412#~ msgstr "Usu�o" 
     2413 
     2414#~ msgid "Hostname" 
     2415#~ msgstr "Nome do computador" 
     2416 
     2417#~ msgid "JobId" 
     2418#~ msgstr "Id da Tarefa" 
     2419 
     2420#~ msgid "Copies" 
     2421#~ msgstr "C�s" 
     2422 
     2423#~ msgid "Options" 
     2424#~ msgstr "Op�s" 
     2425 
     2426#~ msgid "Previous page" 
     2427#~ msgstr "P�na anterior" 
    20482428 
    20492429#~ msgid "File number %s unregistered twice from polling object, ignored."