diff -r 3d4e9c994f10 -r a86126ab1dd4 wp/wp-admin/about.php --- a/wp/wp-admin/about.php Tue Oct 22 16:11:46 2019 +0200 +++ b/wp/wp-admin/about.php Tue Dec 15 13:49:49 2020 +0100 @@ -7,245 +7,294 @@ */ /** WordPress Administration Bootstrap */ -require_once( dirname( __FILE__ ) . '/admin.php' ); +require_once __DIR__ . '/admin.php'; /* translators: Page title of the About WordPress page in the admin. */ $title = _x( 'About', 'page title' ); list( $display_version ) = explode( '-', get_bloginfo( 'version' ) ); -include( ABSPATH . 'wp-admin/admin-header.php' ); +require_once ABSPATH . 'wp-admin/admin-header.php'; ?> -
-

- -

+
+ +
+
+ +
-

- -

+
+

+ + +

+
-
- +
- - -
-

-

+

+

Version %s addressed some security issues.' ), - '5.2.4' + /* translators: %s: The current WordPress version number. */ + __( 'Welcome to WordPress %s.' ), + $display_version ); ?> - the release notes.' ), - sprintf( - /* translators: %s: WordPress version */ - esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), - sanitize_title( '5.2.4' ) - ) - ); - ?> -

+

Version %1$s addressed some security issues and fixed %2$s bug.', - 'Version %1$s addressed some security issues and fixed %2$s bugs.', - 29 - ), - '5.2.3', - number_format_i18n( 29 ) - ); - ?> - the release notes.' ), - sprintf( - /* translators: %s: WordPress version */ - esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), - sanitize_title( '5.2.3' ) - ) - ); - ?> -

-

- Version %1$s addressed %2$s bug.', - 'Version %1$s addressed %2$s bugs.', - 13 - ), - '5.2.2', - number_format_i18n( 13 ) - ); - ?> - the release notes.' ), - sprintf( - /* translators: %s: WordPress version */ - esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), - sanitize_title( '5.2.2' ) - ) - ); - ?> -

-

- Version %1$s addressed %2$s bug.', - 'Version %1$s addressed %2$s bugs.', - 33 - ), - '5.2.1', - number_format_i18n( 33 ) - ); - ?> - the release notes.' ), - sprintf( - /* translators: %s: WordPress version */ - esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), - sanitize_title( '5.2.1' ) - ) + /* translators: %s: The current WordPress version number. */ + __( 'In WordPress %s, your site gets new power in three major areas: speed, search, and security.' ), + $display_version ); ?>

-
-

-

-
- +
+ +
+
+

+

+ Version %1$s addressed %2$s bug.', + 'Version %1$s addressed %2$s bugs.', + 44 + ), + '5.5.1', + number_format_i18n( 44 ) + ); + ?> + the release notes.' ), + sprintf( + /* translators: %s: WordPress version. */ + esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), + sanitize_title( '5.5.1' ) + ) + ); + ?> +


-
-
-

-

- the Site Health features introduced in 5.1, this release adds two new pages to help debug common configuration issues. It also adds space where developers can include debugging information for site maintainers.' ), - __( 'https://wordpress.org/news/2019/02/betty/' ) - ); +

+
+

+

+

+

+

+
+
+ +
+
+

+

+

+

+

+
+
- if ( current_user_can( 'install_plugins' ) ) { - printf( - /* translators: 1: link to /wp-admin/site-health.php 2: link to /wp-admin/site-health.php?tab=debug */ - __( ' Check your site status, and learn how to debug issues.' ), - admin_url( 'site-health.php' ), - admin_url( 'site-health.php?tab=debug' ) - ); - } - ?> -

+
+ +
+
+

+

+

+

+

+

-
-
- -
+
+
+ +
+

-
+
-
- -
+

+

-
-

-

+
+
+
+
+ +
+
+
+
+ +
+
+
+
+

+

+

+

+

+ +

+

+ +

+


-

- -
-
-

-

-
-
-

-

+
+
+

+

+

+


-

- -
+
+
+

+

+
-

-

+

+

-

-

+

+

-
+ +
-

+

*/ - __( '5.2 introduces a %1$s hook, which lets themes support injecting code right at the beginning of the %2$s element.' ), - 'wp_body_open', - '<body>' + /* translators: %s: 'wp_get_environment_type' function name. */ + __( 'WordPress now has a standardized way to define a site’s environment type (staging, production, etc). Retrieve that type with %s and execute only the appropriate code.' ), + 'wp_get_environment_type()' ); ?>

-

-

+

+

+ get_header()', + 'get_template_part()', + '$args' + ); + ?> +

+
+
+ +
+
+

+
    +
  • +
  • + redirect_guess_404_permalink()' + ); + ?> +
  • +
  • + wp_opcache_invalidate()' + ); + ?> +
  • +
  • +
  • + register_taxonomy()' + ); + ?> +
  • +
  • + register_meta()' + ); + ?> +
  • +
  • +
+
+
+ +
+ +
+
+

+

+ WordPress 5.5 Field Guide.' ), + 'https://make.wordpress.org/core/wordpress-5-5-field-guide/' + ); + ?> +

@@ -262,7 +311,7 @@
Version %s addressed one security issue.' ); -/* translators: %s: WordPress version number */ +/* translators: %s: WordPress version number. */ __( 'Version %s addressed some security issues.' ); -/* translators: 1: WordPress version number, 2: plural number of bugs. */ +/* translators: 1: WordPress version number, 2: Plural number of bugs. */ _n_noop( 'Version %1$s addressed %2$s bug.', 'Version %1$s addressed %2$s bugs.' ); -/* translators: 1: WordPress version number, 2: plural number of bugs. Singular security issue. */ +/* translators: 1: WordPress version number, 2: Plural number of bugs. Singular security issue. */ _n_noop( 'Version %1$s addressed a security issue and fixed %2$s bug.', 'Version %1$s addressed a security issue and fixed %2$s bugs.' ); -/* translators: 1: WordPress version number, 2: plural number of bugs. More than one security issue. */ +/* translators: 1: WordPress version number, 2: Plural number of bugs. More than one security issue. */ _n_noop( 'Version %1$s addressed some security issues and fixed %2$s bug.', 'Version %1$s addressed some security issues and fixed %2$s bugs.' ); -/* translators: %s: Codex URL */ +/* translators: %s: Documentation URL. */ __( 'For more information, see the release notes.' );