From 9103eafbbba501caca451260e44f997f0f8d6bbc Mon Sep 17 00:00:00 2001 From: Peter Westwood Date: Sat, 1 Sep 2007 12:06:47 +0000 Subject: [PATCH] Enable full translation of the Tags description. Fixes #4885 props nbachiyski. git-svn-id: https://develop.svn.wordpress.org/trunk@6002 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/index.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wp-admin/index.php b/wp-admin/index.php index 57c5cc4b33..5c298607a5 100644 --- a/wp-admin/index.php +++ b/wp-admin/index.php @@ -106,9 +106,10 @@ $numtags = wp_count_terms('post_tag'); $post_str = sprintf(__ngettext('%1$s post', '%1$s posts', $numposts), number_format_i18n($numposts), 'edit.php'); $comm_str = sprintf(__ngettext('%1$s comment', '%1$s comments', $numcomms), number_format_i18n($numcomms), 'edit-comments.php'); $cat_str = sprintf(__ngettext('%1$s category', '%1$s categories', $numcats), number_format_i18n($numcats), 'categories.php'); +$tag_str = sprintf(__ngettext('%1$s tag', '%1$s tags', $numtags), number_format_i18n($numtags)); ?> -

+