- Timestamp:
- 09/01/2019 05:12:43 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-language-pack-upgrader-skin.php
r43598 r45926 48 48 echo '<div class="update-messages lp-show-latest">'; 49 49 50 /* translators: 1: name of project, 2: language */50 /* translators: 1: project name (plugin, theme, or WordPress), 2: language */ 51 51 printf( '<h2>' . __( 'Updating translations for %1$s (%2$s)…' ) . '</h2>', $name, $this->language_update->language ); 52 52 } … … 71 71 public function bulk_footer() { 72 72 $this->decrement_update_count( 'translation' ); 73 $update_actions = array(); 74 $update_actions['updates_page'] = '<a href="' . self_admin_url( 'update-core.php' ) . '" target="_parent">' . __( 'Return to WordPress Updates page' ) . '</a>'; 73 74 $update_actions = array( 75 'updates_page' => sprintf( 76 '<a href="%s" target="_parent">%s</a>', 77 self_admin_url( 'update-core.php' ), 78 __( 'Return to WordPress Updates page' ) 79 ), 80 ); 75 81 76 82 /**
Note: See TracChangeset
for help on using the changeset viewer.