Changeset 1173
- Timestamp:
- 04/25/2004 11:10:07 PM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/plugins.php
r1167 r1173 23 23 } 24 24 25 $title = 'Manage Plugins'; 25 require_once('../wp-includes/wp-l10n.php'); 26 $title = __('Manage Plugins'); 26 27 require_once('admin-header.php'); 27 28 28 29 if ($user_level < 9) // Must be at least level 9 29 die ( "Sorry, you must be at least a level 8 user to modify plugins.");30 die (__("Sorry, you must be at least a level 8 user to modify plugins.")); 30 31 31 32 // Clean up options … … 47 48 48 49 <?php if ($_GET['activate']) : ?> 49 <div class="updated"><p> Plugin <strong>activated</strong>.</p>50 <div class="updated"><p><?php _e('Plugin <strong>activated</strong>.') ?></p> 50 51 </div> 51 52 <?php endif; ?> 52 53 <?php if ($_GET['deactivate']) : ?> 53 <div class="updated"><p> Plugin <strong>deactivated</strong>.</p>54 <div class="updated"><p><?php _e('Plugin <strong>deactivated</strong>.') ?></p> 54 55 </div> 55 56 <?php endif; ?>
Note: See TracChangeset
for help on using the changeset viewer.