Changeset 6491

Show
Ignore:
Timestamp:
08/28/08 01:34:41 (5 years ago)
Author:
p_lindheimer
Message:

Merged revisions 6460-6490 via svnmerge from
http://svn.freepbx.org/freepbx/trunk

........

r6480 | mickecarlsson | 2008-08-26 08:20:49 -0700 (Tue, 26 Aug 2008) | 1 line


Enclosed text strings for translation

........

r6482 | mickecarlsson | 2008-08-26 10:53:32 -0700 (Tue, 26 Aug 2008) | 1 line


All new text strings from core and framework added, adds missing folder views

........

r6487 | mickecarlsson | 2008-08-27 12:14:50 -0700 (Wed, 27 Aug 2008) | 1 line


Fixed #3117, and also updated the otyher modules in cdr, checking for invalid dates

........

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • freepbx/branches/2.5

    • Property svnmerge-integrated changed from /freepbx/branches/2.4:1-5944 /freepbx/trunk:1-6459 to /freepbx/branches/2.4:1-5944 /freepbx/trunk:1-6490
  • freepbx/branches/2.5/amp_conf/htdocs/admin/cdr/call-comp.php

    r5360 r6491  
    171171  if (isset($fromstatsday_sday) && isset($fromstatsmonth_sday)) $date_clause.=" AND calldate < date'$fromstatsmonth_sday-$fromstatsday_sday'+ INTERVAL '1 DAY' AND calldate >= date'$fromstatsmonth_sday-$fromstatsday_sday' - INTERVAL '$days_compare DAY'"; 
    172172}else{ 
    173   if (isset($fromstatsday_sday) && isset($fromstatsmonth_sday)) $date_clause.=" AND calldate < ADDDATE('$fromstatsmonth_sday-$fromstatsday_sday',INTERVAL 1 DAY) AND calldate >= SUBDATE('$fromstatsmonth_sday-$fromstatsday_sday',INTERVAL $days_compare DAY)";   
     173  if (isset($fromstatsday_sday) && isset($fromstatsmonth_sday)) 
     174  { //check for invalid start date 
     175  $daysinamonth = date("t",strtotime($fromstatsmonth_sday."-01")); 
     176  if ($fromstatsday_sday > $daysinamonth) $fromstatsday_sday = $daysinamonth; 
     177  $date_clause.=" AND calldate < ADDDATE('$fromstatsmonth_sday-$fromstatsday_sday',INTERVAL 1 DAY) AND calldate >= SUBDATE('$fromstatsmonth_sday-$fromstatsday_sday',INTERVAL $days_compare DAY)"; 
     178  } 
    174179} 
    175180 
  • freepbx/branches/2.5/amp_conf/htdocs/admin/cdr/call-daily-load.php

    r5360 r6491  
    163163  if (isset($fromstatsday_sday) && isset($fromstatsmonth_sday)) $date_clause.=" AND calldate < date'$fromstatsmonth_sday-$fromstatsday_sday'+ INTERVAL '1 DAY' AND calldate >= date'$fromstatsmonth_sday-$fromstatsday_sday'"; 
    164164}else{ 
    165   if (isset($fromstatsday_sday) && isset($fromstatsmonth_sday)) $date_clause.=" AND calldate < ADDDATE('$fromstatsmonth_sday-$fromstatsday_sday',INTERVAL 1 DAY) AND calldate >= '$fromstatsmonth_sday-$fromstatsday_sday'";   
     165  if (isset($fromstatsday_sday) && isset($fromstatsmonth_sday)) 
     166      { // check for ivalid start date 
     167      $daysinamonth = date("t",strtotime($fromstatsmonth_sday."-01")); 
     168      if ($fromstatsday_sday > $daysinamonth) $fromstatsday_sday = $daysinamonth; 
     169      $date_clause.=" AND calldate < ADDDATE('$fromstatsmonth_sday-$fromstatsday_sday',INTERVAL 1 DAY) AND calldate >= '$fromstatsmonth_sday-$fromstatsday_sday'"; 
     170      } 
    166171} 
    167172 
  • freepbx/branches/2.5/amp_conf/htdocs/admin/cdr/call-last-month.php

    r5360 r6491  
    164164  if (isset($fromstatsday_sday) && isset($fromstatsmonth_sday)) $date_clause.=" AND calldate < date'$fromstatsmonth_sday-$fromstatsday_sday'+ INTERVAL '1 DAY' AND calldate >= date'$fromstatsmonth_sday-$fromstatsday_sday' - INTERVAL '$days_compare DAY'"; 
    165165}else{ 
    166   if (isset($fromstatsday_sday) && isset($fromstatsmonth_sday)) $date_clause.=" AND calldate < ADDDATE('$fromstatsmonth_sday-$fromstatsday_sday',INTERVAL 1 DAY) AND calldate >= SUBDATE('$fromstatsmonth_sday-$fromstatsday_sday',INTERVAL $days_compare DAY)";   
     166  if (isset($fromstatsday_sday) && isset($fromstatsmonth_sday)) 
     167      { //check for invalid start date 
     168      $daysinamonth = date("t",strtotime($fromstatsmonth_sday."-01")); 
     169      if ($fromstatsday_sday > $daysinamonth) $fromstatsday_sday = $daysinamonth; 
     170      $date_clause.=" AND calldate < ADDDATE('$fromstatsmonth_sday-$fromstatsday_sday',INTERVAL 1 DAY) AND calldate >= SUBDATE('$fromstatsmonth_sday-$fromstatsday_sday',INTERVAL $days_compare DAY)"; 
     171      } 
    167172} 
    168173 
  • freepbx/branches/2.5/amp_conf/htdocs/admin/cdr/call-log.php

    r5360 r6491  
    212212    $UNIX_TIMESTAMP = "UNIX_TIMESTAMP"; 
    213213} 
    214  
    215214if (isset($Period) && $Period=="Month"){ 
    216215    if ($frommonth && isset($fromstatsmonth)) $date_clause.=" AND $UNIX_TIMESTAMP(calldate) >= $UNIX_TIMESTAMP('$fromstatsmonth-01')"; 
    217     if ($tomonth && isset($tostatsmonth)) $date_clause.=" AND $UNIX_TIMESTAMP(calldate) <= $UNIX_TIMESTAMP('$tostatsmonth-31 23:59:59')"; 
     216    if ($tomonth && isset($tostatsmonth)) 
     217                    { 
     218                    $daysinamonth = date("t",strtotime($tostatsmonth."-01")); 
     219                    $date_clause.=" AND $UNIX_TIMESTAMP(calldate) <= $UNIX_TIMESTAMP('$tostatsmonth-$daysinamonth 23:59:59')"; 
     220                    } 
    218221}else{ 
    219     if ((isset($fromday) && $fromday) && isset($fromstatsday_sday) && isset($fromstatsmonth_sday)) $date_clause.=" AND $UNIX_TIMESTAMP(calldate) >= $UNIX_TIMESTAMP('$fromstatsmonth_sday-$fromstatsday_sday')"; 
    220     if ((isset($today) && $today) && isset($tostatsday_sday) && isset($tostatsmonth_sday)) $date_clause.=" AND $UNIX_TIMESTAMP(calldate) <= $UNIX_TIMESTAMP('$tostatsmonth_sday-".sprintf("%02d",intval($tostatsday_sday)/*+1*/)." 23:59:59')"; 
     222                if ((isset($fromday) && $fromday) && isset($fromstatsday_sday) && isset($fromstatsmonth_sday)) 
     223                    { // check for invalid start date 
     224                    $daysinamonth =  date("t",strtotime($fromstatsmonth_sday."-01")); 
     225                    if ($fromstatsday_sday > $daysinamonth) $fromstatsday_sday = $daysinamonth; 
     226                    $date_clause.=" AND $UNIX_TIMESTAMP(calldate) >= $UNIX_TIMESTAMP('$fromstatsmonth_sday-$fromstatsday_sday')"; 
     227                    } 
     228                if ((isset($today) && $today) && isset($tostatsday_sday) && isset($tostatsmonth_sday)) 
     229                    { //check for invalid end date 
     230                    $daysinamonth =  date("t",strtotime($tostatsmonth_sday."-01")); 
     231                    if ($tostatsday_sday > $daysinamonth) $tostatsday_sday = $daysinamonth; 
     232                    $date_clause.=" AND $UNIX_TIMESTAMP(calldate) <= $UNIX_TIMESTAMP('$tostatsmonth_sday-".sprintf("%02d",intval($tostatsday_sday)/*+1*/)." 23:59:59')"; 
     233                    } 
    221234} 
    222235//echo "<br>$date_clause<br>"; 
  • freepbx/branches/2.5/amp_conf/htdocs/admin/panel.php

    r4993 r6491  
    1414$quietmode = isset($_REQUEST['quietmode'])?$_REQUEST['quietmode']:''; 
    1515 
    16 $title="FreePBX: Flash Operator Panel"
    17 $message="Flash Operator Panel"
     16$title=_("FreePBX: Flash Operator Panel")
     17$message=_("Flash Operator Panel")
    1818 
    1919include 'header.php'; 
  • freepbx/branches/2.5/amp_conf/htdocs/admin/reports.php

    r5361 r6491  
    1414$quietmode = isset($_REQUEST['quietmode'])?$_REQUEST['quietmode']:''; 
    1515 
    16 $title="FreePBX: Call Detail Reports"
    17 $message="Call Detail Reports"
     16$title=_("FreePBX: Call Detail Reports")
     17$message=_("Call Detail Reports")
    1818 
    1919include 'header.php'; 
  • freepbx/branches/2.5/freepbx.pot

    r6460 r6491  
    99"Project-Id-Version: PACKAGE VERSION\n" 
    1010"Report-Msgid-Bugs-To: \n" 
    11 "POT-Creation-Date: 2008-08-21 08:15+0200\n" 
     11"POT-Creation-Date: 2008-08-27 19:56+0200\n" 
    1212"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 
    1313"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" 
     
    1717"Content-Transfer-Encoding: 8bit\n" 
    1818 
    19 #: amp_conf/htdocs/admin/components.class.php:359 
    20 #: amp_conf/htdocs/admin/modules/core/page.did.php:300 
    21 msgid "Submit" 
    22 msgstr "" 
    23  
    24 #: amp_conf/htdocs/admin/components.class.php:625 
    25 #: amp_conf/htdocs/admin/components.class.php:655 
    26 msgid "text" 
    27 msgstr "" 
    28  
    2919#: amp_conf/htdocs/admin/featurecodes.class.php:289 
    3020msgid "** MISSING FEATURE CODE **" 
     21msgstr "" 
     22 
     23#: amp_conf/htdocs/admin/header.php:133 
     24msgid "Default Asterisk Manager Password Used" 
     25msgstr "" 
     26 
     27#: amp_conf/htdocs/admin/header.php:133 
     28msgid "" 
     29"You are using the default Asterisk Manager password that is widely known, " 
     30"you should set a secure password" 
     31msgstr "" 
     32 
     33#: amp_conf/htdocs/admin/views/welcome.php:3 
     34msgid "Welcome to freePBX." 
     35msgstr "" 
     36 
     37#: amp_conf/htdocs/admin/views/welcome.php:9 
     38msgid "Critical" 
     39msgstr "" 
     40 
     41#: amp_conf/htdocs/admin/views/welcome.php:10 
     42msgid "Security" 
     43msgstr "" 
     44 
     45#: amp_conf/htdocs/admin/views/welcome.php:11 
     46msgid "Update" 
     47msgstr "" 
     48 
     49#: amp_conf/htdocs/admin/views/welcome.php:12 
     50msgid "Error" 
     51msgstr "" 
     52 
     53#: amp_conf/htdocs/admin/views/welcome.php:13 
     54msgid "Warning" 
     55msgstr "" 
     56 
     57#: amp_conf/htdocs/admin/views/welcome.php:14 
     58msgid "Notice" 
     59msgstr "" 
     60 
     61#: amp_conf/htdocs/admin/views/welcome.php:36 
     62msgid "" 
     63"If you're new to freePBX, Welcome. Here are some quick instructions to get " 
     64"you started" 
     65msgstr "" 
     66 
     67#: amp_conf/htdocs/admin/views/welcome.php:40 
     68#, php-format 
     69msgid "" 
     70"There are a large number of Plug-in modules available from the Online " 
     71"Repository. This is\n" 
     72"available by clicking on the <a href='%s'>Tools menu</a> up the top, then\n" 
     73"<a href='%s'>Module Admin</a>, then\n" 
     74"<a href='%s'>Check for updates online</a>.\n" 
     75"Modules are updated and patched often, so if you are having a problem, it's " 
     76"worth checking there to see if there's\n" 
     77"a new version of the module available." 
     78msgstr "" 
     79 
     80#: amp_conf/htdocs/admin/views/welcome.php:54 
     81#, php-format 
     82msgid "" 
     83"If you're having any problems, you can also use the <a href='%s'>Online " 
     84"Support</a> \n" 
     85"module (<b>you need to install this through the <a href='%s'>Module " 
     86"Repository</a> first</b>)\n" 
     87"to talk to other users and the devlopers in real time. Click on <a href='%" 
     88"s'>Start IRC</a>,\n" 
     89"when the module is installed, to start a Java IRC client." 
     90msgstr "" 
     91 
     92#: amp_conf/htdocs/admin/views/welcome.php:66 
     93#, php-format 
     94msgid "" 
     95"There is also a community based <a href='%s' target='_new'>freePBX Web " 
     96"Forum</a> where you can post\n" 
     97"questions and search for answers for any problems you may be having." 
     98msgstr "" 
     99 
     100#: amp_conf/htdocs/admin/views/welcome.php:71 
     101msgid "We hope you enjoy using freePBX!" 
     102msgstr "" 
     103 
     104#: amp_conf/htdocs/admin/views/freepbx_reloadbar.php:3 
     105msgid "Reload Required" 
     106msgstr "" 
     107 
     108#: amp_conf/htdocs/admin/views/freepbx_reloadbar.php:4 
     109#: amp_conf/htdocs/admin/views/freepbx_reloadbar.php:6 
     110#: amp_conf/htdocs/admin/views/freepbx_reload.php:107 
     111msgid "Apply Configuration Changes" 
     112msgstr "" 
     113 
     114#: amp_conf/htdocs/admin/views/freepbx_reloadbar.php:5 
     115#, php-format 
     116msgid "" 
     117"You have made changes to the configuration that have not yet been applied. " 
     118"When you are " 
     119msgstr "" 
     120 
     121#: amp_conf/htdocs/admin/views/freepbx_reloadbar.php:6 
     122#, php-format 
     123msgid "finished making all changes, click on %s to put them into effect." 
     124msgstr "" 
     125 
     126#: amp_conf/htdocs/admin/views/unauthorized.php:4 
     127msgid "Unauthorized" 
     128msgstr "" 
     129 
     130#: amp_conf/htdocs/admin/views/unauthorized.php:5 
     131msgid "You are not authorized to access this page." 
     132msgstr "" 
     133 
     134#: amp_conf/htdocs/admin/views/freepbx_admin.php:78 
     135#: amp_conf/htdocs/admin/modules/core/page.ampusers.php:216 
     136msgid "category" 
     137msgstr "" 
     138 
     139#: amp_conf/htdocs/admin/views/freepbx_admin.php:98 
     140#: amp_conf/htdocs/admin/views/freepbx_admin.php:100 
     141#: amp_conf/htdocs/admin/modules/core/page.ampusers.php:222 
     142msgid "name" 
     143msgstr "" 
     144 
     145#: amp_conf/htdocs/admin/views/freepbx_admin.php:158 
     146msgid "" 
     147"WARNING: Javascript is disabled in your browser. The FreePBX administration " 
     148"interface requires Javascript to run properly. Please enable javascript or " 
     149"switch to another  browser that supports it." 
     150msgstr "" 
     151 
     152#: amp_conf/htdocs/admin/views/freepbx_admin.php:172 
     153#, php-format 
     154msgid "%s is a registered trademark of %s" 
     155msgstr "" 
     156 
     157#: amp_conf/htdocs/admin/views/freepbx_admin.php:173 
     158#: amp_conf/htdocs/admin/views/freepbx_admin.php:176 
     159#: amp_conf/htdocs/admin/views/freepbx.php:140 
     160#: amp_conf/htdocs/admin/views/freepbx.php:149 
     161msgid "FreePBX" 
     162msgstr "" 
     163 
     164#: amp_conf/htdocs/admin/views/freepbx_admin.php:175 
     165#, php-format 
     166msgid "%s is licensed under %s" 
     167msgstr "" 
     168 
     169#: amp_conf/htdocs/admin/views/loggedout.php:4 
     170msgid "Logged out" 
     171msgstr "" 
     172 
     173#: amp_conf/htdocs/admin/views/loggedout.php:5 
     174msgid "You have been succesfully logged out." 
     175msgstr "" 
     176 
     177#: amp_conf/htdocs/admin/views/loggedout.php:6 
     178msgid "Log in" 
     179msgstr "" 
     180 
     181#: amp_conf/htdocs/admin/views/welcome_nomanager.php:2 
     182msgid "Warning:" 
     183msgstr "" 
     184 
     185#: amp_conf/htdocs/admin/views/welcome_nomanager.php:5 
     186msgid "Cannot connect to Asterisk Manager with " 
     187msgstr "" 
     188 
     189#: amp_conf/htdocs/admin/views/welcome_nomanager.php:7 
     190msgid "Asterisk may not be running." 
     191msgstr "" 
     192 
     193#: amp_conf/htdocs/admin/views/freepbx_reload.php:71 
     194msgid "" 
     195" error(s) occured, you should view the notification log on the dashboard or " 
     196"main screen to check for more details." 
     197msgstr "" 
     198 
     199#: amp_conf/htdocs/admin/views/freepbx_reload.php:75 
     200#: amp_conf/htdocs/admin/views/freepbx_reload.php:89 
     201msgid "Close" 
     202msgstr "" 
     203 
     204#: amp_conf/htdocs/admin/views/freepbx_reload.php:76 
     205msgid "Retry" 
     206msgstr "" 
     207 
     208#: amp_conf/htdocs/admin/views/freepbx_reload.php:88 
     209msgid "Error: Did not receive valid response from server" 
     210msgstr "" 
     211 
     212#: amp_conf/htdocs/admin/views/freepbx_reload.php:108 
     213msgid "" 
     214"Reloading will apply all configuration changes made in FreePBX to your PBX " 
     215"engine and make them active." 
     216msgstr "" 
     217 
     218#: amp_conf/htdocs/admin/views/freepbx_reload.php:110 
     219msgid "Accept" 
     220msgstr "" 
     221 
     222#: amp_conf/htdocs/admin/views/freepbx_reload.php:110 
     223msgid "Continue with reload" 
     224msgstr "" 
     225 
     226#: amp_conf/htdocs/admin/views/freepbx_reload.php:111 
     227#: amp_conf/htdocs/admin/page.modules.php:525 
     228msgid "Cancel" 
     229msgstr "" 
     230 
     231#: amp_conf/htdocs/admin/views/freepbx_reload.php:111 
     232msgid "Cancel reload and go back to editing" 
     233msgstr "" 
     234 
     235#: amp_conf/htdocs/admin/views/freepbx_reload.php:116 
     236msgid "Please wait, reloading.." 
     237msgstr "" 
     238 
     239#: amp_conf/htdocs/admin/views/freepbx_reload.php:117 
     240msgid "Loading..." 
     241msgstr "" 
     242 
     243#: amp_conf/htdocs/admin/views/freepbx.php:147 
     244#, php-format 
     245msgid "%s %s on %s" 
     246msgstr "" 
     247 
     248#: amp_conf/htdocs/admin/views/freepbx.php:164 
     249msgid "Management" 
     250msgstr "" 
     251 
     252#: amp_conf/htdocs/admin/views/freepbx.php:165 
     253msgid "Admin" 
     254msgstr "" 
     255 
     256#: amp_conf/htdocs/admin/views/freepbx.php:166 
     257msgid "Reports" 
     258msgstr "" 
     259 
     260#: amp_conf/htdocs/admin/views/freepbx.php:167 
     261msgid "Panel" 
     262msgstr "" 
     263 
     264#: amp_conf/htdocs/admin/views/freepbx.php:168 
     265msgid "Recordings" 
     266msgstr "" 
     267 
     268#: amp_conf/htdocs/admin/views/freepbx.php:169 
     269msgid "Help" 
     270msgstr "" 
     271 
     272#: amp_conf/htdocs/admin/views/freepbx.php:186 
     273msgid "Logged in: " 
     274msgstr "" 
     275 
     276#: amp_conf/htdocs/admin/views/freepbx.php:187 
     277msgid "Logout" 
     278msgstr "" 
     279 
     280#: amp_conf/htdocs/admin/views/menuitem_disabled.php:3 
     281#, php-format 
     282msgid "[WARNING]: Menu Item: %s is disabled because asterisk is not running" 
     283msgstr "" 
     284 
     285#: amp_conf/htdocs/admin/views/menuitem_disabled.php:4 
     286msgid "" 
     287"Restart Asterisk and then refresh the browser in order to try accessing this " 
     288"menu item again." 
     289msgstr "" 
     290 
     291#: amp_conf/htdocs/admin/views/noaccess.php:4 
     292msgid "Not found" 
     293msgstr "" 
     294 
     295#: amp_conf/htdocs/admin/views/noaccess.php:5 
     296msgid "" 
     297"The section you requested does not exist or you do not have access to it." 
     298msgstr "" 
     299 
     300#: amp_conf/htdocs/admin/common/db_connect.php:77 
     301msgid "Default SQL Password Used" 
     302msgstr "" 
     303 
     304#: amp_conf/htdocs/admin/common/db_connect.php:77 
     305msgid "" 
     306"You are using the default SQL password that is widely known, you should set " 
     307"a secure password" 
     308msgstr "" 
     309 
     310#: amp_conf/htdocs/admin/common/db_connect.php:88 
     311msgid "Memory Limit Changed" 
     312msgstr "" 
     313 
     314#: amp_conf/htdocs/admin/common/db_connect.php:88 
     315#, php-format 
     316msgid "" 
     317"Your memory_limit, %sM, is set too low and has been increased to %sM. You " 
     318"may want to change this in you php.ini config file" 
     319msgstr "" 
     320 
     321#: amp_conf/htdocs/admin/common/db_connect.php:90 
     322msgid "Low Memory Limit" 
     323msgstr "" 
     324 
     325#: amp_conf/htdocs/admin/common/db_connect.php:90 
     326#, php-format 
     327msgid "" 
     328"Your memory_limit, %sM, is set too low and may cause problems. FreePBX is " 
     329"not able to change this on your system. You should increase this to %sM in " 
     330"you php.ini config file" 
     331msgstr "" 
     332 
     333#: amp_conf/htdocs/admin/common/script.js.php:36 
     334msgid "Please select a \"Destination\"" 
     335msgstr "" 
     336 
     337#: amp_conf/htdocs/admin/common/script.js.php:44 
     338msgid "" 
     339"Custom Goto contexts must contain the string \"custom-\".  ie: custom-app,s,1" 
     340msgstr "" 
     341 
     342#: amp_conf/htdocs/admin/components.class.php:359 
     343#: amp_conf/htdocs/admin/modules/core/page.did.php:306 
     344msgid "Submit" 
     345msgstr "" 
     346 
     347#: amp_conf/htdocs/admin/components.class.php:625 
     348#: amp_conf/htdocs/admin/components.class.php:669 
     349msgid "text" 
     350msgstr "" 
     351 
     352#: amp_conf/htdocs/admin/header_auth.php:43 
     353#: amp_conf/htdocs/admin/header_auth.php:70 
     354msgid "Administration" 
     355msgstr "" 
     356 
     357#: amp_conf/htdocs/admin/panel.php:16 
     358msgid "FreePBX: Flash Operator Panel" 
     359msgstr "" 
     360 
     361#: amp_conf/htdocs/admin/panel.php:17 
     362msgid "Flash Operator Panel" 
    31363msgstr "" 
    32364 
     
    98430 
    99431#: amp_conf/htdocs/admin/functions.inc.php:1272 
    100 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4531 
    101 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4533 
    102432#: amp_conf/htdocs/admin/modules/core/page.routing.php:578 
     433#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4551 
     434#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4553 
    103435msgid "Add" 
    104436msgstr "" 
     
    411743msgstr "" 
    412744 
    413 #: amp_conf/htdocs/admin/header_auth.php:43 
    414 #: amp_conf/htdocs/admin/header_auth.php:70 
    415 msgid "Administration" 
    416 msgstr "" 
    417  
    418 #: amp_conf/htdocs/admin/header.php:133 
    419 msgid "Default Asterisk Manager Password Used" 
    420 msgstr "" 
    421  
    422 #: amp_conf/htdocs/admin/header.php:133 
    423 msgid "" 
    424 "You are using the default Asterisk Manager password that is widely known, " 
    425 "you should set a secure password" 
    426 msgstr "" 
    427  
    428 #: amp_conf/htdocs/admin/page.modules.php:148 
    429 msgid "Module Administration" 
    430 msgstr "" 
    431  
    432 #: amp_conf/htdocs/admin/page.modules.php:166 
    433 #, php-format 
    434 msgid "" 
    435 "Warning: Cannot connect to online repository (%s). Online modules are not " 
    436 "available." 
    437 msgstr "" 
    438  
    439 #: amp_conf/htdocs/admin/page.modules.php:170 
    440 #, php-format 
    441 msgid "" 
    442 "Warning: Error retrieving updates from online repository (%s). Online " 
    443 "modules are not available." 
    444 msgstr "" 
    445  
    446 #: amp_conf/htdocs/admin/page.modules.php:229 
    447 msgid "Untarring.." 
    448 msgstr "" 
    449  
    450 #: amp_conf/htdocs/admin/page.modules.php:249 
    451 msgid "Done." 
    452 msgstr "" 
    453  
    454 #: amp_conf/htdocs/admin/page.modules.php:304 
    455 msgid "Please wait while module actions are performed" 
    456 msgstr "" 
    457  
    458 #: amp_conf/htdocs/admin/page.modules.php:319 
    459 #, php-format 
    460 msgid "Downloading %s" 
    461 msgstr "" 
    462  
    463 #: amp_conf/htdocs/admin/page.modules.php:321 
    464 #, php-format 
    465 msgid "Error(s) downloading %s" 
    466 msgstr "" 
    467  
    468 #: amp_conf/htdocs/admin/page.modules.php:327 
    469 #: amp_conf/htdocs/admin/page.modules.php:339 
    470 #, php-format 
    471 msgid "Error(s) installing %s" 
    472 msgstr "" 
    473  
    474 #: amp_conf/htdocs/admin/page.modules.php:331 
    475 #: amp_conf/htdocs/admin/page.modules.php:343 
    476 #, php-format 
    477 msgid "%s installed successfully" 
    478 msgstr "" 
    479  
    480 #: amp_conf/htdocs/admin/page.modules.php:349 
    481 #, php-format 
    482 msgid "Error(s) enabling %s" 
    483 msgstr "" 
    484  
    485 #: amp_conf/htdocs/admin/page.modules.php:353 
    486 #, php-format 
    487 msgid "%s enabled successfully" 
    488 msgstr "" 
    489  
    490 #: amp_conf/htdocs/admin/page.modules.php:358 
    491 #, php-format 
    492 msgid "Error(s) disabling %s" 
    493 msgstr "" 
    494  
    495 #: amp_conf/htdocs/admin/page.modules.php:362 
    496 #, php-format 
    497 msgid "%s disabled successfully" 
    498 msgstr "" 
    499  
    500 #: amp_conf/htdocs/admin/page.modules.php:368 
    501 #, php-format 
    502 msgid "Error(s) uninstalling %s" 
    503 msgstr "" 
    504  
    505 #: amp_conf/htdocs/admin/page.modules.php:372 
    506 #, php-format 
    507 msgid "%s uninstalled successfully" 
    508 msgstr "" 
    509  
    510 #: amp_conf/htdocs/admin/page.modules.php:388 
    511 #: amp_conf/htdocs/admin/page.modules.php:390 
    512 msgid "Return" 
    513 msgstr "" 
    514  
    515 #: amp_conf/htdocs/admin/page.modules.php:421 
    516 #: amp_conf/htdocs/admin/page.modules.php:445 
    517 #, php-format 
    518 msgid "" 
    519 "%s cannot be upgraded: %s Please try again after the dependencies have been " 
    520 "installed." 
    521 msgstr "" 
    522  
    523 #: amp_conf/htdocs/admin/page.modules.php:425 
    524 #, php-format 
    525 msgid "%s %s will be upgraded to online version %s" 
    526 msgstr "" 
    527  
    528 #: amp_conf/htdocs/admin/page.modules.php:433 
    529 #: amp_conf/htdocs/admin/page.modules.php:445 
    530 #, php-format 
    531 msgid "" 
    532 "%s cannot be installed: %s Please try again after the dependencies have been " 
    533 "installed." 
    534 msgstr "" 
    535  
    536 #: amp_conf/htdocs/admin/page.modules.php:437 
    537 #, php-format 
    538 msgid "%s %s will be downloaded and installed" 
    539 msgstr "" 
    540  
    541 #: amp_conf/htdocs/admin/page.modules.php:450 
    542 #, php-format 
    543 msgid "%s %s will be upgraded to %s" 
    544 msgstr "" 
    545  
    546 #: amp_conf/htdocs/admin/page.modules.php:452 
    547 #, php-format 
    548 msgid "%s %s will be installed and enabled" 
    549 msgstr "" 
    550  
    551 #: amp_conf/htdocs/admin/page.modules.php:460 
    552 #, php-format 
    553 msgid "" 
    554 "%s cannot be enabled: %s Please try again after the dependencies have been " 
    555 "installed." 
    556 msgstr "" 
    557  
    558 #: amp_conf/htdocs/admin/page.modules.php:464 
    559 #, php-format 
    560 msgid "%s %s will be enabled" 
    561 msgstr "" 
    562  
    563 #: amp_conf/htdocs/admin/page.modules.php:470 
    564 #, php-format 
    565 msgid "" 
    566 "%s cannot be disabled because the following modules depend on it: %s Please " 
    567 "disable those modules first then try again." 
    568 msgstr "" 
    569  
    570 #: amp_conf/htdocs/admin/page.modules.php:474 
    571 #, php-format 
    572 msgid "%s %s will be disabled" 
    573 msgstr "" 
    574  
    575 #: amp_conf/htdocs/admin/page.modules.php:481 
    576 #, php-format 
    577 msgid "" 
    578 "%s cannot be uninstalled because the following modules depend on it: %s " 
    579 "Please disable those modules first then try again." 
    580 msgstr "" 
    581  
    582 #: amp_conf/htdocs/admin/page.modules.php:485 
    583 #, php-format 
    584 msgid "%s %s will be uninstalled" 
    585 msgstr "" 
    586  
    587 #: amp_conf/htdocs/admin/page.modules.php:502 
    588 msgid "Errors with selection:" 
    589 msgstr "" 
    590  
    591 #: amp_conf/htdocs/admin/page.modules.php:511 
    592 msgid "" 
    593 "You may confirm the remaining selection and then try the again for the " 
    594 "listed issues once the required dependencies have been met:" 
    595 msgstr "" 
    596  
    597 #: amp_conf/htdocs/admin/page.modules.php:513 
    598 msgid "Please confirm the following actions:" 
    599 msgstr "" 
    600  
    601 #: amp_conf/htdocs/admin/page.modules.php:522 
    602 msgid "No actions to perform" 
    603 msgstr "" 
    604  
    605 #: amp_conf/htdocs/admin/page.modules.php:523 
    606 msgid "" 
    607 "Please select at least one action to perform by clicking on the module, and " 
    608 "selecting an action on the \"Action\" tab." 
    609 msgstr "" 
    610  
    611 #: amp_conf/htdocs/admin/page.modules.php:525 
    612 msgid "Cancel" 
    613 msgstr "" 
    614  
    615 #: amp_conf/htdocs/admin/page.modules.php:531 
    616 #: amp_conf/htdocs/admin/page.modules.php:587 
    617 msgid "Manage local modules" 
    618 msgstr "" 
    619  
    620 #: amp_conf/htdocs/admin/page.modules.php:533 
    621 #: amp_conf/htdocs/admin/page.modules.php:592 
    622 msgid "Check for updates online" 
    623 msgstr "" 
    624  
    625 #: amp_conf/htdocs/admin/page.modules.php:533 
    626 #: amp_conf/htdocs/admin/page.modules.php:592 
    627 msgid "" 
    628 "Checking for updates will transmit your FreePBX and Asterisk version numbers " 
    629 "along with a unique but random identifier. This is used to provide proper " 
    630 "update information and track version usage to focus development and " 
    631 "maintenance efforts. No private information is transmitted." 
    632 msgstr "" 
    633  
    634 #: amp_conf/htdocs/admin/page.modules.php:538 
    635 #: amp_conf/htdocs/admin/page.modules.php:594 
    636 msgid "Upload module" 
    637 msgstr "" 
    638  
    639 #: amp_conf/htdocs/admin/page.modules.php:544 
    640 #, php-format 
    641 msgid "The following error(s) occurred processing the uploaded file: %s" 
    642 msgstr "" 
    643  
    644 #: amp_conf/htdocs/admin/page.modules.php:546 
    645 #, php-format 
    646 msgid "You should fix the problem or select another file and %s." 
    647 msgstr "" 
    648  
    649 #: amp_conf/htdocs/admin/page.modules.php:547 
    650 msgid "try again" 
    651 msgstr "" 
    652  
    653 #: amp_conf/htdocs/admin/page.modules.php:551 
    654 #, php-format 
    655 msgid "" 
    656 "Module uploaded successfully. You need to enable the module using %s to make " 
    657 "it available." 
    658 msgstr "" 
    659  
    660 #: amp_conf/htdocs/admin/page.modules.php:552 
    661 msgid "local module administration" 
    662 msgstr "" 
    663  
    664 #: amp_conf/htdocs/admin/page.modules.php:557 
    665 msgid "" 
    666 "You can upload a tar gzip file containing a FreePBX module from your local " 
    667 "system. If a module with the same name already exists, it will be " 
    668 "overwritten." 
    669 msgstr "" 
    670  
    671 #: amp_conf/htdocs/admin/page.modules.php:588 
    672 msgid "Show only upgradable" 
    673 msgstr "" 
    674  
    675 #: amp_conf/htdocs/admin/page.modules.php:605 
    676 #: amp_conf/htdocs/admin/page.modules.php:868 
    677 msgid "Download all" 
    678 msgstr "" 
    679  
    680 #: amp_conf/htdocs/admin/page.modules.php:606 
    681 #: amp_conf/htdocs/admin/page.modules.php:869 
    682 msgid "Upgrade all" 
    683 msgstr "" 
    684  
    685 #: amp_conf/htdocs/admin/page.modules.php:608 
    686 #: amp_conf/htdocs/admin/page.modules.php:871 
    687 msgid "Reset" 
    688 msgstr "" 
    689  
    690 #: amp_conf/htdocs/admin/page.modules.php:609 
    691 #: amp_conf/htdocs/admin/page.modules.php:872 
    692 msgid "Process" 
    693 msgstr "" 
    694  
    695 #: amp_conf/htdocs/admin/page.modules.php:615 
    696 msgid "Module" 
    697 msgstr "" 
    698  
    699 #: amp_conf/htdocs/admin/page.modules.php:616 
    700 msgid "Type" 
    701 msgstr "" 
    702  
    703 #: amp_conf/htdocs/admin/page.modules.php:617 
    704 msgid "Version" 
    705 msgstr "" 
    706  
    707 #: amp_conf/htdocs/admin/page.modules.php:661 
    708 msgid "Not Installed (Locally available)" 
    709 msgstr "" 
    710  
    711 #: amp_conf/htdocs/admin/page.modules.php:663 
    712 #, php-format 
    713 msgid "Not Installed (Available online: %s)" 
    714 msgstr "" 
    715  
    716 #: amp_conf/htdocs/admin/page.modules.php:670 
    717 #, php-format 
    718 msgid "Disabled; Online upgrade available (%s)" 
    719 msgstr "" 
    720  
    721 #: amp_conf/htdocs/admin/page.modules.php:672 
    722 #, php-format 
    723 msgid "Disabled; Newer than online version (%s)" 
    724 msgstr "" 
    725  
    726 #: amp_conf/htdocs/admin/page.modules.php:674 
    727 msgid "Disabled; up to date" 
    728 msgstr "" 
    729  
    730 #: amp_conf/htdocs/admin/page.modules.php:681 
    731 #, php-format 
    732 msgid "Disabled; Pending upgrade to %s" 
    733 msgstr "" 
    734  
    735 #: amp_conf/htdocs/admin/page.modules.php:684 
    736 msgid "Broken" 
    737 msgstr "" 
    738  
    739 #: amp_conf/htdocs/admin/page.modules.php:691 
    740 #, php-format 
    741 msgid "Online upgrade available (%s)" 
    742 msgstr "" 
    743  
    744 #: amp_conf/htdocs/admin/page.modules.php:693 
    745 #, php-format 
    746 msgid "Newer than online version (%s)" 
    747 msgstr "" 
    748  
    749 #: amp_conf/htdocs/admin/page.modules.php:695 
    750 msgid "Enabled and up to date" 
    751 msgstr "" 
    752  
    753 #: amp_conf/htdocs/admin/page.modules.php:699 
    754 msgid "Enabled; Not available online" 
    755 msgstr "" 
    756  
    757 #: amp_conf/htdocs/admin/page.modules.php:701 
    758 msgid "Enabled" 
    759 msgstr "" 
    760  
    761 #: amp_conf/htdocs/admin/page.modules.php:720 
    762 msgid "Attention" 
    763 msgstr "" 
    764  
    765 #: amp_conf/htdocs/admin/page.modules.php:725 
    766 msgid "Action" 
    767 msgstr "" 
    768  
    769 #: amp_conf/htdocs/admin/page.modules.php:728 
    770 msgid "No Action" 
    771 msgstr "" 
    772  
    773 #: amp_conf/htdocs/admin/page.modules.php:735 
    774 #: amp_conf/htdocs/admin/page.modules.php:768 
    775 msgid "Install" 
    776 msgstr "" 
    777  
    778 #: amp_conf/htdocs/admin/page.modules.php:738 
    779 msgid "Download and Install" 
    780 msgstr "" 
    781  
    782 #: amp_conf/htdocs/admin/page.modules.php:744 
    783 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4083 
    784 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:397 
    785 msgid "Enable" 
    786 msgstr "" 
    787  
    788 #: amp_conf/htdocs/admin/page.modules.php:747 
    789 #: amp_conf/htdocs/admin/page.modules.php:762 
    790 #: amp_conf/htdocs/admin/page.modules.php:770 
    791 #: amp_conf/htdocs/admin/page.modules.php:790 
    792 msgid "Uninstall" 
    793 msgstr "" 
    794  
    795 #: amp_conf/htdocs/admin/page.modules.php:752 
    796 #, php-format 
    797 msgid "Download and Upgrade to %s, and Enable" 
    798 msgstr "" 
    799  
    800 #: amp_conf/htdocs/admin/page.modules.php:760 
    801 #, php-format 
    802 msgid "Upgrade to %s and Enable" 
    803 msgstr "" 
    804  
    805 #: amp_conf/htdocs/admin/page.modules.php:780 
    806 #, php-format 
    807 msgid "Download and Upgrade to %s" 
    808 msgstr "" 
    809  
    810 #: amp_conf/htdocs/admin/page.modules.php:786 
    811 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4084 
    812 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4087 
    813 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:388 
    814 msgid "Disable" 
    815 msgstr "" 
    816  
    817 #: amp_conf/htdocs/admin/page.modules.php:796 
    818 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4565 
    819 #: amp_conf/htdocs/admin/modules/core/page.did.php:175 
    820 #: amp_conf/htdocs/admin/modules/core/page.zapchandids.php:99 
    821 msgid "Description" 
    822 msgstr "" 
    823  
    824 #: amp_conf/htdocs/admin/page.modules.php:798 
    825 #, php-format 
    826 msgid "Description for version %s" 
    827 msgstr "" 
    828  
    829 #: amp_conf/htdocs/admin/page.modules.php:801 
    830 msgid "No description is available." 
    831 msgstr "" 
    832  
    833 #: amp_conf/htdocs/admin/page.modules.php:804 
    834 #: amp_conf/htdocs/admin/page.modules.php:806 
    835 msgid "More info" 
    836 msgstr "" 
    837  
    838 #: amp_conf/htdocs/admin/page.modules.php:811 
    839 msgid "Changelog" 
    840 msgstr "" 
    841  
    842 #: amp_conf/htdocs/admin/page.modules.php:812 
    843 #, php-format 
    844 msgid "Change Log for version %s" 
    845 msgstr "" 
    846  
    847 #: amp_conf/htdocs/admin/page.modules.php:832 
    848 msgid "Debug" 
    849 msgstr "" 
    850  
    851 #: amp_conf/htdocs/admin/page.modules.php:857 
    852 msgid "All available modules are up-to-date and installed." 
    853 msgstr "" 
    854  
    855 #: amp_conf/htdocs/admin/page.modules.php:859 
    856 msgid "No modules to display." 
     745#: amp_conf/htdocs/admin/reports.php:16 
     746msgid "FreePBX: Call Detail Reports" 
     747msgstr "" 
     748 
     749#: amp_conf/htdocs/admin/reports.php:17 
     750msgid "Call Detail Reports" 
    857751msgstr "" 
    858752 
     
    873767msgstr "" 
    874768 
    875 #: amp_conf/htdocs/admin/common/db_connect.php:77 
    876 msgid "Default SQL Password Used" 
    877 msgstr "" 
    878  
    879 #: amp_conf/htdocs/admin/common/db_connect.php:77 
    880 msgid "" 
    881 "You are using the default SQL password that is widely known, you should set " 
    882 "a secure password" 
    883 msgstr "" 
    884  
    885 #: amp_conf/htdocs/admin/common/db_connect.php:88 
    886 msgid "Memory Limit Changed" 
    887 msgstr "" 
    888  
    889 #: amp_conf/htdocs/admin/common/db_connect.php:88 
    890 #, php-format 
    891 msgid "" 
    892 "Your memory_limit, %sM, is set too low and has been increased to %sM. You " 
    893 "may want to change this in you php.ini config file" 
    894 msgstr "" 
    895  
    896 #: amp_conf/htdocs/admin/common/db_connect.php:90 
    897 msgid "Low Memory Limit" 
    898 msgstr "" 
    899  
    900 #: amp_conf/htdocs/admin/common/db_connect.php:90 
    901 #, php-format 
    902 msgid "" 
    903 "Your memory_limit, %sM, is set too low and may cause problems. FreePBX is " 
    904 "not able to change this on your system. You should increase this to %sM in " 
    905 "you php.ini config file" 
    906 msgstr "" 
    907  
    908 #: amp_conf/htdocs/admin/common/script.js.php:36 
    909 msgid "Please select a \"Destination\"" 
    910 msgstr "" 
    911  
    912 #: amp_conf/htdocs/admin/common/script.js.php:44 
    913 msgid "" 
    914 "Custom Goto contexts must contain the string \"custom-\".  ie: custom-app,s,1" 
    915 msgstr "" 
    916  
    917 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:1797 
    918 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:1815 
    919 msgid "A route for this DID/CID already exists!" 
    920 msgstr "" 
    921  
    922 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:1881 
    923 msgid "You must put in a device id" 
    924 msgstr "" 
    925  
    926 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:1891 
    927 msgid "This device id is already in use" 
    928 msgstr "" 
    929  
    930 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:2466 
    931 msgid "User Extension: " 
    932 msgstr "" 
    933  
    934 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:2529 
    935 msgid "You must put in an extension (or user) number" 
    936 msgstr "" 
    937  
    938 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:2538 
    939 #, php-format 
    940 msgid "This user/extension %s is already in use" 
    941 msgstr "" 
    942  
    943 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:2566 
    944 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:2814 
    945 msgid "A route with this DID/CID already exists" 
    946 msgstr "" 
    947  
    948 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:2849 
    949 #: amp_conf/htdocs/admin/modules/core/page.zapchandids.php:123 
    950 msgid "Invalid Channel Number, must be numeric and not blank" 
    951 msgstr "" 
    952  
    953 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:2853 
    954 #: amp_conf/htdocs/admin/modules/core/page.zapchandids.php:124 
    955 msgid "Invalid DID, must be a non-blank DID" 
    956 msgstr "" 
    957  
    958 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:2865 
    959 msgid "Error Duplicate Channel Entry" 
    960 msgstr "" 
    961  
    962 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4053 
    963 #, php-format 
    964 msgid "" 
    965 "Failed to open %s for writing, aborting attempt to write the country " 
    966 "indications. The file may be readonly or the permissions may be incorrect." 
    967 msgstr "" 
    968  
    969 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4054 
    970 msgid "Failed to write indications.conf" 
    971 msgstr "" 
    972  
    973 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4078 
    974 msgid "On Demand" 
    975 msgstr "" 
    976  
    977 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4079 
    978 msgid "Always" 
    979 msgstr "" 
    980  
    981 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4080 
    982 msgid "Never" 
    983 msgstr "" 
    984  
    985 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4088 
    986 msgid "Screen Caller: No Memory" 
    987 msgstr "" 
    988  
    989 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4089 
    990 msgid "Screen Caller: Memory" 
    991 msgstr "" 
    992  
    993 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4137 
    994 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4489 
    995 #: amp_conf/htdocs/admin/modules/core/page.did.php:125 
    996 msgid "deleted" 
    997 msgstr "" 
    998  
    999 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4157 
    1000 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4533 
    1001 #: amp_conf/htdocs/admin/modules/core/page.did.php:154 
    1002 #: amp_conf/htdocs/admin/modules/core/page.extensions.php:18 
    1003 msgid "Extension" 
    1004 msgstr "" 
    1005  
    1006 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4159 
    1007 #, php-format 
    1008 msgid "Delete Extension %s" 
    1009 msgstr "" 
    1010  
    1011 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4169 
    1012 #: amp_conf/htdocs/admin/modules/core/page.did.php:150 
    1013 #: amp_conf/htdocs/admin/modules/core/page.users.php:21 
    1014 msgid "User" 
    1015 msgstr "" 
    1016  
    1017 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4171 
    1018 #, php-format 
    1019 msgid "Delete User %s" 
    1020 msgstr "" 
    1021  
    1022 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4183 
    1023 msgid "Add User/Extension" 
    1024 msgstr "" 
    1025  
    1026 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4190 
    1027 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4552 
    1028 msgid "Please enter a valid extension number." 
    1029 msgstr "" 
    1030  
    1031 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4191 
    1032 msgid "Please enter a valid CID Num Alias (must be a valid number)." 
    1033 msgstr "" 
    1034  
    1035 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4192 
    1036 msgid "Please enter valid User Password using numbers only" 
    1037 msgstr "" 
    1038  
    1039 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4193 
    1040 msgid "Please enter a valid Display Name" 
    1041 msgstr "" 
    1042  
    1043 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4194 
    1044 msgid "Please enter a valid Outbound CID" 
    1045 msgstr "" 
    1046  
    1047 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4195 
    1048 msgid "Please enter a valid pause time in seconds, using digits only" 
    1049 msgstr "" 
    1050  
    1051 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4196 
    1052 msgid "" 
    1053 "You have entered a non-standard dialpattern for your DID. You can only enter " 
    1054 "standard dialpatterns. You must use the inbound routing form to enter non-" 
    1055 "standard patterns" 
    1056 msgstr "" 
    1057  
    1058 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4197 
    1059 msgid "" 
    1060 "Please enter a valid Caller ID Number or leave it blank for your Assigned " 
    1061 "DID/CID pair" 
    1062 msgstr "" 
    1063  
    1064 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4204 
    1065 msgid "Edit Extension" 
    1066 msgstr "" 
    1067  
    1068 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4204 
    1069 msgid "Add Extension" 
    1070 msgstr "" 
    1071  
    1072 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4206 
    1073 msgid "Edit User" 
    1074 msgstr "" 
    1075  
    1076 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4206 
     769#: amp_conf/htdocs/admin/modules/core/page.devices.php:18 
     770#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4519 
     771#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4529 
     772#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4551 
     773msgid "Device" 
     774msgstr "" 
     775 
    1077776#: amp_conf/htdocs/admin/modules/core/page.ampusers.php:100 
     777#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4226 
    1078778msgid "Add User" 
    1079 msgstr "" 
    1080  
    1081 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4211 
    1082 msgid "The extension number to dial to reach this user." 
    1083 msgstr "" 
    1084  
    1085 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4214 
    1086 msgid "A user will enter this password when logging onto a device." 
    1087 msgstr "" 
    1088  
    1089 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4214 
    1090 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4567 
    1091 msgid "logs into a device." 
    1092 msgstr "" 
    1093  
    1094 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4214 
    1095 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4567 
    1096 msgid "logs out of a device." 
    1097 msgstr "" 
    1098  
    1099 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4218 
    1100 msgid "" 
    1101 "The caller id name for calls from this user will be set to this name. Only " 
    1102 "enter the name, NOT the number." 
    1103 msgstr "" 
    1104  
    1105 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4220 
    1106 msgid "" 
    1107 "The CID Number to use for internal calls, if different from the extension " 
    1108 "number. This is used to masquerade as a different user. A common example is " 
    1109 "a team of support people who would like their internal callerid to display " 
    1110 "the general support number (a ringgroup or queue). There will be no effect " 
    1111 "on external calls." 
    1112 msgstr "" 
    1113  
    1114 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4221 
    1115 msgid "" 
    1116 "If you want to support direct sip dialing of users internally or through " 
    1117 "anonymous sip calls, you can supply a friendly name that can be used in " 
    1118 "addition to the users extension to call them." 
    1119 msgstr "" 
    1120  
    1121 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4226 
    1122 msgid "User Devices" 
    1123 msgstr "" 
    1124  
    1125 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4237 
    1126 msgid "Edit:" 
    1127 msgstr "" 
    1128  
    1129 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4249 
    1130 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4570 
    1131 msgid "Extension Options" 
    1132 msgstr "" 
    1133  
    1134 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4250 
    1135 msgid "Outbound CID" 
    1136 msgstr "" 
    1137  
    1138 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4250 
    1139 msgid "" 
    1140 "Overrides the caller id when dialing out a trunk. Any setting here will " 
    1141 "override the common outbound caller id set in the Trunks admin." 
    1142 "<br><br>Format: <b>\"caller name\" &lt;#######&gt;</b><br><br>Leave this " 
    1143 "field blank to disable the outbound callerid feature for this user." 
    1144 msgstr "" 
    1145  
    1146 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4252 
    1147 msgid "Ring Time" 
    1148 msgstr "" 
    1149  
    1150 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4252 
    1151 msgid "" 
    1152 "Number of seconds to ring prior to going to voicemail. Default will use the " 
    1153 "value set in the General Tab. If no voicemail is configured this will be " 
    1154 "ignored." 
    1155 msgstr "" 
    1156  
    1157 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4260 
    1158 msgid "Call Waiting" 
    1159 msgstr "" 
    1160  
    1161 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4260 
    1162 msgid "Set the initial/current Call Waiting state for this user's extension" 
    1163 msgstr "" 
    1164  
    1165 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4261 
    1166 msgid "Call Screening" 
    1167 msgstr "" 
    1168  
    1169 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4261 
    1170 msgid "" 
    1171 "Call Screening requires external callers to say their name, which will be " 
    1172 "played back to the user and allow the user to accept or reject the call.  " 
    1173 "Screening with memory only verifies a caller for their caller-id once. " 
    1174 "Screening without memory always requires a caller to say their name. Either " 
    1175 "mode will always announce the caller based on the last introduction saved " 
    1176 "with that callerid. If any user on the system uses the memory option, when " 
    1177 "that user is called, the caller will be required to re-introduce themselves " 
    1178 "and all users on the system will have that new introduction associated with " 
    1179 "the caller's CallerId." 
    1180 msgstr "" 
    1181  
    1182 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4263 
    1183 msgid "Assigned DID/CID" 
    1184 msgstr "" 
    1185  
    1186 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4264 
    1187 msgid "DID Description" 
    1188 msgstr "" 
    1189  
    1190 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4264 
    1191 msgid "A description for this DID, such as \"Fax\"" 
    1192 msgstr "" 
    1193  
    1194 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4265 
    1195 msgid "Add Inbound DID" 
    1196 msgstr "" 
    1197  
    1198 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4265 
    1199 msgid "" 
    1200 "A direct DID that is associated with this extension. The DID should be in " 
    1201 "the same format as provided by the provider (e.g. full number, 4 digits for " 
    1202 "10x4, etc).<br><br>Format should be: <b>XXXXXXXXXX</b><br><br>.An optional " 
    1203 "CID can also be associated with this DID by setting the next box" 
    1204 msgstr "" 
    1205  
    1206 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4266 
    1207 msgid "Add Inbound CID" 
    1208 msgstr "" 
    1209  
    1210 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4266 
    1211 msgid "" 
    1212 "Add a CID for more specific DID + CID routing. A DID must be specified in " 
    1213 "the above Add DID box. In addition to standard dial sequences, you can also " 
    1214 "put Private, Blocked, Unknown, Restricted and Unavailable in order to catch " 
    1215 "these special cases if the Telco transmits them." 
    1216 msgstr "" 
    1217  
    1218 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4274 
    1219 msgid "DID / CID" 
    1220 msgstr "" 
    1221  
    1222 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4294 
    1223 msgid "Recording Options" 
    1224 msgstr "" 
    1225  
    1226 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4295 
    1227 msgid "Record all inbound calls received at this extension." 
    1228 msgstr "" 
    1229  
    1230 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4296 
    1231 msgid "Record all outbound calls received at this extension." 
    1232 msgstr "" 
    1233  
    1234 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4314 
    1235 msgid "Warning! Extension" 
    1236 msgstr "" 
    1237  
    1238 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4314 
    1239 msgid "is not allowed for your account" 
    1240 msgstr "" 
    1241  
    1242 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4328 
    1243 msgid "Conflicting Extensions" 
    1244 msgstr "" 
    1245  
    1246 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4328 
    1247 msgid "" 
    1248 "The following extension numbers are in conflict, you can click on the item" 
    1249 "(s) below to edit the conflicting entity." 
    1250 msgstr "" 
    1251  
    1252 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4332 
    1253 msgid "Configure user again:" 
    1254 msgstr "" 
    1255  
    1256 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4332 
    1257 msgid "Configure extension again:" 
    1258 msgstr "" 
    1259  
    1260 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4379 
    1261 msgid "Please enter the dtmfmode for this device" 
    1262 msgstr "" 
    1263  
    1264 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4380 
    1265 msgid "Please enter the channel for this device" 
    1266 msgstr "" 
    1267  
    1268 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4381 
    1269 msgid "" 
    1270 "You have not entered a Secret for this device, although this is possible it " 
    1271 "is generally bad practice to not assign a Secret to a device. Are you sure " 
    1272 "you want to leave the Secret empty?" 
    1273 msgstr "" 
    1274  
    1275 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4382 
    1276 msgid "Please enter a Secret for this device" 
    1277 msgstr "" 
    1278  
    1279 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4449 
    1280 msgid "Generic SIP Device" 
    1281 msgstr "" 
    1282  
    1283 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4450 
    1284 msgid "Generic IAX2 Device" 
    1285 msgstr "" 
    1286  
    1287 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4451 
    1288 msgid "Generic ZAP Device" 
    1289 msgstr "" 
    1290  
    1291 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4452 
    1292 msgid "Other (Custom) Device" 
    1293 msgstr "" 
    1294  
    1295 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4457 
    1296 msgid "Fixed" 
    1297 msgstr "" 
    1298  
    1299 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4458 
    1300 msgid "Adhoc" 
    1301 msgstr "" 
    1302  
    1303 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4461 
    1304 msgid "none" 
    1305 msgstr "" 
    1306  
    1307 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4462 
    1308 msgid "New User" 
    1309 msgstr "" 
    1310  
    1311 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4494 
    1312 msgid "Add Device" 
    1313 msgstr "" 
    1314  
    1315 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4496 
    1316 msgid "Add an Extension" 
    1317 msgstr "" 
    1318  
    1319 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4498 
    1320 msgid "Please select your Device below then click Submit" 
    1321 msgstr "" 
    1322  
    1323 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4509 
    1324 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4531 
    1325 #: amp_conf/htdocs/admin/modules/core/page.devices.php:18 
    1326 msgid "Device" 
    1327 msgstr "" 
    1328  
    1329 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4512 
    1330 #, php-format 
    1331 msgid "Delete Device %s" 
    1332 msgstr "" 
    1333  
    1334 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4518 
    1335 #, php-format 
    1336 msgid "Edit Default User: %s" 
    1337 msgstr "" 
    1338  
    1339 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4518 
    1340 #, php-format 
    1341 msgid "Edit Fixed User: %s" 
    1342 msgstr "" 
    1343  
    1344 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4549 
    1345 msgid "Please enter a device id." 
    1346 msgstr "" 
    1347  
    1348 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4550 
    1349 msgid "Please enter a valid Description for this device" 
    1350 msgstr "" 
    1351  
    1352 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4551 
    1353 msgid "Please enter a valid Emergency CID" 
    1354 msgstr "" 
    1355  
    1356 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4559 
    1357 msgid "Device Info" 
    1358 msgstr "" 
    1359  
    1360 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4563 
    1361 msgid "Device ID" 
    1362 msgstr "" 
    1363  
    1364 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4563 
    1365 msgid "" 
    1366 "Give your device a unique integer ID.  The device will use this ID to " 
    1367 "authenticate to the system." 
    1368 msgstr "" 
    1369  
    1370 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4565 
    1371 msgid "" 
    1372 "The caller id name for this device will be set to this description until it " 
    1373 "is logged into." 
    1374 msgstr "" 
    1375  
    1376 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4566 
    1377 msgid "Emergency CID" 
    1378 msgstr "" 
    1379  
    1380 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4566 
    1381 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4571 
    1382 msgid "" 
    1383 "This caller id will always be set when dialing out an Outbound Route flagged " 
    1384 "as Emergency.  The Emergency CID overrides all other caller id settings." 
    1385 msgstr "" 
    1386  
    1387 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4567 
    1388 msgid "Device Type" 
    1389 msgstr "" 
    1390  
    1391 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4567 
    1392 msgid "" 
    1393 "Devices can be fixed or adhoc. Fixed devices are always associated to the " 
    1394 "same extension/user. Adhoc devices can be logged into and logged out of by " 
    1395 "users." 
    1396 msgstr "" 
    1397  
    1398 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4568 
    1399 msgid "Default User" 
    1400 msgstr "" 
    1401  
    1402 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4568 
    1403 msgid "" 
    1404 "Fixed devices will always mapped to this user.  Adhoc devices will be mapped " 
    1405 "to this user by default.<br><br>If selecting 'New User', a new User " 
    1406 "Extension of the same Device ID will be set as the Default User." 
    1407 msgstr "" 
    1408  
    1409 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4576 
    1410 msgid "Device Options" 
    1411 msgstr "" 
    1412  
    1413 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4577 
    1414 #, php-format 
    1415 msgid "This device uses %s technology." 
    1416 msgstr "" 
    1417  
    1418 #: amp_conf/htdocs/admin/modules/core/install.php:27 
    1419 #, php-format 
    1420 msgid "ERROR: trying to check if %s already in use" 
    1421 msgstr "" 
    1422  
    1423 #: amp_conf/htdocs/admin/modules/core/install.php:114 
    1424 msgid "Checking if directdids need migrating.." 
    1425 msgstr "" 
    1426  
    1427 #: amp_conf/htdocs/admin/modules/core/install.php:118 
    1428 msgid "starting migration" 
    1429 msgstr "" 
    1430  
    1431 #: amp_conf/htdocs/admin/modules/core/install.php:135 
    1432 msgid "User: " 
    1433 msgstr "" 
    1434  
    1435 #: amp_conf/htdocs/admin/modules/core/install.php:138 
    1436 #, php-format 
    1437 msgid "ERROR: failed to insert %s for user %s" 
    1438 msgstr "" 
    1439  
    1440 #: amp_conf/htdocs/admin/modules/core/install.php:143 
    1441 #, php-format 
    1442 msgid "" 
    1443 "There were %s failures migrating directdids, users table not being changed" 
    1444 msgstr "" 
    1445  
    1446 #: amp_conf/htdocs/admin/modules/core/install.php:147 
    1447 #, php-format 
    1448 msgid "Removing field %s from users table.." 
    1449 msgstr "" 
    1450  
    1451 #: amp_conf/htdocs/admin/modules/core/install.php:151 
    1452 msgid "not present" 
    1453 msgstr "" 
    1454  
    1455 #: amp_conf/htdocs/admin/modules/core/install.php:153 
    1456 msgid "removed" 
    1457 msgstr "" 
    1458  
    1459 #: amp_conf/htdocs/admin/modules/core/install.php:158 
    1460 msgid "" 
    1461 "ERROR: could not access user table to migrate directdids to incoming table, " 
    1462 "aborting" 
    1463 msgstr "" 
    1464  
    1465 #: amp_conf/htdocs/admin/modules/core/install.php:161 
    1466 msgid "already done" 
    1467 msgstr "" 
    1468  
    1469 #: amp_conf/htdocs/admin/modules/core/install.php:166 
    1470 msgid "updating zap callgroup, pickupgroup.." 
    1471 msgstr "" 
    1472  
    1473 #: amp_conf/htdocs/admin/modules/core/install.php:191 
    1474 #, php-format 
    1475 msgid "updated %s callgroups, %s pickupgroups" 
    1476 msgstr "" 
    1477  
    1478 #: amp_conf/htdocs/admin/modules/core/install.php:193 
    1479 msgid "not needed" 
    1480 msgstr "" 
    1481  
    1482 #: amp_conf/htdocs/admin/modules/core/install.php:198 
    1483 msgid "checking for delay_answer field .." 
    1484 msgstr "" 
    1485  
    1486 #: amp_conf/htdocs/admin/modules/core/install.php:205 
    1487 msgid "fatal error" 
    1488 msgstr "" 
    1489  
    1490 #: amp_conf/htdocs/admin/modules/core/install.php:208 
    1491 msgid "added" 
    1492 msgstr "" 
    1493  
    1494 #: amp_conf/htdocs/admin/modules/core/install.php:211 
    1495 msgid "already exists" 
    1496779msgstr "" 
    1497780 
     
    1556839msgstr "" 
    1557840 
    1558 #: amp_conf/htdocs/admin/modules/core/page.ampusers.php:216 
    1559 msgid "category" 
    1560 msgstr "" 
    1561  
    1562 #: amp_conf/htdocs/admin/modules/core/page.ampusers.php:222 
    1563 msgid "name" 
    1564 msgstr "" 
    1565  
    1566841#: amp_conf/htdocs/admin/modules/core/page.ampusers.php:229 
    1567842msgid "Apply Changes Bar" 
     
    1573848 
    1574849#: amp_conf/htdocs/admin/modules/core/page.ampusers.php:242 
     850#: amp_conf/htdocs/admin/modules/core/page.trunks.php:765 
    1575851#: amp_conf/htdocs/admin/modules/core/page.general.php:399 
     852#: amp_conf/htdocs/admin/modules/core/page.zapchandids.php:108 
    1576853#: amp_conf/htdocs/admin/modules/core/page.routing.php:584 
    1577 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:765 
    1578 #: amp_conf/htdocs/admin/modules/core/page.zapchandids.php:108 
    1579854msgid "Submit Changes" 
    1580855msgstr "" 
     
    1597872msgstr "" 
    1598873 
    1599 #: amp_conf/htdocs/admin/modules/core/page.did.php:76 
    1600 #: amp_conf/htdocs/admin/modules/core/page.did.php:164 
    1601 #: amp_conf/htdocs/admin/modules/core/page.did.php:173 
    1602 msgid "Add Incoming Route" 
    1603 msgstr "" 
    1604  
    1605 #: amp_conf/htdocs/admin/modules/core/page.did.php:77 
    1606 msgid "View All DIDs" 
    1607 msgstr "" 
    1608  
    1609 #: amp_conf/htdocs/admin/modules/core/page.did.php:78 
    1610 msgid "View User DIDs" 
    1611 msgstr "" 
    1612  
    1613 #: amp_conf/htdocs/admin/modules/core/page.did.php:79 
    1614 msgid "View General DIDs" 
    1615 msgstr "" 
    1616  
    1617 #: amp_conf/htdocs/admin/modules/core/page.did.php:80 
    1618 msgid "View Unused DIDs" 
    1619 msgstr "" 
    1620  
    1621 #: amp_conf/htdocs/admin/modules/core/page.did.php:112 
    1622 msgid "any DID" 
    1623 msgstr "" 
    1624  
    1625 #: amp_conf/htdocs/admin/modules/core/page.did.php:113 
    1626 msgid "any CID" 
    1627 msgstr "" 
    1628  
    1629 #: amp_conf/htdocs/admin/modules/core/page.did.php:137 
    1630 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:291 
    1631 msgid "Route" 
    1632 msgstr "" 
    1633  
    1634 #: amp_conf/htdocs/admin/modules/core/page.did.php:140 
    1635 #: amp_conf/htdocs/admin/modules/core/page.routing.php:275 
    1636 #, php-format 
    1637 msgid "Delete Route %s" 
    1638 msgstr "" 
    1639  
    1640 #: amp_conf/htdocs/admin/modules/core/page.did.php:157 
    1641 #, php-format 
    1642 msgid "Edit %s" 
    1643 msgstr "" 
    1644  
    1645 #: amp_conf/htdocs/admin/modules/core/page.did.php:157 
    1646 #, php-format 
    1647 msgid "Edit %s %s (%s)" 
    1648 msgstr "" 
    1649  
    1650 #: amp_conf/htdocs/admin/modules/core/page.did.php:173 
    1651 msgid "Edit Incoming Route" 
    1652 msgstr "" 
    1653  
    1654 #: amp_conf/htdocs/admin/modules/core/page.did.php:175 
    1655 msgid "Provide a meaningful description of what this incoming route is" 
    1656 msgstr "" 
    1657  
    1658 #: amp_conf/htdocs/admin/modules/core/page.did.php:179 
    1659 msgid "DID Number" 
    1660 msgstr "" 
    1661  
    1662 #: amp_conf/htdocs/admin/modules/core/page.did.php:179 
    1663 msgid "" 
    1664 "Define the expected DID Number if your trunk passes DID on incoming calls. " 
    1665 "<br><br>Leave this blank to match calls with any or no DID info.<br><br>You " 
    1666 "can also use a pattern match (eg _2[345]X) to match a range of numbers" 
    1667 msgstr "" 
    1668  
    1669 #: amp_conf/htdocs/admin/modules/core/page.did.php:183 
    1670 msgid "Caller ID Number" 
    1671 msgstr "" 
    1672  
    1673 #: amp_conf/htdocs/admin/modules/core/page.did.php:183 
    1674 msgid "" 
    1675 "Define the Caller ID Number to be matched on incoming calls.<br><br>Leave " 
    1676 "this field blank to match any or no CID info. In addition to standard dial " 
    1677 "sequences, you can also put Private, Blocked, Unknown, Restricted and " 
    1678 "Unavailable in order to catch these special cases if the Telco transmits " 
    1679 "them." 
    1680 msgstr "" 
    1681  
    1682 #: amp_conf/htdocs/admin/modules/core/page.did.php:187 
    1683 msgid "Options" 
    1684 msgstr "" 
    1685  
    1686 #: amp_conf/htdocs/admin/modules/core/page.did.php:189 
    1687 msgid "Alert Info" 
    1688 msgstr "" 
    1689  
    1690 #: amp_conf/htdocs/admin/modules/core/page.did.php:189 
    1691 msgid "ALERT_INFO can be used for distinctive ring with SIP devices." 
    1692 msgstr "" 
    1693  
    1694 #: amp_conf/htdocs/admin/modules/core/page.did.php:193 
    1695 msgid "CID name prefix" 
    1696 msgstr "" 
    1697  
    1698 #: amp_conf/htdocs/admin/modules/core/page.did.php:193 
    1699 msgid "" 
    1700 "You can optionally prefix the Caller ID name. ie: If you prefix with \"Sales:" 
    1701 "\", a call from John Doe would display as \"Sales:John Doe\" on the " 
    1702 "extensions that ring." 
    1703 msgstr "" 
    1704  
    1705 #: amp_conf/htdocs/admin/modules/core/page.did.php:198 
    1706 msgid "Music On Hold" 
    1707 msgstr "" 
    1708  
    1709 #: amp_conf/htdocs/admin/modules/core/page.did.php:198 
    1710 msgid "" 
    1711 "Set the MoH class that will be used for calls that come in on this route. " 
    1712 "For example, choose a type appropriate for routes coming in from a country " 
    1713 "which may have announcements in their language." 
    1714 msgstr "" 
    1715  
    1716 #: amp_conf/htdocs/admin/modules/core/page.did.php:204 
    1717 msgid "No Music" 
    1718 msgstr "" 
    1719  
    1720 #: amp_conf/htdocs/admin/modules/core/page.did.php:216 
    1721 msgid "Signal RINGING" 
    1722 msgstr "" 
    1723  
    1724 #: amp_conf/htdocs/admin/modules/core/page.did.php:216 
    1725 msgid "" 
    1726 "Some devices or providers require RINGING to be sent before ANSWER. You'll " 
    1727 "notice this happening if you can send calls directly to a phone, but if you " 
    1728 "send it to an IVR, it won't connect the call." 
    1729 msgstr "" 
    1730  
    1731 #: amp_conf/htdocs/admin/modules/core/page.did.php:220 
    1732 msgid "Pause Before Answer" 
    1733 msgstr "" 
    1734  
    1735 #: amp_conf/htdocs/admin/modules/core/page.did.php:220 
    1736 msgid "" 
    1737 "An optional delay to wait before processing this route. Setting this value " 
    1738 "will delay the channel from answering the call. This may be handy if " 
    1739 "external fax equipment or security systems are installed in parallel and you " 
    1740 "would like them to be able to seize the line." 
    1741 msgstr "" 
    1742  
    1743 #: amp_conf/htdocs/admin/modules/core/page.did.php:224 
    1744 msgid "Privacy" 
    1745 msgstr "" 
    1746  
    1747 #: amp_conf/htdocs/admin/modules/core/page.did.php:227 
    1748 msgid "Privacy Manager" 
    1749 msgstr "" 
    1750  
    1751 #: amp_conf/htdocs/admin/modules/core/page.did.php:227 
    1752 msgid "" 
    1753 "If no Caller ID is sent, Privacy Manager will asks the caller to enter their " 
    1754 "10 digit phone number. The caller is given 3 attempts. The number of digits " 
    1755 "and attempts can be defined in privacy.conf. If a user has Call Screening " 
    1756 "enabled, the incoming caller will be asked to enter their CallerId here if " 
    1757 "enabled, and then to say their name once determined that the called user " 
    1758 "requires it." 
    1759 msgstr "" 
    1760  
    1761 #: amp_conf/htdocs/admin/modules/core/page.did.php:230 
    1762 #: amp_conf/htdocs/admin/modules/core/page.general.php:384 
    1763 msgid "No" 
    1764 msgstr "" 
    1765  
    1766 #: amp_conf/htdocs/admin/modules/core/page.did.php:231 
    1767 #: amp_conf/htdocs/admin/modules/core/page.general.php:383 
    1768 msgid "Yes" 
    1769 msgstr "" 
    1770  
    1771 #: amp_conf/htdocs/admin/modules/core/page.did.php:236 
    1772 msgid "Fax Handling" 
    1773 msgstr "" 
    1774  
    1775 #: amp_conf/htdocs/admin/modules/core/page.did.php:240 
    1776 msgid "Fax Extension" 
    1777 msgstr "" 
    1778  
    1779 #: amp_conf/htdocs/admin/modules/core/page.did.php:240 
    1780 msgid "" 
    1781 "Select 'system' to have the system receive and email faxes.<br><br>The " 
    1782 "FreePBX default is defined in General Settings." 
    1783 msgstr "" 
    1784  
    1785 #: amp_conf/htdocs/admin/modules/core/page.did.php:244 
    1786 msgid "FreePBX default" 
    1787 msgstr "" 
    1788  
    1789 #: amp_conf/htdocs/admin/modules/core/page.did.php:245 
    1790 #: amp_conf/htdocs/admin/modules/core/page.general.php:323 
    1791 msgid "disabled" 
    1792 msgstr "" 
    1793  
    1794 #: amp_conf/htdocs/admin/modules/core/page.did.php:246 
    1795 #: amp_conf/htdocs/admin/modules/core/page.general.php:324 
    1796 msgid "system" 
    1797 msgstr "" 
    1798  
    1799 #: amp_conf/htdocs/admin/modules/core/page.did.php:261 
    1800 msgid "Fax Email" 
    1801 msgstr "" 
    1802  
    1803 #: amp_conf/htdocs/admin/modules/core/page.did.php:261 
    1804 msgid "" 
    1805 "Email address is used if 'system' has been chosen for the fax extension " 
    1806 "above.<br><br>Leave this blank to use the FreePBX default in General " 
    1807 "Settings." 
    1808 msgstr "" 
    1809  
    1810 #: amp_conf/htdocs/admin/modules/core/page.did.php:268 
    1811 msgid "Fax Detection Type" 
    1812 msgstr "" 
    1813  
    1814 #: amp_conf/htdocs/admin/modules/core/page.did.php:268 
    1815 msgid "" 
    1816 "Selecting Zaptel or NVFax will immediately answer the call and play ringing " 
    1817 "tones to the caller for the number of seconds in Pause below. Use NVFax on " 
    1818 "SIP or IAX trunks." 
    1819 msgstr "" 
    1820  
    1821 #: amp_conf/htdocs/admin/modules/core/page.did.php:271 
    1822 msgid "None" 
    1823 msgstr "" 
    1824  
    1825 #: amp_conf/htdocs/admin/modules/core/page.did.php:272 
    1826 msgid "Zaptel" 
    1827 msgstr "" 
    1828  
    1829 #: amp_conf/htdocs/admin/modules/core/page.did.php:273 
    1830 msgid "NVFax" 
    1831 msgstr "" 
    1832  
    1833 #: amp_conf/htdocs/admin/modules/core/page.did.php:278 
    1834 msgid "Pause After Answer" 
    1835 msgstr "" 
    1836  
    1837 #: amp_conf/htdocs/admin/modules/core/page.did.php:278 
    1838 msgid "" 
    1839 "The number of seconds we should wait after performing an Immediate Answer. " 
    1840 "The primary purpose of this is to pause and listen for a fax tone before " 
    1841 "allowing the call to proceed." 
    1842 msgstr "" 
    1843  
    1844 #: amp_conf/htdocs/admin/modules/core/page.did.php:287 
    1845 msgid "Set Destination" 
    1846 msgstr "" 
    1847  
    1848 #: amp_conf/htdocs/admin/modules/core/page.did.php:292 
    1849 msgid "Clear Destination" 
    1850 msgstr "" 
    1851  
    1852 #: amp_conf/htdocs/admin/modules/core/page.did.php:301 
    1853 msgid "Clear Destination & Submit" 
    1854 msgstr "" 
    1855  
    1856 #: amp_conf/htdocs/admin/modules/core/page.did.php:313 
    1857 msgid "Please enter a valid DID Number" 
    1858 msgstr "" 
    1859  
    1860 #: amp_conf/htdocs/admin/modules/core/page.did.php:314 
    1861 msgid "Please enter a valid Caller ID Number" 
    1862 msgstr "" 
    1863  
    1864 #: amp_conf/htdocs/admin/modules/core/page.did.php:315 
    1865 msgid "Please enter a valid Fax Email or leave it empty to use the default" 
    1866 msgstr "" 
    1867  
    1868 #: amp_conf/htdocs/admin/modules/core/page.did.php:316 
    1869 msgid "Please enter a valid number for Pause after answer" 
    1870 msgstr "" 
    1871  
    1872 #: amp_conf/htdocs/admin/modules/core/page.did.php:317 
    1873 msgid "Please enter a valid number for Pause Before Answer field" 
    1874 msgstr "" 
    1875  
    1876 #: amp_conf/htdocs/admin/modules/core/page.did.php:318 
    1877 msgid "" 
    1878 "Leaving the DID Number AND the Caller ID Number empty will match all " 
    1879 "incoming calls received not routed using any other defined Incoming Route.\\n" 
    1880 "\\nAre you sure?" 
    1881 msgstr "" 
    1882  
    1883 #: amp_conf/htdocs/admin/modules/core/page.did.php:319 
    1884 msgid "" 
    1885 "DID information is normally just an incoming telephone number or for " 
    1886 "advanced users, a valid Asterisk Dial Pattern\\n\\nYou have entered a non " 
    1887 "standard DID pattern.\\n\\nAre you sure this is correct?" 
    1888 msgstr "" 
    1889  
    1890 #: amp_conf/htdocs/admin/modules/core/page.did.php:320 
    1891 msgid "A Slash ('/') is never a valid DID. Please remove it and try again" 
    1892 msgstr "" 
    1893  
    1894 #: amp_conf/htdocs/admin/modules/core/page.did.php:321 
    1895 msgid "Invalid Caller ID prefix." 
    1896 msgstr "" 
    1897  
    1898 #: amp_conf/htdocs/admin/modules/core/page.general.php:105 
    1899 msgid "Dialing Options" 
    1900 msgstr "" 
    1901  
    1902 #: amp_conf/htdocs/admin/modules/core/page.general.php:107 
    1903 msgid "Asterisk Dial command options:" 
    1904 msgstr "" 
    1905  
    1906 #: amp_conf/htdocs/admin/modules/core/page.general.php:108 
    1907 #: amp_conf/htdocs/admin/modules/core/page.general.php:117 
    1908 msgid "t: Allow the called user to transfer the call by hitting #" 
    1909 msgstr "" 
    1910  
    1911 #: amp_conf/htdocs/admin/modules/core/page.general.php:109 
    1912 #: amp_conf/htdocs/admin/modules/core/page.general.php:118 
    1913 msgid "T: Allow the calling user to transfer the call by hitting #" 
    1914 msgstr "" 
    1915  
    1916 #: amp_conf/htdocs/admin/modules/core/page.general.php:110 
    1917 msgid "r: Generate a ringing tone for the calling party" 
    1918 msgstr "" 
    1919  
    1920 #: amp_conf/htdocs/admin/modules/core/page.general.php:111 
    1921 #: amp_conf/htdocs/admin/modules/core/page.general.php:119 
    1922 msgid "" 
    1923 "w: Allow the called user to start recording after pressing *1 (Asterisk v1.2)" 
    1924 msgstr "" 
    1925  
    1926 #: amp_conf/htdocs/admin/modules/core/page.general.php:112 
    1927 #: amp_conf/htdocs/admin/modules/core/page.general.php:120 
    1928 msgid "" 
    1929 "W: Allow the calling user to start recording after pressing *1 (Asterisk " 
    1930 "v1.2)" 
    1931 msgstr "" 
    1932  
    1933 #: amp_conf/htdocs/admin/modules/core/page.general.php:116 
    1934 msgid "Asterisk Outbound Dial command options:" 
    1935 msgstr "" 
    1936  
    1937 #: amp_conf/htdocs/admin/modules/core/page.general.php:121 
    1938 msgid "r: You SHOULD NOT use this option on outbound trunks" 
    1939 msgstr "" 
    1940  
    1941 #: amp_conf/htdocs/admin/modules/core/page.general.php:126 
    1942 msgid "Call Recording" 
    1943 msgstr "" 
    1944  
    1945 #: amp_conf/htdocs/admin/modules/core/page.general.php:128 
    1946 msgid "Call recording format:" 
    1947 msgstr "" 
    1948  
    1949 #: amp_conf/htdocs/admin/modules/core/page.general.php:129 
    1950 msgid "Pick the format in which to save recorded calls" 
    1951 msgstr "" 
    1952  
    1953 #: amp_conf/htdocs/admin/modules/core/page.general.php:132 
    1954 msgid "WAV" 
    1955 msgstr "" 
    1956  
    1957 #: amp_conf/htdocs/admin/modules/core/page.general.php:133 
    1958 msgid "wav" 
    1959 msgstr "" 
    1960  
    1961 #: amp_conf/htdocs/admin/modules/core/page.general.php:134 
    1962 msgid "ulaw" 
    1963 msgstr "" 
    1964  
    1965 #: amp_conf/htdocs/admin/modules/core/page.general.php:135 
    1966 msgid "alaw" 
    1967 msgstr "" 
    1968  
    1969 #: amp_conf/htdocs/admin/modules/core/page.general.php:136 
    1970 msgid "sln" 
    1971 msgstr "" 
    1972  
    1973 #: amp_conf/htdocs/admin/modules/core/page.general.php:137 
    1974 msgid "gsm" 
    1975 msgstr "" 
    1976  
    1977 #: amp_conf/htdocs/admin/modules/core/page.general.php:138 
    1978 msgid "g729" 
    1979 msgstr "" 
    1980  
    1981 #: amp_conf/htdocs/admin/modules/core/page.general.php:141 
    1982 msgid "Recording Location:" 
    1983 msgstr "" 
    1984  
    1985 #: amp_conf/htdocs/admin/modules/core/page.general.php:142 
    1986 msgid "" 
    1987 "Override the default location where asterisk will store call recordings. " 
    1988 "Include the trailing /. Be sure to set proper permissions on the directory " 
    1989 "for the asterisk user." 
    1990 msgstr "" 
    1991  
    1992 #: amp_conf/htdocs/admin/modules/core/page.general.php:146 
    1993 msgid "Run after record:" 
    1994 msgstr "" 
    1995  
    1996 #: amp_conf/htdocs/admin/modules/core/page.general.php:147 
    1997 msgid "" 
    1998 "An optional script to be run after the call is hungup. You can include " 
    1999 "channel and MixMon variables like ${CALLFILENAME}, ${MIXMON_FORMAT} and " 
    2000 "${MIXMON_DIR}. To ensure that you variables are properly escaped, use the " 
    2001 "following notation: ^{MY_VAR}" 
    2002 msgstr "" 
    2003  
    2004 #: amp_conf/htdocs/admin/modules/core/page.general.php:153 
    2005 msgid "Voicemail" 
    2006 msgstr "" 
    2007  
    2008 #: amp_conf/htdocs/admin/modules/core/page.general.php:155 
    2009 msgid "Number of seconds to ring phones before sending callers to voicemail:" 
    2010 msgstr "" 
    2011  
    2012 #: amp_conf/htdocs/admin/modules/core/page.general.php:158 
    2013 msgid "Extension prefix for dialing direct to voicemail:" 
    2014 msgstr "" 
    2015  
    2016 #: amp_conf/htdocs/admin/modules/core/page.general.php:161 
    2017 msgid "Direct Dial to Voicemail message type:" 
    2018 msgstr "" 
    2019  
    2020 #: amp_conf/htdocs/admin/modules/core/page.general.php:163 
    2021 msgid "Default" 
    2022 msgstr "" 
    2023  
    2024 #: amp_conf/htdocs/admin/modules/core/page.general.php:164 
    2025 #: amp_conf/htdocs/admin/modules/core/page.general.php:165 
    2026 msgid "Unavailable" 
    2027 msgstr "" 
    2028  
    2029 #: amp_conf/htdocs/admin/modules/core/page.general.php:165 
    2030 #: amp_conf/htdocs/admin/modules/core/page.general.php:167 
    2031 msgid "no instructions" 
    2032 msgstr "" 
    2033  
    2034 #: amp_conf/htdocs/admin/modules/core/page.general.php:166 
    2035 #: amp_conf/htdocs/admin/modules/core/page.general.php:167 
    2036 msgid "Busy" 
    2037 msgstr "" 
    2038  
    2039 #: amp_conf/htdocs/admin/modules/core/page.general.php:171 
    2040 msgid "Use gain when recording the voicemail message (optional):" 
    2041 msgstr "" 
    2042  
    2043 #: amp_conf/htdocs/admin/modules/core/page.general.php:172 
    2044 msgid "Use the specified amount of gain when recording the voicemail message." 
    2045 msgstr "" 
    2046  
    2047 #: amp_conf/htdocs/admin/modules/core/page.general.php:173 
    2048 msgid "The units are whole-number decibels (dB)." 
    2049 msgstr "" 
    2050  
    2051 #: amp_conf/htdocs/admin/modules/core/page.general.php:176 
    2052 msgid "Do Not Play" 
    2053 msgstr "" 
    2054  
    2055 #: amp_conf/htdocs/admin/modules/core/page.general.php:176 
    2056 msgid "" 
    2057 "Check this to remove the default message \"Please leave your message after " 
    2058 "the tone. When done, hang-up, or press the pound key.\" That is played after " 
    2059 "the voicemail greeting (the s option). This applies globally to all vm boxes." 
    2060 msgstr "" 
    2061  
    2062 #: amp_conf/htdocs/admin/modules/core/page.general.php:176 
    2063 msgid "please leave message after tone to caller" 
    2064 msgstr "" 
    2065  
    2066 #: amp_conf/htdocs/admin/modules/core/page.general.php:179 
    2067 msgid "Voicemail VmX Locator" 
    2068 msgstr "" 
    2069  
    2070 #: amp_conf/htdocs/admin/modules/core/page.general.php:183 
    2071 msgid "Default Context & Pri:" 
    2072 msgstr "" 
    2073  
    2074 #: amp_conf/htdocs/admin/modules/core/page.general.php:184 
    2075 msgid "Default to use if only an number/extension are provided." 
    2076 msgstr "" 
    2077  
    2078 #: amp_conf/htdocs/admin/modules/core/page.general.php:186 
    2079 #: amp_conf/htdocs/admin/modules/core/page.general.php:195 
    2080 #: amp_conf/htdocs/admin/modules/core/page.general.php:204 
    2081 msgid "context" 
    2082 msgstr "" 
    2083  
    2084 #: amp_conf/htdocs/admin/modules/core/page.general.php:188 
    2085 #: amp_conf/htdocs/admin/modules/core/page.general.php:197 
    2086 #: amp_conf/htdocs/admin/modules/core/page.general.php:206 
    2087 msgid "pri" 
    2088 msgstr "" 
    2089  
    2090 #: amp_conf/htdocs/admin/modules/core/page.general.php:192 
    2091 msgid "Timeout/#-press default:" 
    2092 msgstr "" 
    2093  
    2094 #: amp_conf/htdocs/admin/modules/core/page.general.php:193 
    2095 msgid "" 
    2096 "This is the default location that a caller will be sent if they don't press " 
    2097 "any key (timeout) or press # which is interpreted as a timeout. Set this to " 
    2098 "'dovm' to go to voicemail (default)." 
    2099 msgstr "" 
    2100  
    2101 #: amp_conf/htdocs/admin/modules/core/page.general.php:196 
    2102 #: amp_conf/htdocs/admin/modules/core/page.general.php:205 
    2103 msgid "exten" 
    2104 msgstr "" 
    2105  
    2106 #: amp_conf/htdocs/admin/modules/core/page.general.php:201 
    2107 msgid "Loop Exceed default:" 
    2108 msgstr "" 
    2109  
    2110 #: amp_conf/htdocs/admin/modules/core/page.general.php:202 
    2111 msgid "" 
    2112 "This is the default location that a caller will be sent if they press an " 
    2113 "invalid options too man times, as defined by the Maximum Loops count. Set " 
    2114 "this to 'dovm' to go to voicemail (default)." 
    2115 msgstr "" 
    2116  
    2117 #: amp_conf/htdocs/admin/modules/core/page.general.php:210 
    2118 msgid "Timeout VM Msg:" 
    2119 msgstr "" 
    2120  
    2121 #: amp_conf/htdocs/admin/modules/core/page.general.php:211 
    2122 #: amp_conf/htdocs/admin/modules/core/page.general.php:223 
    2123 msgid "" 
    2124 "If this destination is voicemail, select whether or not to play the standard " 
    2125 "voicemail instructions or just beep." 
    2126 msgstr "" 
    2127  
    2128 #: amp_conf/htdocs/admin/modules/core/page.general.php:215 
    2129 #: amp_conf/htdocs/admin/modules/core/page.general.php:227 
    2130 #: amp_conf/htdocs/admin/modules/core/page.general.php:239 
    2131 msgid "Std Instructions" 
    2132 msgstr "" 
    2133  
    2134 #: amp_conf/htdocs/admin/modules/core/page.general.php:216 
    2135 #: amp_conf/htdocs/admin/modules/core/page.general.php:228 
    2136 #: amp_conf/htdocs/admin/modules/core/page.general.php:240 
    2137 msgid "Beep Only" 
    2138 msgstr "" 
    2139  
    2140 #: amp_conf/htdocs/admin/modules/core/page.general.php:222 
    2141 msgid "Max Loop VM Msg:" 
    2142 msgstr "" 
    2143  
    2144 #: amp_conf/htdocs/admin/modules/core/page.general.php:234 
    2145 msgid "Direct VM Option" 
    2146 msgstr "" 
    2147  
    2148 #: amp_conf/htdocs/admin/modules/core/page.general.php:235 
    2149 msgid "" 
    2150 "If a user defined option is to go to voicemail (using the 'dovm' extension) " 
    2151 "this is the default option if not specified by the user's settings." 
    2152 msgstr "" 
    2153  
    2154 #: amp_conf/htdocs/admin/modules/core/page.general.php:246 
    2155 msgid "Msg Timeout:" 
    2156 msgstr "" 
    2157  
    2158 #: amp_conf/htdocs/admin/modules/core/page.general.php:247 
    2159 msgid "" 
    2160 "Time ot wait after message has played to timeout and/or repeat the message " 
    2161 "if no entry pressed." 
    2162 msgstr "" 
    2163  
    2164 #: amp_conf/htdocs/admin/modules/core/page.general.php:259 
    2165 msgid "seconds" 
    2166 msgstr "" 
    2167  
    2168 #: amp_conf/htdocs/admin/modules/core/page.general.php:264 
    2169 msgid "Msg Play:" 
    2170 msgstr "" 
    2171  
    2172 #: amp_conf/htdocs/admin/modules/core/page.general.php:265 
    2173 msgid "" 
    2174 "Number of times to play the recorded message if the caller does not press " 
    2175 "any options and it times out." 
    2176 msgstr "" 
    2177  
    2178 #: amp_conf/htdocs/admin/modules/core/page.general.php:277 
    2179 #: amp_conf/htdocs/admin/modules/core/page.general.php:295 
    2180 msgid "times" 
    2181 msgstr "" 
    2182  
    2183 #: amp_conf/htdocs/admin/modules/core/page.general.php:282 
    2184 msgid "Error Re-tries:" 
    2185 msgstr "" 
    2186  
    2187 #: amp_conf/htdocs/admin/modules/core/page.general.php:283 
    2188 msgid "" 
    2189 "Number of times to play invalid options and repeat the message upon " 
    2190 "receiving an undefined option." 
    2191 msgstr "" 
    2192  
    2193 #: amp_conf/htdocs/admin/modules/core/page.general.php:303 
    2194 msgid "Company Directory" 
    2195 msgstr "" 
    2196  
    2197 #: amp_conf/htdocs/admin/modules/core/page.general.php:305 
    2198 msgid "Find users in the Company Directory by:" 
    2199 msgstr "" 
    2200  
    2201 #: amp_conf/htdocs/admin/modules/core/page.general.php:307 
    2202 msgid "first name" 
    2203 msgstr "" 
    2204  
    2205 #: amp_conf/htdocs/admin/modules/core/page.general.php:308 
    2206 msgid "last name" 
    2207 msgstr "" 
    2208  
    2209 #: amp_conf/htdocs/admin/modules/core/page.general.php:309 
    2210 msgid "first or last name" 
    2211 msgstr "" 
    2212  
    2213 #: amp_conf/htdocs/admin/modules/core/page.general.php:312 
    2214 msgid "Play extension number" 
    2215 msgstr "" 
    2216  
    2217 #: amp_conf/htdocs/admin/modules/core/page.general.php:312 
    2218 msgid "" 
    2219 "Plays a message \"Please hold while I transfer you to extension xxx\" that " 
    2220 "lets the caller know what extension to use in the future." 
    2221 msgstr "" 
    2222  
    2223 #: amp_conf/htdocs/admin/modules/core/page.general.php:312 
    2224 msgid "to caller before transferring call" 
    2225 msgstr "" 
    2226  
    2227 #: amp_conf/htdocs/admin/modules/core/page.general.php:313 
    2228 msgid "Operator Extension:" 
    2229 msgstr "" 
    2230  
    2231 #: amp_conf/htdocs/admin/modules/core/page.general.php:314 
    2232 msgid "" 
    2233 "When users hit '0' in the directory, they are put through to this number. " 
    2234 "Note that it" 
    2235 msgstr "" 
    2236  
    2237 #: amp_conf/htdocs/admin/modules/core/page.general.php:315 
    2238 msgid "" 
    2239 " does NOT need to be an extension, it can be a Ring Group, or even an " 
    2240 "external number." 
    2241 msgstr "" 
    2242  
    2243 #: amp_conf/htdocs/admin/modules/core/page.general.php:318 
    2244 msgid "Fax Machine" 
    2245 msgstr "" 
    2246  
    2247 #: amp_conf/htdocs/admin/modules/core/page.general.php:320 
    2248 msgid "Extension of" 
    2249 msgstr "" 
    2250  
    2251 #: amp_conf/htdocs/admin/modules/core/page.general.php:320 
    2252 msgid "fax machine" 
    2253 msgstr "" 
    2254  
    2255 #: amp_conf/htdocs/admin/modules/core/page.general.php:320 
    2256 msgid "" 
    2257 "Select 'system' to have the system receive and email faxes.<br>Selecting " 
    2258 "'disabled' will result in incoming calls being answered more quickly." 
    2259 msgstr "" 
    2260  
    2261 #: amp_conf/htdocs/admin/modules/core/page.general.php:320 
    2262 msgid "for receiving faxes:" 
    2263 msgstr "" 
    2264  
    2265 #: amp_conf/htdocs/admin/modules/core/page.general.php:338 
    2266 #: amp_conf/htdocs/admin/modules/core/page.general.php:342 
    2267 msgid "Email address" 
    2268 msgstr "" 
    2269  
    2270 #: amp_conf/htdocs/admin/modules/core/page.general.php:338 
    2271 msgid "" 
    2272 "Email address used if 'system' has been chosen for the fax extension above." 
    2273 msgstr "" 
    2274  
    2275 #: amp_conf/htdocs/admin/modules/core/page.general.php:338 
    2276 msgid "to have faxes emailed to:" 
    2277 msgstr "" 
    2278  
    2279 #: amp_conf/htdocs/admin/modules/core/page.general.php:342 
    2280 msgid "" 
    2281 "Email address that faxes appear to come from if 'system' has been chosen for " 
    2282 "the fax extension above." 
    2283 msgstr "" 
    2284  
    2285 #: amp_conf/htdocs/admin/modules/core/page.general.php:342 
    2286 msgid "that faxes appear to come from:" 
    2287 msgstr "" 
    2288  
    2289 #: amp_conf/htdocs/admin/modules/core/page.general.php:345 
    2290 msgid "International Settings" 
    2291 msgstr "" 
    2292  
    2293 #: amp_conf/htdocs/admin/modules/core/page.general.php:347 
    2294 msgid "Country" 
    2295 msgstr "" 
    2296  
    2297 #: amp_conf/htdocs/admin/modules/core/page.general.php:347 
    2298 msgid "Indications" 
    2299 msgstr "" 
    2300  
    2301 #: amp_conf/htdocs/admin/modules/core/page.general.php:347 
    2302 msgid "Select which country you are in" 
    2303 msgstr "" 
    2304  
    2305 #: amp_conf/htdocs/admin/modules/core/page.general.php:355 
    2306 msgid "24-hour format" 
    2307 msgstr "" 
    2308  
    2309 #: amp_conf/htdocs/admin/modules/core/page.general.php:355 
    2310 msgid "" 
    2311 "Select Yes if you use 24-hour format or No if you are using 12-hour am/pm " 
    2312 "format" 
    2313 msgstr "" 
    2314  
    2315 #: amp_conf/htdocs/admin/modules/core/page.general.php:357 
    2316 #: amp_conf/htdocs/admin/modules/core/page.general.php:369 
    2317 msgid "no" 
    2318 msgstr "" 
    2319  
    2320 #: amp_conf/htdocs/admin/modules/core/page.general.php:358 
    2321 #: amp_conf/htdocs/admin/modules/core/page.general.php:370 
    2322 msgid "yes" 
    2323 msgstr "" 
    2324  
    2325 #: amp_conf/htdocs/admin/modules/core/page.general.php:361 
    2326 msgid "Security Settings" 
    2327 msgstr "" 
    2328  
    2329 #: amp_conf/htdocs/admin/modules/core/page.general.php:363 
    2330 msgid "Allow Anonymous Inbound SIP Calls?" 
    2331 msgstr "" 
    2332  
    2333 #: amp_conf/htdocs/admin/modules/core/page.general.php:364 
    2334 msgid "** WARNING **" 
    2335 msgstr "" 
    2336  
    2337 #: amp_conf/htdocs/admin/modules/core/page.general.php:365 
    2338 msgid "" 
    2339 "Setting this to 'yes' will potentially allow ANYBODY to call into your " 
    2340 "Asterisk server using the SIP protocol" 
    2341 msgstr "" 
    2342  
    2343 #: amp_conf/htdocs/admin/modules/core/page.general.php:366 
    2344 msgid "" 
    2345 "It should only be used if you fully understand the impact of allowing " 
    2346 "anonymous calls into your server" 
    2347 msgstr "" 
    2348  
    2349 #: amp_conf/htdocs/admin/modules/core/page.general.php:374 
    2350 msgid "Online Updates" 
    2351 msgstr "" 
    2352  
    2353 #: amp_conf/htdocs/admin/modules/core/page.general.php:378 
    2354 msgid "Check for Updates" 
    2355 msgstr "" 
    2356  
    2357 #: amp_conf/htdocs/admin/modules/core/page.general.php:379 
    2358 msgid "" 
    2359 "Choosing Yes will result in the system automatically checking for updates " 
    2360 "nighly. The resulting infomation will be displayed in the dashboard and will " 
    2361 "be optionally emailed to the address below if provided.<br />This will " 
    2362 "trasmit your FreePBX and Asterisk version numbers along with a unique but " 
    2363 "random identifier. This is used to provide proper update information and to " 
    2364 "track version usage to focus development and maintenance efforts. No private " 
    2365 "information is trasmitted." 
    2366 msgstr "" 
    2367  
    2368 #: amp_conf/htdocs/admin/modules/core/page.general.php:390 
    2369 msgid "Update Email" 
    2370 msgstr "" 
    2371  
    2372 #: amp_conf/htdocs/admin/modules/core/page.general.php:391 
    2373 msgid "" 
    2374 "Email address where online updates will be sent. Leaving blank will result " 
    2375 "in no updates being sent." 
    2376 msgstr "" 
    2377  
    2378 #: amp_conf/htdocs/admin/modules/core/page.general.php:421 
    2379 msgid "Please enter a valid Number of Seconds" 
    2380 msgstr "" 
    2381  
    2382 #: amp_conf/htdocs/admin/modules/core/page.general.php:422 
    2383 msgid "Please enter a valid Fax Email" 
    2384 msgstr "" 
    2385  
    2386 #: amp_conf/htdocs/admin/modules/core/page.general.php:423 
    2387 msgid "" 
    2388 "You have selected the 'r' option for your trunks. This is highly discouraged " 
    2389 "and will create problems with calls on many PRI, VoIP, ISDN and other trunks " 
    2390 "that are capable of signaling. Asterisk will generate a ringing tone until " 
    2391 "the signalling indicates the line is answered. This will result in some " 
    2392 "external IVRs being inaccessible and other strange problems." 
    2393 msgstr "" 
    2394  
    2395 #: amp_conf/htdocs/admin/modules/core/page.routing.php:118 
    2396 msgid "Error renaming route: duplicate name" 
    2397 msgstr "" 
    2398  
     874#: amp_conf/htdocs/admin/modules/core/page.trunks.php:159 
    2399875#: amp_conf/htdocs/admin/modules/core/page.routing.php:164 
    2400 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:159 
    2401876msgid "Error fetching prefix list for: " 
    2402877msgstr "" 
    2403878 
     879#: amp_conf/htdocs/admin/modules/core/page.trunks.php:164 
    2404880#: amp_conf/htdocs/admin/modules/core/page.routing.php:169 
    2405 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:164 
    2406881msgid "Invalid format for NPA-NXX code (must be format: NXXNXX)" 
    2407 msgstr "" 
    2408  
    2409 #: amp_conf/htdocs/admin/modules/core/page.routing.php:200 
    2410 #: amp_conf/htdocs/admin/modules/core/page.routing.php:265 
    2411 msgid "Add Route" 
    2412 msgstr "" 
    2413  
    2414 #: amp_conf/htdocs/admin/modules/core/page.routing.php:215 
    2415 #: amp_conf/htdocs/admin/modules/core/page.routing.php:528 
    2416 msgid "Move Up" 
    2417 msgstr "" 
    2418  
    2419 #: amp_conf/htdocs/admin/modules/core/page.routing.php:222 
    2420 #: amp_conf/htdocs/admin/modules/core/page.routing.php:536 
    2421 msgid "Move Down" 
    2422 msgstr "" 
    2423  
    2424 #: amp_conf/htdocs/admin/modules/core/page.routing.php:263 
    2425 msgid "Edit Route" 
    2426 msgstr "" 
    2427  
    2428 #: amp_conf/htdocs/admin/modules/core/page.routing.php:290 
    2429 msgid "Route Name" 
    2430 msgstr "" 
    2431  
    2432 #: amp_conf/htdocs/admin/modules/core/page.routing.php:290 
    2433 msgid "" 
    2434 "Name of this route. Should be used to describe what type of calls this route " 
    2435 "matches (for example, 'local' or 'longdistance')." 
    2436 msgstr "" 
    2437  
    2438 #: amp_conf/htdocs/admin/modules/core/page.routing.php:296 
    2439 msgid "Rename" 
    2440 msgstr "" 
    2441  
    2442 #: amp_conf/htdocs/admin/modules/core/page.routing.php:301 
    2443 msgid "Rename route" 
    2444 msgstr "" 
    2445  
    2446 #: amp_conf/htdocs/admin/modules/core/page.routing.php:301 
    2447 msgid "to:" 
    2448 msgstr "" 
    2449  
    2450 #: amp_conf/htdocs/admin/modules/core/page.routing.php:303 
    2451 msgid "Route name is invalid...please try again" 
    2452 msgstr "" 
    2453  
    2454 #: amp_conf/htdocs/admin/modules/core/page.routing.php:318 
    2455 msgid "Route Password" 
    2456 msgstr "" 
    2457  
    2458 #: amp_conf/htdocs/admin/modules/core/page.routing.php:318 
    2459 msgid "" 
    2460 "Optional: A route can prompt users for a password before allowing calls to " 
    2461 "progress.  This is useful for restricting calls to international " 
    2462 "destinations or 1-900 numbers.<br><br>A numerical password, or the path to " 
    2463 "an Authenticate password file can be used.<br><br>Leave this field blank to " 
    2464 "not prompt for password.</span>" 
    2465 msgstr "" 
    2466  
    2467 #: amp_conf/htdocs/admin/modules/core/page.routing.php:327 
    2468 msgid "Emergency Dialing" 
    2469 msgstr "" 
    2470  
    2471 #: amp_conf/htdocs/admin/modules/core/page.routing.php:327 
    2472 msgid "" 
    2473 "Optional: Selecting this option will enforce the use of a device's Emergency " 
    2474 "CID setting (if set).  Select this option if this set of routes is used for " 
    2475 "emergency dialing (ie: 911).</span>" 
    2476 msgstr "" 
    2477  
    2478 #: amp_conf/htdocs/admin/modules/core/page.routing.php:331 
    2479 msgid "Intra Company Route" 
    2480 msgstr "" 
    2481  
    2482 #: amp_conf/htdocs/admin/modules/core/page.routing.php:331 
    2483 msgid "" 
    2484 "Optional: Selecting this option will treat this route as a intra-company " 
    2485 "connection, preserving the internal Caller ID information and not use the " 
    2486 "outbound CID of either the extension or trunk.</span>" 
    2487 msgstr "" 
    2488  
    2489 #: amp_conf/htdocs/admin/modules/core/page.routing.php:336 
    2490 msgid "Music On Hold?" 
    2491 msgstr "" 
    2492  
    2493 #: amp_conf/htdocs/admin/modules/core/page.routing.php:336 
    2494 msgid "" 
    2495 "You can choose which music category to use. For example, choose a type " 
    2496 "appropriate for a destination country which may have announcements in the " 
    2497 "appropriate language." 
    2498 msgstr "" 
    2499  
    2500 #: amp_conf/htdocs/admin/modules/core/page.routing.php:354 
    2501 msgid "Dial Patterns" 
    2502 msgstr "" 
    2503  
    2504 #: amp_conf/htdocs/admin/modules/core/page.routing.php:354 
    2505 msgid "" 
    2506 "A Dial Pattern is a unique set of digits that will select this trunk. Enter " 
    2507 "one dial pattern per line." 
    2508 msgstr "" 
    2509  
    2510 #: amp_conf/htdocs/admin/modules/core/page.routing.php:354 
    2511 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:408 
    2512 msgid "Rules:" 
    2513 msgstr "" 
    2514  
    2515 #: amp_conf/htdocs/admin/modules/core/page.routing.php:355 
    2516 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:409 
    2517 msgid "matches any digit from 0-9" 
    2518 msgstr "" 
    2519  
    2520 #: amp_conf/htdocs/admin/modules/core/page.routing.php:356 
    2521 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:410 
    2522 msgid "matches any digit from 1-9" 
    2523 msgstr "" 
    2524  
    2525 #: amp_conf/htdocs/admin/modules/core/page.routing.php:357 
    2526 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:411 
    2527 msgid "matches any digit from 2-9" 
    2528 msgstr "" 
    2529  
    2530 #: amp_conf/htdocs/admin/modules/core/page.routing.php:358 
    2531 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:412 
    2532 msgid "" 
    2533 "matches any digit or letter in the brackets (in this example, 1,2,3,7,8,9)" 
    2534 msgstr "" 
    2535  
    2536 #: amp_conf/htdocs/admin/modules/core/page.routing.php:359 
    2537 msgid "wildcard, matches one or more characters" 
    2538 msgstr "" 
    2539  
    2540 #: amp_conf/htdocs/admin/modules/core/page.routing.php:360 
    2541 msgid "" 
    2542 "separates a dialing prefix from the number (for example, 9|NXXXXXX would " 
    2543 "match when some dialed \"95551234\" but would only pass \"5551234\" to the " 
    2544 "trunks)" 
    2545 msgstr "" 
    2546  
    2547 #: amp_conf/htdocs/admin/modules/core/page.routing.php:397 
    2548 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:427 
    2549 msgid "Clean & Remove duplicates" 
    2550 msgstr "" 
    2551  
    2552 #: amp_conf/htdocs/admin/modules/core/page.routing.php:402 
    2553 msgid "Dial patterns wizards" 
    2554 msgstr "" 
    2555  
    2556 #: amp_conf/htdocs/admin/modules/core/page.routing.php:403 
    2557 msgid "" 
    2558 "These options provide a quick way to add outbound dialing rules. Follow the " 
    2559 "prompts for each." 
    2560 msgstr "" 
    2561  
    2562 #: amp_conf/htdocs/admin/modules/core/page.routing.php:404 
    2563 #: amp_conf/htdocs/admin/modules/core/page.routing.php:490 
    2564 msgid "Lookup local prefixes" 
    2565 msgstr "" 
    2566  
    2567 #: amp_conf/htdocs/admin/modules/core/page.routing.php:404 
    2568 msgid "" 
    2569 "This looks up your local number on www.localcallingguide.com (NA-only), and " 
    2570 "sets up so you can dial either 7, 10 or 11 digits (5551234, 6135551234, " 
    2571 "16135551234) to access this route." 
    2572 msgstr "" 
    2573  
    2574 #: amp_conf/htdocs/admin/modules/core/page.routing.php:415 
    2575 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:478 
    2576 msgid "" 
    2577 "What is your areacode + prefix (NPA-NXX)?\\n\\n(Note: this database contains " 
    2578 "North American numbers only, and is not guaranteed to be 100% accurate. You " 
    2579 "will still have the option of modifying results.)\\n\\nThis may take a few " 
    2580 "seconds." 
    2581 msgstr "" 
    2582  
    2583 #: amp_conf/htdocs/admin/modules/core/page.routing.php:417 
    2584 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:480 
    2585 msgid "Invalid NPA-NXX. Must be of the format \\'NXX-NXX\\'" 
    2586 msgstr "" 
    2587  
    2588 #: amp_conf/htdocs/admin/modules/core/page.routing.php:425 
    2589 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:492 
    2590 msgid "" 
    2591 "Error: Cannot continue!\\n\\nPrefix lookup requires cURL support in PHP on " 
    2592 "the server. Please install or enable cURL support in your PHP installation " 
    2593 "to use this function. See http://www.php.net/curl for more information." 
    2594 msgstr "" 
    2595  
    2596 #: amp_conf/htdocs/admin/modules/core/page.routing.php:482 
    2597 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:438 
    2598 msgid "(pick one)" 
    2599 msgstr "" 
    2600  
    2601 #: amp_conf/htdocs/admin/modules/core/page.routing.php:483 
    2602 msgid "Local 7 digit" 
    2603 msgstr "" 
    2604  
    2605 #: amp_conf/htdocs/admin/modules/core/page.routing.php:484 
    2606 msgid "Local 7/10 digit" 
    2607 msgstr "" 
    2608  
    2609 #: amp_conf/htdocs/admin/modules/core/page.routing.php:485 
    2610 msgid "Toll-free" 
    2611 msgstr "" 
    2612  
    2613 #: amp_conf/htdocs/admin/modules/core/page.routing.php:486 
    2614 msgid "Long-distance" 
    2615 msgstr "" 
    2616  
    2617 #: amp_conf/htdocs/admin/modules/core/page.routing.php:487 
    2618 msgid "International" 
    2619 msgstr "" 
    2620  
    2621 #: amp_conf/htdocs/admin/modules/core/page.routing.php:488 
    2622 msgid "Information" 
    2623 msgstr "" 
    2624  
    2625 #: amp_conf/htdocs/admin/modules/core/page.routing.php:489 
    2626 msgid "Emergency" 
    2627 msgstr "" 
    2628  
    2629 #: amp_conf/htdocs/admin/modules/core/page.routing.php:496 
    2630 msgid "Trunk Sequence" 
    2631 msgstr "" 
    2632  
    2633 #: amp_conf/htdocs/admin/modules/core/page.routing.php:496 
    2634 msgid "" 
    2635 "The Trunk Sequence controls the order of trunks that will be used when the " 
    2636 "above Dial Patterns are matched. <br><br>For Dial Patterns that match long " 
    2637 "distance numbers, for example, you'd want to pick the cheapest routes for " 
    2638 "long distance (ie, VoIP trunks first) followed by more expensive routes " 
    2639 "(POTS lines)." 
    2640 msgstr "" 
    2641  
    2642 #: amp_conf/htdocs/admin/modules/core/page.routing.php:618 
    2643 msgid "Route name is invalid, please try again" 
    2644 msgstr "" 
    2645  
    2646 #: amp_conf/htdocs/admin/modules/core/page.routing.php:619 
    2647 msgid "Route password must be numeric or leave blank to disable" 
    2648 msgstr "" 
    2649  
    2650 #: amp_conf/htdocs/admin/modules/core/page.routing.php:620 
    2651 msgid "Dial pattern is invalid" 
    2652 msgstr "" 
    2653  
    2654 #: amp_conf/htdocs/admin/modules/core/page.routing.php:621 
    2655 msgid "At least one trunk must be picked" 
    2656882msgstr "" 
    2657883 
     
    2712938#: amp_conf/htdocs/admin/modules/core/page.trunks.php:289 
    2713939msgid "routes" 
     940msgstr "" 
     941 
     942#: amp_conf/htdocs/admin/modules/core/page.trunks.php:291 
     943#: amp_conf/htdocs/admin/modules/core/page.did.php:138 
     944msgid "Route" 
    2714945msgstr "" 
    2715946 
     
    28061037msgstr "" 
    28071038 
     1039#: amp_conf/htdocs/admin/modules/core/page.trunks.php:388 
     1040#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4104 
     1041#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4107 
     1042#: amp_conf/htdocs/admin/page.modules.php:786 
     1043msgid "Disable" 
     1044msgstr "" 
     1045 
    28081046#: amp_conf/htdocs/admin/modules/core/page.trunks.php:393 
    28091047msgid "Monitor Trunk Failures" 
     
    28151053"report, log, email or otherwise take some action on trunk failures that are " 
    28161054"not caused by either NOANSWER or CANCEL." 
     1055msgstr "" 
     1056 
     1057#: amp_conf/htdocs/admin/modules/core/page.trunks.php:397 
     1058#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4103 
     1059#: amp_conf/htdocs/admin/page.modules.php:744 
     1060msgid "Enable" 
    28171061msgstr "" 
    28181062 
     
    28351079msgstr "" 
    28361080 
     1081#: amp_conf/htdocs/admin/modules/core/page.trunks.php:408 
     1082#: amp_conf/htdocs/admin/modules/core/page.routing.php:354 
     1083msgid "Rules:" 
     1084msgstr "" 
     1085 
     1086#: amp_conf/htdocs/admin/modules/core/page.trunks.php:409 
     1087#: amp_conf/htdocs/admin/modules/core/page.routing.php:355 
     1088msgid "matches any digit from 0-9" 
     1089msgstr "" 
     1090 
     1091#: amp_conf/htdocs/admin/modules/core/page.trunks.php:410 
     1092#: amp_conf/htdocs/admin/modules/core/page.routing.php:356 
     1093msgid "matches any digit from 1-9" 
     1094msgstr "" 
     1095 
     1096#: amp_conf/htdocs/admin/modules/core/page.trunks.php:411 
     1097#: amp_conf/htdocs/admin/modules/core/page.routing.php:357 
     1098msgid "matches any digit from 2-9" 
     1099msgstr "" 
     1100 
     1101#: amp_conf/htdocs/admin/modules/core/page.trunks.php:412 
     1102#: amp_conf/htdocs/admin/modules/core/page.routing.php:358 
     1103msgid "" 
     1104"matches any digit or letter in the brackets (in this example, 1,2,3,7,8,9)" 
     1105msgstr "" 
     1106 
    28371107#: amp_conf/htdocs/admin/modules/core/page.trunks.php:413 
    28381108msgid "wildcard, matches one or more characters (not allowed before a | or +)" 
     
    28571127"\"016065551234\" and dial it as \"0116065551234\" Note that the order does " 
    28581128"not matter, eg. 0|01+1ZXXXXXXXXX does the same thing." 
     1129msgstr "" 
     1130 
     1131#: amp_conf/htdocs/admin/modules/core/page.trunks.php:427 
     1132#: amp_conf/htdocs/admin/modules/core/page.routing.php:397 
     1133msgid "Clean & Remove duplicates" 
    28591134msgstr "" 
    28601135 
     
    28981173msgstr "" 
    28991174 
     1175#: amp_conf/htdocs/admin/modules/core/page.trunks.php:438 
     1176#: amp_conf/htdocs/admin/modules/core/page.routing.php:482 
     1177msgid "(pick one)" 
     1178msgstr "" 
     1179 
    29001180#: amp_conf/htdocs/admin/modules/core/page.trunks.php:441 
    29011181msgid "Lookup numbers for local trunk (7-digit dialing)" 
     
    29071187 
    29081188#: amp_conf/htdocs/admin/modules/core/page.trunks.php:478 
     1189#: amp_conf/htdocs/admin/modules/core/page.routing.php:415 
     1190msgid "" 
     1191"What is your areacode + prefix (NPA-NXX)?\\n\\n(Note: this database contains " 
     1192"North American numbers only, and is not guaranteed to be 100% accurate. You " 
     1193"will still have the option of modifying results.)\\n\\nThis may take a few " 
     1194"seconds." 
     1195msgstr "" 
     1196 
     1197#: amp_conf/htdocs/admin/modules/core/page.trunks.php:478 
    29091198msgid "\")" 
     1199msgstr "" 
     1200 
     1201#: amp_conf/htdocs/admin/modules/core/page.trunks.php:480 
     1202#: amp_conf/htdocs/admin/modules/core/page.routing.php:417 
     1203msgid "Invalid NPA-NXX. Must be of the format \\'NXX-NXX\\'" 
     1204msgstr "" 
     1205 
     1206#: amp_conf/htdocs/admin/modules/core/page.trunks.php:492 
     1207#: amp_conf/htdocs/admin/modules/core/page.routing.php:425 
     1208msgid "" 
     1209"Error: Cannot continue!\\n\\nPrefix lookup requires cURL support in PHP on " 
     1210"the server. Please install or enable cURL support in your PHP installation " 
     1211"to use this function. See http://www.php.net/curl for more information." 
    29101212msgstr "" 
    29111213 
     
    31131415msgstr "" 
    31141416 
    3115 #: amp_conf/htdocs/admin/modules/core/page.users.php:34 
    3116 msgid "" 
    3117 "You have not entered a User Password.  While this is acceptable, this user " 
    3118 "will not be able to login to an AdHoc device.\\n\\nAre you sure you wish to " 
    3119 "leave the User Password empty?" 
     1417#: amp_conf/htdocs/admin/modules/core/page.general.php:105 
     1418msgid "Dialing Options" 
     1419msgstr "" 
     1420 
     1421#: amp_conf/htdocs/admin/modules/core/page.general.php:107 
     1422msgid "Asterisk Dial command options:" 
     1423msgstr "" 
     1424 
     1425#: amp_conf/htdocs/admin/modules/core/page.general.php:108 
     1426#: amp_conf/htdocs/admin/modules/core/page.general.php:117 
     1427msgid "t: Allow the called user to transfer the call by hitting #" 
     1428msgstr "" 
     1429 
     1430#: amp_conf/htdocs/admin/modules/core/page.general.php:109 
     1431#: amp_conf/htdocs/admin/modules/core/page.general.php:118 
     1432msgid "T: Allow the calling user to transfer the call by hitting #" 
     1433msgstr "" 
     1434 
     1435#: amp_conf/htdocs/admin/modules/core/page.general.php:110 
     1436msgid "r: Generate a ringing tone for the calling party" 
     1437msgstr "" 
     1438 
     1439#: amp_conf/htdocs/admin/modules/core/page.general.php:111 
     1440#: amp_conf/htdocs/admin/modules/core/page.general.php:119 
     1441msgid "" 
     1442"w: Allow the called user to start recording after pressing *1 (Asterisk v1.2)" 
     1443msgstr "" 
     1444 
     1445#: amp_conf/htdocs/admin/modules/core/page.general.php:112 
     1446#: amp_conf/htdocs/admin/modules/core/page.general.php:120 
     1447msgid "" 
     1448"W: Allow the calling user to start recording after pressing *1 (Asterisk " 
     1449"v1.2)" 
     1450msgstr "" 
     1451 
     1452#: amp_conf/htdocs/admin/modules/core/page.general.php:116 
     1453msgid "Asterisk Outbound Dial command options:" 
     1454msgstr "" 
     1455 
     1456#: amp_conf/htdocs/admin/modules/core/page.general.php:121 
     1457msgid "r: You SHOULD NOT use this option on outbound trunks" 
     1458msgstr "" 
     1459 
     1460#: amp_conf/htdocs/admin/modules/core/page.general.php:126 
     1461msgid "Call Recording" 
     1462msgstr "" 
     1463 
     1464#: amp_conf/htdocs/admin/modules/core/page.general.php:128 
     1465msgid "Call recording format:" 
     1466msgstr "" 
     1467 
     1468#: amp_conf/htdocs/admin/modules/core/page.general.php:129 
     1469msgid "Pick the format in which to save recorded calls" 
     1470msgstr "" 
     1471 
     1472#: amp_conf/htdocs/admin/modules/core/page.general.php:132 
     1473msgid "WAV" 
     1474msgstr "" 
     1475 
     1476#: amp_conf/htdocs/admin/modules/core/page.general.php:133 
     1477msgid "wav" 
     1478msgstr "" 
     1479 
     1480#: amp_conf/htdocs/admin/modules/core/page.general.php:134 
     1481msgid "ulaw" 
     1482msgstr "" 
     1483 
     1484#: amp_conf/htdocs/admin/modules/core/page.general.php:135 
     1485msgid "alaw" 
     1486msgstr "" 
     1487 
     1488#: amp_conf/htdocs/admin/modules/core/page.general.php:136 
     1489msgid "sln" 
     1490msgstr "" 
     1491 
     1492#: amp_conf/htdocs/admin/modules/core/page.general.php:137 
     1493msgid "gsm" 
     1494msgstr "" 
     1495 
     1496#: amp_conf/htdocs/admin/modules/core/page.general.php:138 
     1497msgid "g729" 
     1498msgstr "" 
     1499 
     1500#: amp_conf/htdocs/admin/modules/core/page.general.php:141 
     1501msgid "Recording Location:" 
     1502msgstr "" 
     1503 
     1504#: amp_conf/htdocs/admin/modules/core/page.general.php:142 
     1505msgid "" 
     1506"Override the default location where asterisk will store call recordings. " 
     1507"Include the trailing /. Be sure to set proper permissions on the directory " 
     1508"for the asterisk user." 
     1509msgstr "" 
     1510 
     1511#: amp_conf/htdocs/admin/modules/core/page.general.php:146 
     1512msgid "Run after record:" 
     1513msgstr "" 
     1514 
     1515#: amp_conf/htdocs/admin/modules/core/page.general.php:147 
     1516msgid "" 
     1517"An optional script to be run after the call is hungup. You can include " 
     1518"channel and MixMon variables like ${CALLFILENAME}, ${MIXMON_FORMAT} and " 
     1519"${MIXMON_DIR}. To ensure that you variables are properly escaped, use the " 
     1520"following notation: ^{MY_VAR}" 
     1521msgstr "" 
     1522 
     1523#: amp_conf/htdocs/admin/modules/core/page.general.php:153 
     1524msgid "Voicemail" 
     1525msgstr "" 
     1526 
     1527#: amp_conf/htdocs/admin/modules/core/page.general.php:155 
     1528msgid "Number of seconds to ring phones before sending callers to voicemail:" 
     1529msgstr "" 
     1530 
     1531#: amp_conf/htdocs/admin/modules/core/page.general.php:158 
     1532msgid "Extension prefix for dialing direct to voicemail:" 
     1533msgstr "" 
     1534 
     1535#: amp_conf/htdocs/admin/modules/core/page.general.php:161 
     1536msgid "Direct Dial to Voicemail message type:" 
     1537msgstr "" 
     1538 
     1539#: amp_conf/htdocs/admin/modules/core/page.general.php:163 
     1540msgid "Default" 
     1541msgstr "" 
     1542 
     1543#: amp_conf/htdocs/admin/modules/core/page.general.php:164 
     1544#: amp_conf/htdocs/admin/modules/core/page.general.php:165 
     1545msgid "Unavailable" 
     1546msgstr "" 
     1547 
     1548#: amp_conf/htdocs/admin/modules/core/page.general.php:165 
     1549#: amp_conf/htdocs/admin/modules/core/page.general.php:167 
     1550msgid "no instructions" 
     1551msgstr "" 
     1552 
     1553#: amp_conf/htdocs/admin/modules/core/page.general.php:166 
     1554#: amp_conf/htdocs/admin/modules/core/page.general.php:167 
     1555msgid "Busy" 
     1556msgstr "" 
     1557 
     1558#: amp_conf/htdocs/admin/modules/core/page.general.php:171 
     1559msgid "Use gain when recording the voicemail message (optional):" 
     1560msgstr "" 
     1561 
     1562#: amp_conf/htdocs/admin/modules/core/page.general.php:172 
     1563msgid "Use the specified amount of gain when recording the voicemail message." 
     1564msgstr "" 
     1565 
     1566#: amp_conf/htdocs/admin/modules/core/page.general.php:173 
     1567msgid "The units are whole-number decibels (dB)." 
     1568msgstr "" 
     1569 
     1570#: amp_conf/htdocs/admin/modules/core/page.general.php:176 
     1571msgid "Do Not Play" 
     1572msgstr "" 
     1573 
     1574#: amp_conf/htdocs/admin/modules/core/page.general.php:176 
     1575msgid "" 
     1576"Check this to remove the default message \"Please leave your message after " 
     1577"the tone. When done, hang-up, or press the pound key.\" That is played after " 
     1578"the voicemail greeting (the s option). This applies globally to all vm boxes." 
     1579msgstr "" 
     1580 
     1581#: amp_conf/htdocs/admin/modules/core/page.general.php:176 
     1582msgid "please leave message after tone to caller" 
     1583msgstr "" 
     1584 
     1585#: amp_conf/htdocs/admin/modules/core/page.general.php:179 
     1586msgid "Voicemail VmX Locator" 
     1587msgstr "" 
     1588 
     1589#: amp_conf/htdocs/admin/modules/core/page.general.php:183 
     1590msgid "Default Context & Pri:" 
     1591msgstr "" 
     1592 
     1593#: amp_conf/htdocs/admin/modules/core/page.general.php:184 
     1594msgid "Default to use if only an number/extension are provided." 
     1595msgstr "" 
     1596 
     1597#: amp_conf/htdocs/admin/modules/core/page.general.php:186 
     1598#: amp_conf/htdocs/admin/modules/core/page.general.php:195 
     1599#: amp_conf/htdocs/admin/modules/core/page.general.php:204 
     1600msgid "context" 
     1601msgstr "" 
     1602 
     1603#: amp_conf/htdocs/admin/modules/core/page.general.php:188 
     1604#: amp_conf/htdocs/admin/modules/core/page.general.php:197 
     1605#: amp_conf/htdocs/admin/modules/core/page.general.php:206 
     1606msgid "pri" 
     1607msgstr "" 
     1608 
     1609#: amp_conf/htdocs/admin/modules/core/page.general.php:192 
     1610msgid "Timeout/#-press default:" 
     1611msgstr "" 
     1612 
     1613#: amp_conf/htdocs/admin/modules/core/page.general.php:193 
     1614msgid "" 
     1615"This is the default location that a caller will be sent if they don't press " 
     1616"any key (timeout) or press # which is interpreted as a timeout. Set this to " 
     1617"'dovm' to go to voicemail (default)." 
     1618msgstr "" 
     1619 
     1620#: amp_conf/htdocs/admin/modules/core/page.general.php:196 
     1621#: amp_conf/htdocs/admin/modules/core/page.general.php:205 
     1622msgid "exten" 
     1623msgstr "" 
     1624 
     1625#: amp_conf/htdocs/admin/modules/core/page.general.php:201 
     1626msgid "Loop Exceed default:" 
     1627msgstr "" 
     1628 
     1629#: amp_conf/htdocs/admin/modules/core/page.general.php:202 
     1630msgid "" 
     1631"This is the default location that a caller will be sent if they press an " 
     1632"invalid options too man times, as defined by the Maximum Loops count. Set " 
     1633"this to 'dovm' to go to voicemail (default)." 
     1634msgstr "" 
     1635 
     1636#: amp_conf/htdocs/admin/modules/core/page.general.php:210 
     1637msgid "Timeout VM Msg:" 
     1638msgstr "" 
     1639 
     1640#: amp_conf/htdocs/admin/modules/core/page.general.php:211 
     1641#: amp_conf/htdocs/admin/modules/core/page.general.php:223 
     1642msgid "" 
     1643"If this destination is voicemail, select whether or not to play the standard " 
     1644"voicemail instructions or just beep." 
     1645msgstr "" 
     1646 
     1647#: amp_conf/htdocs/admin/modules/core/page.general.php:215 
     1648#: amp_conf/htdocs/admin/modules/core/page.general.php:227 
     1649#: amp_conf/htdocs/admin/modules/core/page.general.php:239 
     1650msgid "Std Instructions" 
     1651msgstr "" 
     1652 
     1653#: amp_conf/htdocs/admin/modules/core/page.general.php:216 
     1654#: amp_conf/htdocs/admin/modules/core/page.general.php:228 
     1655#: amp_conf/htdocs/admin/modules/core/page.general.php:240 
     1656msgid "Beep Only" 
     1657msgstr "" 
     1658 
     1659#: amp_conf/htdocs/admin/modules/core/page.general.php:222 
     1660msgid "Max Loop VM Msg:" 
     1661msgstr "" 
     1662 
     1663#: amp_conf/htdocs/admin/modules/core/page.general.php:234 
     1664msgid "Direct VM Option" 
     1665msgstr "" 
     1666 
     1667#: amp_conf/htdocs/admin/modules/core/page.general.php:235 
     1668msgid "" 
     1669"If a user defined option is to go to voicemail (using the 'dovm' extension) " 
     1670"this is the default option if not specified by the user's settings." 
     1671msgstr "" 
     1672 
     1673#: amp_conf/htdocs/admin/modules/core/page.general.php:246 
     1674msgid "Msg Timeout:" 
     1675msgstr "" 
     1676 
     1677#: amp_conf/htdocs/admin/modules/core/page.general.php:247 
     1678msgid "" 
     1679"Time ot wait after message has played to timeout and/or repeat the message " 
     1680"if no entry pressed." 
     1681msgstr "" 
     1682 
     1683#: amp_conf/htdocs/admin/modules/core/page.general.php:259 
     1684msgid "seconds" 
     1685msgstr "" 
     1686 
     1687#: amp_conf/htdocs/admin/modules/core/page.general.php:264 
     1688msgid "Msg Play:" 
     1689msgstr "" 
     1690 
     1691#: amp_conf/htdocs/admin/modules/core/page.general.php:265 
     1692msgid "" 
     1693"Number of times to play the recorded message if the caller does not press " 
     1694"any options and it times out." 
     1695msgstr "" 
     1696 
     1697#: amp_conf/htdocs/admin/modules/core/page.general.php:277 
     1698#: amp_conf/htdocs/admin/modules/core/page.general.php:295 
     1699msgid "times" 
     1700msgstr "" 
     1701 
     1702#: amp_conf/htdocs/admin/modules/core/page.general.php:282 
     1703msgid "Error Re-tries:" 
     1704msgstr "" 
     1705 
     1706#: amp_conf/htdocs/admin/modules/core/page.general.php:283 
     1707msgid "" 
     1708"Number of times to play invalid options and repeat the message upon " 
     1709"receiving an undefined option." 
     1710msgstr "" 
     1711 
     1712#: amp_conf/htdocs/admin/modules/core/page.general.php:303 
     1713msgid "Company Directory" 
     1714msgstr "" 
     1715 
     1716#: amp_conf/htdocs/admin/modules/core/page.general.php:305 
     1717msgid "Find users in the Company Directory by:" 
     1718msgstr "" 
     1719 
     1720#: amp_conf/htdocs/admin/modules/core/page.general.php:307 
     1721msgid "first name" 
     1722msgstr "" 
     1723 
     1724#: amp_conf/htdocs/admin/modules/core/page.general.php:308 
     1725msgid "last name" 
     1726msgstr "" 
     1727 
     1728#: amp_conf/htdocs/admin/modules/core/page.general.php:309 
     1729msgid "first or last name" 
     1730msgstr "" 
     1731 
     1732#: amp_conf/htdocs/admin/modules/core/page.general.php:312 
     1733msgid "Play extension number" 
     1734msgstr "" 
     1735 
     1736#: amp_conf/htdocs/admin/modules/core/page.general.php:312 
     1737msgid "" 
     1738"Plays a message \"Please hold while I transfer you to extension xxx\" that " 
     1739"lets the caller know what extension to use in the future." 
     1740msgstr "" 
     1741 
     1742#: amp_conf/htdocs/admin/modules/core/page.general.php:312 
     1743msgid "to caller before transferring call" 
     1744msgstr "" 
     1745 
     1746#: amp_conf/htdocs/admin/modules/core/page.general.php:313 
     1747msgid "Operator Extension:" 
     1748msgstr "" 
     1749 
     1750#: amp_conf/htdocs/admin/modules/core/page.general.php:314 
     1751msgid "" 
     1752"When users hit '0' in the directory, they are put through to this number. " 
     1753"Note that it" 
     1754msgstr "" 
     1755 
     1756#: amp_conf/htdocs/admin/modules/core/page.general.php:315 
     1757msgid "" 
     1758" does NOT need to be an extension, it can be a Ring Group, or even an " 
     1759"external number." 
     1760msgstr "" 
     1761 
     1762#: amp_conf/htdocs/admin/modules/core/page.general.php:318 
     1763msgid "Fax Machine" 
     1764msgstr "" 
     1765 
     1766#: amp_conf/htdocs/admin/modules/core/page.general.php:320 
     1767msgid "Extension of" 
     1768msgstr "" 
     1769 
     1770#: amp_conf/htdocs/admin/modules/core/page.general.php:320 
     1771msgid "fax machine" 
     1772msgstr "" 
     1773 
     1774#: amp_conf/htdocs/admin/modules/core/page.general.php:320 
     1775msgid "" 
     1776"Select 'system' to have the system receive and email faxes.<br>Selecting " 
     1777"'disabled' will result in incoming calls being answered more quickly." 
     1778msgstr "" 
     1779 
     1780#: amp_conf/htdocs/admin/modules/core/page.general.php:320 
     1781msgid "for receiving faxes:" 
     1782msgstr "" 
     1783 
     1784#: amp_conf/htdocs/admin/modules/core/page.general.php:323 
     1785#: amp_conf/htdocs/admin/modules/core/page.did.php:251 
     1786msgid "disabled" 
     1787msgstr "" 
     1788 
     1789#: amp_conf/htdocs/admin/modules/core/page.general.php:324 
     1790#: amp_conf/htdocs/admin/modules/core/page.did.php:252 
     1791msgid "system" 
     1792msgstr "" 
     1793 
     1794#: amp_conf/htdocs/admin/modules/core/page.general.php:338 
     1795#: amp_conf/htdocs/admin/modules/core/page.general.php:342 
     1796msgid "Email address" 
     1797msgstr "" 
     1798 
     1799#: amp_conf/htdocs/admin/modules/core/page.general.php:338 
     1800msgid "" 
     1801"Email address used if 'system' has been chosen for the fax extension above." 
     1802msgstr "" 
     1803 
     1804#: amp_conf/htdocs/admin/modules/core/page.general.php:338 
     1805msgid "to have faxes emailed to:" 
     1806msgstr "" 
     1807 
     1808#: amp_conf/htdocs/admin/modules/core/page.general.php:342 
     1809msgid "" 
     1810"Email address that faxes appear to come from if 'system' has been chosen for " 
     1811"the fax extension above." 
     1812msgstr "" 
     1813 
     1814#: amp_conf/htdocs/admin/modules/core/page.general.php:342 
     1815msgid "that faxes appear to come from:" 
     1816msgstr "" 
     1817 
     1818#: amp_conf/htdocs/admin/modules/core/page.general.php:345 
     1819msgid "International Settings" 
     1820msgstr "" 
     1821 
     1822#: amp_conf/htdocs/admin/modules/core/page.general.php:347 
     1823msgid "Country" 
     1824msgstr "" 
     1825 
     1826#: amp_conf/htdocs/admin/modules/core/page.general.php:347 
     1827msgid "Indications" 
     1828msgstr "" 
     1829 
     1830#: amp_conf/htdocs/admin/modules/core/page.general.php:347 
     1831msgid "Select which country you are in" 
     1832msgstr "" 
     1833 
     1834#: amp_conf/htdocs/admin/modules/core/page.general.php:355 
     1835msgid "24-hour format" 
     1836msgstr "" 
     1837 
     1838#: amp_conf/htdocs/admin/modules/core/page.general.php:355 
     1839msgid "" 
     1840"Select Yes if you use 24-hour format or No if you are using 12-hour am/pm " 
     1841"format" 
     1842msgstr "" 
     1843 
     1844#: amp_conf/htdocs/admin/modules/core/page.general.php:357 
     1845#: amp_conf/htdocs/admin/modules/core/page.general.php:369 
     1846msgid "no" 
     1847msgstr "" 
     1848 
     1849#: amp_conf/htdocs/admin/modules/core/page.general.php:358 
     1850#: amp_conf/htdocs/admin/modules/core/page.general.php:370 
     1851msgid "yes" 
     1852msgstr "" 
     1853 
     1854#: amp_conf/htdocs/admin/modules/core/page.general.php:361 
     1855msgid "Security Settings" 
     1856msgstr "" 
     1857 
     1858#: amp_conf/htdocs/admin/modules/core/page.general.php:363 
     1859msgid "Allow Anonymous Inbound SIP Calls?" 
     1860msgstr "" 
     1861 
     1862#: amp_conf/htdocs/admin/modules/core/page.general.php:364 
     1863msgid "** WARNING **" 
     1864msgstr "" 
     1865 
     1866#: amp_conf/htdocs/admin/modules/core/page.general.php:365 
     1867msgid "" 
     1868"Setting this to 'yes' will potentially allow ANYBODY to call into your " 
     1869"Asterisk server using the SIP protocol" 
     1870msgstr "" 
     1871 
     1872#: amp_conf/htdocs/admin/modules/core/page.general.php:366 
     1873msgid "" 
     1874"It should only be used if you fully understand the impact of allowing " 
     1875"anonymous calls into your server" 
     1876msgstr "" 
     1877 
     1878#: amp_conf/htdocs/admin/modules/core/page.general.php:374 
     1879msgid "Online Updates" 
     1880msgstr "" 
     1881 
     1882#: amp_conf/htdocs/admin/modules/core/page.general.php:378 
     1883msgid "Check for Updates" 
     1884msgstr "" 
     1885 
     1886#: amp_conf/htdocs/admin/modules/core/page.general.php:379 
     1887msgid "" 
     1888"Choosing Yes will result in the system automatically checking for updates " 
     1889"nighly. The resulting infomation will be displayed in the dashboard and will " 
     1890"be optionally emailed to the address below if provided.<br />This will " 
     1891"trasmit your FreePBX and Asterisk version numbers along with a unique but " 
     1892"random identifier. This is used to provide proper update information and to " 
     1893"track version usage to focus development and maintenance efforts. No private " 
     1894"information is trasmitted." 
     1895msgstr "" 
     1896 
     1897#: amp_conf/htdocs/admin/modules/core/page.general.php:383 
     1898#: amp_conf/htdocs/admin/modules/core/page.did.php:237 
     1899msgid "Yes" 
     1900msgstr "" 
     1901 
     1902#: amp_conf/htdocs/admin/modules/core/page.general.php:384 
     1903#: amp_conf/htdocs/admin/modules/core/page.did.php:236 
     1904msgid "No" 
     1905msgstr "" 
     1906 
     1907#: amp_conf/htdocs/admin/modules/core/page.general.php:390 
     1908msgid "Update Email" 
     1909msgstr "" 
     1910 
     1911#: amp_conf/htdocs/admin/modules/core/page.general.php:391 
     1912msgid "" 
     1913"Email address where online updates will be sent. Leaving blank will result " 
     1914"in no updates being sent." 
     1915msgstr "" 
     1916 
     1917#: amp_conf/htdocs/admin/modules/core/page.general.php:421 
     1918msgid "Please enter a valid Number of Seconds" 
     1919msgstr "" 
     1920 
     1921#: amp_conf/htdocs/admin/modules/core/page.general.php:422 
     1922msgid "Please enter a valid Fax Email" 
     1923msgstr "" 
     1924 
     1925#: amp_conf/htdocs/admin/modules/core/page.general.php:423 
     1926msgid "" 
     1927"You have selected the 'r' option for your trunks. This is highly discouraged " 
     1928"and will create problems with calls on many PRI, VoIP, ISDN and other trunks " 
     1929"that are capable of signaling. Asterisk will generate a ringing tone until " 
     1930"the signalling indicates the line is answered. This will result in some " 
     1931"external IVRs being inaccessible and other strange problems." 
    31201932msgstr "" 
    31211933 
     
    31581970 
    31591971#: amp_conf/htdocs/admin/modules/core/page.zapchandids.php:99 
     1972#: amp_conf/htdocs/admin/modules/core/page.did.php:176 
     1973#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4585 
     1974#: amp_conf/htdocs/admin/page.modules.php:796 
     1975msgid "Description" 
     1976msgstr "" 
     1977 
     1978#: amp_conf/htdocs/admin/modules/core/page.zapchandids.php:99 
    31601979msgid "A useful description describing this channel" 
    31611980msgstr "" 
     
    31741993#: amp_conf/htdocs/admin/modules/core/page.zapchandids.php:109 
    31751994msgid "Delete" 
     1995msgstr "" 
     1996 
     1997#: amp_conf/htdocs/admin/modules/core/page.zapchandids.php:123 
     1998#: amp_conf/htdocs/admin/modules/core/functions.inc.php:2869 
     1999msgid "Invalid Channel Number, must be numeric and not blank" 
     2000msgstr "" 
     2001 
     2002#: amp_conf/htdocs/admin/modules/core/page.zapchandids.php:124 
     2003#: amp_conf/htdocs/admin/modules/core/functions.inc.php:2873 
     2004msgid "Invalid DID, must be a non-blank DID" 
    31762005msgstr "" 
    31772006 
     
    31902019"make changes in the Inbound Routes tab. Do you want to continue?" 
    31912020msgstr "" 
     2021 
     2022#: amp_conf/htdocs/admin/modules/core/install.php:27 
     2023#, php-format 
     2024msgid "ERROR: trying to check if %s already in use" 
     2025msgstr "" 
     2026 
     2027#: amp_conf/htdocs/admin/modules/core/install.php:114 
     2028msgid "Checking if directdids need migrating.." 
     2029msgstr "" 
     2030 
     2031#: amp_conf/htdocs/admin/modules/core/install.php:118 
     2032msgid "starting migration" 
     2033msgstr "" 
     2034 
     2035#: amp_conf/htdocs/admin/modules/core/install.php:135 
     2036msgid "User: " 
     2037msgstr "" 
     2038 
     2039#: amp_conf/htdocs/admin/modules/core/install.php:138 
     2040#, php-format 
     2041msgid "ERROR: failed to insert %s for user %s" 
     2042msgstr "" 
     2043 
     2044#: amp_conf/htdocs/admin/modules/core/install.php:143 
     2045#, php-format 
     2046msgid "" 
     2047"There were %s failures migrating directdids, users table not being changed" 
     2048msgstr "" 
     2049 
     2050#: amp_conf/htdocs/admin/modules/core/install.php:147 
     2051#, php-format 
     2052msgid "Removing field %s from users table.." 
     2053msgstr "" 
     2054 
     2055#: amp_conf/htdocs/admin/modules/core/install.php:151 
     2056msgid "not present" 
     2057msgstr "" 
     2058 
     2059#: amp_conf/htdocs/admin/modules/core/install.php:153 
     2060msgid "removed" 
     2061msgstr "" 
     2062 
     2063#: amp_conf/htdocs/admin/modules/core/install.php:158 
     2064msgid "" 
     2065"ERROR: could not access user table to migrate directdids to incoming table, " 
     2066"aborting" 
     2067msgstr "" 
     2068 
     2069#: amp_conf/htdocs/admin/modules/core/install.php:161 
     2070msgid "already done" 
     2071msgstr "" 
     2072 
     2073#: amp_conf/htdocs/admin/modules/core/install.php:166 
     2074msgid "updating zap callgroup, pickupgroup.." 
     2075msgstr "" 
     2076 
     2077#: amp_conf/htdocs/admin/modules/core/install.php:191 
     2078#, php-format 
     2079msgid "updated %s callgroups, %s pickupgroups" 
     2080msgstr "" 
     2081 
     2082#: amp_conf/htdocs/admin/modules/core/install.php:193 
     2083msgid "not needed" 
     2084msgstr "" 
     2085 
     2086#: amp_conf/htdocs/admin/modules/core/install.php:198 
     2087msgid "checking for delay_answer field .." 
     2088msgstr "" 
     2089 
     2090#: amp_conf/htdocs/admin/modules/core/install.php:205 
     2091#: amp_conf/htdocs/admin/modules/core/install.php:221 
     2092msgid "fatal error" 
     2093msgstr "" 
     2094 
     2095#: amp_conf/htdocs/admin/modules/core/install.php:208 
     2096#: amp_conf/htdocs/admin/modules/core/install.php:224 
     2097msgid "added" 
     2098msgstr "" 
     2099 
     2100#: amp_conf/htdocs/admin/modules/core/install.php:211 
     2101#: amp_conf/htdocs/admin/modules/core/install.php:227 
     2102msgid "already exists" 
     2103msgstr "" 
     2104 
     2105#: amp_conf/htdocs/admin/modules/core/install.php:214 
     2106msgid "checking for pricid field .." 
     2107msgstr "" 
     2108 
     2109#: amp_conf/htdocs/admin/modules/core/page.routing.php:118 
     2110msgid "Error renaming route: duplicate name" 
     2111msgstr "" 
     2112 
     2113#: amp_conf/htdocs/admin/modules/core/page.routing.php:200 
     2114#: amp_conf/htdocs/admin/modules/core/page.routing.php:265 
     2115msgid "Add Route" 
     2116msgstr "" 
     2117 
     2118#: amp_conf/htdocs/admin/modules/core/page.routing.php:215 
     2119#: amp_conf/htdocs/admin/modules/core/page.routing.php:528 
     2120msgid "Move Up" 
     2121msgstr "" 
     2122 
     2123#: amp_conf/htdocs/admin/modules/core/page.routing.php:222 
     2124#: amp_conf/htdocs/admin/modules/core/page.routing.php:536 
     2125msgid "Move Down" 
     2126msgstr "" 
     2127 
     2128#: amp_conf/htdocs/admin/modules/core/page.routing.php:263 
     2129msgid "Edit Route" 
     2130msgstr "" 
     2131 
     2132#: amp_conf/htdocs/admin/modules/core/page.routing.php:275 
     2133#: amp_conf/htdocs/admin/modules/core/page.did.php:141 
     2134#, php-format 
     2135msgid "Delete Route %s" 
     2136msgstr "" 
     2137 
     2138#: amp_conf/htdocs/admin/modules/core/page.routing.php:290 
     2139msgid "Route Name" 
     2140msgstr "" 
     2141 
     2142#: amp_conf/htdocs/admin/modules/core/page.routing.php:290 
     2143msgid "" 
     2144"Name of this route. Should be used to describe what type of calls this route " 
     2145"matches (for example, 'local' or 'longdistance')." 
     2146msgstr "" 
     2147 
     2148#: amp_conf/htdocs/admin/modules/core/page.routing.php:296 
     2149msgid "Rename" 
     2150msgstr "" 
     2151 
     2152#: amp_conf/htdocs/admin/modules/core/page.routing.php:301 
     2153msgid "Rename route" 
     2154msgstr "" 
     2155 
     2156#: amp_conf/htdocs/admin/modules/core/page.routing.php:301 
     2157msgid "to:" 
     2158msgstr "" 
     2159 
     2160#: amp_conf/htdocs/admin/modules/core/page.routing.php:303 
     2161msgid "Route name is invalid...please try again" 
     2162msgstr "" 
     2163 
     2164#: amp_conf/htdocs/admin/modules/core/page.routing.php:318 
     2165msgid "Route Password" 
     2166msgstr "" 
     2167 
     2168#: amp_conf/htdocs/admin/modules/core/page.routing.php:318 
     2169msgid "" 
     2170"Optional: A route can prompt users for a password before allowing calls to " 
     2171"progress.  This is useful for restricting calls to international " 
     2172"destinations or 1-900 numbers.<br><br>A numerical password, or the path to " 
     2173"an Authenticate password file can be used.<br><br>Leave this field blank to " 
     2174"not prompt for password.</span>" 
     2175msgstr "" 
     2176 
     2177#: amp_conf/htdocs/admin/modules/core/page.routing.php:327 
     2178msgid "Emergency Dialing" 
     2179msgstr "" 
     2180 
     2181#: amp_conf/htdocs/admin/modules/core/page.routing.php:327 
     2182msgid "" 
     2183"Optional: Selecting this option will enforce the use of a device's Emergency " 
     2184"CID setting (if set).  Select this option if this set of routes is used for " 
     2185"emergency dialing (ie: 911).</span>" 
     2186msgstr "" 
     2187 
     2188#: amp_conf/htdocs/admin/modules/core/page.routing.php:331 
     2189msgid "Intra Company Route" 
     2190msgstr "" 
     2191 
     2192#: amp_conf/htdocs/admin/modules/core/page.routing.php:331 
     2193msgid "" 
     2194"Optional: Selecting this option will treat this route as a intra-company " 
     2195"connection, preserving the internal Caller ID information and not use the " 
     2196"outbound CID of either the extension or trunk.</span>" 
     2197msgstr "" 
     2198 
     2199#: amp_conf/htdocs/admin/modules/core/page.routing.php:336 
     2200msgid "Music On Hold?" 
     2201msgstr "" 
     2202 
     2203#: amp_conf/htdocs/admin/modules/core/page.routing.php:336 
     2204msgid "" 
     2205"You can choose which music category to use. For example, choose a type " 
     2206"appropriate for a destination country which may have announcements in the " 
     2207"appropriate language." 
     2208msgstr "" 
     2209 
     2210#: amp_conf/htdocs/admin/modules/core/page.routing.php:354 
     2211msgid "Dial Patterns" 
     2212msgstr "" 
     2213 
     2214#: amp_conf/htdocs/admin/modules/core/page.routing.php:354 
     2215msgid "" 
     2216"A Dial Pattern is a unique set of digits that will select this trunk. Enter " 
     2217"one dial pattern per line." 
     2218msgstr "" 
     2219 
     2220#: amp_conf/htdocs/admin/modules/core/page.routing.php:359 
     2221msgid "wildcard, matches one or more characters" 
     2222msgstr "" 
     2223 
     2224#: amp_conf/htdocs/admin/modules/core/page.routing.php:360 
     2225msgid "" 
     2226"separates a dialing prefix from the number (for example, 9|NXXXXXX would " 
     2227"match when some dialed \"95551234\" but would only pass \"5551234\" to the " 
     2228"trunks)" 
     2229msgstr "" 
     2230 
     2231#: amp_conf/htdocs/admin/modules/core/page.routing.php:402 
     2232msgid "Dial patterns wizards" 
     2233msgstr "" 
     2234 
     2235#: amp_conf/htdocs/admin/modules/core/page.routing.php:403 
     2236msgid "" 
     2237"These options provide a quick way to add outbound dialing rules. Follow the " 
     2238"prompts for each." 
     2239msgstr "" 
     2240 
     2241#: amp_conf/htdocs/admin/modules/core/page.routing.php:404 
     2242#: amp_conf/htdocs/admin/modules/core/page.routing.php:490 
     2243msgid "Lookup local prefixes" 
     2244msgstr "" 
     2245 
     2246#: amp_conf/htdocs/admin/modules/core/page.routing.php:404 
     2247msgid "" 
     2248"This looks up your local number on www.localcallingguide.com (NA-only), and " 
     2249"sets up so you can dial either 7, 10 or 11 digits (5551234, 6135551234, " 
     2250"16135551234) to access this route." 
     2251msgstr "" 
     2252 
     2253#: amp_conf/htdocs/admin/modules/core/page.routing.php:483 
     2254msgid "Local 7 digit" 
     2255msgstr "" 
     2256 
     2257#: amp_conf/htdocs/admin/modules/core/page.routing.php:484 
     2258msgid "Local 7/10 digit" 
     2259msgstr "" 
     2260 
     2261#: amp_conf/htdocs/admin/modules/core/page.routing.php:485 
     2262msgid "Toll-free" 
     2263msgstr "" 
     2264 
     2265#: amp_conf/htdocs/admin/modules/core/page.routing.php:486 
     2266msgid "Long-distance" 
     2267msgstr "" 
     2268 
     2269#: amp_conf/htdocs/admin/modules/core/page.routing.php:487 
     2270msgid "International" 
     2271msgstr "" 
     2272 
     2273#: amp_conf/htdocs/admin/modules/core/page.routing.php:488 
     2274msgid "Information" 
     2275msgstr "" 
     2276 
     2277#: amp_conf/htdocs/admin/modules/core/page.routing.php:489 
     2278msgid "Emergency" 
     2279msgstr "" 
     2280 
     2281#: amp_conf/htdocs/admin/modules/core/page.routing.php:496 
     2282msgid "Trunk Sequence" 
     2283msgstr "" 
     2284 
     2285#: amp_conf/htdocs/admin/modules/core/page.routing.php:496 
     2286msgid "" 
     2287"The Trunk Sequence controls the order of trunks that will be used when the " 
     2288"above Dial Patterns are matched. <br><br>For Dial Patterns that match long " 
     2289"distance numbers, for example, you'd want to pick the cheapest routes for " 
     2290"long distance (ie, VoIP trunks first) followed by more expensive routes " 
     2291"(POTS lines)." 
     2292msgstr "" 
     2293 
     2294#: amp_conf/htdocs/admin/modules/core/page.routing.php:618 
     2295msgid "Route name is invalid, please try again" 
     2296msgstr "" 
     2297 
     2298#: amp_conf/htdocs/admin/modules/core/page.routing.php:619 
     2299msgid "Route password must be numeric or leave blank to disable" 
     2300msgstr "" 
     2301 
     2302#: amp_conf/htdocs/admin/modules/core/page.routing.php:620 
     2303msgid "Dial pattern is invalid" 
     2304msgstr "" 
     2305 
     2306#: amp_conf/htdocs/admin/modules/core/page.routing.php:621 
     2307msgid "At least one trunk must be picked" 
     2308msgstr "" 
     2309 
     2310#: amp_conf/htdocs/admin/modules/core/page.did.php:77 
     2311#: amp_conf/htdocs/admin/modules/core/page.did.php:165 
     2312#: amp_conf/htdocs/admin/modules/core/page.did.php:174 
     2313msgid "Add Incoming Route" 
     2314msgstr "" 
     2315 
     2316#: amp_conf/htdocs/admin/modules/core/page.did.php:78 
     2317msgid "View All DIDs" 
     2318msgstr "" 
     2319 
     2320#: amp_conf/htdocs/admin/modules/core/page.did.php:79 
     2321msgid "View User DIDs" 
     2322msgstr "" 
     2323 
     2324#: amp_conf/htdocs/admin/modules/core/page.did.php:80 
     2325msgid "View General DIDs" 
     2326msgstr "" 
     2327 
     2328#: amp_conf/htdocs/admin/modules/core/page.did.php:81 
     2329msgid "View Unused DIDs" 
     2330msgstr "" 
     2331 
     2332#: amp_conf/htdocs/admin/modules/core/page.did.php:113 
     2333msgid "any DID" 
     2334msgstr "" 
     2335 
     2336#: amp_conf/htdocs/admin/modules/core/page.did.php:114 
     2337msgid "any CID" 
     2338msgstr "" 
     2339 
     2340#: amp_conf/htdocs/admin/modules/core/page.did.php:126 
     2341#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4157 
     2342#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4509 
     2343msgid "deleted" 
     2344msgstr "" 
     2345 
     2346#: amp_conf/htdocs/admin/modules/core/page.did.php:151 
     2347#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4189 
     2348#: amp_conf/htdocs/admin/modules/core/page.users.php:21 
     2349msgid "User" 
     2350msgstr "" 
     2351 
     2352#: amp_conf/htdocs/admin/modules/core/page.did.php:155 
     2353#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4177 
     2354#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4553 
     2355#: amp_conf/htdocs/admin/modules/core/page.extensions.php:18 
     2356msgid "Extension" 
     2357msgstr "" 
     2358 
     2359#: amp_conf/htdocs/admin/modules/core/page.did.php:158 
     2360#, php-format 
     2361msgid "Edit %s" 
     2362msgstr "" 
     2363 
     2364#: amp_conf/htdocs/admin/modules/core/page.did.php:158 
     2365#, php-format 
     2366msgid "Edit %s %s (%s)" 
     2367msgstr "" 
     2368 
     2369#: amp_conf/htdocs/admin/modules/core/page.did.php:174 
     2370msgid "Edit Incoming Route" 
     2371msgstr "" 
     2372 
     2373#: amp_conf/htdocs/admin/modules/core/page.did.php:176 
     2374msgid "Provide a meaningful description of what this incoming route is" 
     2375msgstr "" 
     2376 
     2377#: amp_conf/htdocs/admin/modules/core/page.did.php:180 
     2378msgid "DID Number" 
     2379msgstr "" 
     2380 
     2381#: amp_conf/htdocs/admin/modules/core/page.did.php:180 
     2382msgid "" 
     2383"Define the expected DID Number if your trunk passes DID on incoming calls. " 
     2384"<br><br>Leave this blank to match calls with any or no DID info.<br><br>You " 
     2385"can also use a pattern match (eg _2[345]X) to match a range of numbers" 
     2386msgstr "" 
     2387 
     2388#: amp_conf/htdocs/admin/modules/core/page.did.php:184 
     2389msgid "Caller ID Number" 
     2390msgstr "" 
     2391 
     2392#: amp_conf/htdocs/admin/modules/core/page.did.php:184 
     2393msgid "" 
     2394"Define the Caller ID Number to be matched on incoming calls.<br><br>Leave " 
     2395"this field blank to match any or no CID info. In addition to standard dial " 
     2396"sequences, you can also put Private, Blocked, Unknown, Restricted and " 
     2397"Unavailable in order to catch these special cases if the Telco transmits " 
     2398"them." 
     2399msgstr "" 
     2400 
     2401#: amp_conf/htdocs/admin/modules/core/page.did.php:189 
     2402msgid "CID Priority Route" 
     2403msgstr "" 
     2404 
     2405#: amp_conf/htdocs/admin/modules/core/page.did.php:189 
     2406msgid "" 
     2407"This effects CID ONLY routes where no DID is specified. If checked, calls " 
     2408"with this CID will be routed to this route, even if there is a route to the " 
     2409"DID that was called. Normal behavior is for the DID route to take the calls. " 
     2410"If there is a specific DID/CID route for this CID, that route will still " 
     2411"take the call when that DID is called." 
     2412msgstr "" 
     2413 
     2414#: amp_conf/htdocs/admin/modules/core/page.did.php:193 
     2415msgid "Options" 
     2416msgstr "" 
     2417 
     2418#: amp_conf/htdocs/admin/modules/core/page.did.php:195 
     2419msgid "Alert Info" 
     2420msgstr "" 
     2421 
     2422#: amp_conf/htdocs/admin/modules/core/page.did.php:195 
     2423msgid "ALERT_INFO can be used for distinctive ring with SIP devices." 
     2424msgstr "" 
     2425 
     2426#: amp_conf/htdocs/admin/modules/core/page.did.php:199 
     2427msgid "CID name prefix" 
     2428msgstr "" 
     2429 
     2430#: amp_conf/htdocs/admin/modules/core/page.did.php:199 
     2431msgid "" 
     2432"You can optionally prefix the Caller ID name. ie: If you prefix with \"Sales:" 
     2433"\", a call from John Doe would display as \"Sales:John Doe\" on the " 
     2434"extensions that ring." 
     2435msgstr "" 
     2436 
     2437#: amp_conf/htdocs/admin/modules/core/page.did.php:204 
     2438msgid "Music On Hold" 
     2439msgstr "" 
     2440 
     2441#: amp_conf/htdocs/admin/modules/core/page.did.php:204 
     2442msgid "" 
     2443"Set the MoH class that will be used for calls that come in on this route. " 
     2444"For example, choose a type appropriate for routes coming in from a country " 
     2445"which may have announcements in their language." 
     2446msgstr "" 
     2447 
     2448#: amp_conf/htdocs/admin/modules/core/page.did.php:210 
     2449msgid "No Music" 
     2450msgstr "" 
     2451 
     2452#: amp_conf/htdocs/admin/modules/core/page.did.php:222 
     2453msgid "Signal RINGING" 
     2454msgstr "" 
     2455 
     2456#: amp_conf/htdocs/admin/modules/core/page.did.php:222 
     2457msgid "" 
     2458"Some devices or providers require RINGING to be sent before ANSWER. You'll " 
     2459"notice this happening if you can send calls directly to a phone, but if you " 
     2460"send it to an IVR, it won't connect the call." 
     2461msgstr "" 
     2462 
     2463#: amp_conf/htdocs/admin/modules/core/page.did.php:226 
     2464msgid "Pause Before Answer" 
     2465msgstr "" 
     2466 
     2467#: amp_conf/htdocs/admin/modules/core/page.did.php:226 
     2468msgid "" 
     2469"An optional delay to wait before processing this route. Setting this value " 
     2470"will delay the channel from answering the call. This may be handy if " 
     2471"external fax equipment or security systems are installed in parallel and you " 
     2472"would like them to be able to seize the line." 
     2473msgstr "" 
     2474 
     2475#: amp_conf/htdocs/admin/modules/core/page.did.php:230 
     2476msgid "Privacy" 
     2477msgstr "" 
     2478 
     2479#: amp_conf/htdocs/admin/modules/core/page.did.php:233 
     2480msgid "Privacy Manager" 
     2481msgstr "" 
     2482 
     2483#: amp_conf/htdocs/admin/modules/core/page.did.php:233 
     2484msgid "" 
     2485"If no Caller ID is sent, Privacy Manager will asks the caller to enter their " 
     2486"10 digit phone number. The caller is given 3 attempts. The number of digits " 
     2487"and attempts can be defined in privacy.conf. If a user has Call Screening " 
     2488"enabled, the incoming caller will be asked to enter their CallerId here if " 
     2489"enabled, and then to say their name once determined that the called user " 
     2490"requires it." 
     2491msgstr "" 
     2492 
     2493#: amp_conf/htdocs/admin/modules/core/page.did.php:242 
     2494msgid "Fax Handling" 
     2495msgstr "" 
     2496 
     2497#: amp_conf/htdocs/admin/modules/core/page.did.php:246 
     2498msgid "Fax Extension" 
     2499msgstr "" 
     2500 
     2501#: amp_conf/htdocs/admin/modules/core/page.did.php:246 
     2502msgid "" 
     2503"Select 'system' to have the system receive and email faxes.<br><br>The " 
     2504"FreePBX default is defined in General Settings." 
     2505msgstr "" 
     2506 
     2507#: amp_conf/htdocs/admin/modules/core/page.did.php:250 
     2508msgid "FreePBX default" 
     2509msgstr "" 
     2510 
     2511#: amp_conf/htdocs/admin/modules/core/page.did.php:267 
     2512msgid "Fax Email" 
     2513msgstr "" 
     2514 
     2515#: amp_conf/htdocs/admin/modules/core/page.did.php:267 
     2516msgid "" 
     2517"Email address is used if 'system' has been chosen for the fax extension " 
     2518"above.<br><br>Leave this blank to use the FreePBX default in General " 
     2519"Settings." 
     2520msgstr "" 
     2521 
     2522#: amp_conf/htdocs/admin/modules/core/page.did.php:274 
     2523msgid "Fax Detection Type" 
     2524msgstr "" 
     2525 
     2526#: amp_conf/htdocs/admin/modules/core/page.did.php:274 
     2527msgid "" 
     2528"Selecting Zaptel or NVFax will immediately answer the call and play ringing " 
     2529"tones to the caller for the number of seconds in Pause below. Use NVFax on " 
     2530"SIP or IAX trunks." 
     2531msgstr "" 
     2532 
     2533#: amp_conf/htdocs/admin/modules/core/page.did.php:277 
     2534msgid "None" 
     2535msgstr "" 
     2536 
     2537#: amp_conf/htdocs/admin/modules/core/page.did.php:278 
     2538msgid "Zaptel" 
     2539msgstr "" 
     2540 
     2541#: amp_conf/htdocs/admin/modules/core/page.did.php:279 
     2542msgid "NVFax" 
     2543msgstr "" 
     2544 
     2545#: amp_conf/htdocs/admin/modules/core/page.did.php:284 
     2546msgid "Pause After Answer" 
     2547msgstr "" 
     2548 
     2549#: amp_conf/htdocs/admin/modules/core/page.did.php:284 
     2550msgid "" 
     2551"The number of seconds we should wait after performing an Immediate Answer. " 
     2552"The primary purpose of this is to pause and listen for a fax tone before " 
     2553"allowing the call to proceed." 
     2554msgstr "" 
     2555 
     2556#: amp_conf/htdocs/admin/modules/core/page.did.php:293 
     2557msgid "Set Destination" 
     2558msgstr "" 
     2559 
     2560#: amp_conf/htdocs/admin/modules/core/page.did.php:298 
     2561msgid "Clear Destination" 
     2562msgstr "" 
     2563 
     2564#: amp_conf/htdocs/admin/modules/core/page.did.php:307 
     2565msgid "Clear Destination & Submit" 
     2566msgstr "" 
     2567 
     2568#: amp_conf/htdocs/admin/modules/core/page.did.php:319 
     2569msgid "Please enter a valid DID Number" 
     2570msgstr "" 
     2571 
     2572#: amp_conf/htdocs/admin/modules/core/page.did.php:320 
     2573msgid "Please enter a valid Caller ID Number" 
     2574msgstr "" 
     2575 
     2576#: amp_conf/htdocs/admin/modules/core/page.did.php:321 
     2577msgid "Please enter a valid Fax Email or leave it empty to use the default" 
     2578msgstr "" 
     2579 
     2580#: amp_conf/htdocs/admin/modules/core/page.did.php:322 
     2581msgid "Please enter a valid number for Pause after answer" 
     2582msgstr "" 
     2583 
     2584#: amp_conf/htdocs/admin/modules/core/page.did.php:323 
     2585msgid "Please enter a valid number for Pause Before Answer field" 
     2586msgstr "" 
     2587 
     2588#: amp_conf/htdocs/admin/modules/core/page.did.php:324 
     2589msgid "" 
     2590"Leaving the DID Number AND the Caller ID Number empty will match all " 
     2591"incoming calls received not routed using any other defined Incoming Route.\\n" 
     2592"\\nAre you sure?" 
     2593msgstr "" 
     2594 
     2595#: amp_conf/htdocs/admin/modules/core/page.did.php:325 
     2596msgid "" 
     2597"DID information is normally just an incoming telephone number or for " 
     2598"advanced users, a valid Asterisk Dial Pattern\\n\\nYou have entered a non " 
     2599"standard DID pattern.\\n\\nAre you sure this is correct?" 
     2600msgstr "" 
     2601 
     2602#: amp_conf/htdocs/admin/modules/core/page.did.php:326 
     2603msgid "A Slash ('/') is never a valid DID. Please remove it and try again" 
     2604msgstr "" 
     2605 
     2606#: amp_conf/htdocs/admin/modules/core/page.did.php:327 
     2607msgid "Invalid Caller ID prefix." 
     2608msgstr "" 
     2609 
     2610#: amp_conf/htdocs/admin/modules/core/functions.inc.php:1816 
     2611#: amp_conf/htdocs/admin/modules/core/functions.inc.php:1834 
     2612msgid "A route for this DID/CID already exists!" 
     2613msgstr "" 
     2614 
     2615#: amp_conf/htdocs/admin/modules/core/functions.inc.php:1900 
     2616msgid "You must put in a device id" 
     2617msgstr "" 
     2618 
     2619#: amp_conf/htdocs/admin/modules/core/functions.inc.php:1910 
     2620msgid "This device id is already in use" 
     2621msgstr "" 
     2622 
     2623#: amp_conf/htdocs/admin/modules/core/functions.inc.php:2485 
     2624msgid "User Extension: " 
     2625msgstr "" 
     2626 
     2627#: amp_conf/htdocs/admin/modules/core/functions.inc.php:2548 
     2628msgid "You must put in an extension (or user) number" 
     2629msgstr "" 
     2630 
     2631#: amp_conf/htdocs/admin/modules/core/functions.inc.php:2557 
     2632#, php-format 
     2633msgid "This user/extension %s is already in use" 
     2634msgstr "" 
     2635 
     2636#: amp_conf/htdocs/admin/modules/core/functions.inc.php:2585 
     2637#: amp_conf/htdocs/admin/modules/core/functions.inc.php:2834 
     2638msgid "A route with this DID/CID already exists" 
     2639msgstr "" 
     2640 
     2641#: amp_conf/htdocs/admin/modules/core/functions.inc.php:2885 
     2642msgid "Error Duplicate Channel Entry" 
     2643msgstr "" 
     2644 
     2645#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4073 
     2646#, php-format 
     2647msgid "" 
     2648"Failed to open %s for writing, aborting attempt to write the country " 
     2649"indications. The file may be readonly or the permissions may be incorrect." 
     2650msgstr "" 
     2651 
     2652#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4074 
     2653msgid "Failed to write indications.conf" 
     2654msgstr "" 
     2655 
     2656#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4098 
     2657msgid "On Demand" 
     2658msgstr "" 
     2659 
     2660#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4099 
     2661msgid "Always" 
     2662msgstr "" 
     2663 
     2664#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4100 
     2665msgid "Never" 
     2666msgstr "" 
     2667 
     2668#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4108 
     2669msgid "Screen Caller: No Memory" 
     2670msgstr "" 
     2671 
     2672#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4109 
     2673msgid "Screen Caller: Memory" 
     2674msgstr "" 
     2675 
     2676#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4179 
     2677#, php-format 
     2678msgid "Delete Extension %s" 
     2679msgstr "" 
     2680 
     2681#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4191 
     2682#, php-format 
     2683msgid "Delete User %s" 
     2684msgstr "" 
     2685 
     2686#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4203 
     2687msgid "Add User/Extension" 
     2688msgstr "" 
     2689 
     2690#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4210 
     2691#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4572 
     2692msgid "Please enter a valid extension number." 
     2693msgstr "" 
     2694 
     2695#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4211 
     2696msgid "Please enter a valid CID Num Alias (must be a valid number)." 
     2697msgstr "" 
     2698 
     2699#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4212 
     2700msgid "Please enter valid User Password using numbers only" 
     2701msgstr "" 
     2702 
     2703#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4213 
     2704msgid "Please enter a valid Display Name" 
     2705msgstr "" 
     2706 
     2707#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4214 
     2708msgid "Please enter a valid Outbound CID" 
     2709msgstr "" 
     2710 
     2711#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4215 
     2712msgid "Please enter a valid pause time in seconds, using digits only" 
     2713msgstr "" 
     2714 
     2715#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4216 
     2716msgid "" 
     2717"You have entered a non-standard dialpattern for your DID. You can only enter " 
     2718"standard dialpatterns. You must use the inbound routing form to enter non-" 
     2719"standard patterns" 
     2720msgstr "" 
     2721 
     2722#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4217 
     2723msgid "" 
     2724"Please enter a valid Caller ID Number or leave it blank for your Assigned " 
     2725"DID/CID pair" 
     2726msgstr "" 
     2727 
     2728#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4224 
     2729msgid "Edit Extension" 
     2730msgstr "" 
     2731 
     2732#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4224 
     2733msgid "Add Extension" 
     2734msgstr "" 
     2735 
     2736#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4226 
     2737msgid "Edit User" 
     2738msgstr "" 
     2739 
     2740#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4231 
     2741msgid "User Extension" 
     2742msgstr "" 
     2743 
     2744#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4231 
     2745msgid "The extension number to dial to reach this user." 
     2746msgstr "" 
     2747 
     2748#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4234 
     2749msgid "User Password" 
     2750msgstr "" 
     2751 
     2752#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4234 
     2753msgid "A user will enter this password when logging onto a device." 
     2754msgstr "" 
     2755 
     2756#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4234 
     2757#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4587 
     2758msgid "logs into a device." 
     2759msgstr "" 
     2760 
     2761#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4234 
     2762#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4587 
     2763msgid "logs out of a device." 
     2764msgstr "" 
     2765 
     2766#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4238 
     2767msgid "Display Name" 
     2768msgstr "" 
     2769 
     2770#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4238 
     2771msgid "" 
     2772"The caller id name for calls from this user will be set to this name. Only " 
     2773"enter the name, NOT the number." 
     2774msgstr "" 
     2775 
     2776#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4240 
     2777msgid "CID Num Alias" 
     2778msgstr "" 
     2779 
     2780#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4240 
     2781msgid "" 
     2782"The CID Number to use for internal calls, if different from the extension " 
     2783"number. This is used to masquerade as a different user. A common example is " 
     2784"a team of support people who would like their internal callerid to display " 
     2785"the general support number (a ringgroup or queue). There will be no effect " 
     2786"on external calls." 
     2787msgstr "" 
     2788 
     2789#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4241 
     2790msgid "SIP Alias" 
     2791msgstr "" 
     2792 
     2793#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4241 
     2794msgid "" 
     2795"If you want to support direct sip dialing of users internally or through " 
     2796"anonymous sip calls, you can supply a friendly name that can be used in " 
     2797"addition to the users extension to call them." 
     2798msgstr "" 
     2799 
     2800#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4246 
     2801msgid "User Devices" 
     2802msgstr "" 
     2803 
     2804#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4257 
     2805msgid "Edit:" 
     2806msgstr "" 
     2807 
     2808#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4269 
     2809#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4590 
     2810msgid "Extension Options" 
     2811msgstr "" 
     2812 
     2813#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4270 
     2814msgid "Outbound CID" 
     2815msgstr "" 
     2816 
     2817#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4270 
     2818msgid "" 
     2819"Overrides the caller id when dialing out a trunk. Any setting here will " 
     2820"override the common outbound caller id set in the Trunks admin." 
     2821"<br><br>Format: <b>\"caller name\" &lt;#######&gt;</b><br><br>Leave this " 
     2822"field blank to disable the outbound callerid feature for this user." 
     2823msgstr "" 
     2824 
     2825#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4272 
     2826msgid "Ring Time" 
     2827msgstr "" 
     2828 
     2829#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4272 
     2830msgid "" 
     2831"Number of seconds to ring prior to going to voicemail. Default will use the " 
     2832"value set in the General Tab. If no voicemail is configured this will be " 
     2833"ignored." 
     2834msgstr "" 
     2835 
     2836#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4280 
     2837msgid "Call Waiting" 
     2838msgstr "" 
     2839 
     2840#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4280 
     2841msgid "Set the initial/current Call Waiting state for this user's extension" 
     2842msgstr "" 
     2843 
     2844#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4281 
     2845msgid "Call Screening" 
     2846msgstr "" 
     2847 
     2848#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4281 
     2849msgid "" 
     2850"Call Screening requires external callers to say their name, which will be " 
     2851"played back to the user and allow the user to accept or reject the call.  " 
     2852"Screening with memory only verifies a caller for their caller-id once. " 
     2853"Screening without memory always requires a caller to say their name. Either " 
     2854"mode will always announce the caller based on the last introduction saved " 
     2855"with that callerid. If any user on the system uses the memory option, when " 
     2856"that user is called, the caller will be required to re-introduce themselves " 
     2857"and all users on the system will have that new introduction associated with " 
     2858"the caller's CallerId." 
     2859msgstr "" 
     2860 
     2861#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4283 
     2862msgid "Assigned DID/CID" 
     2863msgstr "" 
     2864 
     2865#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4284 
     2866msgid "DID Description" 
     2867msgstr "" 
     2868 
     2869#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4284 
     2870msgid "A description for this DID, such as \"Fax\"" 
     2871msgstr "" 
     2872 
     2873#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4285 
     2874msgid "Add Inbound DID" 
     2875msgstr "" 
     2876 
     2877#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4285 
     2878msgid "" 
     2879"A direct DID that is associated with this extension. The DID should be in " 
     2880"the same format as provided by the provider (e.g. full number, 4 digits for " 
     2881"10x4, etc).<br><br>Format should be: <b>XXXXXXXXXX</b><br><br>.An optional " 
     2882"CID can also be associated with this DID by setting the next box" 
     2883msgstr "" 
     2884 
     2885#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4286 
     2886msgid "Add Inbound CID" 
     2887msgstr "" 
     2888 
     2889#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4286 
     2890msgid "" 
     2891"Add a CID for more specific DID + CID routing. A DID must be specified in " 
     2892"the above Add DID box. In addition to standard dial sequences, you can also " 
     2893"put Private, Blocked, Unknown, Restricted and Unavailable in order to catch " 
     2894"these special cases if the Telco transmits them." 
     2895msgstr "" 
     2896 
     2897#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4294 
     2898msgid "DID / CID" 
     2899msgstr "" 
     2900 
     2901#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4314 
     2902msgid "Recording Options" 
     2903msgstr "" 
     2904 
     2905#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4315 
     2906msgid "Record Incoming" 
     2907msgstr "" 
     2908 
     2909#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4315 
     2910msgid "Record all inbound calls received at this extension." 
     2911msgstr "" 
     2912 
     2913#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4316 
     2914msgid "Record Outgoing" 
     2915msgstr "" 
     2916 
     2917#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4316 
     2918msgid "Record all outbound calls received at this extension." 
     2919msgstr "" 
     2920 
     2921#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4334 
     2922msgid "Warning! Extension" 
     2923msgstr "" 
     2924 
     2925#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4334 
     2926msgid "is not allowed for your account" 
     2927msgstr "" 
     2928 
     2929#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4348 
     2930msgid "Conflicting Extensions" 
     2931msgstr "" 
     2932 
     2933#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4348 
     2934msgid "" 
     2935"The following extension numbers are in conflict, you can click on the item" 
     2936"(s) below to edit the conflicting entity." 
     2937msgstr "" 
     2938 
     2939#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4352 
     2940msgid "Configure user again:" 
     2941msgstr "" 
     2942 
     2943#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4352 
     2944msgid "Configure extension again:" 
     2945msgstr "" 
     2946 
     2947#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4399 
     2948msgid "Please enter the dtmfmode for this device" 
     2949msgstr "" 
     2950 
     2951#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4400 
     2952msgid "Please enter the channel for this device" 
     2953msgstr "" 
     2954 
     2955#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4401 
     2956msgid "" 
     2957"You have not entered a Secret for this device, although this is possible it " 
     2958"is generally bad practice to not assign a Secret to a device. Are you sure " 
     2959"you want to leave the Secret empty?" 
     2960msgstr "" 
     2961 
     2962#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4402 
     2963msgid "Please enter a Secret for this device" 
     2964msgstr "" 
     2965 
     2966#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4469 
     2967msgid "Generic SIP Device" 
     2968msgstr "" 
     2969 
     2970#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4470 
     2971msgid "Generic IAX2 Device" 
     2972msgstr "" 
     2973 
     2974#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4471 
     2975msgid "Generic ZAP Device" 
     2976msgstr "" 
     2977 
     2978#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4472 
     2979msgid "Other (Custom) Device" 
     2980msgstr "" 
     2981 
     2982#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4477 
     2983msgid "Fixed" 
     2984msgstr "" 
     2985 
     2986#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4478 
     2987msgid "Adhoc" 
     2988msgstr "" 
     2989 
     2990#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4481 
     2991msgid "none" 
     2992msgstr "" 
     2993 
     2994#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4482 
     2995msgid "New User" 
     2996msgstr "" 
     2997 
     2998#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4514 
     2999msgid "Add Device" 
     3000msgstr "" 
     3001 
     3002#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4516 
     3003msgid "Add an Extension" 
     3004msgstr "" 
     3005 
     3006#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4518 
     3007msgid "Please select your Device below then click Submit" 
     3008msgstr "" 
     3009 
     3010#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4532 
     3011#, php-format 
     3012msgid "Delete Device %s" 
     3013msgstr "" 
     3014 
     3015#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4538 
     3016#, php-format 
     3017msgid "Edit Default User: %s" 
     3018msgstr "" 
     3019 
     3020#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4538 
     3021#, php-format 
     3022msgid "Edit Fixed User: %s" 
     3023msgstr "" 
     3024 
     3025#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4569 
     3026msgid "Please enter a device id." 
     3027msgstr "" 
     3028 
     3029#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4570 
     3030msgid "Please enter a valid Description for this device" 
     3031msgstr "" 
     3032 
     3033#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4571 
     3034msgid "Please enter a valid Emergency CID" 
     3035msgstr "" 
     3036 
     3037#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4579 
     3038msgid "Device Info" 
     3039msgstr "" 
     3040 
     3041#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4583 
     3042msgid "Device ID" 
     3043msgstr "" 
     3044 
     3045#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4583 
     3046msgid "" 
     3047"Give your device a unique integer ID.  The device will use this ID to " 
     3048"authenticate to the system." 
     3049msgstr "" 
     3050 
     3051#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4585 
     3052msgid "" 
     3053"The caller id name for this device will be set to this description until it " 
     3054"is logged into." 
     3055msgstr "" 
     3056 
     3057#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4586 
     3058#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4591 
     3059msgid "Emergency CID" 
     3060msgstr "" 
     3061 
     3062#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4586 
     3063#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4591 
     3064msgid "" 
     3065"This caller id will always be set when dialing out an Outbound Route flagged " 
     3066"as Emergency.  The Emergency CID overrides all other caller id settings." 
     3067msgstr "" 
     3068 
     3069#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4587 
     3070msgid "Device Type" 
     3071msgstr "" 
     3072 
     3073#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4587 
     3074msgid "" 
     3075"Devices can be fixed or adhoc. Fixed devices are always associated to the " 
     3076"same extension/user. Adhoc devices can be logged into and logged out of by " 
     3077"users." 
     3078msgstr "" 
     3079 
     3080#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4588 
     3081msgid "Default User" 
     3082msgstr "" 
     3083 
     3084#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4588 
     3085msgid "" 
     3086"Fixed devices will always mapped to this user.  Adhoc devices will be mapped " 
     3087"to this user by default.<br><br>If selecting 'New User', a new User " 
     3088"Extension of the same Device ID will be set as the Default User." 
     3089msgstr "" 
     3090 
     3091#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4596 
     3092msgid "Device Options" 
     3093msgstr "" 
     3094 
     3095#: amp_conf/htdocs/admin/modules/core/functions.inc.php:4597 
     3096#, php-format 
     3097msgid "This device uses %s technology." 
     3098msgstr "" 
     3099 
     3100#: amp_conf/htdocs/admin/modules/core/page.users.php:34 
     3101msgid "" 
     3102"You have not entered a User Password.  While this is acceptable, this user " 
     3103"will not be able to login to an AdHoc device.\\n\\nAre you sure you wish to " 
     3104"leave the User Password empty?" 
     3105msgstr "" 
     3106 
     3107#: amp_conf/htdocs/admin/page.modules.php:148 
     3108msgid "Module Administration" 
     3109msgstr "" 
     3110 
     3111#: amp_conf/htdocs/admin/page.modules.php:166 
     3112#, php-format 
     3113msgid "" 
     3114"Warning: Cannot connect to online repository (%s). Online modules are not " 
     3115"available." 
     3116msgstr "" 
     3117 
     3118#: amp_conf/htdocs/admin/page.modules.php:170 
     3119#, php-format 
     3120msgid "" 
     3121"Warning: Error retrieving updates from online repository (%s). Online " 
     3122"modules are not available." 
     3123msgstr "" 
     3124 
     3125#: amp_conf/htdocs/admin/page.modules.php:229 
     3126msgid "Untarring.." 
     3127msgstr "" 
     3128 
     3129#: amp_conf/htdocs/admin/page.modules.php:249 
     3130msgid "Done." 
     3131msgstr "" 
     3132 
     3133#: amp_conf/htdocs/admin/page.modules.php:304 
     3134msgid "Please wait while module actions are performed" 
     3135msgstr "" 
     3136 
     3137#: amp_conf/htdocs/admin/page.modules.php:319 
     3138#, php-format 
     3139msgid "Downloading %s" 
     3140msgstr "" 
     3141 
     3142#: amp_conf/htdocs/admin/page.modules.php:321 
     3143#, php-format 
     3144msgid "Error(s) downloading %s" 
     3145msgstr "" 
     3146 
     3147#: amp_conf/htdocs/admin/page.modules.php:327 
     3148#: amp_conf/htdocs/admin/page.modules.php:339 
     3149#, php-format 
     3150msgid "Error(s) installing %s" 
     3151msgstr "" 
     3152 
     3153#: amp_conf/htdocs/admin/page.modules.php:331 
     3154#: amp_conf/htdocs/admin/page.modules.php:343 
     3155#, php-format 
     3156msgid "%s installed successfully" 
     3157msgstr "" 
     3158 
     3159#: amp_conf/htdocs/admin/page.modules.php:349 
     3160#, php-format 
     3161msgid "Error(s) enabling %s" 
     3162msgstr "" 
     3163 
     3164#: amp_conf/htdocs/admin/page.modules.php:353 
     3165#, php-format 
     3166msgid "%s enabled successfully" 
     3167msgstr "" 
     3168 
     3169#: amp_conf/htdocs/admin/page.modules.php:358 
     3170#, php-format 
     3171msgid "Error(s) disabling %s" 
     3172msgstr "" 
     3173 
     3174#: amp_conf/htdocs/admin/page.modules.php:362 
     3175#, php-format 
     3176msgid "%s disabled successfully" 
     3177msgstr "" 
     3178 
     3179#: amp_conf/htdocs/admin/page.modules.php:368 
     3180#, php-format 
     3181msgid "Error(s) uninstalling %s" 
     3182msgstr "" 
     3183 
     3184#: amp_conf/htdocs/admin/page.modules.php:372 
     3185#, php-format 
     3186msgid "%s uninstalled successfully" 
     3187msgstr "" 
     3188 
     3189#: amp_conf/htdocs/admin/page.modules.php:388 
     3190#: amp_conf/htdocs/admin/page.modules.php:390 
     3191msgid "Return" 
     3192msgstr "" 
     3193 
     3194#: amp_conf/htdocs/admin/page.modules.php:421 
     3195#: amp_conf/htdocs/admin/page.modules.php:445 
     3196#, php-format 
     3197msgid "" 
     3198"%s cannot be upgraded: %s Please try again after the dependencies have been " 
     3199"installed." 
     3200msgstr "" 
     3201 
     3202#: amp_conf/htdocs/admin/page.modules.php:425 
     3203#, php-format 
     3204msgid "%s %s will be upgraded to online version %s" 
     3205msgstr "" 
     3206 
     3207#: amp_conf/htdocs/admin/page.modules.php:433 
     3208#: amp_conf/htdocs/admin/page.modules.php:445 
     3209#, php-format 
     3210msgid "" 
     3211"%s cannot be installed: %s Please try again after the dependencies have been " 
     3212"installed." 
     3213msgstr "" 
     3214 
     3215#: amp_conf/htdocs/admin/page.modules.php:437 
     3216#, php-format 
     3217msgid "%s %s will be downloaded and installed" 
     3218msgstr "" 
     3219 
     3220#: amp_conf/htdocs/admin/page.modules.php:450 
     3221#, php-format 
     3222msgid "%s %s will be upgraded to %s" 
     3223msgstr "" 
     3224 
     3225#: amp_conf/htdocs/admin/page.modules.php:452 
     3226#, php-format 
     3227msgid "%s %s will be installed and enabled" 
     3228msgstr "" 
     3229 
     3230#: amp_conf/htdocs/admin/page.modules.php:460 
     3231#, php-format 
     3232msgid "" 
     3233"%s cannot be enabled: %s Please try again after the dependencies have been " 
     3234"installed." 
     3235msgstr "" 
     3236 
     3237#: amp_conf/htdocs/admin/page.modules.php:464 
     3238#, php-format 
     3239msgid "%s %s will be enabled" 
     3240msgstr "" 
     3241 
     3242#: amp_conf/htdocs/admin/page.modules.php:470 
     3243#, php-format 
     3244msgid "" 
     3245"%s cannot be disabled because the following modules depend on it: %s Please " 
     3246"disable those modules first then try again." 
     3247msgstr "" 
     3248 
     3249#: amp_conf/htdocs/admin/page.modules.php:474 
     3250#, php-format 
     3251msgid "%s %s will be disabled" 
     3252msgstr "" 
     3253 
     3254#: amp_conf/htdocs/admin/page.modules.php:481 
     3255#, php-format 
     3256msgid "" 
     3257"%s cannot be uninstalled because the following modules depend on it: %s " 
     3258"Please disable those modules first then try again." 
     3259msgstr "" 
     3260 
     3261#: amp_conf/htdocs/admin/page.modules.php:485 
     3262#, php-format 
     3263msgid "%s %s will be uninstalled" 
     3264msgstr "" 
     3265 
     3266#: amp_conf/htdocs/admin/page.modules.php:502 
     3267msgid "Errors with selection:" 
     3268msgstr "" 
     3269 
     3270#: amp_conf/htdocs/admin/page.modules.php:511 
     3271msgid "" 
     3272"You may confirm the remaining selection and then try the again for the " 
     3273"listed issues once the required dependencies have been met:" 
     3274msgstr "" 
     3275 
     3276#: amp_conf/htdocs/admin/page.modules.php:513 
     3277msgid "Please confirm the following actions:" 
     3278msgstr "" 
     3279 
     3280#: amp_conf/htdocs/admin/page.modules.php:522 
     3281msgid "No actions to perform" 
     3282msgstr "" 
     3283 
     3284#: amp_conf/htdocs/admin/page.modules.php:523 
     3285msgid "" 
     3286"Please select at least one action to perform by clicking on the module, and " 
     3287"selecting an action on the \"Action\" tab." 
     3288msgstr "" 
     3289 
     3290#: amp_conf/htdocs/admin/page.modules.php:531 
     3291#: amp_conf/htdocs/admin/page.modules.php:587 
     3292msgid "Manage local modules" 
     3293msgstr "" 
     3294 
     3295#: amp_conf/htdocs/admin/page.modules.php:533 
     3296#: amp_conf/htdocs/admin/page.modules.php:592 
     3297msgid "Check for updates online" 
     3298msgstr "" 
     3299 
     3300#: amp_conf/htdocs/admin/page.modules.php:533 
     3301#: amp_conf/htdocs/admin/page.modules.php:592 
     3302msgid "" 
     3303"Checking for updates will transmit your FreePBX and Asterisk version numbers " 
     3304"along with a unique but random identifier. This is used to provide proper " 
     3305"update information and track version usage to focus development and " 
     3306"maintenance efforts. No private information is transmitted." 
     3307msgstr "" 
     3308 
     3309#: amp_conf/htdocs/admin/page.modules.php:538 
     3310#: amp_conf/htdocs/admin/page.modules.php:594 
     3311msgid "Upload module" 
     3312msgstr "" 
     3313 
     3314#: amp_conf/htdocs/admin/page.modules.php:544 
     3315#, php-format 
     3316msgid "The following error(s) occurred processing the uploaded file: %s" 
     3317msgstr "" 
     3318 
     3319#: amp_conf/htdocs/admin/page.modules.php:546 
     3320#, php-format 
     3321msgid "You should fix the problem or select another file and %s." 
     3322msgstr "" 
     3323 
     3324#: amp_conf/htdocs/admin/page.modules.php:547 
     3325msgid "try again" 
     3326msgstr "" 
     3327 
     3328#: amp_conf/htdocs/admin/page.modules.php:551 
     3329#, php-format 
     3330msgid "" 
     3331"Module uploaded successfully. You need to enable the module using %s to make " 
     3332"it available." 
     3333msgstr "" 
     3334 
     3335#: amp_conf/htdocs/admin/page.modules.php:552 
     3336msgid "local module administration" 
     3337msgstr "" 
     3338 
     3339#: amp_conf/htdocs/admin/page.modules.php:557 
     3340msgid "" 
     3341"You can upload a tar gzip file containing a FreePBX module from your local " 
     3342"system. If a module with the same name already exists, it will be " 
     3343"overwritten." 
     3344msgstr "" 
     3345 
     3346#: amp_conf/htdocs/admin/page.modules.php:588 
     3347msgid "Show only upgradable" 
     3348msgstr "" 
     3349 
     3350#: amp_conf/htdocs/admin/page.modules.php:605 
     3351#: amp_conf/htdocs/admin/page.modules.php:868 
     3352msgid "Download all" 
     3353msgstr "" 
     3354 
     3355#: amp_conf/htdocs/admin/page.modules.php:606 
     3356#: amp_conf/htdocs/admin/page.modules.php:869 
     3357msgid "Upgrade all" 
     3358msgstr "" 
     3359 
     3360#: amp_conf/htdocs/admin/page.modules.php:608 
     3361#: amp_conf/htdocs/admin/page.modules.php:871 
     3362msgid "Reset" 
     3363msgstr "" 
     3364 
     3365#: amp_conf/htdocs/admin/page.modules.php:609 
     3366#: amp_conf/htdocs/admin/page.modules.php:872 
     3367msgid "Process" 
     3368msgstr "" 
     3369 
     3370#: amp_conf/htdocs/admin/page.modules.php:615 
     3371msgid "Module" 
     3372msgstr "" 
     3373 
     3374#: amp_conf/htdocs/admin/page.modules.php:616 
     3375msgid "Type" 
     3376msgstr "" 
     3377 
     3378#: amp_conf/htdocs/admin/page.modules.php:617 
     3379msgid "Version" 
     3380msgstr "" 
     3381 
     3382#: amp_conf/htdocs/admin/page.modules.php:661 
     3383msgid "Not Installed (Locally available)" 
     3384msgstr "" 
     3385 
     3386#: amp_conf/htdocs/admin/page.modules.php:663 
     3387#, php-format 
     3388msgid "Not Installed (Available online: %s)" 
     3389msgstr "" 
     3390 
     3391#: amp_conf/htdocs/admin/page.modules.php:670 
     3392#, php-format 
     3393msgid "Disabled; Online upgrade available (%s)" 
     3394msgstr "" 
     3395 
     3396#: amp_conf/htdocs/admin/page.modules.php:672 
     3397#, php-format 
     3398msgid "Disabled; Newer than online version (%s)" 
     3399msgstr "" 
     3400 
     3401#: amp_conf/htdocs/admin/page.modules.php:674 
     3402msgid "Disabled; up to date" 
     3403msgstr "" 
     3404 
     3405#: amp_conf/htdocs/admin/page.modules.php:681 
     3406#, php-format 
     3407msgid "Disabled; Pending upgrade to %s" 
     3408msgstr "" 
     3409 
     3410#: amp_conf/htdocs/admin/page.modules.php:684 
     3411msgid "Broken" 
     3412msgstr "" 
     3413 
     3414#: amp_conf/htdocs/admin/page.modules.php:691 
     3415#, php-format 
     3416msgid "Online upgrade available (%s)" 
     3417msgstr "" 
     3418 
     3419#: amp_conf/htdocs/admin/page.modules.php:693 
     3420#, php-format 
     3421msgid "Newer than online version (%s)" 
     3422msgstr "" 
     3423 
     3424#: amp_conf/htdocs/admin/page.modules.php:695 
     3425msgid "Enabled and up to date" 
     3426msgstr "" 
     3427 
     3428#: amp_conf/htdocs/admin/page.modules.php:699 
     3429msgid "Enabled; Not available online" 
     3430msgstr "" 
     3431 
     3432#: amp_conf/htdocs/admin/page.modules.php:701 
     3433msgid "Enabled" 
     3434msgstr "" 
     3435 
     3436#: amp_conf/htdocs/admin/page.modules.php:720 
     3437msgid "Attention" 
     3438msgstr "" 
     3439 
     3440#: amp_conf/htdocs/admin/page.modules.php:725 
     3441msgid "Action" 
     3442msgstr "" 
     3443 
     3444#: amp_conf/htdocs/admin/page.modules.php:728 
     3445msgid "No Action" 
     3446msgstr "" 
     3447 
     3448#: amp_conf/htdocs/admin/page.modules.php:735 
     3449#: amp_conf/htdocs/admin/page.modules.php:768 
     3450msgid "Install" 
     3451msgstr "" 
     3452 
     3453#: amp_conf/htdocs/admin/page.modules.php:738 
     3454msgid "Download and Install" 
     3455msgstr "" 
     3456 
     3457#: amp_conf/htdocs/admin/page.modules.php:747 
     3458#: amp_conf/htdocs/admin/page.modules.php:762 
     3459#: amp_conf/htdocs/admin/page.modules.php:770 
     3460#: amp_conf/htdocs/admin/page.modules.php:790 
     3461msgid "Uninstall" 
     3462msgstr "" 
     3463 
     3464#: amp_conf/htdocs/admin/page.modules.php:752 
     3465#, php-format 
     3466msgid "Download and Upgrade to %s, and Enable" 
     3467msgstr "" 
     3468 
     3469#: amp_conf/htdocs/admin/page.modules.php:760 
     3470#, php-format 
     3471msgid "Upgrade to %s and Enable" 
     3472msgstr "" 
     3473 
     3474#: amp_conf/htdocs/admin/page.modules.php:780 
     3475#, php-format 
     3476msgid "Download and Upgrade to %s" 
     3477msgstr "" 
     3478 
     3479#: amp_conf/htdocs/admin/page.modules.php:798 
     3480#, php-format 
     3481msgid "Description for version %s" 
     3482msgstr "" 
     3483 
     3484#: amp_conf/htdocs/admin/page.modules.php:801 
     3485msgid "No description is available." 
     3486msgstr "" 
     3487 
     3488#: amp_conf/htdocs/admin/page.modules.php:804 
     3489#: amp_conf/htdocs/admin/page.modules.php:806 
     3490msgid "More info" 
     3491msgstr "" 
     3492 
     3493#: amp_conf/htdocs/admin/page.modules.php:811 
     3494msgid "Changelog" 
     3495msgstr "" 
     3496 
     3497#: amp_conf/htdocs/admin/page.modules.php:812 
     3498#, php-format 
     3499msgid "Change Log for version %s" 
     3500msgstr "" 
     3501 
     3502#: amp_conf/htdocs/admin/page.modules.php:832 
     3503msgid "Debug" 
     3504msgstr "" 
     3505 
     3506#: amp_conf/htdocs/admin/page.modules.php:857 
     3507msgid "All available modules are up-to-date and installed." 
     3508msgstr "" 
     3509 
     3510#: amp_conf/htdocs/admin/page.modules.php:859 
     3511msgid "No modules to display." 
     3512msgstr ""