]> granicus.if.org Git - postgresql/commit
Improve internationalization of messages involving type names
authorAlvaro Herrera <alvherre@alvh.no-ip.org>
Mon, 28 Mar 2016 17:12:00 +0000 (14:12 -0300)
committerAlvaro Herrera <alvherre@alvh.no-ip.org>
Mon, 28 Mar 2016 17:24:37 +0000 (14:24 -0300)
commit59a2111b23f6ceec4c777d68e20c1027d3c57c6f
tree505bf5080d373619fc60ea658aaef3dc06aef095
parent559e7a0a6d4450c09825055e3d255d30ee869c67
Improve internationalization of messages involving type names

Change the slightly different variations of the message
  function FOO must return type BAR
to a single wording, removing the variability in type name so that they
all create a single translation entry; since the type name is not to be
translated, there's no point in it being part of the message anyway.

Also, change them all to use the same quoting convention, namely that
the function name is not to be quoted but the type name is.  (I'm not
quite sure why this is so, but it's the clear majority.)

Some similar messages such as "encoding conversion function FOO must ..."
are also changed.
src/backend/commands/conversioncmds.c
src/backend/commands/event_trigger.c
src/backend/commands/foreigncmds.c
src/backend/commands/operatorcmds.c
src/backend/commands/proclang.c
src/backend/commands/trigger.c
src/backend/commands/typecmds.c
src/backend/parser/parse_clause.c