Changeset 7272 for modules

Show
Ignore:
Timestamp:
11/15/08 15:56:25 (5 years ago)
Author:
p_lindheimer
Message:

Merged revisions 7261 via svnmerge from
http://svn.freepbx.org/modules/branches/2.6

........

r7261 | mickecarlsson | 2008-11-12 13:41:50 -0800 (Wed, 12 Nov 2008) | 1 line


Closes #3380 fixes various string enclosures for localization. Thank you chocho

........

Files:

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  
    476476  $extens = array(); 
    477477  $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); 
    484484   
    485485  //get the list of meetmes 
     
    44474447        $addURL = $_SERVER['PHP_SELF'].'?type=setup&display=did&&extdisplay='.$did['extension'].'/'.$did['cidnum']; 
    44484448        $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']; 
    44504450        if (trim($did['cidnum']) != '') { 
    44514451          $did_label .= ' / '.$did['cidnum']; 
  • modules/branches/2.5/core/page.did.php

    r7046 r7272  
    208208          $tresults = music_list($amp_conf['ASTVARLIBDIR']."/mohmp3"); 
    209209          $cur = (isset($mohclass) && $mohclass != "" ? $mohclass : 'default'); 
    210           echo '<option value="none">'._("No Music")."</option>"; 
     210//          echo '<option value="none">'._("No Music")."</option>"; 
    211211          if (isset($tresults[0])) { 
    212212            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"; 
    214216            } 
    215217          } 
  • modules/branches/2.5/music/page.music.php

    r7175 r7272  
    8888  foreach ($tresults as $tresult) { 
    8989    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>"; 
    9192    } 
    9293  } 
  • modules/branches/2.5/queues/i18n/queues.pot

    r6948 r7272  
    99"Project-Id-Version: PACKAGE VERSION\n" 
    1010"Report-Msgid-Bugs-To: \n" 
    11 "POT-Creation-Date: 2008-10-06 00:04+0200\n" 
     11"POT-Creation-Date: 2008-11-12 22:30+0100\n" 
    1212"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 
    1313"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" 
     
    4343msgstr "" 
    4444 
    45 #: functions.inc.php:359 functions.inc.php:376 page.queues.php:361 
    46 #: page.queues.php:455 page.queues.php:470 page.queues.php:484 
     45#: 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 
    4747msgid "seconds" 
    4848msgstr "" 
     
    333333msgstr "" 
    334334 
    335 #: page.queues.php:218 page.queues.php:397 page.queues.php:412 
    336 #: page.queues.php:512 page.queues.php:527 page.queues.php:542 
    337 #: page.queues.php:598 page.queues.php:611 
     335#: 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 
    338338msgid "Yes" 
    339339msgstr "" 
    340340 
    341 #: page.queues.php:218 page.queues.php:397 page.queues.php:412 
    342 #: page.queues.php:500 page.queues.php:512 page.queues.php:527 
    343 #: page.queues.php:542 page.queues.php:599 page.queues.php:612 
     341#: 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 
    344344msgid "No" 
    345345msgstr "" 
     
    403403msgstr "" 
    404404 
    405 #: page.queues.php:270 page.queues.php:300 page.queues.php:630 
     405#: page.queues.php:270 page.queues.php:300 page.queues.php:633 
    406406msgid "None" 
    407407msgstr "" 
     
    444444msgstr "" 
    445445 
    446 #: page.queues.php:345 
     446#: page.queues.php:335 
     447msgid "inherit" 
     448msgstr "" 
     449 
     450#: page.queues.php:336 
     451msgid "none" 
     452msgstr "" 
     453 
     454#: page.queues.php:337 
     455msgid "default" 
     456msgstr "" 
     457 
     458#: page.queues.php:348 
    447459msgid "Ringing Instead of MoH:" 
    448460msgstr "" 
    449461 
    450 #: page.queues.php:345 
     462#: page.queues.php:348 
    451463msgid "" 
    452464"Enabling this option make callers hear a ringing tone instead of Music on " 
     
    455467msgstr "" 
    456468 
    457 #: page.queues.php:352 
     469#: page.queues.php:355 
    458470msgid "Max Wait Time:" 
    459471msgstr "" 
    460472 
    461 #: page.queues.php:352 
     473#: page.queues.php:355 
    462474msgid "" 
    463475"The maximum number of seconds a caller can wait in a queue before being " 
     
    465477msgstr "" 
    466478 
    467 #: page.queues.php:359 page.queues.php:453 
     479#: page.queues.php:362 page.queues.php:456 
    468480msgid "Unlimited" 
    469481msgstr "" 
    470482 
    471 #: page.queues.php:378 
     483#: page.queues.php:381 
    472484msgid "Max Callers:" 
    473485msgstr "" 
    474486 
    475 #: page.queues.php:378 
     487#: page.queues.php:381 
    476488msgid "Maximum number of people waiting in the queue (0 for unlimited)" 
    477489msgstr "" 
    478490 
    479 #: page.queues.php:392 
     491#: page.queues.php:395 
    480492msgid "Join Empty:" 
    481493msgstr "" 
    482494 
    483 #: page.queues.php:392 
     495#: page.queues.php:395 
    484496msgid "" 
    485497"If you wish to allow callers to join queues that currently have no agents, " 
     
    488500msgstr "" 
    489501 
    490 #: page.queues.php:397 page.queues.php:412 
     502#: page.queues.php:400 page.queues.php:415 
    491503msgid "Strict" 
    492504msgstr "" 
    493505 
    494 #: page.queues.php:407 
     506#: page.queues.php:410 
    495507msgid "Leave When Empty:" 
    496508msgstr "" 
    497509 
    498 #: page.queues.php:407 
     510#: page.queues.php:410 
    499511msgid "" 
    500512"If you wish to remove callers from the queue if there are no agents present, " 
     
    503515msgstr "" 
    504516 
    505 #: page.queues.php:423 
     517#: page.queues.php:426 
    506518msgid "Ring Strategy:" 
    507519msgstr "" 
    508520 
    509 #: page.queues.php:425 
     521#: page.queues.php:428 
    510522msgid "ringall" 
    511523msgstr "" 
    512524 
    513 #: page.queues.php:425 
     525#: page.queues.php:428 
    514526msgid "ring all available agents until one answers (default)" 
    515527msgstr "" 
    516528 
    517 #: page.queues.php:426 
     529#: page.queues.php:429 
    518530msgid "roundrobin" 
    519531msgstr "" 
    520532 
    521 #: page.queues.php:426 
     533#: page.queues.php:429 
    522534msgid "take turns ringing each available agent" 
    523535msgstr "" 
    524536 
    525 #: page.queues.php:427 
     537#: page.queues.php:430 
    526538msgid "leastrecent" 
    527539msgstr "" 
    528540 
    529 #: page.queues.php:427 
     541#: page.queues.php:430 
    530542msgid "ring agent which was least recently called by this queue" 
    531543msgstr "" 
    532544 
    533 #: page.queues.php:428 
     545#: page.queues.php:431 
    534546msgid "fewestcalls" 
    535547msgstr "" 
    536548 
    537 #: page.queues.php:428 
     549#: page.queues.php:431 
    538550msgid "ring the agent with fewest completed calls from this queue" 
    539551msgstr "" 
    540552 
    541 #: page.queues.php:429 
     553#: page.queues.php:432 
    542554msgid "random" 
    543555msgstr "" 
    544556 
    545 #: page.queues.php:429 
     557#: page.queues.php:432 
    546558msgid "ring random agent" 
    547559msgstr "" 
    548560 
    549 #: page.queues.php:430 
     561#: page.queues.php:433 
    550562msgid "rrmemory" 
    551563msgstr "" 
    552564 
    553 #: page.queues.php:430 
     565#: page.queues.php:433 
    554566msgid "round robin with memory, remember where we left off last ring pass" 
    555567msgstr "" 
    556568 
    557 #: page.queues.php:448 
     569#: page.queues.php:451 
    558570msgid "Agent Timeout:" 
    559571msgstr "" 
    560572 
    561 #: page.queues.php:448 
     573#: page.queues.php:451 
    562574msgid "" 
    563575"The number of seconds an agent's phone can ring before we consider it a " 
     
    566578msgstr "" 
    567579 
    568 #: page.queues.php:463 
     580#: page.queues.php:466 
    569581msgid "Retry:" 
    570582msgstr "" 
    571583 
    572 #: page.queues.php:463 
     584#: page.queues.php:466 
    573585msgid "" 
    574586"The number of seconds we wait before trying all the phones again. Choosing " 
     
    578590msgstr "" 
    579591 
    580 #: page.queues.php:468 
     592#: page.queues.php:471 
    581593msgid "No Retry" 
    582594msgstr "" 
    583595 
    584 #: page.queues.php:478 
     596#: page.queues.php:481 
    585597msgid "Wrap-Up-Time:" 
    586598msgstr "" 
    587599 
    588 #: page.queues.php:478 
     600#: page.queues.php:481 
    589601msgid "" 
    590602"After a successful call, how many seconds to wait before sending a " 
     
    592604msgstr "" 
    593605 
    594 #: page.queues.php:492 
     606#: page.queues.php:495 
    595607msgid "Call Recording:" 
    596608msgstr "" 
    597609 
    598 #: page.queues.php:492 
     610#: page.queues.php:495 
    599611msgid "" 
    600612"Incoming calls to agents can be recorded. (saved to /var/spool/asterisk/" 
     
    602614msgstr "" 
    603615 
    604 #: page.queues.php:497 
     616#: page.queues.php:500 
    605617msgid "wav49" 
    606618msgstr "" 
    607619 
    608 #: page.queues.php:498 
     620#: page.queues.php:501 
    609621msgid "wav" 
    610622msgstr "" 
    611623 
    612 #: page.queues.php:499 
     624#: page.queues.php:502 
    613625msgid "gsm" 
    614626msgstr "" 
    615627 
    616 #: page.queues.php:507 
     628#: page.queues.php:510 
    617629msgid "Event When Called:" 
    618630msgstr "" 
    619631 
    620 #: page.queues.php:507 
     632#: page.queues.php:510 
    621633msgid "" 
    622634"When this option is set to YES, the following manager events will be " 
     
    624636msgstr "" 
    625637 
    626 #: page.queues.php:522 
     638#: page.queues.php:525 
    627639msgid "Member Status:" 
    628640msgstr "" 
    629641 
    630 #: page.queues.php:522 
     642#: page.queues.php:525 
    631643msgid "" 
    632644"When if this is option is set to YES, the following manager event will be " 
     
    634646msgstr "" 
    635647 
    636 #: page.queues.php:537 
     648#: page.queues.php:540 
    637649msgid "Skip Busy Agents:" 
    638650msgstr "" 
    639651 
    640 #: page.queues.php:537 
     652#: page.queues.php:540 
    641653msgid "" 
    642654"When set to Yes, agents who are on an occupied phone will be skipped as if " 
     
    646658msgstr "" 
    647659 
    648 #: page.queues.php:552 
     660#: page.queues.php:555 
    649661msgid "Queue Weight" 
    650662msgstr "" 
    651663 
    652 #: page.queues.php:552 
     664#: page.queues.php:555 
    653665msgid "" 
    654666"Gives queues a 'weight' option, to ensure calls waiting in a higher priority " 
     
    656668msgstr "" 
    657669 
    658 #: page.queues.php:566 
     670#: page.queues.php:569 
    659671msgid "Autofill:" 
    660672msgstr "" 
    661673 
    662 #: page.queues.php:566 
     674#: page.queues.php:569 
    663675msgid "" 
    664676"Starting with Asterisk 1.4, if this is checked, and multiple agents are " 
     
    670682msgstr "" 
    671683 
    672 #: page.queues.php:573 
     684#: page.queues.php:576 
    673685msgid "Agent Regex Filter" 
    674686msgstr "" 
    675687 
    676 #: page.queues.php:573 
     688#: page.queues.php:576 
    677689msgid "" 
    678690"Provides an optional regex expression that will be applied against the agent " 
     
    687699msgstr "" 
    688700 
    689 #: page.queues.php:577 
     701#: page.queues.php:580 
    690702msgid "Caller Position Announcements" 
    691703msgstr "" 
    692704 
    693 #: page.queues.php:579 
     705#: page.queues.php:582 
    694706msgid "Frequency:" 
    695707msgstr "" 
    696708 
    697 #: page.queues.php:579 
     709#: page.queues.php:582 
    698710msgid "" 
    699711"How often to announce queue position and estimated holdtime (0 to Disable " 
     
    701713msgstr "" 
    702714 
    703 #: page.queues.php:593 
     715#: page.queues.php:596 
    704716msgid "Announce Position:" 
    705717msgstr "" 
    706718 
    707 #: page.queues.php:593 
     719#: page.queues.php:596 
    708720msgid "Announce position of caller in the queue?" 
    709721msgstr "" 
    710722 
    711 #: page.queues.php:606 
     723#: page.queues.php:609 
    712724msgid "Announce Hold Time:" 
    713725msgstr "" 
    714726 
    715 #: page.queues.php:606 
     727#: page.queues.php:609 
    716728msgid "" 
    717729"Should we include estimated hold time in position announcements?  Either " 
     
    719731msgstr "" 
    720732 
    721 #: page.queues.php:613 
     733#: page.queues.php:616 
    722734msgid "Once" 
    723735msgstr "" 
    724736 
    725 #: page.queues.php:619 
     737#: page.queues.php:622 
    726738msgid "Periodic Announcements" 
    727739msgstr "" 
    728740 
    729 #: page.queues.php:624 
     741#: page.queues.php:627 
    730742msgid "IVR Break Out Menu:" 
    731743msgstr "" 
    732744 
    733 #: page.queues.php:624 
     745#: page.queues.php:627 
    734746msgid "" 
    735747"You can optionally present an existing IVR as a 'break out' menu." 
     
    739751msgstr "" 
    740752 
    741 #: page.queues.php:646 page.queues.php:651 
     753#: page.queues.php:649 page.queues.php:654 
    742754msgid "Menu ID " 
    743755msgstr "" 
    744756 
    745 #: page.queues.php:662 
     757#: page.queues.php:665 
    746758msgid "(**) ERRORS" 
    747759msgstr "" 
    748760 
    749 #: page.queues.php:662 
     761#: page.queues.php:665 
    750762msgid "(**) Warning Potential Errors" 
    751763msgstr "" 
    752764 
    753 #: page.queues.php:666 
     765#: page.queues.php:669 
    754766msgid "" 
    755767"ERROR: You have selected an IVR's that use Announcements created from " 
     
    761773msgstr "" 
    762774 
    763 #: page.queues.php:666 
     775#: page.queues.php:669 
    764776msgid "" 
    765777"Earlier versions of this module allowed such queues to be chosen, once " 
     
    767779msgstr "" 
    768780 
    769 #: page.queues.php:679 
     781#: page.queues.php:682 
    770782msgid "Repeat Frequency:" 
    771783msgstr "" 
    772784 
    773 #: page.queues.php:679 
     785#: page.queues.php:682 
    774786msgid "" 
    775787"How often to announce a voice menu to the caller (0 to Disable " 
     
    777789msgstr "" 
    778790 
    779 #: page.queues.php:700 
     791#: page.queues.php:703 
    780792msgid "Fail Over Destination" 
    781793msgstr "" 
    782794 
    783 #: page.queues.php:706 
     795#: page.queues.php:709 
    784796msgid "Submit Changes" 
    785797msgstr "" 
    786798 
    787 #: page.queues.php:729 
     799#: page.queues.php:732 
    788800msgid "" 
    789801"Using a Regex filter is fairly advanced, please confirm you know what you " 
     
    791803msgstr "" 
    792804 
    793 #: page.queues.php:740 
     805#: page.queues.php:743 
    794806msgid "Queue Number must not be blank" 
    795807msgstr "" 
    796808 
    797 #: page.queues.php:746 
     809#: page.queues.php:749 
    798810msgid "" 
    799811"Queue name must not be blank and must contain only alpha-numeric characters" 
    800812msgstr "" 
    801813 
    802 #: module.xml 
     814#: modules.xml 
    803815msgid "Queues" 
    804816msgstr "" 
  • modules/branches/2.5/queues/page.queues.php

    r6854 r7272  
    332332        if (isset($tresults)) { 
    333333          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; 
    336339          } 
    337340        } 
  • modules/branches/2.5/ringgroups/i18n/ringgroups.pot

    r6951 r7272  
    99"Project-Id-Version: PACKAGE VERSION\n" 
    1010"Report-Msgid-Bugs-To: \n" 
    11 "POT-Creation-Date: 2008-10-06 00:29+0200\n" 
     11"POT-Creation-Date: 2008-11-12 22:32+0100\n" 
    1212"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 
    1313"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" 
     
    297297msgstr "" 
    298298 
    299 #: page.ringgroups.php:323 
     299#: page.ringgroups.php:313 
     300msgid "none" 
     301msgstr "" 
     302 
     303#: page.ringgroups.php:314 
     304msgid "default" 
     305msgstr "" 
     306 
     307#: page.ringgroups.php:325 
    300308msgid "CID Name Prefix" 
    301309msgstr "" 
    302310 
    303 #: page.ringgroups.php:323 
     311#: page.ringgroups.php:325 
    304312msgid "" 
    305313"You can optionally prefix the Caller ID name when ringing extensions in this " 
     
    308316msgstr "" 
    309317 
    310 #: page.ringgroups.php:328 
     318#: page.ringgroups.php:330 
    311319msgid "Alert Info" 
    312320msgstr "" 
    313321 
    314 #: page.ringgroups.php:328 
     322#: page.ringgroups.php:330 
    315323msgid "ALERT_INFO can be used for distinctive ring with SIP devices." 
    316324msgstr "" 
    317325 
    318 #: page.ringgroups.php:333 
     326#: page.ringgroups.php:335 
    319327msgid "Ignore CF Settings" 
    320328msgstr "" 
    321329 
    322 #: page.ringgroups.php:333 
     330#: page.ringgroups.php:335 
    323331msgid "" 
    324332"When checked, agents who attempt to Call Forward will be ignored, this " 
     
    327335msgstr "" 
    328336 
    329 #: page.ringgroups.php:340 
     337#: page.ringgroups.php:342 
    330338msgid "Skip Busy Agent" 
    331339msgstr "" 
    332340 
    333 #: page.ringgroups.php:340 
     341#: page.ringgroups.php:342 
    334342msgid "" 
    335343"When checked, agents who are on an occupied phone will be skipped as if the " 
     
    339347msgstr "" 
    340348 
    341 #: page.ringgroups.php:347 
     349#: page.ringgroups.php:349 
    342350msgid "Confirm Calls" 
    343351msgstr "" 
    344352 
    345 #: page.ringgroups.php:347 
     353#: page.ringgroups.php:349 
    346354msgid "" 
    347355"Enable this if you're calling external numbers that need confirmation - eg, " 
     
    351359msgstr "" 
    352360 
    353 #: page.ringgroups.php:355 
     361#: page.ringgroups.php:357 
    354362msgid "Remote Announce:" 
    355363msgstr "" 
    356364 
    357 #: page.ringgroups.php:355 
     365#: page.ringgroups.php:357 
    358366msgid "" 
    359367"Message to be played to the person RECEIVING the call, if 'Confirm Calls' is " 
     
    362370msgstr "" 
    363371 
    364 #: page.ringgroups.php:361 page.ringgroups.php:379 
     372#: page.ringgroups.php:363 page.ringgroups.php:381 
    365373msgid "Default" 
    366374msgstr "" 
    367375 
    368 #: page.ringgroups.php:373 
     376#: page.ringgroups.php:375 
    369377msgid "Too-Late Announce:" 
    370378msgstr "" 
    371379 
    372 #: page.ringgroups.php:373 
     380#: page.ringgroups.php:375 
    373381msgid "" 
    374382"Message to be played to the person RECEIVING the call, if the call has " 
     
    377385msgstr "" 
    378386 
    379 #: page.ringgroups.php:396 
     387#: page.ringgroups.php:398 
    380388msgid "Destination if no answer" 
    381389msgstr "" 
    382390 
    383 #: page.ringgroups.php:404 
     391#: page.ringgroups.php:406 
    384392msgid "Submit Changes" 
    385393msgstr "" 
    386394 
    387 #: page.ringgroups.php:432 
     395#: page.ringgroups.php:434 
    388396msgid "Invalid Group Number specified" 
    389397msgstr "" 
    390398 
    391 #: page.ringgroups.php:433 
     399#: page.ringgroups.php:435 
    392400msgid "Please enter an extension list." 
    393401msgstr "" 
    394402 
    395 #: page.ringgroups.php:434 
     403#: page.ringgroups.php:436 
    396404msgid "Invalid Caller ID prefix." 
    397405msgstr "" 
    398406 
    399 #: page.ringgroups.php:435 
     407#: page.ringgroups.php:437 
    400408msgid "Invalid time specified" 
    401409msgstr "" 
    402410 
    403 #: page.ringgroups.php:436 
     411#: page.ringgroups.php:438 
    404412msgid "Time must be between 1 and 60 seconds" 
    405413msgstr "" 
    406414 
    407 #: page.ringgroups.php:437 
     415#: page.ringgroups.php:439 
    408416msgid "Please enter a valid Group Description" 
    409417msgstr "" 
    410418 
    411 #: page.ringgroups.php:438 
     419#: page.ringgroups.php:440 
    412420msgid "" 
    413421"Only ringall, ringallv2, hunt and the respective -prim versions are " 
     
    415423msgstr "" 
    416424 
    417 #: module.xml 
     425#: modules.xml 
    418426msgid "Ring Groups" 
    419427msgstr "" 
  • modules/branches/2.5/ringgroups/page.ringgroups.php

    r6882 r7272  
    311311            if (isset($tresults[0])) { 
    312312              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"; 
    314316              } 
    315317            }