Plugin Directory

Changeset 688885


Ignore:
Timestamp:
03/29/2013 04:29:27 PM (13 years ago)
Author:
bobbravo2
Message:

fixed broken strings :-)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • wp-fontsize/trunk/wp_fontsize.php

    r660313 r688885  
    55Description: Adds Stateful Fontsize Adjustment Classes to the body of the Website
    66Author: Circle Tree, LLC
    7 Version: 0.6.5
     7Version: 0.7
    88Author URI: http://mycircletree.com/
    99*/
     
    6363            .wp_fontsize_wrapper
    6464            {
    65                 position: absolute;
     65                position: fixed;
    6666                right: 0px;
    6767                top: 0px;
     
    7777                padding-right: 2.3em;
    7878                line-height: 2;
     79            }
     80            .admin-bar .wp_fontsize_wrapper {
     81                top: 32px;
    7982            }
    8083            .wp_fontsize_wrapper LABEL
     
    119122    public static function html () {  ?>
    120123        <div class="wp_fontsize_wrapper" id="wp_fontsize_wrapper">
    121         <label title="<?php __('Adjust the font size of the website', 'wp_fontsize')?>"><?php __('Font Size:', 'wp_fontsize');?></label>
     124        <label title="<?php _e('Adjust the font size of the website', 'wp_fontsize')?>"><?php _e('Font Size:', 'wp_fontsize');?></label>
    122125            <ul>
    123                 <li id="wpFontMinus" class="minus"><?php __('-', 'wp_fontsize')?></li>
    124                 <li id="wpFontPlus" class="plus"><?php __('+', 'wp_fontsize');?></li>
     126                <li id="wpFontMinus" class="minus"><?php _e('-', 'wp_fontsize')?></li>
     127                <li id="wpFontPlus" class="plus"><?php _e('+', 'wp_fontsize');?></li>
    125128            </ul>
    126129        </div>
     
    178181    function  footer () {
    179182        ob_start(array($this, 'min'));
    180         if (WP_FONTSIZE_HTML)
     183        if ( WP_FONTSIZE_HTML )
    181184            $this->html();
    182         if (WP_FONTSIZE_CSS)
     185        if ( WP_FONTSIZE_CSS )
    183186            $this->css();
    184187        $this->js();
Note: See TracChangeset for help on using the changeset viewer.