Re: String changes

From: Patrick Welche <prlw1(at)newn(dot)cam(dot)ac(dot)uk>
To: Dennis Björklund <db(at)zigo(dot)dhs(dot)org>
Cc: pgsql-patches(at)postgresql(dot)org
Subject: Re: String changes
Date: 2003-03-08 15:46:24
Message-ID: 20030308154624.B27918@quartz.newn.cam.ac.uk
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-patches

On Sat, Mar 08, 2003 at 11:23:31AM +0100, Dennis Björklund wrote:
> Here are some small string changes for psql.
>
> --
> /Dennis

> Index: command.c
> ===================================================================
> RCS file: /projects/cvsroot/pgsql-server/src/bin/psql/command.c,v
> retrieving revision 1.90
> diff -u -r1.90 command.c
> --- command.c 2003/02/19 04:04:04 1.90
> +++ command.c 2003/03/08 10:19:52
> @@ -1901,7 +1901,7 @@
> if (popt->topt.pager == 1)
> puts(gettext("Using pager is on."));
> else if (popt->topt.pager == 2)
> - puts(gettext("Using pager is always."));
> + puts(gettext("Always use pager."));
> else
> puts(gettext("Using pager is off."));

Then how about "Never use pager." ?

> - fprintf(output, _("\n"));
> + fprintf(output, "\n");

and what about all the other _( ) ? (Looks a bit like php to me..)

Cheers,

Patrick

In response to

Responses

Browse pgsql-patches by date

  From Date Subject
Next Message Dennis Björklund 2003-03-08 18:44:39 Re: String changes
Previous Message Dennis Björklund 2003-03-08 10:25:05 swedish translation of psql