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:36:50 UTC

svn commit: r1576811 - /subversion/trunk/subversion/libsvn_wc/wc_db.c

Author: julianfoad
Date: Wed Mar 12 16:36:50 2014
New Revision: 1576811

URL: http://svn.apache.org/r1576811
Log:
* subversion/libsvn_wc/wc_db.c
  (db_op_set_base_depth,
   read_info): Mark an error message for translation.

Modified:
    subversion/trunk/subversion/libsvn_wc/wc_db.c

Modified: subversion/trunk/subversion/libsvn_wc/wc_db.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_wc/wc_db.c?rev=1576811&r1=1576810&r2=1576811&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/wc_db.c (original)
+++ subversion/trunk/subversion/libsvn_wc/wc_db.c Wed Mar 12 16:36:50 2014
@@ -7403,7 +7403,7 @@ db_op_set_base_depth(svn_wc__db_wcroot_t
 
   if (affected_rows == 0)
     return svn_error_createf(SVN_ERR_WC_PATH_NOT_FOUND, NULL,
-                             "The node '%s' is not a committed directory",
+                             _("The node '%s' is not a committed directory"),
                              path_for_error_message(wcroot, local_relpath,
                                                     scratch_pool));
 
@@ -8691,7 +8691,7 @@ read_info(svn_wc__db_status_t *status,
   if (err && err->apr_err != SVN_ERR_WC_PATH_NOT_FOUND)
     err = svn_error_quick_wrap(err,
                                apr_psprintf(scratch_pool,
-                                            "Error reading node '%s'",
+                                            _("Error reading node '%s'"),
                                             local_relpath));
 
   SVN_ERR(svn_error_compose_create(err, svn_sqlite__reset(stmt_info)));