You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by da...@apache.org on 2010/08/10 07:25:51 UTC

svn commit: r983858 - /subversion/trunk/subversion/svnsync/main.c

Author: danielsh
Date: Tue Aug 10 05:25:51 2010
New Revision: 983858

URL: http://svn.apache.org/viewvc?rev=983858&view=rev
Log:
* subversion/svnsync/main.c
  (get_lock):  Mark an error message for translation, remove trailing newline.

Modified:
    subversion/trunk/subversion/svnsync/main.c

Modified: subversion/trunk/subversion/svnsync/main.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/svnsync/main.c?rev=983858&r1=983857&r2=983858&view=diff
==============================================================================
--- subversion/trunk/subversion/svnsync/main.c (original)
+++ subversion/trunk/subversion/svnsync/main.c Tue Aug 10 05:25:51 2010
@@ -338,8 +338,8 @@ get_lock(svn_ra_session_t *session, apr_
     }
 
   return svn_error_createf(APR_EINVAL, NULL,
-                           "Couldn't get lock on destination repos "
-                           "after %d attempts\n", i);
+                           _("Couldn't get lock on destination repos "
+                             "after %d attempts"), i);
 }