Syntax got translated - Mailing list pgsql-bugs

From Susanne Ebrecht
Subject Syntax got translated
Date
Msg-id 4F40141A.2060109@2ndquadrant.com
Whole thread Raw
Responses Re: Syntax got translated
Re: Syntax got translated
List pgsql-bugs
Hello,

I tested 9.1.2 and I used --enable-nls in ./configure.

I used psql.

I tested German, French and Spanish - I guess it is in all translated=20
languages.

The test is very easy:

CREATE TABLE t(i serial);

\d t

Output in German:
i      | integer | not null Vorgabewert nextval('t_i_seq'::regclass)

Output in French:
i       | integer | non NULL Par d=E9faut, nextval('t_i_seq'::regclass)

Output in Spanish:
i       | integer | not null valor por omisi=F3n nextval('t_i_seq'::regclas=
s)

I think that the constraint keyword "DEFAULT" should not be translated here.
In my eyes in all cases it should output:

i      | integer | not null default nextval('t_i_seq'::regclass)

Susanne

--=20
Dipl. Inf. Susanne Ebrecht - 2ndQuadrant
PostgreSQL Development, 24x7 Support, Training and Services
www.2ndQuadrant.com

pgsql-bugs by date:

Previous
From: Tom Lane
Date:
Subject: Re: BUG #6465: postgresql-pltcl refuses to compile with 9.1, and FreeBSD does support threaded python
Next
From: Susanne Ebrecht
Date:
Subject: Re: Syntax got translated