patch for ja.po - Mailing list pgsql-hackers

From Tatsuhito Kasahara
Subject patch for ja.po
Date
Msg-id 4A1693B0.3030102@oss.ntt.co.jp
Whole thread Raw
Responses Re: patch for ja.po  (Alvaro Herrera <alvherre@commandprompt.com>)
Re: patch for ja.po  (Honda Shigehiro <fwif0083@mb.infoweb.ne.jp>)
List pgsql-hackers
Hi.

Here is a asmall patch which fixes "bin/psql/po/ja.po".
Now, psql returns the incorrect number of rows through ja.po.
(see following)

=# SELECT relname FROM pg_class limit 3;
       relname
----------------------
 pg_type
 user_mapping_options
 user_mappings
(1 行) <- mean "1 rows"

best regards,
--
Tatsuhito Kasahara
kasahara.tatsuhito@oss.ntt.co.jp
diff -cpr Postgresql-CVS-20090522/src/bin/psql/po/ja.po ja_po_fix/src/bin/psql/po/ja.po
*** Postgresql-CVS-20090522/src/bin/psql/po/ja.po    2009-05-22 18:01:22.000000000 +0900
--- ja_po_fix/src/bin/psql/po/ja.po    2009-05-23 05:08:56.000000000 +0900
*************** msgstr "テーブルの内容にセル��
*** 1186,1198 ****
  msgid "invalid fout format (internal error): %d"
  msgstr "出力フォーマットが無効(内部エラー):%d"

! #: print.c:2352
  msgid "(1 row)"
! msgstr "(1 行)"
!
! #: print.c:2354
! msgid "(%lu rows)"
! msgstr "(%lu 行)"

  #: startup.c:222
  msgid "%s: could not open log file \"%s\": %s\n"
--- 1186,1196 ----
  msgid "invalid fout format (internal error): %d"
  msgstr "出力フォーマットが無効(内部エラー):%d"

! #: print.c:2351
  msgid "(1 row)"
! msgid_plural "(%lu rows)"
! msgstr[0] "(1 行)"
! msgstr[1] "(%lu 行)"

  #: startup.c:222
  msgid "%s: could not open log file \"%s\": %s\n"

pgsql-hackers by date:

Previous
From: Andres Freund
Date:
Subject: Re: RFD: Discarded tuple count for SeqScan nodes in EXPLAIN ANALYZE
Next
From: Josh Berkus
Date:
Subject: Re: [PATCH] 8.5 plpgsql change for named notation: treat word following AS keyword as label v2