From 7b9174524af0cee85dc1bbae25e18796bb683739 Mon Sep 17 00:00:00 2001 From: westi 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: http://svn.automattic.com/wordpress/trunk@6002 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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)); ?> -

+