Make WordPress Core

Changeset 13950


Ignore:
Timestamp:
04/02/2010 11:04:48 PM (15 years ago)
Author:
nacin
Message:

Change "More Information" link to "Details" in plugin installer. Shorten/clarify a few other strings. see #11050

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/plugin-install.php

    r13921 r13950  
    356356                $action_links[] = '<a href="' . admin_url('plugin-install.php?tab=plugin-information&amp;plugin=' . $plugin['slug'] .
    357357                                    '&amp;TB_iframe=true&amp;width=600&amp;height=550') . '" class="thickbox" title="' .
    358                                     esc_attr( sprintf( __( 'Information about %s' ), $name ) ) . '">' . __('More Information') . '</a>';
     358                                    esc_attr( sprintf( __( 'More information about %s' ), $name ) ) . '">' . __('Details') . '</a>';
    359359
    360360                if ( current_user_can('install_plugins') || current_user_can('update_plugins') ) {
     
    368368                        case 'update_available':
    369369                            if ( $status['url'] )
    370                                 $action_links[] = '<a href="' . $status['url'] . '" title="' . esc_attr( sprintf( __( 'Update to %s' ), $status['version'] ) ) . '">' . sprintf(__('Update to version %s'), $status['version']) . '</a>';
     370                                $action_links[] = '<a href="' . $status['url'] . '" title="' . esc_attr( sprintf( __( 'Update to version %s' ), $status['version'] ) ) . '">' . sprintf( __('Update Now'), $status['version'] ) . '</a>';
    371371                            break;
    372372                        case 'latest_installed':
    373373                        case 'newer_installed':
    374                             $action_links[] = '<span>' . __('This plugin is already installed') . '</span>';
     374                            $action_links[] = '<span title="' . esc_attr__( 'This plugin is already installed and is up to date' ) . ' ">' . __('Installed') . '</span>';
    375375                            break;
    376376                    }
Note: See TracChangeset for help on using the changeset viewer.