Plugin Directory

Changeset 1816871


Ignore:
Timestamp:
02/07/2018 12:15:12 AM (8 years ago)
Author:
sustun
Message:

Dil desteği eklendi.

Location:
wp-quotpedia/trunk
Files:
3 added
1 edited

Legend:

Unmodified
Added
Removed
  • wp-quotpedia/trunk/wp-quotpedia.php

    r1816859 r1816871  
    33Plugin Name: WP Quotpedia
    44Plugin URI: http://www.quotpedia.com
    5 Description: Showcase for Quotpedia
     5Description: Quotpedia for Wordpress
    66Version: 1.0
    77Author: Süleyman ÜSTÜN
     
    2424    'wpb_widget',
    2525    // Widget name will appear in UI
    26     __('Quotpedia', 'wpb_widget_domain'),
     26    _e('Quotpedia', 'wpb_widget_domain'),
    2727   
    2828    // Widget description
    29     array( 'description' => __( 'Showcase for Quotpedia.', 'wpb_widget_domain' ), )
    30     );
     29    array( 'description' => _e('Widget for Quotpedia.', 'wpb_widget_domain' ), ) );
    3130}
    3231 
     
    5150        $title = $instance[ 'title' ];
    5251    } else {
    53         $title = __( 'Başlık', 'wpb_widget_domain' );
     52        $title = _e('Title', 'wpb_widget_domain');
    5453    }
    5554    // Widget admin form
    5655    ?>
    5756    <p>
    58         <label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:' ); ?></label>
     57        <label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title' ); ?></label>
    5958        <input class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" type="text" value="<?php echo esc_attr( $title ); ?>" />
    6059    </p>
Note: See TracChangeset for help on using the changeset viewer.