Changeset 12589

Show
Ignore:
Timestamp:
09/30/07 00:21:54 (1 year ago)
Author:
w_i
Message:

Switched to use i18n instead of l10n

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/midcom/com.magnettechnologies.contactgrabber/locale/default.en.txt

    r12588 r12589  
    1919---STRINGEND 
    2020 
     21---STRING password 
     22Password 
     23---STRINGEND 
     24 
    2125---STRING invite your gmail friends 
    2226Invite your gmail friends 
  • trunk/midcom/com.magnettechnologies.contactgrabber/style/search-form.php

    r12588 r12589  
    11<?php 
    22$email_parts = array('',''); 
    3 $yahoo_user = ''; 
    43$gmail_user = ''; 
    54 
     
    1918 
    2019    <div class="tabs_content" id="invite_gmail"> 
    21         <h2><?php echo $data['l10n']->get('invite your gmail friends'); ?></h2> 
     20        <h2><?php echo $_MIDCOM->i18n->get_string('invite your gmail friends', 'com.magnettechnologies.contactgrabber'); ?></h2> 
    2221        <div class="invite_login_form"> 
    2322            <form name="invite_gmail" method="POST" onsubmit="return com_magnettechnologies_contactgrabber_validate(this);" action=""> 
     
    2928                } 
    3029                ?> 
    31                 <label><?php echo $data['l10n']->get('username'); ?>:</label><input class="text" type="text" name="username" value="&(gmail_user);" /> 
     30                <label><?php echo $_MIDCOM->i18n->get_string('username', 'com.magnettechnologies.contactgrabber'); ?>:</label><input class="text" type="text" name="username" value="&(gmail_user);" /> 
    3231                <div class="clear_fix"></div> 
    33                 <label><?php echo $data['l10n']->get('password'); ?>:</label><input class="text" type="password" name="password" value="" /><input type="submit" name="sign_in" value="<?php echo $data['l10n']->get('fetch'); ?>" /> 
     32                <label><?php echo $_MIDCOM->i18n->get_string('password', 'com.magnettechnologies.contactgrabber'); ?>:</label><input class="text" type="password" name="password" value="" /><input type="submit" name="sign_in" value="<?php echo $data['l10n']->get('fetch'); ?>" /> 
    3433            </form> 
    3534        </div> 
    3635        <div class="description"> 
    37             <?php echo $data['l10n']->get('no details are stored'); ?> 
     36            <?php echo $_MIDCOM->i18n->get_string('no details are stored', 'com.magnettechnologies.contactgrabber'); ?> 
    3837        </div> 
    3938    </div>