2 * This file and its contents are supplied under the terms of the
3 * Common Development and Distribution License ("CDDL"), version 1.0.
4 * You may only use this file in accordance with the terms of version
7 * A full copy of the text of the CDDL should have accompanied this
8 * source. A copy of the CDDL is also available via the Internet at
9 * http://www.illumos.org/license/CDDL.
13 * Copyright 2013 Garrett D'Amore <garrett@damore.org>
14 * Copyright 2010 Nexenta Systems, Inc. All rights reserved.
18 * LC_MESSAGES database generation routines for localedef.
24 #include <sys/types.h>
28 #include "localedef.h"
30 #include "lmessages.h"
32 static struct lc_messages msgs
;
37 (void) memset(&msgs
, 0, sizeof (msgs
));
41 add_message(wchar_t *wcs
)
45 if ((str
= to_mb_string(wcs
)) == NULL
) {
77 if (msgs
.yesstr
== NULL
) {
78 warn(_("missing field 'yesstr'"));
81 if (msgs
.nostr
== NULL
) {
82 warn(_("missing field 'nostr'"));
87 * CLDR likes to add : separated lists for yesstr and nostr.
88 * Legacy Solaris code does not seem to grok this. Fix it.
90 if ((ptr
= strchr(msgs
.yesstr
, ':')) != NULL
)
92 if ((ptr
= strchr(msgs
.nostr
, ':')) != NULL
)
95 if ((f
= open_category()) == NULL
) {
99 if ((putl_category(msgs
.yesexpr
, f
) == EOF
) ||
100 (putl_category(msgs
.noexpr
, f
) == EOF
) ||
101 (putl_category(msgs
.yesstr
, f
) == EOF
) ||
102 (putl_category(msgs
.nostr
, f
) == EOF
)) {