You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2013/07/08 19:30:08 UTC

svn commit: r1500853 - /subversion/trunk/subversion/svnauth/svnauth.c

Author: stsp
Date: Mon Jul  8 17:30:07 2013
New Revision: 1500853

URL: http://svn.apache.org/r1500853
Log:
* subversion/svnauth/svnauth.c
  (list_credentials): Mark a string for translation.

Suggested by: danielsh

Modified:
    subversion/trunk/subversion/svnauth/svnauth.c

Modified: subversion/trunk/subversion/svnauth/svnauth.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/svnauth/svnauth.c?rev=1500853&r1=1500852&r2=1500853&view=diff
==============================================================================
--- subversion/trunk/subversion/svnauth/svnauth.c (original)
+++ subversion/trunk/subversion/svnauth/svnauth.c Mon Jul  8 17:30:07 2013
@@ -190,7 +190,7 @@ list_credentials(svn_boolean_t *delete_c
       key = item.key;
       value = item.value;
       if (!opt_state->show_passwords && strcmp(key, "password") == 0)
-        SVN_ERR(svn_cmdline_printf(scratch_pool, "%s: [not shown]\n", key));
+        SVN_ERR(svn_cmdline_printf(scratch_pool, _("%s: [not shown]\n"), key));
       else if (strcmp(value->data, realmstring) == 0)
         continue; /* realm string was already shown above */
       else