Author: dannas
Date: Sat Jul 10 08:33:25 2010
New Revision: 962791
URL: http://svn.apache.org/viewvc?rev=962791&view=rev
Log:
Remove i18n markers around the property header lines.
We've removed those in the regular diff code to allow us to
use them in the parsing. Doing the same here for consistency.
* subversion/svnlook/main.c
(display_prop_diffs): Remove '_()' around property header lines.
Modified:
subversion/trunk/subversion/svnlook/main.c
Modified: subversion/trunk/subversion/svnlook/main.c
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/svnlook/main.c?rev=962791&r1=962790&r2=962791&view=diff
==============================================================================
--- subversion/trunk/subversion/svnlook/main.c (original)
+++ subversion/trunk/subversion/svnlook/main.c Sat Jul 10 08:33:25 2010
@@ -833,11 +833,11 @@ display_prop_diffs(const apr_array_heade
orig_value = NULL;
if (! orig_value)
- header_fmt = _("Added: %s\n");
+ header_fmt = "Added: %s\n";
else if (! pc->value)
- header_fmt = _("Deleted: %s\n");
+ header_fmt = "Deleted: %s\n";
else
- header_fmt = _("Modified: %s\n");
+ header_fmt = "Modified: %s\n"; _
SVN_ERR(svn_cmdline_printf(pool, header_fmt, pc->name));
/* Flush stdout before we open a stream to it below. */