Commit b64d2d21 authored by Peter Eisentraut's avatar Peter Eisentraut

Add workaround for localizing May and abbreviated May differently. Idea

of Dennis Björklund.
parent 09309df9
/* -----------------------------------------------------------------------
* formatting.c
*
* $PostgreSQL: pgsql/src/backend/utils/adt/formatting.c,v 1.115 2006/11/24 22:25:56 momjian Exp $
* $PostgreSQL: pgsql/src/backend/utils/adt/formatting.c,v 1.116 2006/11/28 12:53:44 petere Exp $
*
*
* Portions Copyright (c) 1999-2006, PostgreSQL Global Development Group
......@@ -163,7 +163,6 @@ struct FormatNode
/* ----------
* Full months
* This needs to be NLS-localized someday.
* ----------
*/
static char *months_full[] = {
......@@ -2928,7 +2927,13 @@ localize_month(int index)
m = _("Apr");
break;
case 4:
m = _("May");
/*------
translator: Translate this as the abbreviation of "May".
In English, it is both the full month name and the
abbreviation, so this hack is needed to distinguish
them. The translation also needs to start with S:,
which will be stripped at run time. */
m = _("S:May") + 2;
break;
case 5:
m = _("Jun");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment