From f30a1c86b191800ac213d8359736d2111d2c9968 Mon Sep 17 00:00:00 2001 From: "Dominik Schilling (ocean90)" Date: Fri, 11 Sep 2015 19:26:02 +0000 Subject: [PATCH] About: Remove period from placeholder. The position of periods is different in some languages, like Japanese. This removes the period from the last placeholder for the Template Hierarchy section. It doesn't include a new period to avoid a string change in a minor release. Props extendwings, chriscct7. Fixes #33429. git-svn-id: https://develop.svn.wordpress.org/trunk@34054 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/about.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-admin/about.php b/src/wp-admin/about.php index 8118b5a3dc..d56bde20a3 100644 --- a/src/wp-admin/about.php +++ b/src/wp-admin/about.php @@ -86,7 +86,7 @@ $tech_features = array( array( 'heading' => __( 'Template Hierarchy' ), /* Translators: 1: singular.php; 2: single.php; 3:page.php */ - 'description' => sprintf( __( 'Added %1$s as a fallback for %2$s and %3$s' ), 'singular.php', 'single.php', 'page.php.' ), + 'description' => sprintf( __( 'Added %1$s as a fallback for %2$s and %3$s' ), 'singular.php', 'single.php', 'page.php' ), ), array( 'heading' => 'WP_List_Table',