Changeset 1816871
- Timestamp:
- 02/07/2018 12:15:12 AM (8 years ago)
- Location:
- wp-quotpedia/trunk
- Files:
-
- 3 added
- 1 edited
-
languages (added)
-
languages/tr_TR.mo (added)
-
languages/tr_TR.po (added)
-
wp-quotpedia.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-quotpedia/trunk/wp-quotpedia.php
r1816859 r1816871 3 3 Plugin Name: WP Quotpedia 4 4 Plugin URI: http://www.quotpedia.com 5 Description: Showcase for Quotpedia5 Description: Quotpedia for Wordpress 6 6 Version: 1.0 7 7 Author: Süleyman ÜSTÜN … … 24 24 'wpb_widget', 25 25 // Widget name will appear in UI 26 _ _('Quotpedia', 'wpb_widget_domain'),26 _e('Quotpedia', 'wpb_widget_domain'), 27 27 28 28 // Widget description 29 array( 'description' => __( 'Showcase for Quotpedia.', 'wpb_widget_domain' ), ) 30 ); 29 array( 'description' => _e('Widget for Quotpedia.', 'wpb_widget_domain' ), ) ); 31 30 } 32 31 … … 51 50 $title = $instance[ 'title' ]; 52 51 } else { 53 $title = _ _( 'Başlık', 'wpb_widget_domain');52 $title = _e('Title', 'wpb_widget_domain'); 54 53 } 55 54 // Widget admin form 56 55 ?> 57 56 <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> 59 58 <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 ); ?>" /> 60 59 </p>
Note: See TracChangeset
for help on using the changeset viewer.