| 68 | msgid "" |
| 69 | "edpykota v%(__version__)s (c) %(__years__)s %(__author__)s\n" |
| 70 | "\n" |
| 71 | "A Print Quota editor for PyKota.\n" |
| 72 | "\n" |
| 73 | "command line usage :\n" |
| 74 | "\n" |
| 75 | " edpykota [options] user1 user2 ... userN\n" |
| 76 | " \n" |
| 77 | " edpykota [options] group1 group2 ... groupN\n" |
| 78 | "\n" |
| 79 | "options :\n" |
| 80 | "\n" |
| 81 | " -v | --version Prints edpykota's version number then exits.\n" |
| 82 | " -h | --help Prints this message then exits.\n" |
| 83 | " \n" |
| 84 | " -a | --add Adds users or groups print quota entries if\n" |
| 85 | " they don't exist in database.\n" |
| 86 | " \n" |
| 87 | " -d | --delete Deletes users or groups print quota entries.\n" |
| 88 | " Users or groups are never deleted, you have\n" |
| 89 | " to use the pkusers command to delete them.\n" |
| 90 | " The history will be purge from all matching\n" |
| 91 | " jobs, unless -g | --groups is used.\n" |
| 92 | " \n" |
| 93 | " -P | --printer p Edit quotas on printer p only. Actually p can\n" |
| 94 | " use wildcards characters to select only\n" |
| 95 | " some printers. The default value is *, meaning\n" |
| 96 | " all printers. \n" |
| 97 | " You can specify several names or wildcards, \n" |
| 98 | " by separating them with commas.\n" |
| 99 | " \n" |
| 100 | " -g | --groups Edit groups print quota entries instead of \n" |
| 101 | " users print quota entries.\n" |
| 102 | " \n" |
| 103 | " -L | --list Lists users or groups print quota entries.\n" |
| 104 | " \n" |
| 105 | " -n | --noquota Sets both soft and hard limits to None for users\n" |
| 106 | " or groups print quota entries.\n" |
| 107 | " \n" |
| 108 | " -r | --reset Resets the actual page counter for the user\n" |
| 109 | " or group to zero on the specified printers. \n" |
| 110 | " The life time page counter is kept unchanged.\n" |
| 111 | " \n" |
| 112 | " -R | --hardreset Resets the actual and life time page counters\n" |
| 113 | " for the user or group to zero on the specified \n" |
| 114 | " printers. This is a shortcut for '--used 0'.\n" |
| 115 | " \n" |
| 116 | " -s | --skipexisting In combination with the --add option above, tells\n" |
| 117 | " edpykota to not modify existing print quota entries.\n" |
| 118 | " \n" |
| 119 | " -S | --softlimit sl Sets the quota soft limit to sl " |
| 120 | "pages. \n" |
| 121 | " \n" |
| 122 | " -H | --hardlimit hl Sets the quota hard limit to hl pages.\n" |
| 123 | " \n" |
| 124 | " -I | --increase v Increase existing Soft and Hard limits by the value\n" |
| 125 | " of v. You can prefix v with + or -, if no sign is\n" |
| 126 | " used, + is assumed.\n" |
| 127 | "\n" |
| 128 | " -U | --used u Sets the page counters for the user u pages on\n" |
| 129 | " the selected printers. Doesn't work for groups, " |
| 130 | "since\n" |
| 131 | " their page counters are the sum of all their " |
| 132 | "members'\n" |
| 133 | " page counters.\n" |
| 134 | " Useful for migrating users from a different system\n" |
| 135 | " where they have already used some pages. Actual\n" |
| 136 | " and Life Time page counters may be increased or " |
| 137 | "decreased\n" |
| 138 | " if u is prefixed with + or -.\n" |
| 139 | " WARNING : BOTH page counters are modified in all " |
| 140 | "cases,\n" |
| 141 | " so be careful.\n" |
| 142 | " NB : if u equals '0', then the action taken is\n" |
| 143 | " the same as if --hardreset was used.\n" |
| 144 | "\n" |
| 145 | " user1 through userN and group1 through groupN can use wildcards\n" |
| 146 | " if the --add option is not set.\n" |
| 147 | " \n" |
| 148 | "examples : \n" |
| 149 | "\n" |
| 150 | " $ edpykota --add john paul george ringo\n" |
| 151 | " \n" |
| 152 | " This will create print quota entries for users john, paul, george\n" |
| 153 | " and ringo on all printers. These print quota entries will have no\n" |
| 154 | " limit set.\n" |
| 155 | " \n" |
| 156 | " $ edpykota --printer lp -S 50 -H 60 jerome\n" |
| 157 | " \n" |
| 158 | " This will set jerome's print quota on the lp printer to a soft limit\n" |
| 159 | " of 50 pages, and a hard limit of 60 pages. Both user jerome and\n" |
| 160 | " printer lp have been previously created with the pkusers and pkprinters\n" |
| 161 | " commands, respectively.\n" |
| 162 | "\n" |
| 163 | " $ edpykota -g -S 500 -H 550 financial support \n" |
| 164 | " \n" |
| 165 | " This will set print quota soft limit to 500 pages and hard limit\n" |
| 166 | " to 550 pages for groups financial and support on all printers.\n" |
| 167 | " \n" |
| 168 | " $ edpykota --reset jerome \"jo*\"\n" |
| 169 | " \n" |
| 170 | " This will reset jerome's page counter to zero on all printers, as\n" |
| 171 | " well as every user whose name begins with 'jo'.\n" |
| 172 | " Their life time page counter on each printer will be kept unchanged.\n" |
| 173 | " You can also reset the life time page counters by using the\n" |
| 174 | " --hardreset | -R command line option.\n" |
| 175 | " \n" |
| 176 | " $ edpykota --printer hpcolor --noquota jerome\n" |
| 177 | " \n" |
| 178 | " This will tell PyKota to not limit jerome when printing on the \n" |
| 179 | " hpcolor printer. All his jobs will be allowed on this printer, but \n" |
| 180 | " accounting of the pages he prints will still be kept.\n" |
| 181 | " Print Quotas for jerome on other printers are unchanged.\n" |
| 182 | " \n" |
| 183 | " $ edpykota --delete --printer \"HP*,XER*\" jerome rachel\n" |
| 184 | " \n" |
| 185 | " This will delete users jerome and rachel's print quota\n" |
| 186 | " entries on all printers which name begin with 'HP' or\n" |
| 187 | " 'XER'. The jobs printed by these users on these printers\n" |
| 188 | " will be deleted from the history.\n" |
| 189 | msgstr "" |
| 190 | |
| 191 | #, python-format |
| 192 | msgid "You can't set negative limits for %s" |
| 193 | msgstr "" |
| 194 | |
| 195 | msgid "Extracting datas" |
| 196 | msgstr "" |
| 197 | |
| 198 | #, python-format |
| 199 | msgid "Page counter : %s" |
| 200 | msgstr "" |
| 201 | |
| 202 | #, python-format |
| 203 | msgid "Lifetime page counter : %s" |
| 204 | msgstr "" |
| 205 | |
| 206 | #, python-format |
| 207 | msgid "Soft limit : %s" |
| 208 | msgstr "" |
| 209 | |
| 210 | #, python-format |
| 211 | msgid "Hard limit : %s" |
| 212 | msgstr "" |
| 213 | |
| 214 | #, python-format |
| 215 | msgid "Date limit : %s" |
| 216 | msgstr "" |
| 217 | |
| 218 | #, python-format |
| 219 | msgid "Maximum job size : %s" |
| 220 | msgstr "" |
| 221 | |
| 222 | #, python-format |
| 223 | msgid "%s pages" |
| 224 | msgstr "" |
| 225 | |
| 226 | msgid "Unlimited" |
| 227 | msgstr "" |
| 228 | |
| 229 | #, python-format |
| 230 | msgid "Warning banners printed : %s" |
| 231 | msgstr "" |
| 232 | |
| 233 | msgid "Deletion" |
| 234 | msgstr "" |
| 235 | |
| 236 | #, python-format |
| 237 | msgid "Invalid used value %s." |
| 238 | msgstr "" |
| 239 | |
| 240 | #, python-format |
| 241 | msgid "Invalid increase value %s." |
| 242 | msgstr "" |
| 243 | |
| 244 | #, python-format |
| 245 | msgid "Invalid softlimit value %s." |
| 246 | msgstr "Geçersiz esnek sınır değeri %s." |
| 247 | |
| 248 | #, python-format |
| 249 | msgid "Invalid hardlimit value %s." |
| 250 | msgstr "Geçersiz son sınır değeri %s." |
| 251 | |
| 252 | #, python-format |
| 253 | msgid "Hard limit %i is less than soft limit %i, values will be exchanged." |
| 254 | msgstr "" |
| 255 | "Son sınır %i esnek sınır olan %i değerinden daha küçük, değerler yer " |
| 256 | "değiştirildi." |
| 257 | |
| 258 | #, python-format |
| 259 | msgid "Undefined hard limit set to soft limit (%s)." |
| 260 | msgstr "" |
| 261 | |
| 262 | #, python-format |
| 263 | msgid "Undefined soft limit set to hard limit (%s)." |
| 264 | msgstr "" |
| 265 | |
| 266 | msgid "Creation" |
| 267 | msgstr "" |
| 268 | |
| 269 | #, python-format |
| 270 | msgid "" |
| 271 | "Impossible to create print quota entries if the user or group object '%s' " |
| 272 | "doesn't already exist. Please use pkusers to create it first." |
| 273 | msgstr "" |
| 274 | |
| 275 | msgid "Modification" |
| 276 | msgstr "" |
| 277 | |
| 278 | msgid "incompatible options, see help." |
| 279 | msgstr "geçersiz seçenekler, yardıma bakın." |
| 280 | |
| 281 | msgid "You have to pass user or group names on the command line" |
| 282 | msgstr "Komut satırına kullanıcı ve grup isimlerini girmelisiniz" |
| 283 | |
| 284 | #, python-format |
| 285 | msgid "" |
| 286 | "pkbanner v%(__version__)s (c) %(__years__)s %(__author__)s\n" |
| 287 | "\n" |
| 288 | "Generates banners.\n" |
| 289 | "\n" |
| 290 | "command line usage :\n" |
| 291 | "\n" |
| 292 | " pkbanner [options] [more info]\n" |
| 293 | "\n" |
| 294 | "options :\n" |
| 295 | "\n" |
| 296 | " -v | --version Prints pkbanner's version number then exits.\n" |
| 297 | " -h | --help Prints this message then exits.\n" |
| 298 | " \n" |
| 299 | " -l | --logo img Use the image as the banner's logo. The logo will\n" |
| 300 | " be drawn at the center top of the page. The default\n" |
| 301 | " logo is /usr/share/pykota/logos/pykota.jpeg\n" |
| 302 | " \n" |
| 303 | " -p | --pagesize sz Sets sz as the page size. Most well known\n" |
| 304 | " page sizes are recognized, like 'A4' or 'Letter'\n" |
| 305 | " to name a few. The default size is A4.\n" |
| 306 | " \n" |
| 307 | " -s | --savetoner s Sets the text luminosity factor to s%%. This can be \n" |
| 308 | " used to save toner. The default value is 0, which\n" |
| 309 | " means that no toner saving will be done.\n" |
| 310 | " \n" |
| 311 | " -u | --url u Uses u as an url to be written at the bottom of \n" |
| 312 | " the banner page. The default url is :\n" |
| 313 | " http://www.librelogiciel.com/software/\n" |
| 314 | " \n" |
| 315 | "examples : \n" |
| 316 | "\n" |
| 317 | " Using pkbanner directly from the command line is not recommended,\n" |
| 318 | " excepted for testing purposes. You should use pkbanner in the\n" |
| 319 | " 'startingbanner' or 'endingbanner' directives in pykota.conf\n" |
| 320 | " \n" |
| 321 | " startingbanner: /usr/bin/pkbanner --logo=\"\" --savetoner=75\n" |
| 322 | " \n" |
| 323 | " With such a setting in pykota.conf, all print jobs will be \n" |
| 324 | " prefixed with an A4 banner with no logo, and text luminosity will\n" |
| 325 | " be increased by 75%%. The PostScript output will be directly sent\n" |
| 326 | " to your printer.\n" |
| 327 | " \n" |
| 328 | " You'll find more examples in the sample configuration file included \n" |
| 329 | " in PyKota.\n" |
| 330 | msgstr "" |
| 331 | |
| 332 | msgid "Unknown" |
| 333 | msgstr "" |
| 334 | |
| 335 | msgid "Username" |
| 336 | msgstr "" |
| 337 | |
| 338 | msgid "More Info" |
| 339 | msgstr "" |
| 340 | |
| 341 | msgid "Job" |
| 342 | msgstr "" |
| 343 | |
| 344 | msgid "Date" |
| 345 | msgstr "Tarih" |
| 346 | |
| 347 | msgid "Allowed" |
| 348 | msgstr "" |
| 349 | |
| 350 | msgid "Denied" |
| 351 | msgstr "" |
| 352 | |
| 353 | msgid "Allowed with Warning" |
| 354 | msgstr "" |
| 355 | |
| 356 | msgid "Problem" |
| 357 | msgstr "" |
| 358 | |
| 359 | msgid "Cancelled" |
| 360 | msgstr "" |
| 361 | |
| 362 | msgid "Result" |
| 363 | msgstr "" |
| 364 | |
| 365 | msgid "Title" |
| 366 | msgstr "Başlık" |
| 367 | |
| 368 | msgid "Filename" |
| 369 | msgstr "DosyaAdı" |
| 370 | |
| 371 | #, python-format |
| 372 | msgid "Pages printed so far on %s" |
| 373 | msgstr "" |
| 374 | |
| 375 | msgid "Account balance" |
| 376 | msgstr "" |
| 377 | |
| 378 | msgid "Soft Limit" |
| 379 | msgstr "" |
| 380 | |
| 381 | msgid "Hard Limit" |
| 382 | msgstr "" |
| 383 | |
| 384 | msgid "Date Limit" |
| 385 | msgstr "" |
| 386 | |
| 387 | msgid "No Limit" |
| 388 | msgstr "" |
| 389 | |
| 390 | msgid "No Accounting" |
| 391 | msgstr "" |
| 392 | |
| 393 | msgid "Forbidden" |
| 394 | msgstr "" |
| 395 | |
| 396 | msgid "Printing Mode" |
| 397 | msgstr "" |
| 398 | |
| 399 | msgid "Allowed range is (0..99)" |
| 400 | msgstr "" |
| 401 | |
| 402 | #, python-format |
| 403 | msgid "Invalid 'savetoner' option %s : %s" |
| 404 | msgstr "" |
| 405 | |
| 406 | #, python-format |
| 407 | msgid "Invalid 'pagesize' option %s, defaulting to A4." |
| 408 | msgstr "" |
| 409 | |
| 410 | #, python-format |
| 411 | msgid "" |
| 412 | "pkmail v%(__version__)s (c) %(__years__)s %(__author__)s\n" |
| 413 | "\n" |
| 414 | "Email gateway for PyKota.\n" |
| 415 | "\n" |
| 416 | "command line usage :\n" |
| 417 | "\n" |
| 418 | " pkmail [options]\n" |
| 419 | "\n" |
| 420 | "options :\n" |
| 421 | "\n" |
| 422 | " -v | --version Prints pkmail's version number then exits.\n" |
| 423 | " -h | --help Prints this message then exits.\n" |
| 424 | " \n" |
| 425 | " \n" |
| 426 | " This command is meant to be used from your mail server's aliases file,\n" |
| 427 | " as a pipe. It will then accept commands send to it in email messages,\n" |
| 428 | " and will send the answer to the command's originator.\n" |
| 429 | " \n" |
| 430 | " To use this command, create an email alias in /etc/aliases with\n" |
| 431 | " the following format :\n" |
| 432 | " \n" |
| 433 | " pykotacmd: \"|/usr/bin/pkmail\"\n" |
| 434 | " \n" |
| 435 | " Then run the 'newaliases' command to regenerate the aliases database.\n" |
| 436 | " \n" |
| 437 | " You can now send commands by email to 'pykotacmd@yourdomain.com', with\n" |
| 438 | " the command in the subject.\n" |
| 439 | " \n" |
| 440 | " List of supported commands :\n" |
| 441 | " \n" |
| 442 | " report [username]\n" |
| 443 | " \n" |
| 444 | " NB : For pkmail to work correctly, you may have to put the 'mail'\n" |
| 445 | " system user in the 'pykota' system group to ensure this user can\n" |
| 446 | " read the /etc/pykota/pykotadmin.conf file, and restart your\n" |
| 447 | " mail server (e.g. /etc/init.d/exim restart). It is strongly advised\n" |
| 448 | " that you think at least twice before doing this though.\n" |
| 449 | " \n" |
| 450 | " Use at your own risk !\n" |
| 451 | msgstr "" |
| 452 | |
| 453 | #, python-format |
| 454 | msgid "" |
| 455 | "pkturnkey v%(__version__)s (c) %(__years__)s %(__author__)s\n" |
| 456 | "\n" |
| 457 | "A turn key tool for PyKota. When launched, this command will initialize\n" |
| 458 | "PyKota's database with all existing print queues and some or all users.\n" |
| 459 | "For now, no prices or limits are set, so printing is fully accounted\n" |
| 460 | "for, but not limited. That's why you'll probably want to also use\n" |
| 461 | "edpykota once the database has been initialized.\n" |
| 462 | "\n" |
| 463 | "command line usage :\n" |
| 464 | "\n" |
| 465 | " pkturnkey [options] [printqueues names]\n" |
| 466 | "\n" |
| 467 | "options :\n" |
| 468 | "\n" |
| 469 | " -v | --version Prints pkturnkey version number then exits.\n" |
| 470 | " -h | --help Prints this message then exits.\n" |
| 471 | " \n" |
| 472 | " -c | --doconf Give hints about what to put into pykota.conf\n" |
| 473 | " \n" |
| 474 | " -d | --dousers Manages users accounts as well.\n" |
| 475 | " \n" |
| 476 | " -D | --dogroups Manages users groups as well.\n" |
| 477 | " Implies -d | --dousers.\n" |
| 478 | " \n" |
| 479 | " -e | --emptygroups Includes empty groups.\n" |
| 480 | " \n" |
| 481 | " -f | --force Modifies the database instead of printing what\n" |
| 482 | " it would do.\n" |
| 483 | " \n" |
| 484 | " -u | --uidmin uid Only adds users whose uid is greater than or equal " |
| 485 | "to\n" |
| 486 | " uid. You can pass an username there as well, and its\n" |
| 487 | " uid will be used automatically.\n" |
| 488 | " If not set, 0 will be used automatically.\n" |
| 489 | " Implies -d | --dousers.\n" |
| 490 | " \n" |
| 491 | " -U | --uidmax uid Only adds users whose uid is lesser than or equal to\n" |
| 492 | " uid. You can pass an username there as well, and its\n" |
| 493 | " uid will be used automatically.\n" |
| 494 | " If not set, a large value will be used " |
| 495 | "automatically.\n" |
| 496 | " Implies -d | --dousers.\n" |
| 497 | "\n" |
| 498 | " -g | --gidmin gid Only adds groups whose gid is greater than or equal " |
| 499 | "to\n" |
| 500 | " gid. You can pass a groupname there as well, and its\n" |
| 501 | " gid will be used automatically.\n" |
| 502 | " If not set, 0 will be used automatically.\n" |
| 503 | " Implies -D | --dogroups.\n" |
| 504 | " \n" |
| 505 | " -G | --gidmax gid Only adds groups whose gid is lesser than or equal " |
| 506 | "to\n" |
| 507 | " gid. You can pass a groupname there as well, and its\n" |
| 508 | " gid will be used automatically.\n" |
| 509 | " If not set, a large value will be used " |
| 510 | "automatically.\n" |
| 511 | " Implies -D | --dogroups.\n" |
| 512 | "\n" |
| 513 | "examples : \n" |
| 514 | "\n" |
| 515 | " $ pkturnkey --dousers --uidmin jerome\n" |
| 516 | "\n" |
| 517 | " Will simulate the initialization of PyKota's database will all existing\n" |
| 518 | " printers and print accounts for all users whose uid is greater than\n" |
| 519 | " or equal to jerome's one. Won't manage any users group.\n" |
| 520 | " \n" |
| 521 | " To REALLY initialize the database instead of simulating it, please\n" |
| 522 | " use the -f | --force command line switch.\n" |
| 523 | " \n" |
| 524 | " You can limit the initialization to only a subset of the existing\n" |
| 525 | " printers, by passing their names at the end of the command line.\n" |
| 526 | msgstr "" |
| 527 | |
| 528 | #, python-format |
| 529 | msgid "" |
| 530 | "Printer %s is not managed by PyKota yet. Please modify printers.conf and " |
| 531 | "restart CUPS." |
| 532 | msgstr "" |
| 533 | |
| 534 | msgid "You're not allowed to use this command." |
| 535 | msgstr "Bu komutu kullanmaya yetkili değilsiniz." |
| 536 | |
| 537 | msgid "Please be patient..." |
| 538 | msgstr "" |
| 539 | |
| 540 | msgid "Don't worry, the database WILL NOT BE MODIFIED." |
| 541 | msgstr "" |
| 542 | |
| 543 | msgid "Please WORRY NOW, the database WILL BE MODIFIED." |
| 544 | msgstr "" |
| 545 | |
| 546 | msgid "System users will have a print account as well !" |
| 547 | msgstr "" |
| 548 | |
| 549 | #, python-format |
| 550 | msgid "Unknown username %s : %s" |
| 551 | msgstr "" |
| 552 | |
| 553 | msgid "System groups will have a print account as well !" |
| 554 | msgstr "" |
| 555 | |
| 556 | #, python-format |
| 557 | msgid "Unknown groupname %s : %s" |
| 558 | msgstr "" |
| 559 | |
| 560 | msgid "Simulation terminated." |
| 561 | msgstr "" |
| 562 | |
| 563 | msgid "Database initialized !" |
| 564 | msgstr "" |
| 565 | |
| 566 | msgid "The --uidmin or --uidmax command line option implies --dousers as well." |
| 567 | msgstr "" |
| 568 | |
| 569 | msgid "" |
| 570 | "The --gidmin or --gidmax command line option implies --dogroups as well." |
| 571 | msgstr "" |
| 572 | |
| 573 | msgid "The --dogroups command line option implies --dousers as well." |
| 574 | msgstr "" |
| 575 | |
| 576 | #, python-format |
| 577 | msgid "" |
| 578 | "pykosd v%(__version__)s (c) %(__years__)s %(__author__)s\n" |
| 579 | "\n" |
| 580 | "An OSD quota monitor for PyKota.\n" |
| 581 | "\n" |
| 582 | "command line usage :\n" |
| 583 | "\n" |
| 584 | " pykosd [options]\n" |
| 585 | "\n" |
| 586 | "options :\n" |
| 587 | "\n" |
| 588 | " -v | --version Prints pykosd's version number then exits.\n" |
| 589 | " -h | --help Prints this message then exits.\n" |
| 590 | " \n" |
| 591 | " -c | --color #rrggbb Sets the color to use for display as an hexadecimal\n" |
| 592 | " triplet, for example #FF0000 is 100%% red.\n" |
| 593 | " Defaults to 100%% green (#00FF00).\n" |
| 594 | " \n" |
| 595 | " -d | --duration d Sets the duration of the display in seconds. \n" |
| 596 | " Defaults to 3 seconds.\n" |
| 597 | " \n" |
| 598 | " -f | --font f Sets the font to use for " |
| 599 | "display. \n" |
| 600 | " Defaults to the Python OSD library's default.\n" |
| 601 | " \n" |
| 602 | " -l | --loop n Sets the number of times the info will be displayed.\n" |
| 603 | " Defaults to 0, which means loop forever.\n" |
| 604 | " \n" |
| 605 | " -s | --sleep s Sets the sleeping duration between two displays \n" |
| 606 | " in seconds. Defaults to 180 seconds (3 minutes).\n" |
| 607 | " \n" |
| 608 | " \n" |
| 609 | "examples : \n" |
| 610 | "\n" |
| 611 | " $ pykosd -s 60 --loop 5\n" |
| 612 | " \n" |
| 613 | " Will launch pykosd. Display will be refreshed every 60 seconds,\n" |
| 614 | " and will last for 3 seconds (the default) each time. After five\n" |
| 615 | " iterations, the program will exit.\n" |
| 616 | msgstr "" |
| 617 | |
| 618 | #, python-format |
| 619 | msgid "Invalid duration option %s" |
| 620 | msgstr "Geçersiz süre seçeneği %s" |
| 621 | |
| 622 | #, python-format |
| 623 | msgid "Invalid loop option %s" |
| 624 | msgstr "Geçersiz döngü seçeneği %s" |
| 625 | |
| 626 | #, python-format |
| 627 | msgid "Invalid sleep option %s" |
| 628 | msgstr "Geçersiz bekleme seçeneği %s" |
| 629 | |
| 630 | #, python-format |
| 631 | msgid "Invalid color option %s" |
| 632 | msgstr "Geçersiz renk seçeneği %s" |
| 633 | |
| 634 | #, python-format |
| 635 | msgid "User %s doesn't exist in PyKota's database" |
| 636 | msgstr "%s kullanıcısı PyKota veritabanında bulunmuyor" |
| 637 | |
| 638 | #, python-format |
| 639 | msgid "Pages used on %s : %s" |
| 640 | msgstr "%s üzerinde kullanılan sayfalar: %s" |
| 641 | |
| 642 | #, python-format |
| 643 | msgid "PyKota Units left : %.2f" |
| 644 | msgstr "Kalan PyKota birimi : %.2f" |
| 645 | |
| 646 | msgid "Printing denied." |
| 647 | msgstr "" |
| 648 | |
| 649 | msgid "Printing not limited." |
| 650 | msgstr "" |
| 651 | |
| 652 | msgid "Printing not limited, no accounting." |
| 653 | msgstr "" |
| 654 | |
| 655 | #, python-format |
| 656 | msgid "" |
| 657 | "repykota v%(__version__)s (c) %(__years__)s %(__author__)s\n" |
| 658 | "\n" |
| 659 | "Generates print quota reports.\n" |
| 660 | "\n" |
| 661 | "command line usage :\n" |
| 662 | "\n" |
| 663 | " repykota [options] \n" |
| 664 | "\n" |
| 665 | "options :\n" |
| 666 | "\n" |
| 667 | " -v | --version Prints repykota's version number then exits.\n" |
| 668 | " -h | --help Prints this message then exits.\n" |
| 669 | " \n" |
| 670 | " -u | --users Generates a report on users quota, this is \n" |
| 671 | " the default.\n" |
| 672 | " \n" |
| 673 | " -g | --groups Generates a report on group quota instead of users.\n" |
| 674 | " \n" |
| 675 | " -i | --ingroups g1[,g2...] Only lists users who are members of these\n" |
| 676 | " groups. Reserved to PyKota Administrators.\n" |
| 677 | " \n" |
| 678 | " -P | --printer p Report quotas on this printer only. Actually p can\n" |
| 679 | " use wildcards characters to select only\n" |
| 680 | " some printers. The default value is *, meaning\n" |
| 681 | " all printers.\n" |
| 682 | " You can specify several names or wildcards, \n" |
| 683 | " by separating them with commas.\n" |
| 684 | " \n" |
| 685 | "examples : \n" |
| 686 | "\n" |
| 687 | " $ repykota --printer lp\n" |
| 688 | " \n" |
| 689 | " This will print the quota status for all users who use the lp printer.\n" |
| 690 | "\n" |
| 691 | " $ repykota \n" |
| 692 | " \n" |
| 693 | " This will print the quota status for all users on all printers.\n" |
| 694 | " \n" |
| 695 | " $ repykota --printer \"laser*,*pson\" jerome \"jo*\"\n" |
| 696 | " \n" |
| 697 | " This will print the quota status for user jerome and all users\n" |
| 698 | " whose name begins with \"jo\" on all printers which name begins\n" |
| 699 | " with \"laser\" or ends with \"pson\".\n" |
| 700 | " \n" |
| 701 | " If launched by an user who is not a PyKota administrator, additionnal\n" |
| 702 | " arguments representing users or groups names are ignored, and only the\n" |
| 703 | " current user/group is reported.\n" |
| 704 | msgstr "" |
| 705 | |
| 706 | msgid "Option --ingroups is reserved to PyKota Administrators." |
| 707 | msgstr "" |
| 708 | |
| 709 | #, python-format |
| 710 | msgid "There's no printer matching %s" |
| 711 | msgstr "%s ile eşleşen bir yazıcı yok" |
| 712 | |
| 713 | #, python-format |
304 | | " - history : dumps the jobs history.\n" |
305 | | " - users : dumps users.\n" |
306 | | " - groups : dumps user groups.\n" |
307 | | " - printers : dump printers.\n" |
308 | | " - upquotas : dump user quotas.\n" |
309 | | " - gpquotas : dump user groups quotas.\n" |
310 | | " - payments : dumps user payments.\n" |
311 | | " - pmembers : dumps printer groups members.\n" |
312 | | " - umembers : dumps user groups members.\n" |
313 | | " - billingcodes : dumps billing codes.\n" |
314 | | " \n" |
315 | | " NB : the -d | --data command line option \n" |
316 | | " is MANDATORY.\n" |
317 | | " \n" |
318 | | " -f | --format fmt Dumps datas in the 'fmt' format. When not specified,\n" |
319 | | " the format is to dump datas in the csv format (comma\n" |
320 | | " separated values). All data dumped is between double\n" |
321 | | " quotes. Allowed formats are :\n" |
| 1074 | " -C | --checkauth When --ask is used and both an 'username' and " |
| 1075 | "a\n" |
| 1076 | " 'password' are asked to the end user, then\n" |
| 1077 | " pknotify will try to authenticate the user\n" |
| 1078 | " through PAM. If authentified, this program\n" |
| 1079 | " will print \"AUTH=YES\", else \"AUTH=NO\".\n" |
| 1080 | " If a field is missing, \"AUTH=IMPOSSIBLE\" " |
| 1081 | "will\n" |
| 1082 | " be printed. If the user is authenticated, then\n" |
| 1083 | " \"USERNAME=xxxx\" will be printed as well.\n" |
| 1084 | " \n" |
| 1085 | " -c | --confirm Tells pknotify to ask for either a " |
| 1086 | "confirmation \n" |
| 1087 | " or abortion.\n" |
| 1088 | " \n" |
| 1089 | " -D | --denyafter N With --checkauth above, makes pknotify " |
| 1090 | "loop \n" |
| 1091 | " up to N times if the password is incorrect.\n" |
| 1092 | " After having reached the limit, \"DENY\" will\n" |
| 1093 | " be printed, which effectively rejects the job.\n" |
| 1094 | " The default value of N is 1, meaning the job\n" |
| 1095 | " is denied after the first unsuccessful try.\n" |
| 1096 | " \n" |
| 1097 | " -n | --notify Tells pknotify to send an informational " |
| 1098 | "message\n" |
| 1099 | " message to the end user.\n" |
| 1100 | " \n" |
| 1101 | " -q | --quit Tells pknotify to send a message asking the\n" |
| 1102 | " PyKotIcon application to exit. This option can\n" |
| 1103 | " be combined with the other ones to make " |
| 1104 | "PyKotIcon\n" |
| 1105 | " exit after having sent the answer from the " |
| 1106 | "dialog.\n" |
| 1107 | " \n" |
| 1108 | " -t | --timeout T Tells pknotify to ignore the end user's answer " |
| 1109 | "if\n" |
| 1110 | " it comes pas T seconds after the dialog box " |
| 1111 | "being\n" |
| 1112 | " opened. The default value is 0 seconds, which \n" |
| 1113 | " tells pknotify to wait indefinitely.\n" |
| 1114 | " Use this option to avoid having an user who\n" |
| 1115 | " leaved his computer stall a whole print queue.\n" |
| 1116 | " \n" |
| 1117 | " You MUST specify either --ask, --confirm, --notify or --quit.\n" |
| 1118 | "\n" |
| 1119 | " arguments : \n" |
| 1120 | " \n" |
| 1121 | " -a | --ask : Several arguments are accepted, or the form\n" |
| 1122 | " \"label:varname:defaultvalue\". The result will\n" |
| 1123 | " be printed to stdout in the following format :\n" |
| 1124 | " VAR1NAME=VAR1VALUE\n" |
| 1125 | " VAR2NAME=VAR2VALUE\n" |
| 1126 | " ...\n" |
| 1127 | " If the dialog was cancelled, nothing will be\n" |
| 1128 | " printed. If one of the varname is 'password'\n" |
| 1129 | " then this field is asked as a password (you won't\n" |
| 1130 | " see what you type in), and is NOT printed. Although\n" |
| 1131 | " it is not printed, it will be used to check if\n" |
| 1132 | " authentication is valid if you specify --checkauth.\n" |
| 1133 | " \n" |
| 1134 | " -c | --confirm : A single argument is expected, representing the\n" |
| 1135 | " message to display. If the dialog is confirmed\n" |
| 1136 | " then pknotify will print OK, else CANCEL.\n" |
| 1137 | " \n" |
| 1138 | " -n | --notify : A single argument is expected, representing " |
| 1139 | "the \n" |
| 1140 | " message to display. In this case pknotify will\n" |
| 1141 | " always print OK.\n" |
| 1142 | " \n" |
| 1143 | "examples : \n" |
| 1144 | "\n" |
| 1145 | " pknotify -d client:7654 --confirm \"This job costs :\n" |
| 1146 | "10 credits !\"\n" |
| 1147 | " \n" |
| 1148 | " Would display the cost of a print job and asks for confirmation.\n" |
| 1149 | " \n" |
| 1150 | " pknotify --destination $PYKOTAJOBORIGINATINGHOSTNAME:7654 \\\n" |
| 1151 | " --checkauth --ask \"Your name:username:\" \"Your password:" |
| 1152 | "password:\"\n" |
| 1153 | " \n" |
| 1154 | " Asks an username and password, and checks if they are valid. \n" |
| 1155 | " NB : The PYKOTAJOBORIGINATINGHOSTNAME environment variable is\n" |
| 1156 | " only set if you launch pknotify from cupspykota through a directive\n" |
| 1157 | " in ~pykota/pykota.conf\n" |
| 1158 | " \n" |
| 1159 | " The TCP port you'll use must be reachable on the client from the\n" |
| 1160 | " print server.\n" |
| 1161 | msgstr "" |
| 1162 | |
| 1163 | msgid "You MUST install PyPAM for this functionnality to work !" |
| 1164 | msgstr "" |
| 1165 | |
| 1166 | #, python-format |
| 1167 | msgid "Authentication error for user %s : %s" |
| 1168 | msgstr "" |
| 1169 | |
| 1170 | #, python-format |
| 1171 | msgid "Internal error : can't authenticate user %s" |
| 1172 | msgstr "" |
| 1173 | |
| 1174 | #, python-format |
| 1175 | msgid "Password correct for user %s" |
| 1176 | msgstr "" |
| 1177 | |
| 1178 | #, python-format |
| 1179 | msgid "" |
| 1180 | "The end user at %s:%i didn't answer within %i seconds. The print job will be " |
| 1181 | "cancelled." |
| 1182 | msgstr "" |
| 1183 | |
| 1184 | msgid "Connection error" |
| 1185 | msgstr "" |
| 1186 | |
| 1187 | msgid "some options are mandatory, see help." |
| 1188 | msgstr "" |
| 1189 | |
| 1190 | msgid "some options require arguments, see help." |
| 1191 | msgstr "" |
| 1192 | |
| 1193 | #, python-format |
| 1194 | msgid "" |
| 1195 | "pkusers v%(__version__)s (c) %(__years__)s %(__author__)s\n" |
| 1196 | "\n" |
| 1197 | "An Users and Groups Manager for PyKota.\n" |
| 1198 | "\n" |
| 1199 | "command line usage :\n" |
| 1200 | "\n" |
| 1201 | " pkusers [options] user1 user2 user3 ... userN\n" |
| 1202 | " \n" |
| 1203 | "or : \n" |
| 1204 | "\n" |
| 1205 | " pkusers --groups [options] group1 group2 group3 ... groupN\n" |
| 1206 | "\n" |
| 1207 | "options :\n" |
| 1208 | "\n" |
| 1209 | " -v | --version Prints pkusers's version number then exits.\n" |
| 1210 | " -h | --help Prints this message then exits.\n" |
| 1211 | " \n" |
| 1212 | " -a | --add Adds users if they don't exist on the database.\n" |
| 1213 | " If they exist, they are modified unless\n" |
| 1214 | " -s|--skipexisting is also used.\n" |
838 | | " -v | --version Prints pkbanner's version number then exits.\n" |
| 1514 | " -v | --version Prints dumpykota's version number then exits.\n" |
| 1515 | " -h | --help Prints this message then exits.\n" |
| 1516 | " \n" |
| 1517 | " -d | --data type Dumps 'type' datas. Allowed types are :\n" |
| 1518 | " \n" |
| 1519 | " - history : dumps the jobs history.\n" |
| 1520 | " - users : dumps users.\n" |
| 1521 | " - groups : dumps user groups.\n" |
| 1522 | " - printers : dump printers.\n" |
| 1523 | " - upquotas : dump user quotas.\n" |
| 1524 | " - gpquotas : dump user groups quotas.\n" |
| 1525 | " - payments : dumps user payments.\n" |
| 1526 | " - pmembers : dumps printer groups members.\n" |
| 1527 | " - umembers : dumps user groups members.\n" |
| 1528 | " - billingcodes : dumps billing codes.\n" |
| 1529 | " - all : dumps all PyKota datas. The output format\n" |
| 1530 | " is always XML in this case.\n" |
| 1531 | " \n" |
| 1532 | " NB : the -d | --data command line option \n" |
| 1533 | " is MANDATORY.\n" |
| 1534 | " \n" |
| 1535 | " -f | --format fmt Dumps datas in the 'fmt' format. When not specified,\n" |
| 1536 | " the format is to dump datas in the csv format (comma\n" |
| 1537 | " separated values). All data dumped is between double\n" |
| 1538 | " quotes. Allowed formats are :\n" |
| 1539 | " \n" |
| 1540 | " - csv : separate datas with commas\n" |
| 1541 | " - ssv : separate datas with semicolons\n" |
| 1542 | " - tsv : separate datas with tabs\n" |
| 1543 | " - xml : dump data as XML \n" |
| 1544 | " - cups : dump datas in CUPS' page_log format :\n" |
| 1545 | " ONLY AVAILABLE WITH --data history\n" |
| 1546 | " \n" |
| 1547 | " -o | --output fname All datas will be dumped to the file instead of\n" |
| 1548 | " to the standard output. The special '-' filename\n" |
| 1549 | " is the default value and means stdout.\n" |
| 1550 | " WARNING : existing files are truncated !\n" |
| 1551 | "\n" |
| 1552 | " -s | --sum Summarize the selected datas.\n" |
| 1553 | " ONLY AVAILABLE WITH --data history or payments\n" |
| 1554 | "\n" |
| 1555 | " Use the filter expressions to extract only parts of the \n" |
| 1556 | " datas. Allowed filters are of the form :\n" |
| 1557 | " \n" |
| 1558 | " key=value\n" |
| 1559 | " \n" |
| 1560 | " Allowed keys for now are : \n" |
| 1561 | " \n" |
| 1562 | " username User's name\n" |
| 1563 | " groupname Users group's name\n" |
| 1564 | " printername Printer's name\n" |
| 1565 | " pgroupname Printers group's name\n" |
| 1566 | " hostname Client's hostname\n" |
| 1567 | " billingcode Job's billing code\n" |
| 1568 | " start Job's date of printing\n" |
| 1569 | " end Job's date of printing\n" |
| 1570 | " \n" |
| 1571 | " Contrary to other PyKota management tools, wildcard characters are not \n" |
| 1572 | " expanded, so you can't use them.\n" |
| 1573 | " \n" |
| 1574 | " NB : not all keys are allowed for each data type, so the result may be \n" |
| 1575 | " empty if you use a key not available for a particular data type.\n" |
| 1576 | " \n" |
| 1577 | "Examples :\n" |
| 1578 | "\n" |
| 1579 | " $ dumpykota --data history --format csv >myfile.csv\n" |
| 1580 | " \n" |
| 1581 | " This dumps the history in a comma separated values file, for possible\n" |
| 1582 | " use in a spreadsheet.\n" |
| 1583 | " \n" |
| 1584 | " $ dumpykota --data users --format xml -o users.xml\n" |
| 1585 | " \n" |
| 1586 | " Dumps all users datas to the users.xml file.\n" |
| 1587 | " \n" |
| 1588 | " $ dumpykota --data history printername=HP2100 username=jerome\n" |
| 1589 | " \n" |
| 1590 | " Dumps the job history for user jerome on printer HP2100 only.\n" |
| 1591 | " \n" |
| 1592 | " $ dumpykota --data history start=200503 end=20050730234615\n" |
| 1593 | " \n" |
| 1594 | " Dumps all jobs printed between March 1st 2005 at midnight and\n" |
| 1595 | " July 30th 2005 at 23 hours 46 minutes and 15 secondes included.\n" |
| 1596 | msgstr "" |
| 1597 | |
| 1598 | msgid "The -d | --data command line option is mandatory, see help." |
| 1599 | msgstr "-d | --data komut satırı seçeneği zorunludur, yardıma bakın." |
| 1600 | |
| 1601 | #, python-format |
| 1602 | msgid "" |
| 1603 | "pkinvoice v%(__version__)s (c) %(__years__)s %(__author__)s\n" |
| 1604 | "\n" |
| 1605 | "An invoice generator for PyKota.\n" |
| 1606 | "\n" |
| 1607 | "command line usage :\n" |
| 1608 | "\n" |
| 1609 | " pkinvoice [options] user1 user2 ... userN\n" |
| 1610 | "\n" |
| 1611 | "options :\n" |
| 1612 | "\n" |
| 1613 | " -v | --version Prints edpykota's version number then exits.\n" |
848 | | " \n" |
849 | | " -s | --savetoner s Sets the text luminosity factor to s%%. This can be \n" |
850 | | " used to save toner. The default value is 0, which\n" |
851 | | " means that no toner saving will be done.\n" |
852 | | " \n" |
853 | | " -u | --url u Uses u as an url to be written at the bottom of \n" |
854 | | " the banner page. The default url is :\n" |
855 | | " http://www.librelogiciel.com/software/\n" |
856 | | " \n" |
857 | | "examples : \n" |
858 | | "\n" |
859 | | " Using pkbanner directly from the command line is not recommended,\n" |
860 | | " excepted for testing purposes. You should use pkbanner in the\n" |
861 | | " 'startingbanner' or 'endingbanner' directives in pykota.conf\n" |
862 | | " \n" |
863 | | " startingbanner: /usr/bin/pkbanner --logo=\"\" --savetoner=75\n" |
864 | | " \n" |
865 | | " With such a setting in pykota.conf, all print jobs will be \n" |
866 | | " prefixed with an A4 banner with no logo, and text luminosity will\n" |
867 | | " be increased by 75%%. The PostScript output will be directly sent\n" |
868 | | " to your printer.\n" |
869 | | " \n" |
870 | | " You'll find more examples in the sample configuration file included \n" |
871 | | " in PyKota.\n" |
872 | | msgstr "" |
873 | | |
874 | | msgid "Unknown" |
875 | | msgstr "" |
876 | | |
877 | | msgid "Username" |
878 | | msgstr "" |
879 | | |
880 | | msgid "More Info" |
881 | | msgstr "" |
882 | | |
883 | | msgid "Job" |
884 | | msgstr "" |
885 | | |
886 | | msgid "Date" |
887 | | msgstr "Tarih" |
888 | | |
889 | | msgid "Allowed" |
890 | | msgstr "" |
891 | | |
892 | | msgid "Denied" |
893 | | msgstr "" |
894 | | |
895 | | msgid "Allowed with Warning" |
896 | | msgstr "" |
897 | | |
898 | | msgid "Result" |
899 | | msgstr "" |
900 | | |
901 | | msgid "Title" |
902 | | msgstr "Başlık" |
903 | | |
904 | | msgid "Filename" |
905 | | msgstr "DosyaAdı" |
906 | | |
907 | | #, python-format |
908 | | msgid "Pages printed so far on %s" |
909 | | msgstr "" |
910 | | |
911 | | msgid "Account balance" |
912 | | msgstr "" |
913 | | |
914 | | msgid "Soft Limit" |
915 | | msgstr "" |
916 | | |
917 | | msgid "Hard Limit" |
918 | | msgstr "" |
919 | | |
920 | | msgid "Date Limit" |
921 | | msgstr "" |
922 | | |
923 | | msgid "Allowed range is (0..99)" |
924 | | msgstr "" |
925 | | |
926 | | #, python-format |
927 | | msgid "Invalid 'savetoner' option %s : %s" |
928 | | msgstr "" |
929 | | |
930 | | #, python-format |
931 | | msgid "Invalid 'pagesize' option %s, defaulting to A4." |
932 | | msgstr "" |
933 | | |
934 | | #, python-format |
935 | | msgid "" |
936 | | "pkbcodes v%(__version__)s (c) %(__years__)s %(__author__)s\n" |
937 | | "\n" |
938 | | "A billing codes Manager for PyKota.\n" |
939 | | "\n" |
940 | | "command line usage :\n" |
941 | | "\n" |
942 | | " pkbcodes [options] code1 code2 code3 ... codeN\n" |
943 | | "\n" |
944 | | "options :\n" |
945 | | "\n" |
946 | | " -v | --version Prints pkbcodes version number then exits.\n" |
947 | | " -h | --help Prints this message then exits.\n" |
948 | | " \n" |
949 | | " -a | --add Adds billing codes if they don't exist in PyKota's\n" |
950 | | " database. If they exist, they are modified\n" |
951 | | " unless -s|--skipexisting is also used.\n" |
952 | | "\n" |
953 | | " -d | --delete Deletes billing codes from PyKota's database.\n" |
954 | | " NB : the history entries with this billing code\n" |
955 | | " are not deleted, voluntarily.\n" |
956 | | "\n" |
957 | | " -D | --description d Adds a textual description to billing codes.\n" |
958 | | "\n" |
959 | | " -l | --list List informations about the billing codes.\n" |
960 | | "\n" |
961 | | " -r | --reset Resets the billing codes' balance and page counters\n" |
962 | | " to 0.\n" |
963 | | "\n" |
964 | | " -s | --skipexisting In combination with the --add option above, tells\n" |
965 | | " pkbcodes to not modify existing billing codes.\n" |
966 | | "\n" |
967 | | " code1 through codeN can contain wildcards if the --add option\n" |
968 | | " is not set.\n" |
969 | | "\n" |
970 | | "examples : \n" |
971 | | "\n" |
972 | | " $ pkbcodes --add -D \"My project\" myproj\n" |
973 | | "\n" |
974 | | " Will create the myproj billing code with \"My project\"\n" |
975 | | " as the description.\n" |
976 | | "\n" |
977 | | " $ pkbcodes --delete \"*\"\n" |
978 | | "\n" |
979 | | " This will completely delete all the billing codes, but without\n" |
980 | | " removing any matching job from the history. USE WITH CARE ANYWAY !\n" |
981 | | " \n" |
982 | | " $ pkbcodes --list \"my*\"\n" |
983 | | " \n" |
984 | | " This will list all billing codes which name begins with 'my'.\n" |
985 | | msgstr "" |
986 | | |
987 | | #, python-format |
988 | | msgid "Billing code [%s] already exists, skipping." |
989 | | msgstr "" |
990 | | |
991 | | #, python-format |
992 | | msgid "Billing code [%s] already exists, will be modified." |
993 | | msgstr "" |
994 | | |
995 | | #, python-format |
996 | | msgid "Impossible to add billingcode %s" |
997 | | msgstr "" |
998 | | |
999 | | #, python-format |
1000 | | msgid "There's no billingcode matching %s" |
1001 | | msgstr "" |
1002 | | |
1003 | | msgid "pages" |
1004 | | msgstr "" |
1005 | | |
1006 | | msgid "and" |
1007 | | msgstr "" |
1008 | | |
1009 | | msgid "credits" |
1010 | | msgstr "" |
1011 | | |
1012 | | msgid "You have to pass billing codes on the command line" |
1013 | | msgstr "" |
1014 | | |
1015 | | #, python-format |
1016 | | msgid "" |
1017 | | "pkmail v%(__version__)s (c) %(__years__)s %(__author__)s\n" |
1018 | | "\n" |
1019 | | "Email gateway for PyKota.\n" |
1020 | | "\n" |
1021 | | "command line usage :\n" |
1022 | | "\n" |
1023 | | " pkmail [options]\n" |
1024 | | "\n" |
1025 | | "options :\n" |
1026 | | "\n" |
1027 | | " -v | --version Prints pkmail's version number then exits.\n" |
1028 | | " -h | --help Prints this message then exits.\n" |
1029 | | " \n" |
1030 | | " \n" |
1031 | | " This command is meant to be used from your mail server's aliases file,\n" |
1032 | | " as a pipe. It will then accept commands send to it in email messages,\n" |
1033 | | " and will send the answer to the command's originator.\n" |
1034 | | " \n" |
1035 | | " To use this command, create an email alias in /etc/aliases with\n" |
1036 | | " the following format :\n" |
1037 | | " \n" |
1038 | | " pykotacmd: \"|/usr/bin/pkmail\"\n" |
1039 | | " \n" |
1040 | | " Then run the 'newaliases' command to regenerate the aliases database.\n" |
1041 | | " \n" |
1042 | | " You can now send commands by email to 'pykotacmd@yourdomain.com', with\n" |
1043 | | " the command in the subject.\n" |
1044 | | " \n" |
1045 | | " List of supported commands :\n" |
1046 | | " \n" |
1047 | | " report [username]\n" |
1048 | | " \n" |
1049 | | " NB : For pkmail to work correctly, you may have to put the 'mail'\n" |
1050 | | " system user in the 'pykota' system group to ensure this user can\n" |
1051 | | " read the /etc/pykota/pykotadmin.conf file, and restart your\n" |
1052 | | " mail server (e.g. /etc/init.d/exim restart). It is strongly advised\n" |
1053 | | " that you think at least twice before doing this though.\n" |
1054 | | " \n" |
1055 | | " Use at your own risk !\n" |
| 1623 | " \n" |
| 1624 | " -n | --number N Sets the number of the first invoice. This number\n" |
| 1625 | " will automatically be incremented for each invoice.\n" |
| 1626 | " \n" |
| 1627 | " -o | --output f.pdf Defines the name of the invoice file which will\n" |
| 1628 | " be generated as a PDF document. If not set or\n" |
| 1629 | " set to '-', the PDF document is sent to standard\n" |
| 1630 | " output. \n" |
| 1631 | " \n" |
| 1632 | " -u | --unit u Defines the name of the unit to use on the " |
| 1633 | "invoice. \n" |
| 1634 | " The default unit is 'Credits', optionally translated\n" |
| 1635 | " to your native language if it is supported by " |
| 1636 | "PyKota.\n" |
| 1637 | " \n" |
| 1638 | " -V | --vat p Sets the percent value of the applicable VAT to be\n" |
| 1639 | " exposed. The default is 0.0, meaning no VAT\n" |
| 1640 | " information will be included.\n" |
| 1641 | " \n" |
| 1642 | " -s | --start date Sets the starting date for the print jobs invoiced.\n" |
| 1643 | " \n" |
| 1644 | " -e | --end date Sets the ending date for the print jobs invoiced.\n" |
| 1645 | " \n" |
| 1646 | " user1 through userN can use wildcards if needed. If no user argument is\n" |
| 1647 | " used, a wildcard of '*' is assumed, meaning include all users.\n" |
| 1648 | " \n" |
| 1649 | " Dates formating with --start and --end :\n" |
| 1650 | " \n" |
| 1651 | " YYYY : year boundaries\n" |
| 1652 | " YYYYMM : month boundaries\n" |
| 1653 | " YYYYMMDD : day boundaries\n" |
| 1654 | " YYYYMMDDhh : hour boundaries\n" |
| 1655 | " YYYYMMDDhhmm : minute boundaries\n" |
| 1656 | " YYYYMMDDhhmmss : second boundaries\n" |
| 1657 | " yesterday[+-NbDays] : yesterday more or less N days (e.g. : yesterday-" |
| 1658 | "15)\n" |
| 1659 | " today[+-NbDays] : today more or less N days (e.g. : today-15)\n" |
| 1660 | " tomorrow[+-NbDays] : tomorrow more or less N days (e.g. : tomorrow-15)\n" |
| 1661 | " now[+-NbDays] : now more or less N days (e.g. now-15)\n" |
| 1662 | "\n" |
| 1663 | " 'now' and 'today' are not exactly the same since today represents the " |
| 1664 | "first\n" |
| 1665 | " or last second of the day depending on if it's used in a start= or end=\n" |
| 1666 | " date expression. The utility to be able to specify dates in the future is\n" |
| 1667 | " a question which remains to be answered :-)\n" |
| 1668 | " \n" |
| 1669 | "examples : \n" |
| 1670 | "\n" |
| 1671 | " $ pkinvoice --unit EURO --output invoices.pdf --start=now-30\n" |
| 1672 | " \n" |
| 1673 | " Will generate a PDF document containing invoices for all users\n" |
| 1674 | " who have spent some credits last month. Invoices will be done in\n" |
| 1675 | " EURO. No VAT information will be included.\n" |
| 1676 | msgstr "" |
| 1677 | |
| 1678 | msgid "Invoice" |
| 1679 | msgstr "" |
| 1680 | |
| 1681 | msgid "Since" |
| 1682 | msgstr "" |
| 1683 | |
| 1684 | msgid "Until" |
| 1685 | msgstr "" |
| 1686 | |
| 1687 | msgid "Edited on" |
| 1688 | msgstr "" |
| 1689 | |
| 1690 | msgid "Number of pages printed" |
| 1691 | msgstr "" |
| 1692 | |
| 1693 | msgid "Amount due" |
| 1694 | msgstr "" |
| 1695 | |
| 1696 | msgid "Included VAT" |
| 1697 | msgstr "" |
| 1698 | |
| 1699 | msgid "Here's the invoice for your printouts" |
| 1700 | msgstr "" |
| 1701 | |
| 1702 | #, python-format |
| 1703 | msgid "Incorrect value '%s' for the --vat command line option" |
| 1704 | msgstr "" |
| 1705 | |
| 1706 | #, python-format |
| 1707 | msgid "Incorrect value '%s' for the --number command line option" |
| 1708 | msgstr "" |
| 1709 | |
| 1710 | msgid "Generating invoices" |
| 1711 | msgstr "" |
| 1712 | |
| 1713 | msgid "Credits" |
1198 | | msgid "" |
1199 | | "pkturnkey v%(__version__)s (c) %(__years__)s %(__author__)s\n" |
1200 | | "\n" |
1201 | | "A turn key tool for PyKota. When launched, this command will initialize\n" |
1202 | | "PyKota's database with all existing print queues and some or all users.\n" |
1203 | | "For now, no prices or limits are set, so printing is fully accounted\n" |
1204 | | "for, but not limited. That's why you'll probably want to also use\n" |
1205 | | "edpykota once the database has been initialized.\n" |
1206 | | "\n" |
1207 | | "command line usage :\n" |
1208 | | "\n" |
1209 | | " pkturnkey [options] [printqueues names]\n" |
1210 | | "\n" |
1211 | | "options :\n" |
1212 | | "\n" |
1213 | | " -v | --version Prints pkturnkey version number then exits.\n" |
1214 | | " -h | --help Prints this message then exits.\n" |
1215 | | " \n" |
1216 | | " -c | --doconf Give hints about what to put into pykota.conf\n" |
1217 | | " \n" |
1218 | | " -d | --dousers Manages users accounts as well.\n" |
1219 | | " \n" |
1220 | | " -D | --dogroups Manages users groups as well.\n" |
1221 | | " Implies -d | --dousers.\n" |
1222 | | " \n" |
1223 | | " -e | --emptygroups Includes empty groups.\n" |
1224 | | " \n" |
1225 | | " -f | --force Modifies the database instead of printing what\n" |
1226 | | " it would do.\n" |
1227 | | " \n" |
1228 | | " -u | --uidmin uid Only adds users whose uid is greater than or equal " |
1229 | | "to\n" |
1230 | | " uid. You can pass an username there as well, and its\n" |
1231 | | " uid will be used automatically.\n" |
1232 | | " If not set, 0 will be used automatically.\n" |
1233 | | " Implies -d | --dousers.\n" |
1234 | | " \n" |
1235 | | " -U | --uidmax uid Only adds users whose uid is lesser than or equal to\n" |
1236 | | " uid. You can pass an username there as well, and its\n" |
1237 | | " uid will be used automatically.\n" |
1238 | | " If not set, a large value will be used " |
1239 | | "automatically.\n" |
1240 | | " Implies -d | --dousers.\n" |
1241 | | "\n" |
1242 | | " -g | --gidmin gid Only adds groups whose gid is greater than or equal " |
1243 | | "to\n" |
1244 | | " gid. You can pass a groupname there as well, and its\n" |
1245 | | " gid will be used automatically.\n" |
1246 | | " If not set, 0 will be used automatically.\n" |
1247 | | " Implies -D | --dogroups.\n" |
1248 | | " \n" |
1249 | | " -G | --gidmax gid Only adds groups whose gid is lesser than or equal " |
1250 | | "to\n" |
1251 | | " gid. You can pass a groupname there as well, and its\n" |
1252 | | " gid will be used automatically.\n" |
1253 | | " If not set, a large value will be used " |
1254 | | "automatically.\n" |
1255 | | " Implies -D | --dogroups.\n" |
1256 | | "\n" |
1257 | | "examples : \n" |
1258 | | "\n" |
1259 | | " $ pkturnkey --dousers --uidmin jerome\n" |
1260 | | "\n" |
1261 | | " Will simulate the initialization of PyKota's database will all existing\n" |
1262 | | " printers and print accounts for all users whose uid is greater than\n" |
1263 | | " or equal to jerome's one. Won't manage any users group.\n" |
1264 | | " \n" |
1265 | | " To REALLY initialize the database instead of simulating it, please\n" |
1266 | | " use the -f | --force command line switch.\n" |
1267 | | " \n" |
1268 | | " You can limit the initialization to only a subset of the existing\n" |
1269 | | " printers, by passing their names at the end of the command line.\n" |
1270 | | msgstr "" |
1271 | | |
1272 | | #, python-format |
1273 | | msgid "" |
1274 | | "Printer %s is not managed by PyKota yet. Please modify printers.conf and " |
1275 | | "restart CUPS." |
1276 | | msgstr "" |
1277 | | |
1278 | | msgid "Please be patient..." |
1279 | | msgstr "" |
1280 | | |
1281 | | msgid "Don't worry, the database WILL NOT BE MODIFIED." |
1282 | | msgstr "" |
1283 | | |
1284 | | msgid "Please WORRY NOW, the database WILL BE MODIFIED." |
1285 | | msgstr "" |
1286 | | |
1287 | | msgid "System users will have a print account as well !" |
1288 | | msgstr "" |
1289 | | |
1290 | | #, python-format |
1291 | | msgid "Unknown username %s : %s" |
1292 | | msgstr "" |
1293 | | |
1294 | | msgid "System groups will have a print account as well !" |
1295 | | msgstr "" |
1296 | | |
1297 | | #, python-format |
1298 | | msgid "Unknown groupname %s : %s" |
1299 | | msgstr "" |
1300 | | |
1301 | | msgid "Simulation terminated." |
1302 | | msgstr "" |
1303 | | |
1304 | | msgid "Database initialized !" |
1305 | | msgstr "" |
1306 | | |
1307 | | msgid "The --uidmin or --uidmax command line option implies --dousers as well." |
1308 | | msgstr "" |
1309 | | |
1310 | | msgid "" |
1311 | | "The --gidmin or --gidmax command line option implies --dogroups as well." |
1312 | | msgstr "" |
1313 | | |
1314 | | msgid "The --dogroups command line option implies --dousers as well." |
1315 | | msgstr "" |
1316 | | |
1317 | | #, python-format |
1318 | | msgid "" |
1319 | | "pykosd v%(__version__)s (c) %(__years__)s %(__author__)s\n" |
1320 | | "\n" |
1321 | | "An OSD quota monitor for PyKota.\n" |
1322 | | "\n" |
1323 | | "command line usage :\n" |
1324 | | "\n" |
1325 | | " pykosd [options]\n" |
1326 | | "\n" |
1327 | | "options :\n" |
1328 | | "\n" |
1329 | | " -v | --version Prints pykosd's version number then exits.\n" |
1330 | | " -h | --help Prints this message then exits.\n" |
1331 | | " \n" |
1332 | | " -c | --color #rrggbb Sets the color to use for display as an hexadecimal\n" |
1333 | | " triplet, for example #FF0000 is 100%% red.\n" |
1334 | | " Defaults to 100%% green (#00FF00).\n" |
1335 | | " \n" |
1336 | | " -d | --duration d Sets the duration of the display in seconds. \n" |
1337 | | " Defaults to 3 seconds.\n" |
1338 | | " \n" |
1339 | | " -f | --font f Sets the font to use for " |
1340 | | "display. \n" |
1341 | | " Defaults to the Python OSD library's default.\n" |
1342 | | " \n" |
1343 | | " -l | --loop n Sets the number of times the info will be displayed.\n" |
1344 | | " Defaults to 0, which means loop forever.\n" |
1345 | | " \n" |
1346 | | " -s | --sleep s Sets the sleeping duration between two displays \n" |
1347 | | " in seconds. Defaults to 180 seconds (3 minutes).\n" |
1348 | | " \n" |
1349 | | " \n" |
1350 | | "examples : \n" |
1351 | | "\n" |
1352 | | " $ pykosd -s 60 --loop 5\n" |
1353 | | " \n" |
1354 | | " Will launch pykosd. Display will be refreshed every 60 seconds,\n" |
1355 | | " and will last for 3 seconds (the default) each time. After five\n" |
1356 | | " iterations, the program will exit.\n" |
1357 | | msgstr "" |
1358 | | |
1359 | | #, python-format |
1360 | | msgid "Invalid duration option %s" |
1361 | | msgstr "Geçersiz süre seçeneği %s" |
1362 | | |
1363 | | #, python-format |
1364 | | msgid "Invalid loop option %s" |
1365 | | msgstr "Geçersiz döngü seçeneği %s" |
1366 | | |
1367 | | #, python-format |
1368 | | msgid "Invalid sleep option %s" |
1369 | | msgstr "Geçersiz bekleme seçeneği %s" |
1370 | | |
1371 | | #, python-format |
1372 | | msgid "Invalid color option %s" |
1373 | | msgstr "Geçersiz renk seçeneği %s" |
1374 | | |
1375 | | #, python-format |
1376 | | msgid "User %s doesn't exist in PyKota's database" |
1377 | | msgstr "%s kullanıcısı PyKota veritabanında bulunmuyor" |
1378 | | |
1379 | | #, python-format |
1380 | | msgid "Pages used on %s : %s" |
1381 | | msgstr "%s üzerinde kullanılan sayfalar: %s" |
1382 | | |
1383 | | #, python-format |
1384 | | msgid "PyKota Units left : %.2f" |
1385 | | msgstr "Kalan PyKota birimi : %.2f" |
1386 | | |
1387 | | #, python-format |
1388 | | msgid "" |
1389 | | "pykotme v%(__version__)s (c) %(__years__)s %(__author__)s\n" |
1390 | | "\n" |
1391 | | "Gives print quotes to users.\n" |
1392 | | "\n" |
1393 | | "command line usage :\n" |
1394 | | "\n" |
1395 | | " pykotme [options] [files]\n" |
1396 | | "\n" |
1397 | | "options :\n" |
1398 | | "\n" |
1399 | | " -v | --version Prints pykotme's version number then exits.\n" |
1400 | | " -h | --help Prints this message then exits.\n" |
1401 | | " \n" |
1402 | | " -P | --printer p Gives a quote for this printer only. Actually p can\n" |
1403 | | " use wildcards characters to select only\n" |
1404 | | " some printers. The default value is *, meaning\n" |
1405 | | " all printers.\n" |
1406 | | " You can specify several names or wildcards, \n" |
1407 | | " by separating them with commas.\n" |
1408 | | " \n" |
1409 | | "examples : \n" |
1410 | | "\n" |
1411 | | " $ pykotme --printer apple file1.ps file2.ps\n" |
1412 | | " \n" |
1413 | | " This will give a print quote to the current user. The quote will show\n" |
1414 | | " the price and size of a job consisting in file1.ps and file2.ps \n" |
1415 | | " which would be sent to the apple printer.\n" |
1416 | | " \n" |
1417 | | " $ pykotme --printer apple,hplaser <file1.ps\n" |
1418 | | " \n" |
1419 | | " This will give a print quote to the current user. The quote will show\n" |
1420 | | " the price and size of a job consisting in file1.ps as read from\n" |
1421 | | " standard input, which would be sent to the apple or hplaser\n" |
1422 | | " printer.\n" |
1423 | | "\n" |
1424 | | " $ pykotme \n" |
1425 | | " \n" |
1426 | | " This will give a quote for a job consisting of what is on standard \n" |
1427 | | " input. The quote will list the job size, and the price the job\n" |
1428 | | " would cost on each printer.\n" |
1429 | | msgstr "" |
1430 | | |
1431 | | #, python-format |
1432 | | msgid "Your account balance : %.2f" |
1433 | | msgstr "Hesap bilançonuz : %.2f" |
1434 | | |
1435 | | #, python-format |
1436 | | msgid "Job size : %i pages" |
1437 | | msgstr "İş boyutu : %i sayfa" |
1438 | | |
1439 | | #, python-format |
1440 | | msgid "Cost on printer %s : %.2f" |
1441 | | msgstr "%s yazıcısı için fiyat : %.2f" |
1442 | | |
1443 | | msgid "PyKota Data Dumper" |
1444 | | msgstr "" |
1445 | | |
1446 | | msgid "Dump" |
1447 | | msgstr "" |
1448 | | |
1449 | | msgid "Please click on the above button" |
1450 | | msgstr "Lütfen yukarıdaki düğmeye tıklayın" |
1451 | | |
1452 | | msgid "Data Type" |
1453 | | msgstr "" |
1454 | | |
1455 | | msgid "Output Format" |
1456 | | msgstr "" |
1457 | | |
1458 | | msgid "Filter" |
1459 | | msgstr "" |
1460 | | |
1461 | | msgid "Summarize" |
1462 | | msgstr "" |
1463 | | |
1464 | | msgid "only for payments or history" |
1465 | | msgstr "" |
1466 | | |
1467 | | msgid "PyKota Reports" |
1468 | | msgstr "PyKota Raporları" |
1469 | | |
1470 | | msgid "Report" |
1471 | | msgstr "Rapor" |
1472 | | |
1473 | | msgid "Printer" |
1474 | | msgstr "Yazıcı" |
1475 | | |
1476 | | msgid "User / Group names mask" |
1477 | | msgstr "Kullanıcı / Grup isimleri maskesi" |
1478 | | |
1479 | | msgid "Groups report" |
1480 | | msgstr "Grup raporu" |
1481 | | |
1482 | | msgid "History" |
1483 | | msgstr "Geçmiş" |
1484 | | |
1485 | | msgid "Empty" |
1486 | | msgstr "Boş" |
1487 | | |
1488 | | msgid "Action" |
1489 | | msgstr "Eylem" |
1490 | | |
1491 | | msgid "User" |
1492 | | msgstr "Kullanıcı" |
1493 | | |
1494 | | msgid "Hostname" |
1495 | | msgstr "MakineAdı" |
1496 | | |
1497 | | msgid "JobId" |
1498 | | msgstr "İşBelirteci" |
1499 | | |
1500 | | msgid "Number of pages" |
1501 | | msgstr "" |
1502 | | |
1503 | | msgid "Cost" |
1504 | | msgstr "" |
1505 | | |
1506 | | msgid "Copies" |
1507 | | msgstr "Nüshalar" |
1508 | | |
1509 | | msgid "Number of bytes" |
1510 | | msgstr "" |
1511 | | |
1512 | | msgid "Printer's internal counter" |
1513 | | msgstr "" |
1514 | | |
1515 | | msgid "Options" |
1516 | | msgstr "Seçenekler" |
1517 | | |
1518 | | msgid "MD5Sum" |
1519 | | msgstr "" |
1520 | | |
1521 | | msgid "Billing code" |
1522 | | msgstr "" |
1523 | | |
1524 | | msgid "Precomputed number of pages" |
1525 | | msgstr "" |
1526 | | |
1527 | | msgid "Precomputed cost" |
1528 | | msgstr "" |
1529 | | |
1530 | | msgid "Pages details" |
1531 | | msgstr "" |
1532 | | |
1533 | | msgid "(not supported yet)" |
1534 | | msgstr "" |
1535 | | |
1536 | | msgid "Previous page" |
1537 | | msgstr "Önceki sayfa" |
1538 | | |
1539 | | msgid "PyKota Quotes" |
1540 | | msgstr "" |
1541 | | |
1542 | | msgid "Quote" |
1543 | | msgstr "" |
1544 | | |
1545 | | msgid "" |
1546 | | "The exact cost of a print job can only be determined for a particular user. " |
1547 | | "Please retry while logged-in." |
1548 | | msgstr "" |
1549 | | |
1550 | | #, python-format |