diff options
author | Peter Wilson <peterwilsoncc@git.wordpress.org> | 2022-10-10 22:06:23 +0000 |
---|---|---|
committer | Peter Wilson <peterwilsoncc@git.wordpress.org> | 2022-10-10 22:06:23 +0000 |
commit | 0d8b08ce013a35ed4ef203a03edeb7a51ac66dc5 (patch) | |
tree | fa4f8b6aa8609fd6b5b3fa5d54b34d406809cf6a | |
parent | b7e530f70e51f0121eeee79ab9d3966221dbf861 (diff) | |
download | wordpress-0d8b08ce013a35ed4ef203a03edeb7a51ac66dc5.tar.gz wordpress-0d8b08ce013a35ed4ef203a03edeb7a51ac66dc5.zip |
Security: Introduce strings to indicate support status.
Add strings for use in future maintenance/security releases to indicate the security support status of the version of WordPress.
Two strings are introduced:
* indicating the version of WordPress is not receiving security updates, and,
* indicating the version of WordPress will shortly stop receiving security updates.
This change does not make use of the strings, the purpose is to make them available to translators prior to dropping support of selected versions of WordPress.
Props costdev, chesio, robinwpdeveloper, desrosj, rudlinkon, mukesh27, sumitbagthariya16.
Merges [54322] to the 4.8 branch.
See #56532.
git-svn-id: https://develop.svn.wordpress.org/branches/4.8@54452 602fd350-edb4-49c9-b593-d223f7449a82
-rw-r--r-- | src/wp-admin/about.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/wp-admin/about.php b/src/wp-admin/about.php index e3c435ab88..b4a3cf3845 100644 --- a/src/wp-admin/about.php +++ b/src/wp-admin/about.php @@ -535,3 +535,9 @@ _n_noop( '<strong>Version %1$s</strong> addressed some security issues and fixed /* translators: %s: Codex URL */ __( 'For more information, see <a href="%s">the release notes</a>.' ); + +/* translators: 1: WordPress version number, 2: Link to update WordPress */ +__( 'Important! Your version of WordPress (%1$s) is no longer supported, you will not receive any security updates for your website. To keep your site secure, please <a href="%2$s">update to the latest version of WordPress</a>.' ); + +/* translators: 1: WordPress version number, 2: Link to update WordPress */ +__( 'Important! Your version of WordPress (%1$s) will stop receiving security updates in the near future. To keep your site secure, please <a href="%2$s">update to the latest version of WordPress</a>.' ); |