From 5108255d190a235b851d3eda033fb35851044c39 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sun, 28 Feb 2016 20:42:40 +0000 Subject: [PATCH] Docs: Correct `_n_noop()` and `_nx_noop()` descriptions to use third-person singular verbs. Props realloc. See #35961. git-svn-id: https://develop.svn.wordpress.org/trunk@36765 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/l10n.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wp-includes/l10n.php b/src/wp-includes/l10n.php index ed0b940c13..bfc659897e 100644 --- a/src/wp-includes/l10n.php +++ b/src/wp-includes/l10n.php @@ -389,7 +389,7 @@ function _nx($single, $plural, $number, $context, $domain = 'default') { } /** - * Registers plural strings in POT file, but don't translate them. + * Registers plural strings in POT file, but does not translate them. * * Used when you want to keep structures with translatable plural * strings and use them later when the number is known. @@ -426,7 +426,7 @@ function _n_noop( $singular, $plural, $domain = null ) { } /** - * Register plural strings with gettext context in the POT file, but don't translate them. + * Registers plural strings with gettext context in POT file, but does not translate them. * * Used when you want to keep structures with translatable plural * strings and use them later when the number is known.