]> git.sur5r.net Git - openldap/commitdiff
Misc translation tweaks
authorKurt Zeilenga <kurt@openldap.org>
Sun, 6 Apr 2003 03:27:52 +0000 (03:27 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Sun, 6 Apr 2003 03:27:52 +0000 (03:27 +0000)
clients/tools/ldapcompare.c
clients/tools/ldapmodify.c

index 18b1ae3877d79bbe36632245d1bb8cb8f3a21ba5..b797c5fbace9804579d8893fb17e51debd654f6b 100644 (file)
@@ -49,7 +49,8 @@ usage( void )
        fprintf( stderr, _("  b64value\tbase64 encoding of assertion value\n"));
 
        fprintf( stderr, _("Compare options:\n"));
-       fprintf( stderr, _("  -z         Quiet mode, don't print anything, use return values\n"));
+       fprintf( stderr, _("  -z         Quiet mode,"
+               " don't print anything, use return values\n"));
        tool_common_usage();
        exit( EXIT_FAILURE );
 }
index e521dc031706a6ff2814db54365c6d2adc57668a..2003d23dc937b0a72b3cc3c1f65a47d801fbc400 100644 (file)
@@ -94,7 +94,8 @@ usage( void )
     fprintf( stderr, _("       The list of desired operations are read from stdin or from the file\n"));
     fprintf( stderr, _("       specified by \"-f file\".\n"));
     fprintf( stderr, _("Add or modify options:\n"));
-    fprintf( stderr, _("  -a         add values (default%s)\n"), (ldapadd ? "" : _(" is to replace")));
+    fprintf( stderr, _("  -a         add values (%s)\n"),
+               (ldapadd ? _("default") : _("default is to replace")));
     fprintf( stderr, _("  -F         force all changes records to be used\n"));
     fprintf( stderr, _("  -S file    write skipped modifications to `file'\n"));
     tool_common_usage();
@@ -827,9 +828,10 @@ domodify(
     if ( verbose ) {
        for ( i = 0; pmods[ i ] != NULL; ++i ) {
            op = pmods[ i ]->mod_op & ~LDAP_MOD_BVALUES;
-           printf( "%s %s:\n", op == LDAP_MOD_REPLACE ?
-                   _("replace") : op == LDAP_MOD_ADD ?
-                   _("add") : _("delete"), pmods[ i ]->mod_type );
+           printf( "%s %s:\n",
+                       op == LDAP_MOD_REPLACE ? _("replace") : op == LDAP_MOD_ADD
+                               ?  _("add") : _("delete"),
+                       pmods[ i ]->mod_type );
            if ( pmods[ i ]->mod_bvalues != NULL ) {
                for ( j = 0; pmods[ i ]->mod_bvalues[ j ] != NULL; ++j ) {
                    bvp = pmods[ i ]->mod_bvalues[ j ];