Changeset 6895

Show
Ignore:
Timestamp:
09/30/08 01:02:16 (5 years ago)
Author:
mickecarlsson
Message:

Reverting previous changes, add strings for localization for paging

Files:

Legend:

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

    r6694 r6895  
    11<?php 
     2//for translation only 
     3if (false) { 
     4_("Intercom prefix"); 
     5_("User Intercom Allow"); 
     6_("User Intercom Disallow"); 
     7} 
     8 
    29global $amp_conf; 
    310// Enable intercom as a feature code 
    4 $intercomprefix = _("Intercom prefix"); 
    511$fcc = new featurecode('paging', 'intercom-prefix'); 
    6 $fcc->setDescription($intercomprefix); 
     12$fcc->setDescription('Intercom prefix'); 
    713$fcc->setDefault('*80',false); 
    814$fcc->update(); 
     
    1016 
    1117// User intercom enable code 
    12 $userinterallow = _("User Intercom Allow"); 
    1318$fcc = new featurecode('paging', 'intercom-on'); 
    14 $fcc->setDescription($userinterallow); 
     19$fcc->setDescription('User Intercom Allow'); 
    1520$fcc->setDefault('*54',false); 
    1621$fcc->update(); 
     
    1823 
    1924// User intercom disable  
    20 $userintercomdisallow = _("User Intercom Disallow"); 
    2125$fcc = new featurecode('paging', 'intercom-off'); 
    22 $fcc->setDescription($userintercomdisallow); 
     26$fcc->setDescription('User Intercom Disallow'); 
    2327$fcc->setDefault('*55',false); 
    2428$fcc->update();