Changeset 6887

Show
Ignore:
Timestamp:
09/29/08 16:33:44 (5 years ago)
Author:
mickecarlsson
Message:

Reverting previous changes, add strings for localization for callforward

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/branches/2.5/callforward/install.php

    r6664 r6887  
    11<?php 
    2  
     2//for translation only 
     3if (false) { 
     4_("Call Forward"); 
     5_("Call Forward All Activate"); 
     6_("Call Forward All Deactivate"); 
     7_("Call Forward All Prompting Deactivate"); 
     8_("Call Forward Busy Activate"); 
     9_("Call Forward Busy Deactivate"); 
     10_("Call Forward Busy Prompting Deactivate"); 
     11_("Call Forward No Answer/Unavailable Activate"); 
     12_("Call Forward No Answer/Unavailable Deactivate"); 
     13
    314 
    415// Unconditional Call Forwarding 
    5 $cfaa = _("Call Forward All Activate"); 
    616$fcc = new featurecode('callforward', 'cfon'); 
    7 $fcc->setDescription($cfaa); 
     17$fcc->setDescription('Call Forward All Activate'); 
    818$fcc->setDefault('*72'); 
    919$fcc->update(); 
    1020unset($fcc); 
    1121 
    12 $cfad = _("Call Forward All Deactivate"); 
    1322$fcc = new featurecode('callforward', 'cfoff'); 
    14 $fcc->setDescription($cfad); 
     23$fcc->setDescription('Call Forward All Deactivate'); 
    1524$fcc->setDefault('*73'); 
    1625$fcc->update(); 
    1726unset($fcc); 
    1827 
    19 $cfapd = _("Call Forward All Prompting Deactivate"); 
    2028$fcc = new featurecode('callforward', 'cfoff_any'); 
    21 $fcc->setDescription($cfad); 
     29$fcc->setDescription('Call Forward All Prompting Deactivate'); 
    2230$fcc->setDefault('*74'); 
    2331$fcc->update(); 
     
    2533 
    2634// Call Forward on Busy 
    27 $cfba = _("Call Forward Busy Activate"); 
    2835$fcc = new featurecode('callforward', 'cfbon'); 
    29 $fcc->setDescription($cfba); 
     36$fcc->setDescription('Call Forward Busy Activate'); 
    3037$fcc->setDefault('*90'); 
    3138$fcc->update(); 
    3239unset($fcc); 
    3340 
    34 $cfbd = _("Call Forward Busy Deactivate"); 
    3541$fcc = new featurecode('callforward', 'cfboff'); 
    36 $fcc->setDescription($cfbd); 
     42$fcc->setDescription('Call Forward Busy Deactivate'); 
    3743$fcc->setDefault('*91'); 
    3844$fcc->update(); 
    3945unset($fcc); 
    4046 
    41 $cfbpd = _("Call Forward Busy Prompting Deactivate"); 
    4247$fcc = new featurecode('callforward', 'cfboff_any'); 
    43 $fcc->setDescription($cfbpd); 
     48$fcc->setDescription('Call Forward Busy Prompting Deactivate'); 
    4449$fcc->setDefault('*92'); 
    4550$fcc->update(); 
     
    4752 
    4853// Call Forward on No Answer/Unavailable (i.e. phone not registered) 
    49 $cfnaua = _("Call Forward No Answer/Unavailable Activate"); 
    5054$fcc = new featurecode('callforward', 'cfuon'); 
    51 $fcc->setDescription($cfnaua); 
     55$fcc->setDescription('Call Forward No Answer/Unavailable Activate'); 
    5256$fcc->setDefault('*52'); 
    5357$fcc->update(); 
    5458unset($fcc); 
    5559 
    56 $cfnaud = _("Call Forward No Answer/Unavailable Deactivate"); 
    5760$fcc = new featurecode('callforward', 'cfuoff'); 
    58 $fcc->setDescription($cfnaud); 
     61$fcc->setDescription('Call Forward No Answer/Unavailable Deactivate'); 
    5962$fcc->setDefault('*53'); 
    6063$fcc->update();