- Timestamp:
- 11/15/08 15:56:25 (5 years ago)
- Files:
-
- modules/branches/2.5 (modified) (1 prop)
- modules/branches/2.5/core/functions.inc.php (modified) (2 diffs)
- modules/branches/2.5/core/page.did.php (modified) (1 diff)
- modules/branches/2.5/music/page.music.php (modified) (1 diff)
- modules/branches/2.5/queues/i18n/queues.pot (modified) (26 diffs)
- modules/branches/2.5/queues/page.queues.php (modified) (1 diff)
- modules/branches/2.5/ringgroups/i18n/ringgroups.pot (modified) (9 diffs)
- modules/branches/2.5/ringgroups/page.ringgroups.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.5
- Property svnmerge-integrated changed from /modules/branches/2.4:1-5852,5908 /modules/branches/2.6:1-7080,7132,7158-7174,7222 to /modules/branches/2.4:1-5852,5908 /modules/branches/2.6:1-7080,7132,7158-7174,7222,7261
modules/branches/2.5/core/functions.inc.php
r7264 r7272 476 476 $extens = array(); 477 477 $category = 'Terminate Call'; 478 $extens[] = array('destination' => 'app-blackhole,hangup,1', 'description' => 'Hangup', 'category' => $category);479 $extens[] = array('destination' => 'app-blackhole,congestion,1', 'description' => 'Congestion', 'category' => $category);480 $extens[] = array('destination' => 'app-blackhole,busy,1', 'description' => 'Busy', 'category' => $category);481 $extens[] = array('destination' => 'app-blackhole,zapateller,1', 'description' => 'Play SIT Tone (Zapateller)', 'category' => $category);482 $extens[] = array('destination' => 'app-blackhole,musiconhold,1', 'description' => 'Put caller on hold forever', 'category' => $category);483 $extens[] = array('destination' => 'app-blackhole,ring,1', 'description' => 'Play ringtones to caller until they hangup', 'category' => $category);478 $extens[] = array('destination' => 'app-blackhole,hangup,1', 'description' => _("Hangup"), 'category' => $category); 479 $extens[] = array('destination' => 'app-blackhole,congestion,1', 'description' => _("Congestion"), 'category' => $category); 480 $extens[] = array('destination' => 'app-blackhole,busy,1', 'description' => _("Busy"), 'category' => $category); 481 $extens[] = array('destination' => 'app-blackhole,zapateller,1', 'description' => _("Play SIT Tone (Zapateller)"), 'category' => $category); 482 $extens[] = array('destination' => 'app-blackhole,musiconhold,1', 'description' => _("Put caller on hold forever"), 'category' => $category); 483 $extens[] = array('destination' => 'app-blackhole,ring,1', 'description' => _("Play ringtones to caller until they hangup"), 'category' => $category); 484 484 485 485 //get the list of meetmes … … 4447 4447 $addURL = $_SERVER['PHP_SELF'].'?type=setup&display=did&&extdisplay='.$did['extension'].'/'.$did['cidnum']; 4448 4448 $did_icon = 'images/email_edit.png'; 4449 $did_label = trim($did['extension']) == '' ? ' Any DID': ' '.$did['extension'];4449 $did_label = trim($did['extension']) == '' ? ' '._("Any DID") : ' '.$did['extension']; 4450 4450 if (trim($did['cidnum']) != '') { 4451 4451 $did_label .= ' / '.$did['cidnum']; modules/branches/2.5/core/page.did.php
r7046 r7272 208 208 $tresults = music_list($amp_conf['ASTVARLIBDIR']."/mohmp3"); 209 209 $cur = (isset($mohclass) && $mohclass != "" ? $mohclass : 'default'); 210 echo '<option value="none">'._("No Music")."</option>";210 // echo '<option value="none">'._("No Music")."</option>"; 211 211 if (isset($tresults[0])) { 212 212 foreach ($tresults as $tresult) { 213 echo '<option value="'.$tresult.'"'.($tresult == $cur ? ' SELECTED' : '').'>'.$tresult."</option>\n"; 213 ($tresult == 'none' ? $ttext = _("No Music") : $ttext = $tresult); 214 ($tresult == 'default' ? $ttext = _("Default") : $ttext = $tresult); 215 echo '<option value="'.$tresult.'"'.($tresult == $cur ? ' SELECTED' : '').'>'._($ttext)."</option>\n"; 214 216 } 215 217 } modules/branches/2.5/music/page.music.php
r7175 r7272 88 88 foreach ($tresults as $tresult) { 89 89 if ($tresult != "none") { 90 echo "<li><a id=\"".($category==$tresult ? 'current':'')."\" href=\"config.php?display=".urlencode($display)."&category=".urlencode($tresult)."&action=edit\">{$tresult}</a></li>"; 90 ( $tresult == 'default' ? $ttext = _("default") : $ttext = $tresult ); 91 echo "<li><a id=\"".($category==$tresult ? 'current':'')."\" href=\"config.php?display=".urlencode($display)."&category=".urlencode($tresult)."&action=edit\">{$ttext}</a></li>"; 91 92 } 92 93 } modules/branches/2.5/queues/i18n/queues.pot
r6948 r7272 9 9 "Project-Id-Version: PACKAGE VERSION\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 "POT-Creation-Date: 2008-1 0-06 00:04+0200\n"11 "POT-Creation-Date: 2008-11-12 22:30+0100\n" 12 12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 43 43 msgstr "" 44 44 45 #: functions.inc.php:359 functions.inc.php:376 page.queues.php:36 146 #: page.queues.php:45 5 page.queues.php:470 page.queues.php:48445 #: functions.inc.php:359 functions.inc.php:376 page.queues.php:364 46 #: page.queues.php:458 page.queues.php:473 page.queues.php:487 47 47 msgid "seconds" 48 48 msgstr "" … … 333 333 msgstr "" 334 334 335 #: page.queues.php:218 page.queues.php: 397 page.queues.php:412336 #: page.queues.php:51 2 page.queues.php:527 page.queues.php:542337 #: page.queues.php: 598 page.queues.php:611335 #: page.queues.php:218 page.queues.php:400 page.queues.php:415 336 #: page.queues.php:515 page.queues.php:530 page.queues.php:545 337 #: page.queues.php:601 page.queues.php:614 338 338 msgid "Yes" 339 339 msgstr "" 340 340 341 #: page.queues.php:218 page.queues.php: 397 page.queues.php:412342 #: page.queues.php:50 0 page.queues.php:512 page.queues.php:527343 #: page.queues.php:54 2 page.queues.php:599 page.queues.php:612341 #: page.queues.php:218 page.queues.php:400 page.queues.php:415 342 #: page.queues.php:503 page.queues.php:515 page.queues.php:530 343 #: page.queues.php:545 page.queues.php:602 page.queues.php:615 344 344 msgid "No" 345 345 msgstr "" … … 403 403 msgstr "" 404 404 405 #: page.queues.php:270 page.queues.php:300 page.queues.php:63 0405 #: page.queues.php:270 page.queues.php:300 page.queues.php:633 406 406 msgid "None" 407 407 msgstr "" … … 444 444 msgstr "" 445 445 446 #: page.queues.php:345 446 #: page.queues.php:335 447 msgid "inherit" 448 msgstr "" 449 450 #: page.queues.php:336 451 msgid "none" 452 msgstr "" 453 454 #: page.queues.php:337 455 msgid "default" 456 msgstr "" 457 458 #: page.queues.php:348 447 459 msgid "Ringing Instead of MoH:" 448 460 msgstr "" 449 461 450 #: page.queues.php:34 5462 #: page.queues.php:348 451 463 msgid "" 452 464 "Enabling this option make callers hear a ringing tone instead of Music on " … … 455 467 msgstr "" 456 468 457 #: page.queues.php:35 2469 #: page.queues.php:355 458 470 msgid "Max Wait Time:" 459 471 msgstr "" 460 472 461 #: page.queues.php:35 2473 #: page.queues.php:355 462 474 msgid "" 463 475 "The maximum number of seconds a caller can wait in a queue before being " … … 465 477 msgstr "" 466 478 467 #: page.queues.php:3 59 page.queues.php:453479 #: page.queues.php:362 page.queues.php:456 468 480 msgid "Unlimited" 469 481 msgstr "" 470 482 471 #: page.queues.php:3 78483 #: page.queues.php:381 472 484 msgid "Max Callers:" 473 485 msgstr "" 474 486 475 #: page.queues.php:3 78487 #: page.queues.php:381 476 488 msgid "Maximum number of people waiting in the queue (0 for unlimited)" 477 489 msgstr "" 478 490 479 #: page.queues.php:39 2491 #: page.queues.php:395 480 492 msgid "Join Empty:" 481 493 msgstr "" 482 494 483 #: page.queues.php:39 2495 #: page.queues.php:395 484 496 msgid "" 485 497 "If you wish to allow callers to join queues that currently have no agents, " … … 488 500 msgstr "" 489 501 490 #: page.queues.php: 397 page.queues.php:412502 #: page.queues.php:400 page.queues.php:415 491 503 msgid "Strict" 492 504 msgstr "" 493 505 494 #: page.queues.php:4 07506 #: page.queues.php:410 495 507 msgid "Leave When Empty:" 496 508 msgstr "" 497 509 498 #: page.queues.php:4 07510 #: page.queues.php:410 499 511 msgid "" 500 512 "If you wish to remove callers from the queue if there are no agents present, " … … 503 515 msgstr "" 504 516 505 #: page.queues.php:42 3517 #: page.queues.php:426 506 518 msgid "Ring Strategy:" 507 519 msgstr "" 508 520 509 #: page.queues.php:42 5521 #: page.queues.php:428 510 522 msgid "ringall" 511 523 msgstr "" 512 524 513 #: page.queues.php:42 5525 #: page.queues.php:428 514 526 msgid "ring all available agents until one answers (default)" 515 527 msgstr "" 516 528 517 #: page.queues.php:42 6529 #: page.queues.php:429 518 530 msgid "roundrobin" 519 531 msgstr "" 520 532 521 #: page.queues.php:42 6533 #: page.queues.php:429 522 534 msgid "take turns ringing each available agent" 523 535 msgstr "" 524 536 525 #: page.queues.php:4 27537 #: page.queues.php:430 526 538 msgid "leastrecent" 527 539 msgstr "" 528 540 529 #: page.queues.php:4 27541 #: page.queues.php:430 530 542 msgid "ring agent which was least recently called by this queue" 531 543 msgstr "" 532 544 533 #: page.queues.php:4 28545 #: page.queues.php:431 534 546 msgid "fewestcalls" 535 547 msgstr "" 536 548 537 #: page.queues.php:4 28549 #: page.queues.php:431 538 550 msgid "ring the agent with fewest completed calls from this queue" 539 551 msgstr "" 540 552 541 #: page.queues.php:4 29553 #: page.queues.php:432 542 554 msgid "random" 543 555 msgstr "" 544 556 545 #: page.queues.php:4 29557 #: page.queues.php:432 546 558 msgid "ring random agent" 547 559 msgstr "" 548 560 549 #: page.queues.php:43 0561 #: page.queues.php:433 550 562 msgid "rrmemory" 551 563 msgstr "" 552 564 553 #: page.queues.php:43 0565 #: page.queues.php:433 554 566 msgid "round robin with memory, remember where we left off last ring pass" 555 567 msgstr "" 556 568 557 #: page.queues.php:4 48569 #: page.queues.php:451 558 570 msgid "Agent Timeout:" 559 571 msgstr "" 560 572 561 #: page.queues.php:4 48573 #: page.queues.php:451 562 574 msgid "" 563 575 "The number of seconds an agent's phone can ring before we consider it a " … … 566 578 msgstr "" 567 579 568 #: page.queues.php:46 3580 #: page.queues.php:466 569 581 msgid "Retry:" 570 582 msgstr "" 571 583 572 #: page.queues.php:46 3584 #: page.queues.php:466 573 585 msgid "" 574 586 "The number of seconds we wait before trying all the phones again. Choosing " … … 578 590 msgstr "" 579 591 580 #: page.queues.php:4 68592 #: page.queues.php:471 581 593 msgid "No Retry" 582 594 msgstr "" 583 595 584 #: page.queues.php:4 78596 #: page.queues.php:481 585 597 msgid "Wrap-Up-Time:" 586 598 msgstr "" 587 599 588 #: page.queues.php:4 78600 #: page.queues.php:481 589 601 msgid "" 590 602 "After a successful call, how many seconds to wait before sending a " … … 592 604 msgstr "" 593 605 594 #: page.queues.php:49 2606 #: page.queues.php:495 595 607 msgid "Call Recording:" 596 608 msgstr "" 597 609 598 #: page.queues.php:49 2610 #: page.queues.php:495 599 611 msgid "" 600 612 "Incoming calls to agents can be recorded. (saved to /var/spool/asterisk/" … … 602 614 msgstr "" 603 615 604 #: page.queues.php: 497616 #: page.queues.php:500 605 617 msgid "wav49" 606 618 msgstr "" 607 619 608 #: page.queues.php: 498620 #: page.queues.php:501 609 621 msgid "wav" 610 622 msgstr "" 611 623 612 #: page.queues.php: 499624 #: page.queues.php:502 613 625 msgid "gsm" 614 626 msgstr "" 615 627 616 #: page.queues.php:5 07628 #: page.queues.php:510 617 629 msgid "Event When Called:" 618 630 msgstr "" 619 631 620 #: page.queues.php:5 07632 #: page.queues.php:510 621 633 msgid "" 622 634 "When this option is set to YES, the following manager events will be " … … 624 636 msgstr "" 625 637 626 #: page.queues.php:52 2638 #: page.queues.php:525 627 639 msgid "Member Status:" 628 640 msgstr "" 629 641 630 #: page.queues.php:52 2642 #: page.queues.php:525 631 643 msgid "" 632 644 "When if this is option is set to YES, the following manager event will be " … … 634 646 msgstr "" 635 647 636 #: page.queues.php:5 37648 #: page.queues.php:540 637 649 msgid "Skip Busy Agents:" 638 650 msgstr "" 639 651 640 #: page.queues.php:5 37652 #: page.queues.php:540 641 653 msgid "" 642 654 "When set to Yes, agents who are on an occupied phone will be skipped as if " … … 646 658 msgstr "" 647 659 648 #: page.queues.php:55 2660 #: page.queues.php:555 649 661 msgid "Queue Weight" 650 662 msgstr "" 651 663 652 #: page.queues.php:55 2664 #: page.queues.php:555 653 665 msgid "" 654 666 "Gives queues a 'weight' option, to ensure calls waiting in a higher priority " … … 656 668 msgstr "" 657 669 658 #: page.queues.php:56 6670 #: page.queues.php:569 659 671 msgid "Autofill:" 660 672 msgstr "" 661 673 662 #: page.queues.php:56 6674 #: page.queues.php:569 663 675 msgid "" 664 676 "Starting with Asterisk 1.4, if this is checked, and multiple agents are " … … 670 682 msgstr "" 671 683 672 #: page.queues.php:57 3684 #: page.queues.php:576 673 685 msgid "Agent Regex Filter" 674 686 msgstr "" 675 687 676 #: page.queues.php:57 3688 #: page.queues.php:576 677 689 msgid "" 678 690 "Provides an optional regex expression that will be applied against the agent " … … 687 699 msgstr "" 688 700 689 #: page.queues.php:5 77701 #: page.queues.php:580 690 702 msgid "Caller Position Announcements" 691 703 msgstr "" 692 704 693 #: page.queues.php:5 79705 #: page.queues.php:582 694 706 msgid "Frequency:" 695 707 msgstr "" 696 708 697 #: page.queues.php:5 79709 #: page.queues.php:582 698 710 msgid "" 699 711 "How often to announce queue position and estimated holdtime (0 to Disable " … … 701 713 msgstr "" 702 714 703 #: page.queues.php:59 3715 #: page.queues.php:596 704 716 msgid "Announce Position:" 705 717 msgstr "" 706 718 707 #: page.queues.php:59 3719 #: page.queues.php:596 708 720 msgid "Announce position of caller in the queue?" 709 721 msgstr "" 710 722 711 #: page.queues.php:60 6723 #: page.queues.php:609 712 724 msgid "Announce Hold Time:" 713 725 msgstr "" 714 726 715 #: page.queues.php:60 6727 #: page.queues.php:609 716 728 msgid "" 717 729 "Should we include estimated hold time in position announcements? Either " … … 719 731 msgstr "" 720 732 721 #: page.queues.php:61 3733 #: page.queues.php:616 722 734 msgid "Once" 723 735 msgstr "" 724 736 725 #: page.queues.php:6 19737 #: page.queues.php:622 726 738 msgid "Periodic Announcements" 727 739 msgstr "" 728 740 729 #: page.queues.php:62 4741 #: page.queues.php:627 730 742 msgid "IVR Break Out Menu:" 731 743 msgstr "" 732 744 733 #: page.queues.php:62 4745 #: page.queues.php:627 734 746 msgid "" 735 747 "You can optionally present an existing IVR as a 'break out' menu." … … 739 751 msgstr "" 740 752 741 #: page.queues.php:64 6 page.queues.php:651753 #: page.queues.php:649 page.queues.php:654 742 754 msgid "Menu ID " 743 755 msgstr "" 744 756 745 #: page.queues.php:66 2757 #: page.queues.php:665 746 758 msgid "(**) ERRORS" 747 759 msgstr "" 748 760 749 #: page.queues.php:66 2761 #: page.queues.php:665 750 762 msgid "(**) Warning Potential Errors" 751 763 msgstr "" 752 764 753 #: page.queues.php:66 6765 #: page.queues.php:669 754 766 msgid "" 755 767 "ERROR: You have selected an IVR's that use Announcements created from " … … 761 773 msgstr "" 762 774 763 #: page.queues.php:66 6775 #: page.queues.php:669 764 776 msgid "" 765 777 "Earlier versions of this module allowed such queues to be chosen, once " … … 767 779 msgstr "" 768 780 769 #: page.queues.php:6 79781 #: page.queues.php:682 770 782 msgid "Repeat Frequency:" 771 783 msgstr "" 772 784 773 #: page.queues.php:6 79785 #: page.queues.php:682 774 786 msgid "" 775 787 "How often to announce a voice menu to the caller (0 to Disable " … … 777 789 msgstr "" 778 790 779 #: page.queues.php:70 0791 #: page.queues.php:703 780 792 msgid "Fail Over Destination" 781 793 msgstr "" 782 794 783 #: page.queues.php:70 6795 #: page.queues.php:709 784 796 msgid "Submit Changes" 785 797 msgstr "" 786 798 787 #: page.queues.php:7 29799 #: page.queues.php:732 788 800 msgid "" 789 801 "Using a Regex filter is fairly advanced, please confirm you know what you " … … 791 803 msgstr "" 792 804 793 #: page.queues.php:74 0805 #: page.queues.php:743 794 806 msgid "Queue Number must not be blank" 795 807 msgstr "" 796 808 797 #: page.queues.php:74 6809 #: page.queues.php:749 798 810 msgid "" 799 811 "Queue name must not be blank and must contain only alpha-numeric characters" 800 812 msgstr "" 801 813 802 #: module .xml814 #: modules.xml 803 815 msgid "Queues" 804 816 msgstr "" modules/branches/2.5/queues/page.queues.php
r6854 r7272 332 332 if (isset($tresults)) { 333 333 foreach ($tresults as $tresult) { 334 $searchvalue="$tresult"; 335 echo '<option value="'.$tresult.'" '.($searchvalue == $default ? 'SELECTED' : '').'>'.$tresult; 334 $searchvalue="$tresult"; 335 ( $tresult == 'inherit' ? $ttext = _("inherit") : $ttext = $tresult ); 336 ( $tresult == 'none' ? $ttext = _("none") : $ttext = $tresult ); 337 ( $tresult == 'default' ? $ttext = _("default") : $ttext = $tresult ); 338 echo '<option value="'.$tresult.'" '.($searchvalue == $default ? 'SELECTED' : '').'>'.$ttext; 336 339 } 337 340 } modules/branches/2.5/ringgroups/i18n/ringgroups.pot
r6951 r7272 9 9 "Project-Id-Version: PACKAGE VERSION\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 "POT-Creation-Date: 2008-1 0-06 00:29+0200\n"11 "POT-Creation-Date: 2008-11-12 22:32+0100\n" 12 12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 297 297 msgstr "" 298 298 299 #: page.ringgroups.php:323 299 #: page.ringgroups.php:313 300 msgid "none" 301 msgstr "" 302 303 #: page.ringgroups.php:314 304 msgid "default" 305 msgstr "" 306 307 #: page.ringgroups.php:325 300 308 msgid "CID Name Prefix" 301 309 msgstr "" 302 310 303 #: page.ringgroups.php:32 3311 #: page.ringgroups.php:325 304 312 msgid "" 305 313 "You can optionally prefix the Caller ID name when ringing extensions in this " … … 308 316 msgstr "" 309 317 310 #: page.ringgroups.php:3 28318 #: page.ringgroups.php:330 311 319 msgid "Alert Info" 312 320 msgstr "" 313 321 314 #: page.ringgroups.php:3 28322 #: page.ringgroups.php:330 315 323 msgid "ALERT_INFO can be used for distinctive ring with SIP devices." 316 324 msgstr "" 317 325 318 #: page.ringgroups.php:33 3326 #: page.ringgroups.php:335 319 327 msgid "Ignore CF Settings" 320 328 msgstr "" 321 329 322 #: page.ringgroups.php:33 3330 #: page.ringgroups.php:335 323 331 msgid "" 324 332 "When checked, agents who attempt to Call Forward will be ignored, this " … … 327 335 msgstr "" 328 336 329 #: page.ringgroups.php:34 0337 #: page.ringgroups.php:342 330 338 msgid "Skip Busy Agent" 331 339 msgstr "" 332 340 333 #: page.ringgroups.php:34 0341 #: page.ringgroups.php:342 334 342 msgid "" 335 343 "When checked, agents who are on an occupied phone will be skipped as if the " … … 339 347 msgstr "" 340 348 341 #: page.ringgroups.php:34 7349 #: page.ringgroups.php:349 342 350 msgid "Confirm Calls" 343 351 msgstr "" 344 352 345 #: page.ringgroups.php:34 7353 #: page.ringgroups.php:349 346 354 msgid "" 347 355 "Enable this if you're calling external numbers that need confirmation - eg, " … … 351 359 msgstr "" 352 360 353 #: page.ringgroups.php:35 5361 #: page.ringgroups.php:357 354 362 msgid "Remote Announce:" 355 363 msgstr "" 356 364 357 #: page.ringgroups.php:35 5365 #: page.ringgroups.php:357 358 366 msgid "" 359 367 "Message to be played to the person RECEIVING the call, if 'Confirm Calls' is " … … 362 370 msgstr "" 363 371 364 #: page.ringgroups.php:36 1 page.ringgroups.php:379372 #: page.ringgroups.php:363 page.ringgroups.php:381 365 373 msgid "Default" 366 374 msgstr "" 367 375 368 #: page.ringgroups.php:37 3376 #: page.ringgroups.php:375 369 377 msgid "Too-Late Announce:" 370 378 msgstr "" 371 379 372 #: page.ringgroups.php:37 3380 #: page.ringgroups.php:375 373 381 msgid "" 374 382 "Message to be played to the person RECEIVING the call, if the call has " … … 377 385 msgstr "" 378 386 379 #: page.ringgroups.php:39 6387 #: page.ringgroups.php:398 380 388 msgid "Destination if no answer" 381 389 msgstr "" 382 390 383 #: page.ringgroups.php:40 4391 #: page.ringgroups.php:406 384 392 msgid "Submit Changes" 385 393 msgstr "" 386 394 387 #: page.ringgroups.php:43 2395 #: page.ringgroups.php:434 388 396 msgid "Invalid Group Number specified" 389 397 msgstr "" 390 398 391 #: page.ringgroups.php:43 3399 #: page.ringgroups.php:435 392 400 msgid "Please enter an extension list." 393 401 msgstr "" 394 402 395 #: page.ringgroups.php:43 4403 #: page.ringgroups.php:436 396 404 msgid "Invalid Caller ID prefix." 397 405 msgstr "" 398 406 399 #: page.ringgroups.php:43 5407 #: page.ringgroups.php:437 400 408 msgid "Invalid time specified" 401 409 msgstr "" 402 410 403 #: page.ringgroups.php:43 6411 #: page.ringgroups.php:438 404 412 msgid "Time must be between 1 and 60 seconds" 405 413 msgstr "" 406 414 407 #: page.ringgroups.php:43 7415 #: page.ringgroups.php:439 408 416 msgid "Please enter a valid Group Description" 409 417 msgstr "" 410 418 411 #: page.ringgroups.php:4 38419 #: page.ringgroups.php:440 412 420 msgid "" 413 421 "Only ringall, ringallv2, hunt and the respective -prim versions are " … … 415 423 msgstr "" 416 424 417 #: module .xml425 #: modules.xml 418 426 msgid "Ring Groups" 419 427 msgstr "" modules/branches/2.5/ringgroups/page.ringgroups.php
r6882 r7272 311 311 if (isset($tresults[0])) { 312 312 foreach ($tresults as $tresult) { 313 echo '<option value="'.$tresult.'"'.($tresult == $cur ? ' SELECTED' : '').'>'.$tresult."</option>\n"; 313 ( $tresult == 'none' ? $ttext = _("none") : $ttext = $tresult ); 314 ( $tresult == 'default' ? $ttext = _("default") : $ttext = $tresult ); 315 echo '<option value="'.$tresult.'"'.($tresult == $cur ? ' SELECTED' : '').'>'._($ttext)."</option>\n"; 314 316 } 315 317 }
