You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ju...@apache.org on 2014/03/12 17:23:51 UTC

svn commit: r1576806 - /subversion/trunk/subversion/libsvn_subr/subst.c

Author: julianfoad
Date: Wed Mar 12 16:23:51 2014
New Revision: 1576806

URL: http://svn.apache.org/r1576806
Log:
* subversion/libsvn_subr/subst.c
  (read_handler_special): Mark an error message for translation.

Modified:
    subversion/trunk/subversion/libsvn_subr/subst.c

Modified: subversion/trunk/subversion/libsvn_subr/subst.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_subr/subst.c?rev=1576806&r1=1576805&r2=1576806&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_subr/subst.c (original)
+++ subversion/trunk/subversion/libsvn_subr/subst.c Wed Mar 12 16:23:51 2014
@@ -1855,7 +1855,7 @@ read_handler_special(void *baton, char *
     return svn_stream_read_full(btn->read_stream, buffer, len);
   else
     return svn_error_createf(APR_ENOENT, NULL,
-                             "Can't read special file: File '%s' not found",
+                             _("Can't read special file: File '%s' not found"),
                              svn_dirent_local_style(btn->path, btn->pool));
 }