Return-Path: X-Original-To: apmail-subversion-commits-archive@minotaur.apache.org Delivered-To: apmail-subversion-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 0BE9510FDB for ; Wed, 12 Mar 2014 16:03:24 +0000 (UTC) Received: (qmail 38121 invoked by uid 500); 12 Mar 2014 16:03:23 -0000 Delivered-To: apmail-subversion-commits-archive@subversion.apache.org Received: (qmail 38017 invoked by uid 500); 12 Mar 2014 16:03:22 -0000 Mailing-List: contact commits-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@subversion.apache.org Delivered-To: mailing list commits@subversion.apache.org Received: (qmail 38008 invoked by uid 99); 12 Mar 2014 16:03:21 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 12 Mar 2014 16:03:21 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 12 Mar 2014 16:03:19 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 248D8238883D; Wed, 12 Mar 2014 16:02:58 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1576796 - /subversion/trunk/subversion/libsvn_client/delete.c Date: Wed, 12 Mar 2014 16:02:58 -0000 To: commits@subversion.apache.org From: julianfoad@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20140312160258.248D8238883D@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: julianfoad Date: Wed Mar 12 16:02:57 2014 New Revision: 1576796 URL: http://svn.apache.org/r1576796 Log: * subversion/libsvn_client/delete.c (delete_urls_multi_repos): Mark an error message for translation. Modified: subversion/trunk/subversion/libsvn_client/delete.c Modified: subversion/trunk/subversion/libsvn_client/delete.c URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_client/delete.c?rev=1576796&r1=1576795&r2=1576796&view=diff ============================================================================== --- subversion/trunk/subversion/libsvn_client/delete.c (original) +++ subversion/trunk/subversion/libsvn_client/delete.c Wed Mar 12 16:02:57 2014 @@ -346,14 +346,14 @@ delete_urls_multi_repos(const apr_array_ RA error code otherwise for 1.6 compatibility.) */ if (!repos_relpath || !*repos_relpath) return svn_error_createf(SVN_ERR_RA_ILLEGAL_URL, NULL, - "URL '%s' not within a repository", uri); + _("URL '%s' not within a repository"), uri); /* Now, test to see if the thing actually exists in HEAD. */ SVN_ERR(svn_ra_check_path(repos_deletables->ra_session, repos_relpath, SVN_INVALID_REVNUM, &kind, pool)); if (kind == svn_node_none) return svn_error_createf(SVN_ERR_FS_NOT_FOUND, NULL, - "URL '%s' does not exist", uri); + _("URL '%s' does not exist"), uri); } /* Now we iterate over the DELETABLES hash, issuing a commit for