1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
|
/* Localization of proper names.
Copyright (C) 2006-2007 Free Software Foundation, Inc.
Written by Bruno Haible <bruno@clisp.org>, 2006.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
#include <config.h>
/* Specification. */
#include "propername.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#if HAVE_ICONV
# include <iconv.h>
#endif
#include "localcharset.h"
#include "c-strcase.h"
#include "xstriconv.h"
#include "c-strstr.h"
#include "xalloc.h"
#include "gettext.h"
/* Return the localization of NAME. NAME is written in ASCII. */
const char *
proper_name (const char *name)
{
/* See whether there is a translation. */
const char *translation = gettext (name);
if (translation != name)
{
/* See whether the translation contains the original name. */
if (mbsstr (translation, name) != NULL)
return translation;
else
{
/* Return "TRANSLATION (NAME)". */
char *result =
XNMALLOC (strlen (translation) + 2 + strlen (name) + 1 + 1, char);
sprintf (result, "%s (%s)", translation, name);
return result;
}
}
else
return name;
}
/* Return the localization of a name whose original writing is not ASCII.
NAME_UTF8 is the real name, written in UTF-8 with octal or hexadecimal
escape sequences. NAME_ASCII is a fallback written only with ASCII
characters. */
const char *
proper_name_utf8 (const char *name_ascii, const char *name_utf8)
{
/* See whether there is a translation. */
const char *translation = gettext (name_ascii);
/* Try to convert NAME_UTF8 to the locale encoding. */
const char *locale_code = locale_charset ();
char *alloc_name_converted = NULL;
char *alloc_name_converted_translit = NULL;
const char *name_converted = NULL;
const char *name_converted_translit = NULL;
const char *name;
if (c_strcasecmp (locale_code, "UTF-8") != 0)
{
#if HAVE_ICONV
name_converted = alloc_name_converted =
xstr_iconv (name_utf8, "UTF-8", locale_code);
# if (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 2) || __GLIBC__ > 2 \
|| _LIBICONV_VERSION >= 0x0105
{
size_t len = strlen (locale_code);
char *locale_code_translit = XNMALLOC (len + 10 + 1, char);
memcpy (locale_code_translit, locale_code, len);
memcpy (locale_code_translit + len, "//TRANSLIT", 10 + 1);
name_converted_translit = alloc_name_converted_translit =
xstr_iconv (name_utf8, "UTF-8", locale_code_translit);
free (locale_code_translit);
}
# endif
#endif
}
else
{
name_converted = name_utf8;
name_converted_translit = name_utf8;
}
/* The name in locale encoding. */
name = (name_converted != NULL ? name_converted :
name_converted_translit != NULL ? name_converted_translit :
name_ascii);
if (translation != name_ascii)
{
/* See whether the translation contains the original name.
The multibyte-aware mbsstr() is not absolutely necessary here. */
if (c_strstr (translation, name_ascii) != NULL
|| (name_converted != NULL
&& mbsstr (translation, name_converted) != NULL)
|| (name_converted_translit != NULL
&& mbsstr (translation, name_converted_translit) != NULL))
{
if (alloc_name_converted != NULL)
free (alloc_name_converted);
if (alloc_name_converted_translit != NULL)
free (alloc_name_converted_translit);
return translation;
}
else
{
/* Return "TRANSLATION (NAME)". */
char *result =
XNMALLOC (strlen (translation) + 2 + strlen (name) + 1 + 1, char);
sprintf (result, "%s (%s)", translation, name);
if (alloc_name_converted != NULL)
free (alloc_name_converted);
if (alloc_name_converted_translit != NULL)
free (alloc_name_converted_translit);
return result;
}
}
else
{
if (alloc_name_converted != NULL && alloc_name_converted != name)
free (alloc_name_converted);
if (alloc_name_converted_translit != NULL
&& alloc_name_converted_translit != name)
free (alloc_name_converted_translit);
return name;
}
}
|