Changeset 525883
- Timestamp:
- 04/01/2012 08:55:26 PM (14 years ago)
- Location:
- tm-lunch-menu
- Files:
-
- 3 added
- 2 edited
- 11 copied
-
tags/1.0.2 (added)
-
tags/1.0.2/css (copied) (copied from tm-lunch-menu/trunk/css)
-
tags/1.0.2/images (copied) (copied from tm-lunch-menu/trunk/images)
-
tags/1.0.2/inc (copied) (copied from tm-lunch-menu/trunk/inc)
-
tags/1.0.2/inc/meta-boxes/admin-settings.php (copied) (copied from tm-lunch-menu/trunk/inc/meta-boxes/admin-settings.php)
-
tags/1.0.2/inc/meta-boxes/widget-options.php (copied) (copied from tm-lunch-menu/trunk/inc/meta-boxes/widget-options.php) (1 diff)
-
tags/1.0.2/inc/meta_box.php (copied) (copied from tm-lunch-menu/trunk/inc/meta_box.php)
-
tags/1.0.2/index.php (copied) (copied from tm-lunch-menu/trunk/index.php) (2 diffs)
-
tags/1.0.2/js (copied) (copied from tm-lunch-menu/trunk/js)
-
tags/1.0.2/languages (added)
-
tags/1.0.2/license.txt (copied) (copied from tm-lunch-menu/trunk/license.txt)
-
tags/1.0.2/readme.txt (copied) (copied from tm-lunch-menu/trunk/readme.txt)
-
tags/1.0.2/screenshot-1.png (copied) (copied from tm-lunch-menu/trunk/screenshot-1.png)
-
trunk/inc/meta-boxes/widget-options.php (modified) (1 diff)
-
trunk/index.php (modified) (2 diffs)
-
trunk/languages (added)
Legend:
- Unmodified
- Added
- Removed
-
tm-lunch-menu/tags/1.0.2/inc/meta-boxes/widget-options.php
r525874 r525883 13 13 </p> 14 14 <p> 15 <label for="<?php echo $this->get_field_id('numberposts'); ?>"><?php _e('Max number of menus to show at one time', 'tm-lunch-menu'); ?>:</label><br />15 <label for="<?php echo $this->get_field_id('numberposts'); ?>"><?php _e('Maximum number of menus to show at one time', 'tm-lunch-menu'); ?>:</label><br /> 16 16 <select id="<?php echo $this->get_field_id('numberposts'); ?>" 17 17 name="<?php echo $this->get_field_name('numberposts'); ?>"> -
tm-lunch-menu/tags/1.0.2/index.php
r525874 r525883 72 72 if(get_option('tm_lunch_menu_ver') != $this->version) $this->update(); 73 73 74 // Add in translation if applicable 75 add_action('init', array($this, 'init')); 76 74 77 // Register deactivation hook 75 78 register_deactivation_hook( TM_LM_FILE, array($this, 'deactivation_hook') ); … … 92 95 add_filter('manage_edit-tm_lunch_menu_sortable_columns', array($this, 'add_sortable_columns')); 93 96 add_filter('request', array($this, 'menu_order_columns_by')); 97 } 98 99 function init() { 100 load_plugin_textdomain('tm-lunch-menu', false, TM_LM_PATH.'/languages/'); 94 101 } 95 102 -
tm-lunch-menu/trunk/inc/meta-boxes/widget-options.php
r525874 r525883 13 13 </p> 14 14 <p> 15 <label for="<?php echo $this->get_field_id('numberposts'); ?>"><?php _e('Max number of menus to show at one time', 'tm-lunch-menu'); ?>:</label><br />15 <label for="<?php echo $this->get_field_id('numberposts'); ?>"><?php _e('Maximum number of menus to show at one time', 'tm-lunch-menu'); ?>:</label><br /> 16 16 <select id="<?php echo $this->get_field_id('numberposts'); ?>" 17 17 name="<?php echo $this->get_field_name('numberposts'); ?>"> -
tm-lunch-menu/trunk/index.php
r525874 r525883 72 72 if(get_option('tm_lunch_menu_ver') != $this->version) $this->update(); 73 73 74 // Add in translation if applicable 75 add_action('init', array($this, 'init')); 76 74 77 // Register deactivation hook 75 78 register_deactivation_hook( TM_LM_FILE, array($this, 'deactivation_hook') ); … … 92 95 add_filter('manage_edit-tm_lunch_menu_sortable_columns', array($this, 'add_sortable_columns')); 93 96 add_filter('request', array($this, 'menu_order_columns_by')); 97 } 98 99 function init() { 100 load_plugin_textdomain('tm-lunch-menu', false, TM_LM_PATH.'/languages/'); 94 101 } 95 102
Note: See TracChangeset
for help on using the changeset viewer.