94 | | " -a | --add Adds users and/or printers if they don't \n" |
95 | | " exist on the Quota Storage Server.\n" |
96 | | " \n" |
97 | | " -d | --delete Deletes users/groups from the quota storage.\n" |
98 | | " Printers are never deleted.\n" |
99 | | " \n" |
100 | | " -c | --charge p[,j] Sets the price per page and per job to charge\n" |
101 | | " for a particular printer. Job price is optional.\n" |
102 | | " If both are to be set, separate them with a comma.\n" |
103 | | " Floating point values are allowed.\n" |
104 | | " \n" |
105 | | " -i | --ingroups g1[,g2...] Puts the users into each of the groups\n" |
106 | | " listed, separated by commas. The groups\n" |
107 | | " must already exist in the Quota Storage.\n" |
108 | | " \n" |
109 | | " -u | --users Edit users print quotas, this is the default.\n" |
110 | | " \n" |
111 | | " -P | --printer p Edit quotas on printer p only. Actually p can\n" |
112 | | " use wildcards characters to select only\n" |
113 | | " some printers. The default value is *, meaning\n" |
114 | | " all printers. \n" |
115 | | " You can specify several names or wildcards, \n" |
116 | | " by separating them with commas.\n" |
117 | | " \n" |
118 | | " -G | --pgroups pg1[,pg2...] Adds the printer(s) to the printer groups\n" |
119 | | " pg1, pg2, etc... which must already exist.\n" |
120 | | " A printer group is just like a normal printer,\n" |
121 | | " only that it is usually unknown from the printing\n" |
122 | | " system. Create printer groups exactly the same\n" |
123 | | " way that you create printers, then add other \n" |
124 | | " printers to them with this option.\n" |
125 | | " Accounting is done on a printer and on all\n" |
126 | | " the printer groups it belongs to, quota checking\n" |
127 | | " is done on a printer and on all the printer groups\n" |
128 | | " it belongs to.\n" |
129 | | " \n" |
130 | | " -g | --groups Edit users groups print quotas instead of users.\n" |
131 | | " \n" |
132 | | " -p | --prototype u|g Uses user u or group g as a prototype to set\n" |
133 | | " print quotas\n" |
134 | | " \n" |
135 | | " -n | --noquota Doesn't set a quota but only does accounting.\n" |
136 | | " \n" |
137 | | " -r | --reset Resets the actual page counter for the user\n" |
138 | | " or group to zero on the specified printers. \n" |
139 | | " The life time page counter is kept unchanged.\n" |
140 | | " \n" |
141 | | " -R | --hardreset Resets the actual and life time page counters\n" |
142 | | " for the user or group to zero on the specified \n" |
143 | | " printers. \n" |
144 | | " \n" |
145 | | " -l | --limitby l Choose if the user/group is limited in " |
146 | | "printing \n" |
147 | | " by its account balance or by its page quota.\n" |
148 | | " The default value is 'quota'. Allowed values\n" |
149 | | " are 'quota' 'balance' 'quota-then-balance' and\n" |
150 | | " 'balance-then-quota'.\n" |
151 | | " WARNING : quota-then-balance and balance-then-quota\n" |
152 | | " are not yet implemented.\n" |
153 | | " \n" |
154 | | " -b | --balance b Sets the user's account balance to " |
155 | | "b. \n" |
156 | | " Account balance may be increase or decreased\n" |
157 | | " if b is prefixed with + or -.\n" |
158 | | " WARNING : when decreasing account balance,\n" |
159 | | " the total paid so far by the user is decreased\n" |
160 | | " too.\n" |
161 | | " Groups don't have a real balance, but the\n" |
162 | | " sum of their users' account balance.\n" |
163 | | " \n" |
164 | | " -S | --softlimit sl Sets the quota soft limit to sl " |
165 | | "pages. \n" |
166 | | " \n" |
167 | | " -H | --hardlimit hl Sets the quota hard limit to hl pages.\n" |
168 | | " \n" |
169 | | " user1 through userN and group1 through groupN can use wildcards\n" |
170 | | " if the --add option is not set.\n" |
171 | | " \n" |
174 | | " $ edpykota --add -p jerome john paul george ringo/ringo@example.com\n" |
175 | | " \n" |
176 | | " This will add users john, paul, george and ringo to the quota\n" |
177 | | " database, and set their print quotas to the same values than user \n" |
178 | | " jerome. User jerome must already exist.\n" |
179 | | " User ringo's email address will also be set to 'ringo@example.com'\n" |
180 | | " \n" |
181 | | " $ edpykota --printer lp -S 50 -H 60 jerome\n" |
182 | | " \n" |
183 | | " This will set jerome's print quota on the lp printer to a soft limit\n" |
184 | | " of 50 pages, and a hard limit of 60 pages. If either user jerome or\n" |
185 | | " printer lp doesn't exist on the Quota Storage Server then nothing is " |
186 | | "done.\n" |
187 | | "\n" |
188 | | " $ edpykota --add --printer lp --ingroups coders,it -S 50 -H 60 jerome\n" |
189 | | " \n" |
190 | | " Same as above, but if either user jerome or printer lp doesn't exist \n" |
191 | | " on the Quota Storage Server they are automatically added. Also\n" |
192 | | " user jerome is put into the groups \"coders\" and \"it\" which must\n" |
193 | | " already exist in the Quota Storage.\n" |
194 | | " \n" |
195 | | " $ edpykota -g -S 500 -H 550 financial support \n" |
196 | | " \n" |
197 | | " This will set print quota soft limit to 500 pages and hard limit\n" |
198 | | " to 550 pages for groups financial and support on all printers.\n" |
199 | | " \n" |
200 | | " $ edpykota --reset jerome \"jo*\"\n" |
201 | | " \n" |
202 | | " This will reset jerome's page counter to zero on all printers, as\n" |
203 | | " well as every user whose name begins with 'jo'.\n" |
204 | | " Their life time page counter on each printer will be kept unchanged.\n" |
205 | | " You can also reset the life time page counters by using the\n" |
206 | | " --hardreset | -R command line option.\n" |
207 | | " \n" |
208 | | " $ edpykota --printer hpcolor --noquota jerome\n" |
209 | | " \n" |
210 | | " This will tell PyKota to not limit jerome when printing on the \n" |
211 | | " hpcolor printer. All his jobs will be allowed on this printer, but \n" |
212 | | " accounting of the pages he prints will still be kept.\n" |
213 | | " Print Quotas for jerome on other printers are unchanged.\n" |
214 | | " \n" |
215 | | " $ edpykota --limitby balance jerome\n" |
216 | | " \n" |
217 | | " This will tell PyKota to limit jerome by his account's balance\n" |
218 | | " when printing.\n" |
219 | | " \n" |
220 | | " $ edpykota --balance +10.0 jerome\n" |
221 | | " \n" |
222 | | " This will increase jerome's account balance by 10.0 (in your\n" |
223 | | " own currency). You can decrease the account balance with a\n" |
224 | | " dash prefix, and set it to a fixed amount with no prefix.\n" |
225 | | " \n" |
226 | | " $ edpykota --delete jerome rachel\n" |
227 | | " \n" |
228 | | " This will completely delete jerome and rachel from the Quota Storage\n" |
229 | | " database. All their quotas and jobs will be deleted too.\n" |
230 | | " \n" |
231 | | " $ edpykota --printer lp --charge 0.1\n" |
232 | | " \n" |
233 | | " This will set the page price for printer lp to 0.1. Job price\n" |
234 | | " will not be changed.\n" |
235 | | " \n" |
236 | | " $ edpykota --printer hplj1,hplj2 --pgroups Laser,HP\n" |
237 | | " \n" |
238 | | " This will put printers hplj1 and hplj2 in printers groups Laser and HP.\n" |
239 | | " When printing either on hplj1 or hplj2, print quota will also be \n" |
240 | | " checked and accounted for on virtual printers Laser and HP.\n" |
241 | | "\n" |
| 175 | " $ pkhint \"hp*\" printer103 </etc/cups/printers.conf\n" |
| 176 | " \n" |
| 177 | " Will analyze your printing system to test which accounter\n" |
| 178 | " is the best for each of the defined printer which\n" |
| 179 | " name matches one of the parameters.\n" |
| 180 | " \n" |
| 181 | " If you don't pass any argument on the command line, all\n" |
| 182 | " printers will be analyzed.\n" |
| 183 | " \n" |
259 | | msgid "You're not allowed to use this command." |
260 | | msgstr "" |
261 | | |
262 | | #, python-format |
263 | | msgid "Invalid softlimit value %s." |
264 | | msgstr "Limite soft %s non valido." |
265 | | |
266 | | #, python-format |
267 | | msgid "Invalid hardlimit value %s." |
268 | | msgstr "Limite hard %s non valido." |
269 | | |
270 | | #, python-format |
271 | | msgid "Hard limit %i is less than soft limit %i, values will be exchanged." |
272 | | msgstr "Limite hard %i minore del limite soft %i, i valori verranno scambiati." |
273 | | |
274 | | #, python-format |
275 | | msgid "Invalid balance value %s" |
276 | | msgstr "Valore di credito %s" |
277 | | |
278 | | #, python-format |
279 | | msgid "Invalid charge amount value %s" |
280 | | msgstr "Ammontare del costo non valido %s" |
281 | | |
282 | | #, python-format |
283 | | msgid "Invalid limitby value %s" |
284 | | msgstr "Valore di limite %s non valido" |
285 | | |
286 | | #, python-format |
287 | | msgid "Impossible to add printer %s" |
288 | | msgstr "Impossibile aggiungere la stampante %s" |
289 | | |
290 | | #, python-format |
291 | | msgid "Invalid printer name %s" |
292 | | msgstr "Nome stampante %s non valido" |
293 | | |
294 | | #, python-format |
295 | | msgid "There's no printer matching %s" |
296 | | msgstr "Non esiste una stampante %s" |
297 | | |
298 | | msgid "You have to pass user or group names on the command line" |
299 | | msgstr "" |
300 | | "Bisogna specificare dei nomi di utente o di gruppo sulla linea di comando" |
301 | | |
302 | | #, python-format |
303 | | msgid "Prototype %s not found in Quota Storage for printer %s." |
304 | | msgstr "" |
305 | | "Prototipo %s non trovato nello storage delle quote per la stampante %s." |
306 | | |
307 | | #, python-format |
308 | | msgid "Prototype object %s not found in Quota Storage." |
309 | | msgstr "Oggetto prototipo %s non trovato nello storage delle quote." |
310 | | |
311 | | #, python-format |
312 | | msgid "Undefined hard limit set to soft limit (%s) on printer %s." |
313 | | msgstr "" |
314 | | "Limite hard non specificato impostato al limite soft (%s) sulla stampante %s." |
315 | | |
316 | | #, python-format |
317 | | msgid "Undefined soft limit set to hard limit (%s) on printer %s." |
318 | | msgstr "" |
319 | | "Limite soft non specificato impostato al limite hard (%s) sulla stampante %s." |
320 | | |
321 | | #, python-format |
322 | | msgid "Invalid email address %s" |
323 | | msgstr "Indirizzo email non valido %s" |
324 | | |
325 | | #, python-format |
326 | | msgid "Invalid group name %s" |
327 | | msgstr "Nome gruppo non valido %s" |
328 | | |
329 | | #, python-format |
330 | | msgid "Invalid user name %s" |
331 | | msgstr "Nome utente non valido %s" |
332 | | |
333 | | #, python-format |
334 | | msgid "Quota not found for object %s on printer %s." |
335 | | msgstr "Quota non trovata per l'oggetto %s sulla stampante %s." |
336 | | |
337 | | #, python-format |
338 | | msgid "Group %s not found in the PyKota Storage." |
339 | | msgstr "Gruppo %s non trovato nello storage di PyKota." |
340 | | |
341 | | msgid "incompatible options, see help." |
342 | | msgstr "opzioni non compatibili, vedere la guida." |
343 | | |
344 | | #, python-format |
345 | | msgid "" |
346 | | "pykosd v%s (c) 2003-2004 C@LL - Conseil Internet & Logiciels Libres\n" |
347 | | "An OSD quota monitor for PyKota.\n" |
| 201 | #, python-format |
| 202 | msgid "Invalid DeviceURI : %s" |
| 203 | msgstr "DeviceURI non valido: %s" |
| 204 | |
| 205 | msgid "" |
| 206 | "\n" |
| 207 | "Please wait while pkhint analyzes your printing system's configuration..." |
| 208 | msgstr "" |
| 209 | "\n" |
| 210 | "Prego attendere fino a che pkhint termini di analizzare la configurazione di " |
| 211 | "stampa del sistema..." |
| 212 | |
| 213 | #, python-format |
| 214 | msgid "Unknown device %s for printer %s" |
| 215 | msgstr "Periferica %s sconosciuta per la stampante %s" |
| 216 | |
| 217 | msgid "" |
| 218 | "\n" |
| 219 | "Put the following lines into your /etc/pykota/pykota.conf file :\n" |
| 220 | msgstr "" |
| 221 | "\n" |
| 222 | "Si inseriscano le seguenti righe nel file /etc/pykota/pykota.conf : \n" |
| 223 | |
| 224 | msgid "# BEWARE : if software accounting is suggested, this doesn't mean" |
| 225 | msgstr "" |
| 226 | "# ATTENZIONE: se �tato suggerito conteggio software, ci�n significa" |
| 227 | |
| 228 | msgid "# that hardware accounting wouldn't work, this only means that PyKota" |
| 229 | msgstr "" |
| 230 | "# che il conteggio hardware non sia funzionante, ma solamente che PyKota" |
| 231 | |
| 232 | msgid "# wasn't able to autodetect which hardware accounting method to use." |
| 233 | msgstr "" |
| 234 | "# non �tato in grado di riconoscere automaticamente quale metodo di " |
| 235 | "conteggio utilizzare" |
| 236 | |
| 237 | #, python-format |
| 238 | msgid "" |
| 239 | "pkmail v%s (c) 2003-2004 C@LL - Conseil Internet & Logiciels Libres\n" |
| 240 | "\n" |
| 241 | "Email gateway for PyKota.\n" |
400 | | |
401 | | #, python-format |
402 | | msgid "Invalid duration option %s" |
403 | | msgstr "Opzione duration %s non valida" |
404 | | |
405 | | #, python-format |
406 | | msgid "Invalid loop option %s" |
407 | | msgstr "Opzione loop %s non valida" |
408 | | |
409 | | #, python-format |
410 | | msgid "Invalid sleep option %s" |
411 | | msgstr "Opzione sleep %s non valida" |
412 | | |
413 | | #, python-format |
414 | | msgid "Invalid color option %s" |
415 | | msgstr "Opzione colore %s non valida" |
416 | | |
417 | | #, python-format |
418 | | msgid "User %s doesn't exist in PyKota's database" |
419 | | msgstr "Utente %s non esiste nel database di PyKota" |
420 | | |
421 | | #, python-format |
422 | | msgid "Pages used on %s : %s" |
423 | | msgstr "Pagine utilizzate su %s : %s" |
424 | | |
425 | | #, python-format |
426 | | msgid "PyKota Units left : %.2f" |
427 | | msgstr "Unit�yKota rimaste : %.2f" |
428 | | |
429 | | #, python-format |
430 | | msgid "" |
431 | | "warnpykota v%s (c) 2003-2004 C@LL - Conseil Internet & Logiciels Libres\n" |
432 | | "\n" |
433 | | "Sends mail to users over print quota.\n" |
434 | | "\n" |
435 | | "command line usage :\n" |
436 | | "\n" |
437 | | " warnpykota [options] [names]\n" |
438 | | "\n" |
439 | | "options :\n" |
440 | | "\n" |
441 | | " -v | --version Prints warnpykota's version number then exits.\n" |
442 | | " -h | --help Prints this message then exits.\n" |
443 | | " \n" |
444 | | " -u | --users Warns users over their print quota, this is the \n" |
445 | | " default.\n" |
446 | | " \n" |
447 | | " -g | --groups Warns users whose groups quota are over limit.\n" |
448 | | " \n" |
449 | | " -P | --printer p Verify quotas on this printer only. Actually p can\n" |
450 | | " use wildcards characters to select only\n" |
451 | | " some printers. The default value is *, meaning\n" |
452 | | " all printers.\n" |
453 | | " You can specify several names or wildcards, \n" |
454 | | " by separating them with commas.\n" |
455 | | " \n" |
456 | | "examples : \n" |
457 | | "\n" |
458 | | " $ warnpykota --printer lp\n" |
459 | | " \n" |
460 | | " This will warn all users of the lp printer who have exceeded their\n" |
461 | | " print quota.\n" |
462 | | "\n" |
463 | | " $ warnpykota \n" |
464 | | " \n" |
465 | | " This will warn all users who have exceeded their print quota on\n" |
466 | | " any printer.\n" |
467 | | "\n" |
468 | | " $ warnpykota --groups --printer \"laserjet*\" \"dev*\"\n" |
469 | | " \n" |
470 | | " This will warn all users of groups which names begins with \"dev\" and\n" |
471 | | " who have exceeded their print quota on any printer which name begins \n" |
472 | | " with \"laserjet\"\n" |
473 | | " \n" |
474 | | " If launched by an user who is not a PyKota administrator, additionnal\n" |
475 | | " arguments representing users or groups names are ignored, and only the\n" |
476 | | " current user/group is reported.\n" |
477 | | "\n" |
478 | | "This program is free software; you can redistribute it and/or modify\n" |
479 | | "it under the terms of the GNU General Public License as published by\n" |
480 | | "the Free Software Foundation; either version 2 of the License, or\n" |
481 | | "(at your option) any later version.\n" |
482 | | "\n" |
483 | | "This program is distributed in the hope that it will be useful,\n" |
484 | | "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" |
485 | | "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" |
486 | | "GNU General Public License for more details.\n" |
487 | | "\n" |
488 | | "You should have received a copy of the GNU General Public License\n" |
489 | | "along with this program; if not, write to the Free Software\n" |
490 | | "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.\n" |
491 | | "\n" |
492 | | "Please e-mail bugs to: %s" |
493 | | msgstr "" |
494 | | |
495 | | msgid "Job contains no data. Printing is denied." |
496 | | msgstr "Stampa non contiene dati. Stampa rifiutata." |
497 | | |
498 | | msgid "Job accounting begins." |
499 | | msgstr "Inizio accounting stampa." |
500 | | |
501 | | msgid "Job accounting ends." |
502 | | msgstr "Fine accounting stampa." |
503 | | |
504 | | msgid "Job size forced to 0 because printing is denied." |
505 | | msgstr "Dimensione stampa forzato a 0 perch�a stampa non �ermessa." |
506 | | |
507 | | #, python-format |
508 | | msgid "Job size : %i" |
509 | | msgstr "Dimensione stampa: %i" |
510 | | |
511 | | #, python-format |
512 | | msgid "Updating user %s's quota on printer %s" |
513 | | msgstr "Aggiornamento quota per l'utente %s sulla stampante %s" |
514 | | |
515 | | msgid "Job added to history." |
516 | | msgstr "Stampa aggiunta in cronologia." |
517 | | |
518 | | #, python-format |
519 | | msgid "File number %s unregistered twice from polling object, ignored." |
520 | | msgstr "Numero file %s rimosso due volte dall'oggetto polling, ignorato." |
521 | | |
522 | | #, python-format |
523 | | msgid "SIGTERM was sent to real backend %s (pid: %s)" |
524 | | msgstr "Segnale SIGTERM inviato al backend %s (pid: %s)" |
525 | | |
526 | | #, python-format |
527 | | msgid "CUPS backend %s died abnormally." |
528 | | msgstr "Backend CUPS %s terminato inaspettatamente." |
529 | | |
530 | | #, python-format |
531 | | msgid "" |
532 | | "dumpykota v%s (c) 2003-2004 C@LL - Conseil Internet & Logiciels Libres\n" |
533 | | "\n" |
534 | | "Dumps PyKota database's content.\n" |
535 | | "\n" |
536 | | "command line usage :\n" |
537 | | "\n" |
538 | | " dumpykota [options] \n" |
539 | | "\n" |
540 | | "options :\n" |
541 | | "\n" |
542 | | " -v | --version Prints dumpykota's version number then exits.\n" |
543 | | " -h | --help Prints this message then exits.\n" |
544 | | " \n" |
545 | | " -d | --data type Dumps 'type' datas. Allowed types are :\n" |
546 | | " \n" |
547 | | " - history : dumps the jobs history.\n" |
548 | | " - users : dumps users.\n" |
549 | | " - groups : dumps user groups.\n" |
550 | | " - printers : dump printers.\n" |
551 | | " - upquotas : dump user quotas.\n" |
552 | | " - gpquotas : dump user groups quotas.\n" |
553 | | " - payments : dumps user payments.\n" |
554 | | " - pmembers : dumps printer groups members.\n" |
555 | | " - umembers : dumps user groups members.\n" |
556 | | " \n" |
557 | | " NB : the -d | --data command line option \n" |
558 | | " is MANDATORY.\n" |
559 | | " \n" |
560 | | " -f | --format fmt Dumps datas in the 'fmt' format. When not specified,\n" |
561 | | " the format is to dump datas in the csv format (comma\n" |
562 | | " separated values). All data dumped is between double\n" |
563 | | " quotes. Allowed formats are :\n" |
564 | | " \n" |
565 | | " - csv : separate datas with commas\n" |
566 | | " - ssv : separate datas with semicolons\n" |
567 | | " - tsv : separate datas with tabs\n" |
568 | | " - xml : dump data as XML\n" |
569 | | " \n" |
570 | | " -o | --output fname All datas will be dumped to the file instead of\n" |
571 | | " to the standard output. The special '-' filename\n" |
572 | | " is the default value and means stdout.\n" |
573 | | " WARNING : existing files are truncated !\n" |
574 | | " \n" |
575 | | "Examples :\n" |
576 | | "\n" |
577 | | " $ dumpykota --data history --format csv >myfile.csv\n" |
578 | | " \n" |
579 | | " This dumps the history in a comma separated values file, for possible\n" |
580 | | " use in a spreadsheet.\n" |
581 | | " \n" |
582 | | " $ dumpykota --data users --format xml -o users.xml\n" |
583 | | " \n" |
584 | | " Dumps all users datas to the users.xml file.\n" |
585 | | " \n" |
586 | | "This program is free software; you can redistribute it and/or modify\n" |
587 | | "it under the terms of the GNU General Public License as published by\n" |
588 | | "the Free Software Foundation; either version 2 of the License, or\n" |
589 | | "(at your option) any later version.\n" |
590 | | "\n" |
591 | | "This program is distributed in the hope that it will be useful,\n" |
592 | | "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" |
593 | | "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" |
594 | | "GNU General Public License for more details.\n" |
595 | | "\n" |
596 | | "You should have received a copy of the GNU General Public License\n" |
597 | | "along with this program; if not, write to the Free Software\n" |
598 | | "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.\n" |
599 | | "\n" |
600 | | "Please e-mail bugs to: %s" |
601 | | msgstr "" |
602 | | |
603 | | #, python-format |
604 | | msgid "Invalid modifier [%s] for --data command line option, see help." |
605 | | msgstr "" |
606 | | |
607 | | #, python-format |
608 | | msgid "Invalid modifier [%s] for --format command line option, see help." |
609 | | msgstr "" |
610 | | |
611 | | msgid "XML output is disabled because the jaxml module is not available." |
612 | | msgstr "" |
613 | | |
614 | | msgid "PyKota data dumper failed : I/O error" |
615 | | msgstr "" |
616 | | |
617 | | msgid "The -d | --data command line option is mandatory, see help." |
618 | | msgstr "" |
619 | | |
620 | | msgid "Too many arguments, see help." |
621 | | msgstr "" |
622 | | |
623 | | msgid "Software accounting already done in first pass. Ignoring." |
624 | | msgstr "Conteggio software gi�ffettuato nel primo passaggio. Ignorato." |
625 | | |
626 | | msgid "Hardware accounting already done in first pass. Ignoring." |
627 | | msgstr "Conteggio hardware gi�ffettuato nel primo passaggio. Ignorato." |
628 | | |
629 | | #, python-format |
630 | | msgid "" |
631 | | "pkhint v%s (c) 2003-2004 C@LL - Conseil Internet & Logiciels Libres\n" |
632 | | "A tool to give hints on what accounting method is best for each printer.\n" |
633 | | "\n" |
634 | | "command line usage :\n" |
635 | | "\n" |
636 | | " pkhint [options] [printer1 printer2 printer3 ... printerN] <file.conf\n" |
637 | | "\n" |
638 | | "options :\n" |
639 | | "\n" |
640 | | " -v | --version Prints pkhint's version number then exits.\n" |
641 | | " -h | --help Prints this message then exits.\n" |
642 | | " \n" |
643 | | "examples : \n" |
644 | | "\n" |
645 | | " $ pkhint \"hp*\" printer103 </etc/cups/printers.conf\n" |
646 | | " \n" |
647 | | " Will analyze your printing system to test which accounter\n" |
648 | | " is the best for each of the defined printer which\n" |
649 | | " name matches one of the parameters.\n" |
650 | | " \n" |
651 | | " If you don't pass any argument on the command line, all\n" |
652 | | " printers will be analyzed.\n" |
653 | | " \n" |
654 | | "This program is free software; you can redistribute it and/or modify\n" |
655 | | "it under the terms of the GNU General Public License as published by\n" |
656 | | "the Free Software Foundation; either version 2 of the License, or\n" |
657 | | "(at your option) any later version.\n" |
658 | | "\n" |
659 | | "This program is distributed in the hope that it will be useful,\n" |
660 | | "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" |
661 | | "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" |
662 | | "GNU General Public License for more details.\n" |
663 | | "\n" |
664 | | "You should have received a copy of the GNU General Public License\n" |
665 | | "along with this program; if not, write to the Free Software\n" |
666 | | "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.\n" |
667 | | "\n" |
668 | | "Please e-mail bugs to: %s" |
669 | | msgstr "" |
670 | | |
671 | | #, python-format |
672 | | msgid "Invalid DeviceURI : %s" |
673 | | msgstr "DeviceURI non valido: %s" |
674 | | |
675 | | msgid "" |
676 | | "\n" |
677 | | "Please wait while pkhint analyzes your printing system's configuration..." |
678 | | msgstr "" |
679 | | "\n" |
680 | | "Prego attendere fino a che pkhint termini di analizzare la configurazione di " |
681 | | "stampa del sistema..." |
682 | | |
683 | | #, python-format |
684 | | msgid "Unknown device %s for printer %s" |
685 | | msgstr "Periferica %s sconosciuta per la stampante %s" |
686 | | |
687 | | msgid "" |
688 | | "\n" |
689 | | "Put the following lines into your /etc/pykota/pykota.conf file :\n" |
690 | | msgstr "" |
691 | | "\n" |
692 | | "Si inseriscano le seguenti righe nel file /etc/pykota/pykota.conf : \n" |
693 | | |
694 | | msgid "# BEWARE : if software accounting is suggested, this doesn't mean" |
695 | | msgstr "" |
696 | | "# ATTENZIONE: se �tato suggerito conteggio software, ci�n significa" |
697 | | |
698 | | msgid "# that hardware accounting wouldn't work, this only means that PyKota" |
699 | | msgstr "" |
700 | | "# che il conteggio hardware non sia funzionante, ma solamente che PyKota" |
701 | | |
702 | | msgid "# wasn't able to autodetect which hardware accounting method to use." |
703 | | msgstr "" |
704 | | "# non �tato in grado di riconoscere automaticamente quale metodo di " |
705 | | "conteggio utilizzare" |
| 596 | "autopykota v%s (c) 2003-2004 C@LL - Conseil Internet & Logiciels Libres\n" |
| 597 | "A tool to automate user account creation and initial balance setting.\n" |
| 598 | "\n" |
| 599 | "THIS TOOL MUST NOT BE USED IF YOU WANT TO LIMIT YOUR USERS BY PAGE QUOTA !\n" |
| 600 | "\n" |
| 601 | "command line usage :\n" |
| 602 | "\n" |
| 603 | " THIS TOOL MUST NOT BE USED FROM THE COMMAND LINE BUT ONLY AS PART\n" |
| 604 | " OF AN external policy IN pykota.conf\n" |
| 605 | " \n" |
| 606 | " autopykota { -i | --initbalance value } \n" |
| 607 | "\n" |
| 608 | "options :\n" |
| 609 | "\n" |
| 610 | " -v | --version Prints autopykota's version number then exits.\n" |
| 611 | " -h | --help Prints this message then exits.\n" |
| 612 | " \n" |
| 613 | " -i | --initbalance b Sets the user's account initial balance value to b.\n" |
| 614 | " If the user already exists, actual balance is left\n" |
| 615 | " unmodified. If unset, the default value is 0.\n" |
| 616 | " \n" |
| 617 | "This program is free software; you can redistribute it and/or modify\n" |
| 618 | "it under the terms of the GNU General Public License as published by\n" |
| 619 | "the Free Software Foundation; either version 2 of the License, or\n" |
| 620 | "(at your option) any later version.\n" |
| 621 | "\n" |
| 622 | "This program is distributed in the hope that it will be useful,\n" |
| 623 | "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" |
| 624 | "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" |
| 625 | "GNU General Public License for more details.\n" |
| 626 | "\n" |
| 627 | "You should have received a copy of the GNU General Public License\n" |
| 628 | "along with this program; if not, write to the Free Software\n" |
| 629 | "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.\n" |
| 630 | "\n" |
| 631 | "Please e-mail bugs to: %s" |
| 632 | msgstr "" |
| 633 | |
| 634 | msgid "Job contains no data. Printing is denied." |
| 635 | msgstr "Stampa non contiene dati. Stampa rifiutata." |
| 636 | |
| 637 | msgid "Job accounting begins." |
| 638 | msgstr "Inizio accounting stampa." |
| 639 | |
| 640 | msgid "Job accounting ends." |
| 641 | msgstr "Fine accounting stampa." |
| 642 | |
| 643 | msgid "Job size forced to 0 because printing is denied." |
| 644 | msgstr "Dimensione stampa forzato a 0 perch�a stampa non �ermessa." |
| 645 | |
| 646 | #, python-format |
| 647 | msgid "Job size : %i" |
| 648 | msgstr "Dimensione stampa: %i" |
| 649 | |
| 650 | #, python-format |
| 651 | msgid "Updating user %s's quota on printer %s" |
| 652 | msgstr "Aggiornamento quota per l'utente %s sulla stampante %s" |
| 653 | |
| 654 | msgid "Job added to history." |
| 655 | msgstr "Stampa aggiunta in cronologia." |
| 656 | |
| 657 | #, python-format |
| 658 | msgid "File number %s unregistered twice from polling object, ignored." |
| 659 | msgstr "Numero file %s rimosso due volte dall'oggetto polling, ignorato." |
| 660 | |
| 661 | #, python-format |
| 662 | msgid "SIGTERM was sent to real backend %s (pid: %s)" |
| 663 | msgstr "Segnale SIGTERM inviato al backend %s (pid: %s)" |
| 664 | |
| 665 | #, python-format |
| 666 | msgid "CUPS backend %s died abnormally." |
| 667 | msgstr "Backend CUPS %s terminato inaspettatamente." |
| 668 | |
| 669 | #, python-format |
| 670 | msgid "" |
| 671 | "dumpykota v%s (c) 2003-2004 C@LL - Conseil Internet & Logiciels Libres\n" |
| 672 | "\n" |
| 673 | "Dumps PyKota database's content.\n" |
| 674 | "\n" |
| 675 | "command line usage :\n" |
| 676 | "\n" |
| 677 | " dumpykota [options] \n" |
| 678 | "\n" |
| 679 | "options :\n" |
| 680 | "\n" |
| 681 | " -v | --version Prints dumpykota's version number then exits.\n" |
| 682 | " -h | --help Prints this message then exits.\n" |
| 683 | " \n" |
| 684 | " -d | --data type Dumps 'type' datas. Allowed types are :\n" |
| 685 | " \n" |
| 686 | " - history : dumps the jobs history.\n" |
| 687 | " - users : dumps users.\n" |
| 688 | " - groups : dumps user groups.\n" |
| 689 | " - printers : dump printers.\n" |
| 690 | " - upquotas : dump user quotas.\n" |
| 691 | " - gpquotas : dump user groups quotas.\n" |
| 692 | " - payments : dumps user payments.\n" |
| 693 | " - pmembers : dumps printer groups members.\n" |
| 694 | " - umembers : dumps user groups members.\n" |
| 695 | " \n" |
| 696 | " NB : the -d | --data command line option \n" |
| 697 | " is MANDATORY.\n" |
| 698 | " \n" |
| 699 | " -f | --format fmt Dumps datas in the 'fmt' format. When not specified,\n" |
| 700 | " the format is to dump datas in the csv format (comma\n" |
| 701 | " separated values). All data dumped is between double\n" |
| 702 | " quotes. Allowed formats are :\n" |
| 703 | " \n" |
| 704 | " - csv : separate datas with commas\n" |
| 705 | " - ssv : separate datas with semicolons\n" |
| 706 | " - tsv : separate datas with tabs\n" |
| 707 | " - xml : dump data as XML\n" |
| 708 | " \n" |
| 709 | " -o | --output fname All datas will be dumped to the file instead of\n" |
| 710 | " to the standard output. The special '-' filename\n" |
| 711 | " is the default value and means stdout.\n" |
| 712 | " WARNING : existing files are truncated !\n" |
| 713 | " \n" |
| 714 | "Examples :\n" |
| 715 | "\n" |
| 716 | " $ dumpykota --data history --format csv >myfile.csv\n" |
| 717 | " \n" |
| 718 | " This dumps the history in a comma separated values file, for possible\n" |
| 719 | " use in a spreadsheet.\n" |
| 720 | " \n" |
| 721 | " $ dumpykota --data users --format xml -o users.xml\n" |
| 722 | " \n" |
| 723 | " Dumps all users datas to the users.xml file.\n" |
| 724 | " \n" |
| 725 | "This program is free software; you can redistribute it and/or modify\n" |
| 726 | "it under the terms of the GNU General Public License as published by\n" |
| 727 | "the Free Software Foundation; either version 2 of the License, or\n" |
| 728 | "(at your option) any later version.\n" |
| 729 | "\n" |
| 730 | "This program is distributed in the hope that it will be useful,\n" |
| 731 | "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" |
| 732 | "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" |
| 733 | "GNU General Public License for more details.\n" |
| 734 | "\n" |
| 735 | "You should have received a copy of the GNU General Public License\n" |
| 736 | "along with this program; if not, write to the Free Software\n" |
| 737 | "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.\n" |
| 738 | "\n" |
| 739 | "Please e-mail bugs to: %s" |
| 740 | msgstr "" |
| 741 | |
| 742 | #, python-format |
| 743 | msgid "Invalid modifier [%s] for --data command line option, see help." |
| 744 | msgstr "" |
| 745 | |
| 746 | #, python-format |
| 747 | msgid "Invalid modifier [%s] for --format command line option, see help." |
| 748 | msgstr "" |
| 749 | |
| 750 | msgid "XML output is disabled because the jaxml module is not available." |
| 751 | msgstr "" |
| 752 | |
| 753 | msgid "PyKota data dumper failed : I/O error" |
| 754 | msgstr "" |
| 755 | |
| 756 | msgid "The -d | --data command line option is mandatory, see help." |
| 757 | msgstr "" |
| 758 | |
| 759 | msgid "Too many arguments, see help." |
| 760 | msgstr "" |
| 761 | |
| 762 | #, python-format |
| 763 | msgid "" |
| 764 | "edpykota v%s (c) 2003-2004 C@LL - Conseil Internet & Logiciels Libres\n" |
| 765 | "A Print Quota editor for PyKota.\n" |
| 766 | "\n" |
| 767 | "command line usage :\n" |
| 768 | "\n" |
| 769 | " edpykota [options] user1 user2 ... userN\n" |
| 770 | " \n" |
| 771 | " edpykota [options] group1 group2 ... groupN\n" |
| 772 | "\n" |
| 773 | "options :\n" |
| 774 | "\n" |
| 775 | " -v | --version Prints edpykota's version number then exits.\n" |
| 776 | " -h | --help Prints this message then exits.\n" |
| 777 | " \n" |
| 778 | " -a | --add Adds users and/or printers if they don't \n" |
| 779 | " exist on the Quota Storage Server.\n" |
| 780 | " \n" |
| 781 | " -d | --delete Deletes users/groups from the quota storage.\n" |
| 782 | " Printers are never deleted.\n" |
| 783 | " \n" |
| 784 | " -c | --charge p[,j] Sets the price per page and per job to charge\n" |
| 785 | " for a particular printer. Job price is optional.\n" |
| 786 | " If both are to be set, separate them with a comma.\n" |
| 787 | " Floating point values are allowed.\n" |
| 788 | " \n" |
| 789 | " -i | --ingroups g1[,g2...] Puts the users into each of the groups\n" |
| 790 | " listed, separated by commas. The groups\n" |
| 791 | " must already exist in the Quota Storage.\n" |
| 792 | " \n" |
| 793 | " -u | --users Edit users print quotas, this is the default.\n" |
| 794 | " \n" |
| 795 | " -P | --printer p Edit quotas on printer p only. Actually p can\n" |
| 796 | " use wildcards characters to select only\n" |
| 797 | " some printers. The default value is *, meaning\n" |
| 798 | " all printers. \n" |
| 799 | " You can specify several names or wildcards, \n" |
| 800 | " by separating them with commas.\n" |
| 801 | " \n" |
| 802 | " -G | --pgroups pg1[,pg2...] Adds the printer(s) to the printer groups\n" |
| 803 | " pg1, pg2, etc... which must already exist.\n" |
| 804 | " A printer group is just like a normal printer,\n" |
| 805 | " only that it is usually unknown from the printing\n" |
| 806 | " system. Create printer groups exactly the same\n" |
| 807 | " way that you create printers, then add other \n" |
| 808 | " printers to them with this option.\n" |
| 809 | " Accounting is done on a printer and on all\n" |
| 810 | " the printer groups it belongs to, quota checking\n" |
| 811 | " is done on a printer and on all the printer groups\n" |
| 812 | " it belongs to.\n" |
| 813 | " \n" |
| 814 | " -g | --groups Edit users groups print quotas instead of users.\n" |
| 815 | " \n" |
| 816 | " -p | --prototype u|g Uses user u or group g as a prototype to set\n" |
| 817 | " print quotas\n" |
| 818 | " \n" |
| 819 | " -n | --noquota Doesn't set a quota but only does accounting.\n" |
| 820 | " \n" |
| 821 | " -r | --reset Resets the actual page counter for the user\n" |
| 822 | " or group to zero on the specified printers. \n" |
| 823 | " The life time page counter is kept unchanged.\n" |
| 824 | " \n" |
| 825 | " -R | --hardreset Resets the actual and life time page counters\n" |
| 826 | " for the user or group to zero on the specified \n" |
| 827 | " printers. \n" |
| 828 | " \n" |
| 829 | " -l | --limitby l Choose if the user/group is limited in " |
| 830 | "printing \n" |
| 831 | " by its account balance or by its page quota.\n" |
| 832 | " The default value is 'quota'. Allowed values\n" |
| 833 | " are 'quota' 'balance' 'quota-then-balance' and\n" |
| 834 | " 'balance-then-quota'.\n" |
| 835 | " WARNING : quota-then-balance and balance-then-quota\n" |
| 836 | " are not yet implemented.\n" |
| 837 | " \n" |
| 838 | " -b | --balance b Sets the user's account balance to " |
| 839 | "b. \n" |
| 840 | " Account balance may be increase or decreased\n" |
| 841 | " if b is prefixed with + or -.\n" |
| 842 | " WARNING : when decreasing account balance,\n" |
| 843 | " the total paid so far by the user is decreased\n" |
| 844 | " too.\n" |
| 845 | " Groups don't have a real balance, but the\n" |
| 846 | " sum of their users' account balance.\n" |
| 847 | " \n" |
| 848 | " -S | --softlimit sl Sets the quota soft limit to sl " |
| 849 | "pages. \n" |
| 850 | " \n" |
| 851 | " -H | --hardlimit hl Sets the quota hard limit to hl pages.\n" |
| 852 | " \n" |
| 853 | " user1 through userN and group1 through groupN can use wildcards\n" |
| 854 | " if the --add option is not set.\n" |
| 855 | " \n" |
| 856 | "examples : \n" |
| 857 | "\n" |
| 858 | " $ edpykota --add -p jerome john paul george ringo/ringo@example.com\n" |
| 859 | " \n" |
| 860 | " This will add users john, paul, george and ringo to the quota\n" |
| 861 | " database, and set their print quotas to the same values than user \n" |
| 862 | " jerome. User jerome must already exist.\n" |
| 863 | " User ringo's email address will also be set to 'ringo@example.com'\n" |
| 864 | " \n" |
| 865 | " $ edpykota --printer lp -S 50 -H 60 jerome\n" |
| 866 | " \n" |
| 867 | " This will set jerome's print quota on the lp printer to a soft limit\n" |
| 868 | " of 50 pages, and a hard limit of 60 pages. If either user jerome or\n" |
| 869 | " printer lp doesn't exist on the Quota Storage Server then nothing is " |
| 870 | "done.\n" |
| 871 | "\n" |
| 872 | " $ edpykota --add --printer lp --ingroups coders,it -S 50 -H 60 jerome\n" |
| 873 | " \n" |
| 874 | " Same as above, but if either user jerome or printer lp doesn't exist \n" |
| 875 | " on the Quota Storage Server they are automatically added. Also\n" |
| 876 | " user jerome is put into the groups \"coders\" and \"it\" which must\n" |
| 877 | " already exist in the Quota Storage.\n" |
| 878 | " \n" |
| 879 | " $ edpykota -g -S 500 -H 550 financial support \n" |
| 880 | " \n" |
| 881 | " This will set print quota soft limit to 500 pages and hard limit\n" |
| 882 | " to 550 pages for groups financial and support on all printers.\n" |
| 883 | " \n" |
| 884 | " $ edpykota --reset jerome \"jo*\"\n" |
| 885 | " \n" |
| 886 | " This will reset jerome's page counter to zero on all printers, as\n" |
| 887 | " well as every user whose name begins with 'jo'.\n" |
| 888 | " Their life time page counter on each printer will be kept unchanged.\n" |
| 889 | " You can also reset the life time page counters by using the\n" |
| 890 | " --hardreset | -R command line option.\n" |
| 891 | " \n" |
| 892 | " $ edpykota --printer hpcolor --noquota jerome\n" |
| 893 | " \n" |
| 894 | " This will tell PyKota to not limit jerome when printing on the \n" |
| 895 | " hpcolor printer. All his jobs will be allowed on this printer, but \n" |
| 896 | " accounting of the pages he prints will still be kept.\n" |
| 897 | " Print Quotas for jerome on other printers are unchanged.\n" |
| 898 | " \n" |
| 899 | " $ edpykota --limitby balance jerome\n" |
| 900 | " \n" |
| 901 | " This will tell PyKota to limit jerome by his account's balance\n" |
| 902 | " when printing.\n" |
| 903 | " \n" |
| 904 | " $ edpykota --balance +10.0 jerome\n" |
| 905 | " \n" |
| 906 | " This will increase jerome's account balance by 10.0 (in your\n" |
| 907 | " own currency). You can decrease the account balance with a\n" |
| 908 | " dash prefix, and set it to a fixed amount with no prefix.\n" |
| 909 | " \n" |
| 910 | " $ edpykota --delete jerome rachel\n" |
| 911 | " \n" |
| 912 | " This will completely delete jerome and rachel from the Quota Storage\n" |
| 913 | " database. All their quotas and jobs will be deleted too.\n" |
| 914 | " \n" |
| 915 | " $ edpykota --printer lp --charge 0.1\n" |
| 916 | " \n" |
| 917 | " This will set the page price for printer lp to 0.1. Job price\n" |
| 918 | " will not be changed.\n" |
| 919 | " \n" |
| 920 | " $ edpykota --printer hplj1,hplj2 --pgroups Laser,HP\n" |
| 921 | " \n" |
| 922 | " This will put printers hplj1 and hplj2 in printers groups Laser and HP.\n" |
| 923 | " When printing either on hplj1 or hplj2, print quota will also be \n" |
| 924 | " checked and accounted for on virtual printers Laser and HP.\n" |
| 925 | "\n" |
| 926 | "This program is free software; you can redistribute it and/or modify\n" |
| 927 | "it under the terms of the GNU General Public License as published by\n" |
| 928 | "the Free Software Foundation; either version 2 of the License, or\n" |
| 929 | "(at your option) any later version.\n" |
| 930 | "\n" |
| 931 | "This program is distributed in the hope that it will be useful,\n" |
| 932 | "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" |
| 933 | "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" |
| 934 | "GNU General Public License for more details.\n" |
| 935 | "\n" |
| 936 | "You should have received a copy of the GNU General Public License\n" |
| 937 | "along with this program; if not, write to the Free Software\n" |
| 938 | "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.\n" |
| 939 | "\n" |
| 940 | "Please e-mail bugs to: %s" |
| 941 | msgstr "" |
| 942 | |
| 943 | #, python-format |
| 944 | msgid "Invalid softlimit value %s." |
| 945 | msgstr "Limite soft %s non valido." |
| 946 | |
| 947 | #, python-format |
| 948 | msgid "Invalid hardlimit value %s." |
| 949 | msgstr "Limite hard %s non valido." |
| 950 | |
| 951 | #, python-format |
| 952 | msgid "Hard limit %i is less than soft limit %i, values will be exchanged." |
| 953 | msgstr "Limite hard %i minore del limite soft %i, i valori verranno scambiati." |
| 954 | |
| 955 | #, python-format |
| 956 | msgid "Invalid balance value %s" |
| 957 | msgstr "Valore di credito %s" |
| 958 | |
| 959 | #, python-format |
| 960 | msgid "Invalid limitby value %s" |
| 961 | msgstr "Valore di limite %s non valido" |
| 962 | |
| 963 | msgid "You have to pass user or group names on the command line" |
| 964 | msgstr "" |
| 965 | "Bisogna specificare dei nomi di utente o di gruppo sulla linea di comando" |
| 966 | |
| 967 | #, python-format |
| 968 | msgid "Prototype %s not found in Quota Storage for printer %s." |
| 969 | msgstr "" |
| 970 | "Prototipo %s non trovato nello storage delle quote per la stampante %s." |
| 971 | |
| 972 | #, python-format |
| 973 | msgid "Prototype object %s not found in Quota Storage." |
| 974 | msgstr "Oggetto prototipo %s non trovato nello storage delle quote." |
| 975 | |
| 976 | #, python-format |
| 977 | msgid "Undefined hard limit set to soft limit (%s) on printer %s." |
| 978 | msgstr "" |
| 979 | "Limite hard non specificato impostato al limite soft (%s) sulla stampante %s." |
| 980 | |
| 981 | #, python-format |
| 982 | msgid "Undefined soft limit set to hard limit (%s) on printer %s." |
| 983 | msgstr "" |
| 984 | "Limite soft non specificato impostato al limite hard (%s) sulla stampante %s." |
| 985 | |
| 986 | #, python-format |
| 987 | msgid "Invalid email address %s" |
| 988 | msgstr "Indirizzo email non valido %s" |
| 989 | |
| 990 | #, python-format |
| 991 | msgid "Unknown group %s" |
| 992 | msgstr "" |
| 993 | |
| 994 | #, python-format |
| 995 | msgid "Unknown user %s" |
| 996 | msgstr "" |
| 997 | |
| 998 | #, python-format |
| 999 | msgid "Invalid group name %s" |
| 1000 | msgstr "Nome gruppo non valido %s" |
| 1001 | |
| 1002 | #, python-format |
| 1003 | msgid "Invalid user name %s" |
| 1004 | msgstr "Nome utente non valido %s" |
| 1005 | |
| 1006 | #, python-format |
| 1007 | msgid "Quota not found for object %s on printer %s." |
| 1008 | msgstr "Quota non trovata per l'oggetto %s sulla stampante %s." |
| 1009 | |
| 1010 | #, python-format |
| 1011 | msgid "Group %s not found in the PyKota Storage." |
| 1012 | msgstr "Gruppo %s non trovato nello storage di PyKota." |
| 1013 | |
| 1014 | msgid "Software accounting already done in first pass. Ignoring." |
| 1015 | msgstr "Conteggio software gi�ffettuato nel primo passaggio. Ignorato." |
| 1016 | |
| 1017 | msgid "Hardware accounting already done in first pass. Ignoring." |
| 1018 | msgstr "Conteggio hardware gi�ffettuato nel primo passaggio. Ignorato." |
| 1019 | |
| 1020 | msgid "Job size and price now set in history." |
| 1021 | msgstr "" |
| 1022 | |
| 1023 | #, python-format |
| 1024 | msgid "" |