From 7086111ad4dd997e12a3220e1ee60c9b9bcf0bb8 Mon Sep 17 00:00:00 2001 From: Charles Date: Tue, 7 Jan 2020 13:06:14 +0100 Subject: Added wordpress --- srcs/wordpress/wp-admin/about.php | 301 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 301 insertions(+) create mode 100644 srcs/wordpress/wp-admin/about.php (limited to 'srcs/wordpress/wp-admin/about.php') diff --git a/srcs/wordpress/wp-admin/about.php b/srcs/wordpress/wp-admin/about.php new file mode 100644 index 0000000..a9d4cc1 --- /dev/null +++ b/srcs/wordpress/wp-admin/about.php @@ -0,0 +1,301 @@ + +
+ +
+
+

+ + +

+
+ +
+ +
+

+ +

+
+ + +
+ +
+
+

+

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

+

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

+
+
+ +
+ +
+

+ +

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

+

+ +

+ +

+ +

+
+
+ +
+
+

+

+ +

+
    +
  • +
  • +
  • +
  • +
  • +
+
+
+
+ +
+
+
+ +
+
+

+

+ +

+ Inter, designed by Rasmus Andersson. Inter comes in a Variable Font version, a first for default themes, which keeps load times short by containing all weights and styles of Inter in just two font files.' ), + 'https://rsms.me/inter/' + ); + ?> +

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

+ +
+

+

+
+
+

+

+
+
+

+

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

+ +
+

+

+ dates and timezones in a more reliable way. Date and time functionality has received a number of new API functions for unified timezone retrieval and PHP interoperability, as well as many bug fixes.' ), + 'https://make.wordpress.org/core/2019/09/23/date-time-improvements-wp-5-3/' + ); + ?> +

+
+
+

+

+ multiple changes to remove deprecated functionality and ensure compatibility. WordPress continues to encourage all users to run the latest and greatest versions of PHP.' ), + 'https://make.wordpress.org/core/2019/10/11/wordpress-and-php-7-4/' + ); + ?> +

+
+
+ +
+ +
+ + + + | + + +
+
+Version %s addressed one security issue.' ); +/* translators: %s: WordPress version number. */ +__( 'Version %s addressed some security issues.' ); + +/* 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. */ +_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. */ +_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: Documentation URL. */ +__( 'For more information, see the release notes.' ); -- cgit