mirror of git://sourceware.org/git/glibc.git
Update.
* locale/programs/locfile.c: Interpret I18NPATH value as base of path, extended with "/locales/".
This commit is contained in:
parent
69f155d4fc
commit
12a9fabe52
|
@ -21,6 +21,9 @@
|
||||||
* locale/programs/locfile.h: Likewise.
|
* locale/programs/locfile.h: Likewise.
|
||||||
* locale/programs/stringtrans.c: Likewise.
|
* locale/programs/stringtrans.c: Likewise.
|
||||||
|
|
||||||
|
* locale/programs/locfile.c: Interpret I18NPATH value as base of
|
||||||
|
path, extended with "/locales/".
|
||||||
|
|
||||||
1998-04-18 Philip Blundell <Philip.Blundell@pobox.com>
|
1998-04-18 Philip Blundell <Philip.Blundell@pobox.com>
|
||||||
|
|
||||||
* sysdeps/arm/memset.S: Fix off by one error.
|
* sysdeps/arm/memset.S: Fix off by one error.
|
||||||
|
|
|
@ -211,8 +211,6 @@ parse_charmap (const char *filename)
|
||||||
memset (result, '\0', sizeof (struct charset_t));
|
memset (result, '\0', sizeof (struct charset_t));
|
||||||
/* The default DEFAULT_WIDTH is 1. */
|
/* The default DEFAULT_WIDTH is 1. */
|
||||||
result->width_default = 1;
|
result->width_default = 1;
|
||||||
/* Let the user overwrite the repertoire map we use. */
|
|
||||||
result->repertoiremap = repertoiremap;
|
|
||||||
|
|
||||||
#define obstack_chunk_alloc malloc
|
#define obstack_chunk_alloc malloc
|
||||||
#define obstack_chunk_free free
|
#define obstack_chunk_free free
|
||||||
|
@ -269,17 +267,6 @@ parse_charmap (const char *filename)
|
||||||
|
|
||||||
lr_ignore_rest (cmfile, 1);
|
lr_ignore_rest (cmfile, 1);
|
||||||
|
|
||||||
/* Read the repertoire map now. */
|
|
||||||
if (result->repertoiremap == NULL)
|
|
||||||
/* This is fatal. */
|
|
||||||
error (4, 0, _("no repertoire map specified: cannot proceed"));
|
|
||||||
|
|
||||||
result->repertoire = repertoire_read (result->repertoiremap);
|
|
||||||
if (result->repertoire == NULL)
|
|
||||||
/* This is also fatal. */
|
|
||||||
error (4, errno, _("cannot read repertoire map `%s'"),
|
|
||||||
result->repertoiremap);
|
|
||||||
|
|
||||||
state = 2;
|
state = 2;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
@ -288,7 +275,7 @@ parse_charmap (const char *filename)
|
||||||
&& nowtok != tok_mb_cur_min && nowtok != tok_escape_char
|
&& nowtok != tok_mb_cur_min && nowtok != tok_escape_char
|
||||||
&& nowtok != tok_comment_char && nowtok != tok_g0esc
|
&& nowtok != tok_comment_char && nowtok != tok_g0esc
|
||||||
&& nowtok != tok_g1esc && nowtok != tok_g2esc
|
&& nowtok != tok_g1esc && nowtok != tok_g2esc
|
||||||
&& nowtok != tok_g3esc && nowtok != tok_repertoiremap)
|
&& nowtok != tok_g3esc)
|
||||||
{
|
{
|
||||||
lr_error (cmfile, _("syntax error in prolog: %s"),
|
lr_error (cmfile, _("syntax error in prolog: %s"),
|
||||||
_("illegal definition"));
|
_("illegal definition"));
|
||||||
|
@ -320,18 +307,6 @@ parse_charmap (const char *filename)
|
||||||
lr_ignore_rest (cmfile, 1);
|
lr_ignore_rest (cmfile, 1);
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
case tok_repertoiremap:
|
|
||||||
if (arg->tok != tok_ident)
|
|
||||||
goto badarg;
|
|
||||||
|
|
||||||
if (result->repertoiremap == NULL)
|
|
||||||
result->repertoiremap = obstack_copy0 (&result->mem_pool,
|
|
||||||
arg->val.str.start,
|
|
||||||
arg->val.str.len);
|
|
||||||
|
|
||||||
lr_ignore_rest (cmfile, 1);
|
|
||||||
continue;
|
|
||||||
|
|
||||||
case tok_mb_cur_max:
|
case tok_mb_cur_max:
|
||||||
case tok_mb_cur_min:
|
case tok_mb_cur_min:
|
||||||
if (arg->tok != tok_number)
|
if (arg->tok != tok_number)
|
||||||
|
|
|
@ -37,9 +37,6 @@ struct width_rule
|
||||||
|
|
||||||
struct charset_t
|
struct charset_t
|
||||||
{
|
{
|
||||||
const char *repertoiremap;
|
|
||||||
struct repertoire_t *repertoire;
|
|
||||||
|
|
||||||
const char *code_set_name;
|
const char *code_set_name;
|
||||||
int mb_cur_min;
|
int mb_cur_min;
|
||||||
int mb_cur_max;
|
int mb_cur_max;
|
||||||
|
|
|
@ -58,6 +58,7 @@ char *xstrdup (const char *__str);
|
||||||
struct localedef_t *
|
struct localedef_t *
|
||||||
locfile_read (const char *filename, struct charset_t *charset)
|
locfile_read (const char *filename, struct charset_t *charset)
|
||||||
{
|
{
|
||||||
|
struct repertoire_t *repertoire = NULL;
|
||||||
struct linereader *ldfile;
|
struct linereader *ldfile;
|
||||||
struct localedef_t *result;
|
struct localedef_t *result;
|
||||||
int state;
|
int state;
|
||||||
|
@ -80,7 +81,8 @@ locfile_read (const char *filename, struct charset_t *charset)
|
||||||
char *i18npath = __secure_getenv ("I18NPATH");
|
char *i18npath = __secure_getenv ("I18NPATH");
|
||||||
if (i18npath != NULL && *i18npath != '\0')
|
if (i18npath != NULL && *i18npath != '\0')
|
||||||
{
|
{
|
||||||
char path[strlen (filename) + 1 + strlen (i18npath) + 1];
|
char path[strlen (filename) + 1 + strlen (i18npath)
|
||||||
|
+ sizeof ("/locales/") - 1];
|
||||||
char *next;
|
char *next;
|
||||||
i18npath = strdupa (i18npath);
|
i18npath = strdupa (i18npath);
|
||||||
|
|
||||||
|
@ -88,7 +90,7 @@ locfile_read (const char *filename, struct charset_t *charset)
|
||||||
while (ldfile == NULL
|
while (ldfile == NULL
|
||||||
&& (next = strsep (&i18npath, ":")) != NULL)
|
&& (next = strsep (&i18npath, ":")) != NULL)
|
||||||
{
|
{
|
||||||
stpcpy (stpcpy (stpcpy (path, next), "/"), filename);
|
stpcpy (stpcpy (stpcpy (path, next), "/locales/"), filename);
|
||||||
|
|
||||||
ldfile = lr_open (path, locfile_hash);
|
ldfile = lr_open (path, locfile_hash);
|
||||||
}
|
}
|
||||||
|
@ -249,27 +251,132 @@ argument to `%s' must be a single character"),
|
||||||
ldfile->comment_char = *arg->val.str.start;
|
ldfile->comment_char = *arg->val.str.start;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case tok_repertoiremap:
|
||||||
|
/* We need an argument. */
|
||||||
|
arg = lr_token (ldfile, charset);
|
||||||
|
|
||||||
|
if (arg->tok != tok_ident)
|
||||||
|
{
|
||||||
|
SYNTAX_ERROR (_("bad argument"));
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (repertoiremap == NULL)
|
||||||
|
{
|
||||||
|
repertoiremap = memcpy (xmalloc (arg->val.str.len + 1),
|
||||||
|
arg->val.str.start,
|
||||||
|
arg->val.str.len);
|
||||||
|
((char *) repertoiremap)[arg->val.str.len] = '\0';
|
||||||
|
}
|
||||||
|
|
||||||
|
lr_ignore_rest (ldfile, 1);
|
||||||
|
continue;
|
||||||
|
|
||||||
case tok_lc_ctype:
|
case tok_lc_ctype:
|
||||||
|
if (repertoire == NULL)
|
||||||
|
{
|
||||||
|
/* Read the repertoire map now. */
|
||||||
|
if (repertoiremap == NULL)
|
||||||
|
/* This is fatal. */
|
||||||
|
error (4, 0,
|
||||||
|
_("no repertoire map specified: cannot proceed"));
|
||||||
|
|
||||||
|
repertoire = repertoire_read (repertoiremap);
|
||||||
|
if (repertoire == NULL)
|
||||||
|
/* This is also fatal. */
|
||||||
|
error (4, errno, _("cannot read repertoire map `%s'"),
|
||||||
|
repertoiremap);
|
||||||
|
}
|
||||||
state = 2;
|
state = 2;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case tok_lc_collate:
|
case tok_lc_collate:
|
||||||
|
if (repertoire == NULL)
|
||||||
|
{
|
||||||
|
/* Read the repertoire map now. */
|
||||||
|
if (repertoiremap == NULL)
|
||||||
|
/* This is fatal. */
|
||||||
|
error (4, 0,
|
||||||
|
_("no repertoire map specified: cannot proceed"));
|
||||||
|
|
||||||
|
repertoire = repertoire_read (repertoiremap);
|
||||||
|
if (repertoire == NULL)
|
||||||
|
/* This is also fatal. */
|
||||||
|
error (4, errno, _("cannot read repertoire map `%s'"),
|
||||||
|
repertoiremap);
|
||||||
|
}
|
||||||
state = 10;
|
state = 10;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case tok_lc_monetary:
|
case tok_lc_monetary:
|
||||||
|
if (repertoire == NULL)
|
||||||
|
{
|
||||||
|
/* Read the repertoire map now. */
|
||||||
|
if (repertoiremap == NULL)
|
||||||
|
/* This is fatal. */
|
||||||
|
error (4, 0,
|
||||||
|
_("no repertoire map specified: cannot proceed"));
|
||||||
|
|
||||||
|
repertoire = repertoire_read (repertoiremap);
|
||||||
|
if (repertoire == NULL)
|
||||||
|
/* This is also fatal. */
|
||||||
|
error (4, errno, _("cannot read repertoire map `%s'"),
|
||||||
|
repertoiremap);
|
||||||
|
}
|
||||||
state = 20;
|
state = 20;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case tok_lc_numeric:
|
case tok_lc_numeric:
|
||||||
|
if (repertoire == NULL)
|
||||||
|
{
|
||||||
|
/* Read the repertoire map now. */
|
||||||
|
if (repertoiremap == NULL)
|
||||||
|
/* This is fatal. */
|
||||||
|
error (4, 0,
|
||||||
|
_("no repertoire map specified: cannot proceed"));
|
||||||
|
|
||||||
|
repertoire = repertoire_read (repertoiremap);
|
||||||
|
if (repertoire == NULL)
|
||||||
|
/* This is also fatal. */
|
||||||
|
error (4, errno, _("cannot read repertoire map `%s'"),
|
||||||
|
repertoiremap);
|
||||||
|
}
|
||||||
state = 30;
|
state = 30;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case tok_lc_time:
|
case tok_lc_time:
|
||||||
|
if (repertoire == NULL)
|
||||||
|
{
|
||||||
|
/* Read the repertoire map now. */
|
||||||
|
if (repertoiremap == NULL)
|
||||||
|
/* This is fatal. */
|
||||||
|
error (4, 0,
|
||||||
|
_("no repertoire map specified: cannot proceed"));
|
||||||
|
|
||||||
|
repertoire = repertoire_read (repertoiremap);
|
||||||
|
if (repertoire == NULL)
|
||||||
|
/* This is also fatal. */
|
||||||
|
error (4, errno, _("cannot read repertoire map `%s'"),
|
||||||
|
repertoiremap);
|
||||||
|
}
|
||||||
state = 40;
|
state = 40;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case tok_lc_messages:
|
case tok_lc_messages:
|
||||||
|
if (repertoire == NULL)
|
||||||
|
{
|
||||||
|
/* Read the repertoire map now. */
|
||||||
|
if (repertoiremap == NULL)
|
||||||
|
/* This is fatal. */
|
||||||
|
error (4, 0,
|
||||||
|
_("no repertoire map specified: cannot proceed"));
|
||||||
|
|
||||||
|
repertoire = repertoire_read (repertoiremap);
|
||||||
|
if (repertoire == NULL)
|
||||||
|
/* This is also fatal. */
|
||||||
|
error (4, errno, _("cannot read repertoire map `%s'"),
|
||||||
|
repertoiremap);
|
||||||
|
}
|
||||||
state = 50;
|
state = 50;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
|
@ -38,68 +38,63 @@ extern void *xmalloc (size_t __n);
|
||||||
|
|
||||||
|
|
||||||
/* Simple keyword hashing for the repertoiremap. */
|
/* Simple keyword hashing for the repertoiremap. */
|
||||||
static struct repertoire_t *parse_repertoiremap (const char *filename);
|
|
||||||
static const struct keyword_t *repertoiremap_hash (const char *str, int len);
|
static const struct keyword_t *repertoiremap_hash (const char *str, int len);
|
||||||
|
|
||||||
|
|
||||||
struct repertoire_t *
|
struct repertoire_t *
|
||||||
repertoire_read (const char *filename)
|
repertoire_read (const char *filename)
|
||||||
{
|
{
|
||||||
const char *pathnfile;
|
struct linereader *repfile;
|
||||||
struct repertoire_t *result = NULL;
|
|
||||||
|
|
||||||
if (euidaccess (filename, R_OK) >= 0)
|
|
||||||
pathnfile = filename;
|
|
||||||
else if (filename[0] != '/')
|
|
||||||
{
|
|
||||||
char *cp = xmalloc (strlen (filename) + sizeof CHARMAP_PATH + 1);
|
|
||||||
stpcpy (stpcpy (stpcpy (cp, CHARMAP_PATH), "/"), filename);
|
|
||||||
|
|
||||||
pathnfile = (const char *) cp;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
pathnfile = NULL;
|
|
||||||
|
|
||||||
if (pathnfile != NULL)
|
|
||||||
{
|
|
||||||
result = parse_repertoiremap (pathnfile);
|
|
||||||
|
|
||||||
if (result == NULL && !be_quiet)
|
|
||||||
error (0, errno, _("repertoire map file `%s' not found"), filename);
|
|
||||||
}
|
|
||||||
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
static struct repertoire_t *
|
|
||||||
parse_repertoiremap (const char *filename)
|
|
||||||
{
|
|
||||||
struct linereader *cmfile;
|
|
||||||
struct repertoire_t *result;
|
struct repertoire_t *result;
|
||||||
int state;
|
int state;
|
||||||
char *from_name = NULL;
|
char *from_name = NULL;
|
||||||
char *to_name = NULL;
|
char *to_name = NULL;
|
||||||
|
|
||||||
/* Determine path. */
|
/* Determine path. */
|
||||||
cmfile = lr_open (filename, repertoiremap_hash);
|
repfile = lr_open (filename, repertoiremap_hash);
|
||||||
if (cmfile == NULL)
|
if (repfile == NULL)
|
||||||
{
|
{
|
||||||
if (strchr (filename, '/') == NULL)
|
if (strchr (filename, '/') == NULL)
|
||||||
{
|
{
|
||||||
/* Look in the systems charmap directory. */
|
char *i18npath = __secure_getenv ("I18NPATH");
|
||||||
char *buf = xmalloc (strlen (filename) + 1
|
if (i18npath != NULL && *i18npath != '\0')
|
||||||
+ sizeof (REPERTOIREMAP_PATH));
|
{
|
||||||
|
char path[strlen (filename) + 1 + strlen (i18npath)
|
||||||
|
+ sizeof ("/repertoiremaps/") - 1];
|
||||||
|
char *next;
|
||||||
|
i18npath = strdupa (i18npath);
|
||||||
|
|
||||||
stpcpy (stpcpy (stpcpy (buf, REPERTOIREMAP_PATH), "/"), filename);
|
|
||||||
cmfile = lr_open (buf, repertoiremap_hash);
|
|
||||||
|
|
||||||
if (cmfile == NULL)
|
while (repfile == NULL
|
||||||
free (buf);
|
&& (next = strsep (&i18npath, ":")) != NULL)
|
||||||
|
{
|
||||||
|
stpcpy (stpcpy (stpcpy (path, next), "/repertoiremaps/"),
|
||||||
|
filename);
|
||||||
|
|
||||||
|
repfile = lr_open (path, repertoiremap_hash);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (repfile == NULL)
|
||||||
|
{
|
||||||
|
/* Look in the systems charmap directory. */
|
||||||
|
char *buf = xmalloc (strlen (filename) + 1
|
||||||
|
+ sizeof (REPERTOIREMAP_PATH));
|
||||||
|
|
||||||
|
stpcpy (stpcpy (stpcpy (buf, REPERTOIREMAP_PATH), "/"),
|
||||||
|
filename);
|
||||||
|
repfile = lr_open (buf, repertoiremap_hash);
|
||||||
|
|
||||||
|
if (repfile == NULL)
|
||||||
|
free (buf);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (cmfile == NULL)
|
if (repfile == NULL)
|
||||||
return NULL;
|
{
|
||||||
|
error (0, errno, _("repertoire map file `%s' not found"), filename);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Allocate room for result. */
|
/* Allocate room for result. */
|
||||||
|
@ -122,7 +117,7 @@ parse_repertoiremap (const char *filename)
|
||||||
while (1)
|
while (1)
|
||||||
{
|
{
|
||||||
/* What's on? */
|
/* What's on? */
|
||||||
struct token *now = lr_token (cmfile, NULL);
|
struct token *now = lr_token (repfile, NULL);
|
||||||
enum token_t nowtok = now->tok;
|
enum token_t nowtok = now->tok;
|
||||||
struct token *arg;
|
struct token *arg;
|
||||||
|
|
||||||
|
@ -141,40 +136,40 @@ parse_repertoiremap (const char *filename)
|
||||||
if (nowtok == tok_escape_char || nowtok == tok_comment_char)
|
if (nowtok == tok_escape_char || nowtok == tok_comment_char)
|
||||||
{
|
{
|
||||||
/* We know that we need an argument. */
|
/* We know that we need an argument. */
|
||||||
arg = lr_token (cmfile, NULL);
|
arg = lr_token (repfile, NULL);
|
||||||
|
|
||||||
if (arg->tok != tok_ident)
|
if (arg->tok != tok_ident)
|
||||||
{
|
{
|
||||||
lr_error (cmfile, _("syntax error in prolog: %s"),
|
lr_error (repfile, _("syntax error in prolog: %s"),
|
||||||
_("bad argument"));
|
_("bad argument"));
|
||||||
|
|
||||||
lr_ignore_rest (cmfile, 0);
|
lr_ignore_rest (repfile, 0);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (arg->val.str.len != 1)
|
if (arg->val.str.len != 1)
|
||||||
{
|
{
|
||||||
lr_error (cmfile, _("\
|
lr_error (repfile, _("\
|
||||||
argument to <%s> must be a single character"),
|
argument to <%s> must be a single character"),
|
||||||
nowtok == tok_escape_char ? "escape_char"
|
nowtok == tok_escape_char ? "escape_char"
|
||||||
: "comment_char");
|
: "comment_char");
|
||||||
|
|
||||||
lr_ignore_rest (cmfile, 0);
|
lr_ignore_rest (repfile, 0);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (nowtok == tok_escape_char)
|
if (nowtok == tok_escape_char)
|
||||||
cmfile->escape_char = *arg->val.str.start;
|
repfile->escape_char = *arg->val.str.start;
|
||||||
else
|
else
|
||||||
cmfile->comment_char = *arg->val.str.start;
|
repfile->comment_char = *arg->val.str.start;
|
||||||
|
|
||||||
lr_ignore_rest (cmfile, 1);
|
lr_ignore_rest (repfile, 1);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (nowtok == tok_charids)
|
if (nowtok == tok_charids)
|
||||||
{
|
{
|
||||||
lr_ignore_rest (cmfile, 1);
|
lr_ignore_rest (repfile, 1);
|
||||||
|
|
||||||
state = 2;
|
state = 2;
|
||||||
continue;
|
continue;
|
||||||
|
@ -199,11 +194,11 @@ argument to <%s> must be a single character"),
|
||||||
|
|
||||||
if (nowtok != tok_bsymbol)
|
if (nowtok != tok_bsymbol)
|
||||||
{
|
{
|
||||||
lr_error (cmfile,
|
lr_error (repfile,
|
||||||
_("syntax error in repertoire map definition: %s"),
|
_("syntax error in repertoire map definition: %s"),
|
||||||
_("no symbolic name given"));
|
_("no symbolic name given"));
|
||||||
|
|
||||||
lr_ignore_rest (cmfile, 0);
|
lr_ignore_rest (repfile, 0);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -238,20 +233,20 @@ argument to <%s> must be a single character"),
|
||||||
errno = 0;
|
errno = 0;
|
||||||
if (nowtok != tok_ucs2 && nowtok != tok_ucs4)
|
if (nowtok != tok_ucs2 && nowtok != tok_ucs4)
|
||||||
{
|
{
|
||||||
lr_error (cmfile,
|
lr_error (repfile,
|
||||||
_("syntax error in repertoire map definition: %s"),
|
_("syntax error in repertoire map definition: %s"),
|
||||||
_("no <Uxxxx> or <Uxxxxxxxx> value given"));
|
_("no <Uxxxx> or <Uxxxxxxxx> value given"));
|
||||||
|
|
||||||
lr_ignore_rest (cmfile, 0);
|
lr_ignore_rest (repfile, 0);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* We've found a new valid definition. */
|
/* We've found a new valid definition. */
|
||||||
charset_new_char (cmfile, &result->char_table, 4,
|
charset_new_char (repfile, &result->char_table, 4,
|
||||||
now->val.charcode.val, from_name, to_name);
|
now->val.charcode.val, from_name, to_name);
|
||||||
|
|
||||||
/* Ignore the rest of the line. */
|
/* Ignore the rest of the line. */
|
||||||
lr_ignore_rest (cmfile, 0);
|
lr_ignore_rest (repfile, 0);
|
||||||
|
|
||||||
from_name = NULL;
|
from_name = NULL;
|
||||||
to_name = NULL;
|
to_name = NULL;
|
||||||
|
@ -261,29 +256,29 @@ argument to <%s> must be a single character"),
|
||||||
case 4:
|
case 4:
|
||||||
if (nowtok != tok_bsymbol)
|
if (nowtok != tok_bsymbol)
|
||||||
{
|
{
|
||||||
lr_error (cmfile,
|
lr_error (repfile,
|
||||||
_("syntax error in repertoire map definition: %s"),
|
_("syntax error in repertoire map definition: %s"),
|
||||||
_("no symbolic name given for end of range"));
|
_("no symbolic name given for end of range"));
|
||||||
|
|
||||||
lr_ignore_rest (cmfile, 0);
|
lr_ignore_rest (repfile, 0);
|
||||||
state = 2;
|
state = 2;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Copy the to-name in a safe place. */
|
/* Copy the to-name in a safe place. */
|
||||||
to_name = (char *) obstack_copy0 (&result->mem_pool,
|
to_name = (char *) obstack_copy0 (&result->mem_pool,
|
||||||
cmfile->token.val.str.start,
|
repfile->token.val.str.start,
|
||||||
cmfile->token.val.str.len);
|
repfile->token.val.str.len);
|
||||||
|
|
||||||
state = 5;
|
state = 5;
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
case 90:
|
case 90:
|
||||||
if (nowtok != tok_charids)
|
if (nowtok != tok_charids)
|
||||||
lr_error (cmfile, _("\
|
lr_error (repfile, _("\
|
||||||
`%1$s' definition does not end with `END %1$s'"), "CHARIDS");
|
`%1$s' definition does not end with `END %1$s'"), "CHARIDS");
|
||||||
|
|
||||||
lr_ignore_rest (cmfile, nowtok == tok_charids);
|
lr_ignore_rest (repfile, nowtok == tok_charids);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -291,9 +286,9 @@ argument to <%s> must be a single character"),
|
||||||
}
|
}
|
||||||
|
|
||||||
if (state != 2 && state != 90 && !be_quiet)
|
if (state != 2 && state != 90 && !be_quiet)
|
||||||
error (0, 0, _("%s: premature end of file"), cmfile->fname);
|
error (0, 0, _("%s: premature end of file"), repfile->fname);
|
||||||
|
|
||||||
lr_close (cmfile);
|
lr_close (repfile);
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
@ -304,8 +299,8 @@ repertoiremap_hash (const char *str, int len)
|
||||||
{
|
{
|
||||||
static const struct keyword_t wordlist[0] =
|
static const struct keyword_t wordlist[0] =
|
||||||
{
|
{
|
||||||
{"escape_char", tok_escape_char, 1},
|
{"escape_char", tok_escape_char, 0},
|
||||||
{"comment_char", tok_comment_char, 1},
|
{"comment_char", tok_comment_char, 0},
|
||||||
{"CHARIDS", tok_charids, 0},
|
{"CHARIDS", tok_charids, 0},
|
||||||
{"END", tok_end, 0},
|
{"END", tok_end, 0},
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,9 +1,82 @@
|
||||||
1998-04-30 Ulrich Drepper <drepper@cygnus.com>
|
1998-04-30 Ulrich Drepper <drepper@cygnus.com>
|
||||||
|
|
||||||
* Makefile: Install repertoire maps.
|
* Makefile: Install repertoire maps.
|
||||||
* localedata/mnemonic.ds: Moved into repertoiremaps subdir.
|
* mnemonic.ds: Moved into repertoiremaps subdir.
|
||||||
* localedata/repertoiremaps/charids.894: New file.
|
* repertoiremaps/charids.894: New file.
|
||||||
* localedata/repertoiremaps/mnemonic.ds: New file.
|
* repertoiremaps/mnemonic.ds: New file.
|
||||||
|
|
||||||
|
* sort-test.sh: Adapt for most recent changes in localedef.
|
||||||
|
* tst-fmon.sh: Likewise.
|
||||||
|
* tst-locale.sh: Likewise.
|
||||||
|
|
||||||
|
* locales/POSIX: Add repertoiremap definition.
|
||||||
|
* locales/cs_CZ: Likewise.
|
||||||
|
* locales/da_DK: Likewise.
|
||||||
|
* locales/de_AT: Likewise.
|
||||||
|
* locales/de_BE: Likewise.
|
||||||
|
* locales/de_CH: Likewise.
|
||||||
|
* locales/de_DE: Likewise.
|
||||||
|
* locales/de_LU: Likewise.
|
||||||
|
* locales/en_AU: Likewise.
|
||||||
|
* locales/en_CA: Likewise.
|
||||||
|
* locales/en_CA,2.5: Likewise.
|
||||||
|
* locales/en_DK: Likewise.
|
||||||
|
* locales/en_DK.com: Likewise.
|
||||||
|
* locales/en_GB: Likewise.
|
||||||
|
* locales/en_IE: Likewise.
|
||||||
|
* locales/en_NZ: Likewise.
|
||||||
|
* locales/en_US: Likewise.
|
||||||
|
* locales/es_AR: Likewise.
|
||||||
|
* locales/es_BO: Likewise.
|
||||||
|
* locales/es_CL: Likewise.
|
||||||
|
* locales/es_CO: Likewise.
|
||||||
|
* locales/es_DO: Likewise.
|
||||||
|
* locales/es_EC: Likewise.
|
||||||
|
* locales/es_ES: Likewise.
|
||||||
|
* locales/es_GT: Likewise.
|
||||||
|
* locales/es_HN: Likewise.
|
||||||
|
* locales/es_MX: Likewise.
|
||||||
|
* locales/es_PA: Likewise.
|
||||||
|
* locales/es_PE: Likewise.
|
||||||
|
* locales/es_PY: Likewise.
|
||||||
|
* locales/es_SV: Likewise.
|
||||||
|
* locales/es_US: Likewise.
|
||||||
|
* locales/es_UY: Likewise.
|
||||||
|
* locales/es_VE: Likewise.
|
||||||
|
* locales/et_EE: Likewise.
|
||||||
|
* locales/eu_ES: Likewise.
|
||||||
|
* locales/fi_FI: Likewise.
|
||||||
|
* locales/fo_FO: Likewise.
|
||||||
|
* locales/fr_BE: Likewise.
|
||||||
|
* locales/fr_CA: Likewise.
|
||||||
|
* locales/fr_CA,2.13: Likewise.
|
||||||
|
* locales/fr_CH: Likewise.
|
||||||
|
* locales/fr_FR: Likewise.
|
||||||
|
* locales/fr_LU: Likewise.
|
||||||
|
* locales/ga_IE: Likewise.
|
||||||
|
* locales/gr_GR: Likewise.
|
||||||
|
* locales/he_IL: Likewise.
|
||||||
|
* locales/hr_HR: Likewise.
|
||||||
|
* locales/hu_HU: Likewise.
|
||||||
|
* locales/is_IS: Likewise.
|
||||||
|
* locales/it_IT: Likewise.
|
||||||
|
* locales/iw_IL: Likewise.
|
||||||
|
* locales/kl_GL: Likewise.
|
||||||
|
* locales/lt_LT: Likewise.
|
||||||
|
* locales/lv_LV: Likewise.
|
||||||
|
* locales/nl_BE: Likewise.
|
||||||
|
* locales/nl_NL: Likewise.
|
||||||
|
* locales/no_NO: Likewise.
|
||||||
|
* locales/pl_PL: Likewise.
|
||||||
|
* locales/pt_BR: Likewise.
|
||||||
|
* locales/pt_PT: Likewise.
|
||||||
|
* locales/ro_RO: Likewise.
|
||||||
|
* locales/ru_RU: Likewise.
|
||||||
|
* locales/sl_SI: Likewise.
|
||||||
|
* locales/sv_FI: Likewise.
|
||||||
|
* locales/sv_SE: Likewise.
|
||||||
|
* locales/tr_TR: Likewise.
|
||||||
|
* locales/zh_CN: Likewise.
|
||||||
|
|
||||||
1998-04-29 Ulrich Drepper <drepper@cygnus.com>
|
1998-04-29 Ulrich Drepper <drepper@cygnus.com>
|
||||||
|
|
||||||
|
|
|
@ -21,6 +21,8 @@
|
||||||
# Distribution and use is free, also for
|
# Distribution and use is free, also for
|
||||||
# commercial purposes.
|
# commercial purposes.
|
||||||
|
|
||||||
|
repertoire_map mnemonic.ds
|
||||||
|
|
||||||
LC_CTYPE
|
LC_CTYPE
|
||||||
# The following is the POSIX Locale LC_CTYPE.
|
# The following is the POSIX Locale LC_CTYPE.
|
||||||
# "alpha" is by default "upper" and "lower"
|
# "alpha" is by default "upper" and "lower"
|
||||||
|
@ -78,132 +80,132 @@ LC_COLLATE
|
||||||
# This is the POSIX Locale definition for the LC_COLLATE category.
|
# This is the POSIX Locale definition for the LC_COLLATE category.
|
||||||
# The order is the same as in the ASCII code set.
|
# The order is the same as in the ASCII code set.
|
||||||
order_start forward
|
order_start forward
|
||||||
<NUL>
|
<NUL>
|
||||||
<SOH>
|
<SOH>
|
||||||
<STX>
|
<STX>
|
||||||
<ETX>
|
<ETX>
|
||||||
<EOT>
|
<EOT>
|
||||||
<ENQ>
|
<ENQ>
|
||||||
<ACK>
|
<ACK>
|
||||||
<alert>
|
<alert>
|
||||||
<backspace>
|
<backspace>
|
||||||
<tab>
|
<tab>
|
||||||
<newline>
|
<newline>
|
||||||
<vertical-tab>
|
<vertical-tab>
|
||||||
<form-feed>
|
<form-feed>
|
||||||
<carriage-return>
|
<carriage-return>
|
||||||
<SI>
|
<SI>
|
||||||
<SO>
|
<SO>
|
||||||
<DLE>
|
<DLE>
|
||||||
<DC1>
|
<DC1>
|
||||||
<DC2>
|
<DC2>
|
||||||
<DC3>
|
<DC3>
|
||||||
<DC4>
|
<DC4>
|
||||||
<NAK>
|
<NAK>
|
||||||
<SYN>
|
<SYN>
|
||||||
<ETB>
|
<ETB>
|
||||||
<CAN>
|
<CAN>
|
||||||
<EM>
|
<EM>
|
||||||
<SUB>
|
<SUB>
|
||||||
<ESC>
|
<ESC>
|
||||||
<IS4>
|
<IS4>
|
||||||
<IS3>
|
<IS3>
|
||||||
<IS2>
|
<IS2>
|
||||||
<IS1>
|
<IS1>
|
||||||
<space>
|
<space>
|
||||||
<exclamation-mark>
|
<exclamation-mark>
|
||||||
<quotation-mark>
|
<quotation-mark>
|
||||||
<number-sign>
|
<number-sign>
|
||||||
<dollar-sign>
|
<dollar-sign>
|
||||||
<percent-sign>
|
<percent-sign>
|
||||||
<ampersand>
|
<ampersand>
|
||||||
<apostrophe>
|
<apostrophe>
|
||||||
<left-parenthesis>
|
<left-parenthesis>
|
||||||
<right-parenthesis>
|
<right-parenthesis>
|
||||||
<asterisk>
|
<asterisk>
|
||||||
<plus-sign>
|
<plus-sign>
|
||||||
<comma>
|
<comma>
|
||||||
<hyphen>
|
<hyphen>
|
||||||
<period>
|
<period>
|
||||||
<slash>
|
<slash>
|
||||||
<zero>
|
<zero>
|
||||||
<one>
|
<one>
|
||||||
<two>
|
<two>
|
||||||
<three>
|
<three>
|
||||||
<four>
|
<four>
|
||||||
<five>
|
<five>
|
||||||
<seven>
|
<seven>
|
||||||
<eight>
|
<eight>
|
||||||
<nine>
|
<nine>
|
||||||
<colon>
|
<colon>
|
||||||
<semicolon>
|
<semicolon>
|
||||||
<less-than-sign>
|
<less-than-sign>
|
||||||
<equals-sign>
|
<equals-sign>
|
||||||
<greater-than-sign>
|
<greater-than-sign>
|
||||||
<question-mark>
|
<question-mark>
|
||||||
<commercial-at>
|
<commercial-at>
|
||||||
<A>
|
<A>
|
||||||
<B>
|
<B>
|
||||||
<C>
|
<C>
|
||||||
<D>
|
<D>
|
||||||
<E>
|
<E>
|
||||||
<F>
|
<F>
|
||||||
<G>
|
<G>
|
||||||
<H>
|
<H>
|
||||||
<I>
|
<I>
|
||||||
<J>
|
<J>
|
||||||
<K>
|
<K>
|
||||||
<L>
|
<L>
|
||||||
<M>
|
<M>
|
||||||
<N>
|
<N>
|
||||||
<O>
|
<O>
|
||||||
<P>
|
<P>
|
||||||
<Q>
|
<Q>
|
||||||
<R>
|
<R>
|
||||||
<S>
|
<S>
|
||||||
<T>
|
<T>
|
||||||
<U>
|
<U>
|
||||||
<V>
|
<V>
|
||||||
<W>
|
<W>
|
||||||
<X>
|
<X>
|
||||||
<Y>
|
<Y>
|
||||||
<Z>
|
<Z>
|
||||||
<left-square-bracket>
|
<left-square-bracket>
|
||||||
<backslash>
|
<backslash>
|
||||||
<right-square-bracket>
|
<right-square-bracket>
|
||||||
<circumflex>
|
<circumflex>
|
||||||
<underscore>
|
<underscore>
|
||||||
<grave-accent>
|
<grave-accent>
|
||||||
<a>
|
<a>
|
||||||
<b>
|
<b>
|
||||||
<c>
|
<c>
|
||||||
<d>
|
<d>
|
||||||
<e>
|
<e>
|
||||||
<f>
|
<f>
|
||||||
<g>
|
<g>
|
||||||
<h>
|
<h>
|
||||||
<i>
|
<i>
|
||||||
<j>
|
<j>
|
||||||
<k>
|
<k>
|
||||||
<l>
|
<l>
|
||||||
<m>
|
<m>
|
||||||
<n>
|
<n>
|
||||||
<o>
|
<o>
|
||||||
<p>
|
<p>
|
||||||
<q>
|
<q>
|
||||||
<r>
|
<r>
|
||||||
<s>
|
<s>
|
||||||
<t>
|
<t>
|
||||||
<u>
|
<u>
|
||||||
<v>
|
<v>
|
||||||
<w>
|
<w>
|
||||||
<y>
|
<y>
|
||||||
<z>
|
<z>
|
||||||
<left-curly-bracket>
|
<left-curly-bracket>
|
||||||
<vertical-line>
|
<vertical-line>
|
||||||
<right-curly-bracket>
|
<right-curly-bracket>
|
||||||
<tilde>
|
<tilde>
|
||||||
<DEL>
|
<DEL>
|
||||||
order_end
|
order_end
|
||||||
#
|
#
|
||||||
END LC_COLLATE
|
END LC_COLLATE
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
escape_char /
|
escape_char /
|
||||||
comment_char %
|
comment_char %
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
%
|
%
|
||||||
% Czech Language Locale for Czech
|
% Czech Language Locale for Czech
|
||||||
% Source:
|
% Source:
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
escape_char /
|
escape_char /
|
||||||
comment_char %
|
comment_char %
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
|
|
||||||
% Danish language locale for Denmark
|
% Danish language locale for Denmark
|
||||||
% Source: Danish Standards Association
|
% Source: Danish Standards Association
|
||||||
|
@ -15,7 +16,7 @@ comment_char %
|
||||||
% Date: 1996-10-15
|
% Date: 1996-10-15
|
||||||
% Application: general
|
% Application: general
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-1
|
% Charset: ISO-8859-1
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
comment_char %
|
comment_char %
|
||||||
escape_char /
|
escape_char /
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
|
|
||||||
% German Language Locale for Austria
|
% German Language Locale for Austria
|
||||||
% Source: O:sterreiches Normungsinstitut
|
% Source: O:sterreiches Normungsinstitut
|
||||||
|
@ -13,7 +14,7 @@ escape_char /
|
||||||
% Revision: 4.3
|
% Revision: 4.3
|
||||||
% Date: 1996-10-15
|
% Date: 1996-10-15
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-1
|
% Charset: ISO-8859-1
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
comment_char %
|
comment_char %
|
||||||
escape_char /
|
escape_char /
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
%
|
%
|
||||||
% German Language Locale for Belgium
|
% German Language Locale for Belgium
|
||||||
% Source: RAP
|
% Source: RAP
|
||||||
|
@ -14,7 +15,7 @@ escape_char /
|
||||||
% Revision: 4.3
|
% Revision: 4.3
|
||||||
% Date: 1996-10-15
|
% Date: 1996-10-15
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-1
|
% Charset: ISO-8859-1
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
comment_char %
|
comment_char %
|
||||||
escape_char /
|
escape_char /
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
%
|
%
|
||||||
% German Language Locale for Switzerland
|
% German Language Locale for Switzerland
|
||||||
% Source: RAP
|
% Source: RAP
|
||||||
|
@ -14,7 +15,7 @@ escape_char /
|
||||||
% Revision: 4.3
|
% Revision: 4.3
|
||||||
% Date: 1996-10-15
|
% Date: 1996-10-15
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-1
|
% Charset: ISO-8859-1
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
comment_char %
|
comment_char %
|
||||||
escape_char /
|
escape_char /
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
%
|
%
|
||||||
% German Language Locale for Germany
|
% German Language Locale for Germany
|
||||||
% Source: RAP
|
% Source: RAP
|
||||||
|
@ -14,7 +15,7 @@ escape_char /
|
||||||
% Revision: 4.3
|
% Revision: 4.3
|
||||||
% Date: 1996-10-15
|
% Date: 1996-10-15
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-1
|
% Charset: ISO-8859-1
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
comment_char %
|
comment_char %
|
||||||
escape_char /
|
escape_char /
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
%
|
%
|
||||||
% German Language Locale for Luxemburg
|
% German Language Locale for Luxemburg
|
||||||
% Source: RAP
|
% Source: RAP
|
||||||
|
@ -14,7 +15,7 @@ escape_char /
|
||||||
% Revision: 4.3
|
% Revision: 4.3
|
||||||
% Date: 1996-10-15
|
% Date: 1996-10-15
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-1
|
% Charset: ISO-8859-1
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
escape_char /
|
escape_char /
|
||||||
comment_char %
|
comment_char %
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
|
|
||||||
% English language locale for Australia
|
% English language locale for Australia
|
||||||
% Source: RAP
|
% Source: RAP
|
||||||
|
@ -14,7 +15,7 @@ comment_char %
|
||||||
% Revision: 4.3
|
% Revision: 4.3
|
||||||
% Date: 1997-11-05
|
% Date: 1997-11-05
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-1
|
% Charset: ISO-8859-1
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
escape_char /
|
escape_char /
|
||||||
comment_char %
|
comment_char %
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
|
|
||||||
% English language locale for Canada
|
% English language locale for Canada
|
||||||
% sorting according to CAN/CSA-Z243.4.1-1992
|
% sorting according to CAN/CSA-Z243.4.1-1992
|
||||||
|
@ -16,7 +17,7 @@ comment_char %
|
||||||
% Date: 1996-10-15
|
% Date: 1996-10-15
|
||||||
% Application: general
|
% Application: general
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-1
|
% Charset: ISO-8859-1
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
escape_char /
|
escape_char /
|
||||||
|
repertoiremap charids.894
|
||||||
###############################################################################
|
###############################################################################
|
||||||
# English language locale for Canada / Locale de langue anglaise pour le Canada
|
# English language locale for Canada / Locale de langue anglaise pour le Canada
|
||||||
#
|
#
|
||||||
|
@ -21,35 +22,35 @@ escape_char /
|
||||||
#
|
#
|
||||||
# Copyright (C) GIA, Canada 1994,1995
|
# Copyright (C) GIA, Canada 1994,1995
|
||||||
#
|
#
|
||||||
# Distribution and usage are free, including for commercial purposes. In all
|
# Distribution and usage are free, including for commercial purposes. In all
|
||||||
# instances, the source must be cited and the present notice reproduced. If
|
# instances, the source must be cited and the present notice reproduced. If
|
||||||
# required, only a minimal and reasonable charge is permitted for this
|
# required, only a minimal and reasonable charge is permitted for this
|
||||||
# distribution. This charge, if applicable, should be limited to the cost of
|
# distribution. This charge, if applicable, should be limited to the cost of
|
||||||
# the medium used for distribution. In all cases, no other cost shall be
|
# the medium used for distribution. In all cases, no other cost shall be
|
||||||
# associated with the use.
|
# associated with the use.
|
||||||
#
|
#
|
||||||
# This LOCALE is an integral part of CAN/CSA Z243.230 standard.
|
# This LOCALE is an integral part of CAN/CSA Z243.230 standard.
|
||||||
# Its use is not sufficient to guarantee conformance to this standard.
|
# Its use is not sufficient to guarantee conformance to this standard.
|
||||||
# Please refer to the text of the CAN/CSA Z243.230 standard to know its exact
|
# Please refer to the text of the CAN/CSA Z243.230 standard to know its exact
|
||||||
# conformance requirements.
|
# conformance requirements.
|
||||||
# This standard can be obtained from:
|
# This standard can be obtained from:
|
||||||
# Canadian Standards Association/Standards Sales
|
# Canadian Standards Association/Standards Sales
|
||||||
# 178, Rexdale Blvd., Rexdale (Toronto), ON M9W 1R3
|
# 178, Rexdale Blvd., Rexdale (Toronto), ON M9W 1R3
|
||||||
# Canada Tel.: +1 416 747 4044 Fax: +1 416 747 2475
|
# Canada Tel.: +1 416 747 4044 Fax: +1 416 747 2475
|
||||||
#
|
|
||||||
# Distribution et usage gratuits, y compris <a!> des fins commerciales. On
|
|
||||||
# se doit de citer la source, de reproduire le pr<e'>sent avertissement et de
|
|
||||||
# n'exiger, s'il y a lieu, qu'un co<u>>t minime et raisonnable se limitant au
|
|
||||||
# co<u>>t du support utilis<e'> pour la distribution. Dans tous les cas, il ne
|
|
||||||
# doit y avoir aucun co<u>>t associ<e'> <a!> l'usage.
|
|
||||||
#
|
#
|
||||||
# Cette LOCALE est une partie int<e'>grante de la norme CAN/CSA Z243.230.
|
# Distribution et usage gratuits, y compris <a!> des fins commerciales. On
|
||||||
# L'utilisation de la pr<e'>sente LOCALE ne suffit pas pour assurer la
|
# se doit de citer la source, de reproduire le pr<e'>sent avertissement et de
|
||||||
|
# n'exiger, s'il y a lieu, qu'un co<u>>t minime et raisonnable se limitant au
|
||||||
|
# co<u>>t du support utilis<e'> pour la distribution. Dans tous les cas, il ne
|
||||||
|
# doit y avoir aucun co<u>>t associ<e'> <a!> l'usage.
|
||||||
|
#
|
||||||
|
# Cette LOCALE est une partie int<e'>grante de la norme CAN/CSA Z243.230.
|
||||||
|
# L'utilisation de la pr<e'>sente LOCALE ne suffit pas pour assurer la
|
||||||
# conformit<e'> <a!> cette norme. Veuillez vous r<e'>f<e'>rer au texte de la
|
# conformit<e'> <a!> cette norme. Veuillez vous r<e'>f<e'>rer au texte de la
|
||||||
# norme CAN/CSA Z243.230 pour en conna<i/>>tre les exigences de conformit<e'>.
|
# norme CAN/CSA Z243.230 pour en conna<i/>>tre les exigences de conformit<e'>.
|
||||||
# Cette norme peut <e/>>tre obtenue aupr<e!>s de:
|
# Cette norme peut <e/>>tre obtenue aupr<e!>s de:
|
||||||
# Association canadienne de normalisation/Vente des normes
|
# Association canadienne de normalisation/Vente des normes
|
||||||
# 178, boul. Rexdale, Rexdale (Toronto), ON M9W 1R3
|
# 178, boul. Rexdale, Rexdale (Toronto), ON M9W 1R3
|
||||||
# Canada T<e'>l.: +1 416 747 4044 Fax: +1 416 747 2475
|
# Canada T<e'>l.: +1 416 747 4044 Fax: +1 416 747 2475
|
||||||
#
|
#
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
@ -163,15 +164,15 @@ order_start forward;backward;forward;forward,position
|
||||||
<ACA> # 0180
|
<ACA> # 0180
|
||||||
<GRA> # 0190
|
<GRA> # 0190
|
||||||
<BRE> # 0192 diacr. NAPLPS/6937
|
<BRE> # 0192 diacr. NAPLPS/6937
|
||||||
<CIR> # 0200
|
<CIR> # 0200
|
||||||
<CAR> # 0202 diacr. NAPLPS/6937
|
<CAR> # 0202 diacr. NAPLPS/6937
|
||||||
<RNE> # 0210
|
<RNE> # 0210
|
||||||
<REU> # 0220
|
<REU> # 0220
|
||||||
<DAC> # 0225 diacr. NAPLPS/6937
|
<DAC> # 0225 diacr. NAPLPS/6937
|
||||||
<TIL> # 0230
|
<TIL> # 0230
|
||||||
<PCT> # 0235 diacr. NAPLPS/6937
|
<PCT> # 0235 diacr. NAPLPS/6937
|
||||||
<OBL> # 0240
|
<OBL> # 0240
|
||||||
<CDI> # 0250
|
<CDI> # 0250
|
||||||
<OGO> # 0252 diacr. NAPLPS/6937
|
<OGO> # 0252 diacr. NAPLPS/6937
|
||||||
<MAC> # 0255 diacr. NAPLPS/6937
|
<MAC> # 0255 diacr. NAPLPS/6937
|
||||||
#
|
#
|
||||||
|
@ -382,7 +383,7 @@ order_start forward;backward;forward;forward,position
|
||||||
<n,> <n110>;<CDI>;<MIN>;IGNORE #0146
|
<n,> <n110>;<CDI>;<MIN>;IGNORE #0146
|
||||||
<ng> <n110><g103>;<LIG><LIG>;<MIN><MIN>;IGNORE #014B
|
<ng> <n110><g103>;<LIG><LIG>;<MIN><MIN>;IGNORE #014B
|
||||||
<o> <o111>;<BAS>;<MIN>;IGNORE #o 006F
|
<o> <o111>;<BAS>;<MIN>;IGNORE #o 006F
|
||||||
<-o> <o111>;<PCL>;<EMI>;IGNORE #§ 00BA
|
<-o> <o111>;<PCL>;<EMI>;IGNORE #§ 00BA
|
||||||
<o'> <o111>;<ACA>;<MIN>;IGNORE #¢ 00F3
|
<o'> <o111>;<ACA>;<MIN>;IGNORE #¢ 00F3
|
||||||
<o!> <o111>;<GRA>;<MIN>;IGNORE #• 00F2
|
<o!> <o111>;<GRA>;<MIN>;IGNORE #• 00F2
|
||||||
<o/>> <o111>;<CIR>;<MIN>;IGNORE #“ 00F4
|
<o/>> <o111>;<CIR>;<MIN>;IGNORE #“ 00F4
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
escape_char /
|
escape_char /
|
||||||
comment_char %
|
comment_char %
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
|
|
||||||
% English language locale for Denmark
|
% English language locale for Denmark
|
||||||
%
|
%
|
||||||
|
@ -19,7 +20,7 @@ comment_char %
|
||||||
% Date: 1996-09-18
|
% Date: 1996-09-18
|
||||||
% Application: general
|
% Application: general
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO_8859-1:1987
|
% Charset: ISO_8859-1:1987
|
||||||
% Distribution and use is free, also for
|
% Distribution and use is free, also for
|
||||||
% commercial purposes.
|
% commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
escape_char /
|
escape_char /
|
||||||
comment_char %
|
comment_char %
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
|
|
||||||
% English language locale for Denmark
|
% English language locale for Denmark
|
||||||
%
|
%
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
escape_char /
|
escape_char /
|
||||||
comment_char %
|
comment_char %
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
|
|
||||||
% English language locale for Britain
|
% English language locale for Britain
|
||||||
% Source: RAP
|
% Source: RAP
|
||||||
|
@ -14,7 +15,7 @@ comment_char %
|
||||||
% Revision: 4.3
|
% Revision: 4.3
|
||||||
% Date: 1996-10-15
|
% Date: 1996-10-15
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-1
|
% Charset: ISO-8859-1
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
escape_char /
|
escape_char /
|
||||||
comment_char %
|
comment_char %
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
|
|
||||||
% English language locale for Ireland
|
% English language locale for Ireland
|
||||||
% Source: RAP
|
% Source: RAP
|
||||||
|
@ -14,7 +15,7 @@ comment_char %
|
||||||
% Revision: 4.4
|
% Revision: 4.4
|
||||||
% Date: 1997-11-05
|
% Date: 1997-11-05
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-1
|
% Charset: ISO-8859-1
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
escape_char /
|
escape_char /
|
||||||
comment_char %
|
comment_char %
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
|
|
||||||
% English language locale for New Zealand
|
% English language locale for New Zealand
|
||||||
% Source: RAP
|
% Source: RAP
|
||||||
|
@ -14,7 +15,7 @@ comment_char %
|
||||||
% Revision: 4.3
|
% Revision: 4.3
|
||||||
% Date: 1997-11-05
|
% Date: 1997-11-05
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-1
|
% Charset: ISO-8859-1
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
escape_char /
|
escape_char /
|
||||||
comment_char %
|
comment_char %
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
|
|
||||||
% English language locale for USA
|
% English language locale for USA
|
||||||
% Source: RAP
|
% Source: RAP
|
||||||
|
@ -14,7 +15,7 @@ comment_char %
|
||||||
% Revision: 4.4
|
% Revision: 4.4
|
||||||
% Date: 1997-11-05
|
% Date: 1997-11-05
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-1
|
% Charset: ISO-8859-1
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
comment_char %
|
comment_char %
|
||||||
escape_char /
|
escape_char /
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
%
|
%
|
||||||
% Spanish language locale for Argentina
|
% Spanish language locale for Argentina
|
||||||
% Source: RAP
|
% Source: RAP
|
||||||
|
@ -15,7 +16,7 @@ escape_char /
|
||||||
% Date: 1997-11-05
|
% Date: 1997-11-05
|
||||||
% Application: general
|
% Application: general
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-1
|
% Charset: ISO-8859-1
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
comment_char %
|
comment_char %
|
||||||
escape_char /
|
escape_char /
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
%
|
%
|
||||||
% Spanish language locale for Bolivia
|
% Spanish language locale for Bolivia
|
||||||
% Source: RAP
|
% Source: RAP
|
||||||
|
@ -15,7 +16,7 @@ escape_char /
|
||||||
% Date: 1997-11-05
|
% Date: 1997-11-05
|
||||||
% Application: general
|
% Application: general
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-1
|
% Charset: ISO-8859-1
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
comment_char %
|
comment_char %
|
||||||
escape_char /
|
escape_char /
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
%
|
%
|
||||||
% Spanish language locale for Chile
|
% Spanish language locale for Chile
|
||||||
% Source: RAP
|
% Source: RAP
|
||||||
|
@ -15,7 +16,7 @@ escape_char /
|
||||||
% Date: 1997-11-05
|
% Date: 1997-11-05
|
||||||
% Application: general
|
% Application: general
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-1
|
% Charset: ISO-8859-1
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
comment_char %
|
comment_char %
|
||||||
escape_char /
|
escape_char /
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
%
|
%
|
||||||
% Spanish language locale for Colombia
|
% Spanish language locale for Colombia
|
||||||
% Source: RAP
|
% Source: RAP
|
||||||
|
@ -15,7 +16,7 @@ escape_char /
|
||||||
% Date: 1997-11-05
|
% Date: 1997-11-05
|
||||||
% Application: general
|
% Application: general
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-1
|
% Charset: ISO-8859-1
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
comment_char %
|
comment_char %
|
||||||
escape_char /
|
escape_char /
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
%
|
%
|
||||||
% Spanish language locale for Dominican Republic
|
% Spanish language locale for Dominican Republic
|
||||||
% Source: RAP
|
% Source: RAP
|
||||||
|
@ -15,7 +16,7 @@ escape_char /
|
||||||
% Date: 1997-11-05
|
% Date: 1997-11-05
|
||||||
% Application: general
|
% Application: general
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-1
|
% Charset: ISO-8859-1
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
comment_char %
|
comment_char %
|
||||||
escape_char /
|
escape_char /
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
%
|
%
|
||||||
% Spanish Language Locale for Equador
|
% Spanish Language Locale for Equador
|
||||||
% Source: RAP
|
% Source: RAP
|
||||||
|
@ -15,7 +16,7 @@ escape_char /
|
||||||
% Date: 1997-03-18
|
% Date: 1997-03-18
|
||||||
% Application: general
|
% Application: general
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-1
|
% Charset: ISO-8859-1
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
comment_char %
|
comment_char %
|
||||||
escape_char /
|
escape_char /
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
%
|
%
|
||||||
% Spanish Language Locale for Spain
|
% Spanish Language Locale for Spain
|
||||||
% Source: RAP
|
% Source: RAP
|
||||||
|
@ -15,7 +16,7 @@ escape_char /
|
||||||
% Date: 1997-03-18
|
% Date: 1997-03-18
|
||||||
% Application: general
|
% Application: general
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-1
|
% Charset: ISO-8859-1
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
comment_char %
|
comment_char %
|
||||||
escape_char /
|
escape_char /
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
%
|
%
|
||||||
% Spanish language locale for Guatemala
|
% Spanish language locale for Guatemala
|
||||||
% Source: RAP
|
% Source: RAP
|
||||||
|
@ -15,7 +16,7 @@ escape_char /
|
||||||
% Date: 1997-11-05
|
% Date: 1997-11-05
|
||||||
% Application: general
|
% Application: general
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-1
|
% Charset: ISO-8859-1
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
comment_char %
|
comment_char %
|
||||||
escape_char /
|
escape_char /
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
%
|
%
|
||||||
% Spanish language locale for Honduras
|
% Spanish language locale for Honduras
|
||||||
% Source: RAP
|
% Source: RAP
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
comment_char %
|
comment_char %
|
||||||
escape_char /
|
escape_char /
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
%
|
%
|
||||||
% Spanish language locale for Mexico
|
% Spanish language locale for Mexico
|
||||||
% Source: RAP
|
% Source: RAP
|
||||||
|
@ -15,7 +16,7 @@ escape_char /
|
||||||
% Date: 1997-11-05
|
% Date: 1997-11-05
|
||||||
% Application: general
|
% Application: general
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-1
|
% Charset: ISO-8859-1
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
comment_char %
|
comment_char %
|
||||||
escape_char /
|
escape_char /
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
%
|
%
|
||||||
% Spanish language locale for Panama
|
% Spanish language locale for Panama
|
||||||
% Source: RAP
|
% Source: RAP
|
||||||
|
@ -15,7 +16,7 @@ escape_char /
|
||||||
% Date: 1997-11-05
|
% Date: 1997-11-05
|
||||||
% Application: general
|
% Application: general
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-1
|
% Charset: ISO-8859-1
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
comment_char %
|
comment_char %
|
||||||
escape_char /
|
escape_char /
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
%
|
%
|
||||||
% Spanish language locale for Peru
|
% Spanish language locale for Peru
|
||||||
% Source: RAP
|
% Source: RAP
|
||||||
|
@ -15,7 +16,7 @@ escape_char /
|
||||||
% Date: 1997-11-05
|
% Date: 1997-11-05
|
||||||
% Application: general
|
% Application: general
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-1
|
% Charset: ISO-8859-1
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
comment_char %
|
comment_char %
|
||||||
escape_char /
|
escape_char /
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
%
|
%
|
||||||
% Spanish language locale for Paraguay
|
% Spanish language locale for Paraguay
|
||||||
% Source: RAP
|
% Source: RAP
|
||||||
|
@ -15,7 +16,7 @@ escape_char /
|
||||||
% Date: 1997-11-05
|
% Date: 1997-11-05
|
||||||
% Application: general
|
% Application: general
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-1
|
% Charset: ISO-8859-1
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
comment_char %
|
comment_char %
|
||||||
escape_char /
|
escape_char /
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
%
|
%
|
||||||
% Spanish language locale for El Salvador
|
% Spanish language locale for El Salvador
|
||||||
% Source: RAP
|
% Source: RAP
|
||||||
|
@ -15,7 +16,7 @@ escape_char /
|
||||||
% Date: 1997-11-05
|
% Date: 1997-11-05
|
||||||
% Application: general
|
% Application: general
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-1
|
% Charset: ISO-8859-1
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
comment_char %
|
comment_char %
|
||||||
escape_char /
|
escape_char /
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
%
|
%
|
||||||
% Spanish Language Locale for U.S.A.
|
% Spanish Language Locale for U.S.A.
|
||||||
% Source: RAP
|
% Source: RAP
|
||||||
|
@ -15,7 +16,7 @@ escape_char /
|
||||||
% Date: 1997-03-18
|
% Date: 1997-03-18
|
||||||
% Application: general
|
% Application: general
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-1
|
% Charset: ISO-8859-1
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
comment_char %
|
comment_char %
|
||||||
escape_char /
|
escape_char /
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
%
|
%
|
||||||
% Spanish language locale for Uruguay
|
% Spanish language locale for Uruguay
|
||||||
% Source: RAP
|
% Source: RAP
|
||||||
|
@ -15,7 +16,7 @@ escape_char /
|
||||||
% Date: 1997-11-05
|
% Date: 1997-11-05
|
||||||
% Application: general
|
% Application: general
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-1
|
% Charset: ISO-8859-1
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
comment_char %
|
comment_char %
|
||||||
escape_char /
|
escape_char /
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
%
|
%
|
||||||
% Spanish language locale for Venezuela
|
% Spanish language locale for Venezuela
|
||||||
% Source: RAP
|
% Source: RAP
|
||||||
|
@ -15,7 +16,7 @@ escape_char /
|
||||||
% Date: 1997-11-05
|
% Date: 1997-11-05
|
||||||
% Application: general
|
% Application: general
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-1
|
% Charset: ISO-8859-1
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
escape_char /
|
escape_char /
|
||||||
comment_char %
|
comment_char %
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
|
|
||||||
% Estonian language locale for Estonia
|
% Estonian language locale for Estonia
|
||||||
% according to EVS 8:1993
|
% according to EVS 8:1993
|
||||||
|
@ -16,7 +17,7 @@ comment_char %
|
||||||
% Date: 1996-10-15
|
% Date: 1996-10-15
|
||||||
% Application: general
|
% Application: general
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-1
|
% Charset: ISO-8859-1
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
comment_char %
|
comment_char %
|
||||||
escape_char /
|
escape_char /
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
%
|
%
|
||||||
% Basque Language Locale for Spain
|
% Basque Language Locale for Spain
|
||||||
% Source: RAP
|
% Source: RAP
|
||||||
|
@ -15,7 +16,7 @@ escape_char /
|
||||||
% Date: 1996-10-15
|
% Date: 1996-10-15
|
||||||
% Application: general
|
% Application: general
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-1
|
% Charset: ISO-8859-1
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
escape_char /
|
escape_char /
|
||||||
comment_char %
|
comment_char %
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
|
|
||||||
% Finnish language locale for Finland
|
% Finnish language locale for Finland
|
||||||
% sorting according to SFS 4600 (1986-06-09)
|
% sorting according to SFS 4600 (1986-06-09)
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
escape_char /
|
escape_char /
|
||||||
comment_char %
|
comment_char %
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
|
|
||||||
% Faroese language locale for Faroe Islands
|
% Faroese language locale for Faroe Islands
|
||||||
% Source: Danish Standards Association
|
% Source: Danish Standards Association
|
||||||
|
@ -14,7 +15,7 @@ comment_char %
|
||||||
% Revision: 4.3
|
% Revision: 4.3
|
||||||
% Date: 1996-10-15
|
% Date: 1996-10-15
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-1
|
% Charset: ISO-8859-1
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
comment_char %
|
comment_char %
|
||||||
escape_char /
|
escape_char /
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
%
|
%
|
||||||
% French Language Locale for Belgium
|
% French Language Locale for Belgium
|
||||||
% Source: RAP
|
% Source: RAP
|
||||||
|
@ -14,7 +15,7 @@ escape_char /
|
||||||
% Revision: 4.4
|
% Revision: 4.4
|
||||||
% Date: 1997-03-18
|
% Date: 1997-03-18
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-1
|
% Charset: ISO-8859-1
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
comment_char %
|
comment_char %
|
||||||
escape_char /
|
escape_char /
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
%
|
%
|
||||||
% French Language Locale for Canada
|
% French Language Locale for Canada
|
||||||
% Source: RAP
|
% Source: RAP
|
||||||
|
@ -14,7 +15,7 @@ escape_char /
|
||||||
% Revision: 4.3
|
% Revision: 4.3
|
||||||
% Date: 1996-10-15
|
% Date: 1996-10-15
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-1
|
% Charset: ISO-8859-1
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
escape_char /
|
escape_char /
|
||||||
|
repertoiremap charids.894
|
||||||
###########################################################################
|
###########################################################################
|
||||||
####
|
####
|
||||||
# Locale de langue fran<c,>aise pour le Canada / French lang. locale for Canada
|
# Locale de langue fran<c,>aise pour le Canada / French lang. locale for Canada
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
comment_char %
|
comment_char %
|
||||||
escape_char /
|
escape_char /
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
%
|
%
|
||||||
% French Language Locale for Switzerland
|
% French Language Locale for Switzerland
|
||||||
% Source: RAP
|
% Source: RAP
|
||||||
|
@ -14,7 +15,7 @@ escape_char /
|
||||||
% Revision: 4.3
|
% Revision: 4.3
|
||||||
% Date: 1996-10-15
|
% Date: 1996-10-15
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-1
|
% Charset: ISO-8859-1
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
comment_char %
|
comment_char %
|
||||||
escape_char /
|
escape_char /
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
%
|
%
|
||||||
% French Language Locale for France
|
% French Language Locale for France
|
||||||
% Source: RAP
|
% Source: RAP
|
||||||
|
@ -14,7 +15,7 @@ escape_char /
|
||||||
% Revision: 4.3
|
% Revision: 4.3
|
||||||
% Date: 1996-10-15
|
% Date: 1996-10-15
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-1
|
% Charset: ISO-8859-1
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
comment_char %
|
comment_char %
|
||||||
escape_char /
|
escape_char /
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
%
|
%
|
||||||
% French Language Locale for Luxemburg
|
% French Language Locale for Luxemburg
|
||||||
% Source: RAP
|
% Source: RAP
|
||||||
|
@ -14,7 +15,7 @@ escape_char /
|
||||||
% Revision: 4.3
|
% Revision: 4.3
|
||||||
% Date: 1996-10-15
|
% Date: 1996-10-15
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-1
|
% Charset: ISO-8859-1
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
escape_char /
|
escape_char /
|
||||||
comment_char %
|
comment_char %
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
% Irish language locale for Ireland
|
% Irish language locale for Ireland
|
||||||
% Source: NSAI
|
% Source: NSAI
|
||||||
% Address: Glasnevin, Dublin 9, Ireland
|
% Address: Glasnevin, Dublin 9, Ireland
|
||||||
|
@ -12,7 +13,7 @@ comment_char %
|
||||||
% Revision: 4.3
|
% Revision: 4.3
|
||||||
% Date: 1996-10-15
|
% Date: 1996-10-15
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-1
|
% Charset: ISO-8859-1
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
comment_char %
|
comment_char %
|
||||||
escape_char /
|
escape_char /
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
%
|
%
|
||||||
% Greek Language Locale for Greece
|
% Greek Language Locale for Greece
|
||||||
% Source: RAP
|
% Source: RAP
|
||||||
|
@ -14,7 +15,7 @@ escape_char /
|
||||||
% Revision: 4.3
|
% Revision: 4.3
|
||||||
% Date: 1996-10-15
|
% Date: 1996-10-15
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-7
|
% Charset: ISO-8859-7
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
comment_char %
|
comment_char %
|
||||||
escape_char /
|
escape_char /
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
%
|
%
|
||||||
% Hebrew Language Locale for Israel
|
% Hebrew Language Locale for Israel
|
||||||
% Source: RAP
|
% Source: RAP
|
||||||
|
@ -14,7 +15,7 @@ escape_char /
|
||||||
% Revision: 4.4
|
% Revision: 4.4
|
||||||
% Date: 1997-03-18
|
% Date: 1997-03-18
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-8
|
% Charset: ISO-8859-8
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
comment_char %
|
comment_char %
|
||||||
escape_char /
|
escape_char /
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
%
|
%
|
||||||
% Croatian Language Locale for Croatia
|
% Croatian Language Locale for Croatia
|
||||||
% Source: USM/MZT
|
% Source: USM/MZT
|
||||||
|
@ -15,7 +16,7 @@ escape_char /
|
||||||
% Date: 1997-04-17
|
% Date: 1997-04-17
|
||||||
% Application: general
|
% Application: general
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-2
|
% Charset: ISO-8859-2
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
comment_char %
|
comment_char %
|
||||||
escape_char /
|
escape_char /
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
%
|
%
|
||||||
% Hungarian Language Locale for Hungary
|
% Hungarian Language Locale for Hungary
|
||||||
% Source: RAP
|
% Source: RAP
|
||||||
|
@ -15,7 +16,7 @@ escape_char /
|
||||||
% Date: 1996-10-15
|
% Date: 1996-10-15
|
||||||
% Application: general
|
% Application: general
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-2
|
% Charset: ISO-8859-2
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
comment_char %
|
comment_char %
|
||||||
escape_char /
|
escape_char /
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
|
|
||||||
% Icelandic Language Locale for Iceland
|
% Icelandic Language Locale for Iceland
|
||||||
% Source: Stadlarad I'slands
|
% Source: Stadlarad I'slands
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
comment_char %
|
comment_char %
|
||||||
escape_char /
|
escape_char /
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
%
|
%
|
||||||
% Italian Language Locale for Italy
|
% Italian Language Locale for Italy
|
||||||
% Source: RAP
|
% Source: RAP
|
||||||
|
@ -14,7 +15,7 @@ escape_char /
|
||||||
% Revision: 4.3
|
% Revision: 4.3
|
||||||
% Date: 1996-10-15
|
% Date: 1996-10-15
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-1
|
% Charset: ISO-8859-1
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
comment_char %
|
comment_char %
|
||||||
escape_char /
|
escape_char /
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
%
|
%
|
||||||
% Hebrew Language Locale for Israel
|
% Hebrew Language Locale for Israel
|
||||||
% Source: RAP
|
% Source: RAP
|
||||||
|
@ -14,7 +15,7 @@ escape_char /
|
||||||
% Revision: 4.4
|
% Revision: 4.4
|
||||||
% Date: 1997-03-18
|
% Date: 1997-03-18
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-8
|
% Charset: ISO-8859-8
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
escape_char /
|
escape_char /
|
||||||
comment_char %
|
comment_char %
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
|
|
||||||
% Greenlandic language locale for Greenland
|
% Greenlandic language locale for Greenland
|
||||||
% Source: Danish Standards Association
|
% Source: Danish Standards Association
|
||||||
|
@ -14,7 +15,7 @@ comment_char %
|
||||||
% Revision: 4.3
|
% Revision: 4.3
|
||||||
% Date: 1996-10-15
|
% Date: 1996-10-15
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-1
|
% Charset: ISO-8859-1
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
escape_char /
|
escape_char /
|
||||||
comment_char %
|
comment_char %
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
|
|
||||||
% Lithuanian language locale for Lithuania
|
% Lithuanian language locale for Lithuania
|
||||||
% Created on January 30, 1992
|
% Created on January 30, 1992
|
||||||
|
@ -25,7 +26,7 @@ comment_char %
|
||||||
% Date: 1995-08-28
|
% Date: 1995-08-28
|
||||||
% Application: general
|
% Application: general
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: BALTIC
|
% Charset: BALTIC
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
escape_char /
|
escape_char /
|
||||||
comment_char %
|
comment_char %
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
|
|
||||||
% Latvian language locale for Latvia
|
% Latvian language locale for Latvia
|
||||||
% Source: Latvian Standard LVS 24-93
|
% Source: Latvian Standard LVS 24-93
|
||||||
|
@ -15,7 +16,7 @@ comment_char %
|
||||||
% Date: 1995-08-28
|
% Date: 1995-08-28
|
||||||
% Application: general
|
% Application: general
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: BALTIC
|
% Charset: BALTIC
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
comment_char %
|
comment_char %
|
||||||
escape_char /
|
escape_char /
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
%
|
%
|
||||||
% Dutch Language Locale for Belgium
|
% Dutch Language Locale for Belgium
|
||||||
% Source: RAP
|
% Source: RAP
|
||||||
|
@ -14,7 +15,7 @@ escape_char /
|
||||||
% Revision: 4.3
|
% Revision: 4.3
|
||||||
% Date: 1996-10-15
|
% Date: 1996-10-15
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-1
|
% Charset: ISO-8859-1
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
comment_char %
|
comment_char %
|
||||||
escape_char /
|
escape_char /
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
%
|
%
|
||||||
% Dutch Language Locale for the Netherlands
|
% Dutch Language Locale for the Netherlands
|
||||||
% Source: RAP
|
% Source: RAP
|
||||||
|
@ -14,7 +15,7 @@ escape_char /
|
||||||
% Revision: 4.3
|
% Revision: 4.3
|
||||||
% Date: 1996-10-15
|
% Date: 1996-10-15
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-1
|
% Charset: ISO-8859-1
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
escape_char /
|
escape_char /
|
||||||
comment_char %
|
comment_char %
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
|
|
||||||
% Norwegian language locale for Norway
|
% Norwegian language locale for Norway
|
||||||
% Source: Norsk Standardiseringsforbund
|
% Source: Norsk Standardiseringsforbund
|
||||||
|
@ -15,7 +16,7 @@ comment_char %
|
||||||
% Date: 1996-10-15
|
% Date: 1996-10-15
|
||||||
% Application: general
|
% Application: general
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-1
|
% Charset: ISO-8859-1
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
comment_char %
|
comment_char %
|
||||||
escape_char /
|
escape_char /
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
%
|
%
|
||||||
% Polish Language Locale for Poland
|
% Polish Language Locale for Poland
|
||||||
% Source: RAP
|
% Source: RAP
|
||||||
|
@ -15,7 +16,7 @@ escape_char /
|
||||||
% Date: 1997-03-18
|
% Date: 1997-03-18
|
||||||
% Application: general
|
% Application: general
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-2
|
% Charset: ISO-8859-2
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
comment_char %
|
comment_char %
|
||||||
escape_char /
|
escape_char /
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
%
|
%
|
||||||
% Portuguese Language Locale for Brasil
|
% Portuguese Language Locale for Brasil
|
||||||
% Source: RAP
|
% Source: RAP
|
||||||
|
@ -14,7 +15,7 @@ escape_char /
|
||||||
% Revision: 4.4
|
% Revision: 4.4
|
||||||
% Date: 1997-03-19
|
% Date: 1997-03-19
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-1
|
% Charset: ISO-8859-1
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
comment_char %
|
comment_char %
|
||||||
escape_char /
|
escape_char /
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
%
|
%
|
||||||
% Portuguese Language Locale for Portugal
|
% Portuguese Language Locale for Portugal
|
||||||
% Source: RAP
|
% Source: RAP
|
||||||
|
@ -14,7 +15,7 @@ escape_char /
|
||||||
% Revision: 4.3
|
% Revision: 4.3
|
||||||
% Date: 1996-10-15
|
% Date: 1996-10-15
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-1
|
% Charset: ISO-8859-1
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
comment_char %
|
comment_char %
|
||||||
escape_char /
|
escape_char /
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
%
|
%
|
||||||
% Romanian Language Locale for Romania
|
% Romanian Language Locale for Romania
|
||||||
% Source: RAP
|
% Source: RAP
|
||||||
|
@ -15,7 +16,7 @@ escape_char /
|
||||||
% Date: 1996-10-15
|
% Date: 1996-10-15
|
||||||
% Application: general
|
% Application: general
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-2
|
% Charset: ISO-8859-2
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
comment_char %
|
comment_char %
|
||||||
escape_char /
|
escape_char /
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
%
|
%
|
||||||
% Russian Language Locale for Russia
|
% Russian Language Locale for Russia
|
||||||
% Source: RAP
|
% Source: RAP
|
||||||
|
@ -15,7 +16,7 @@ escape_char /
|
||||||
% Date: 1996-10-15
|
% Date: 1996-10-15
|
||||||
% Application: general
|
% Application: general
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-5
|
% Charset: ISO-8859-5
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
comment_char %
|
comment_char %
|
||||||
escape_char /
|
escape_char /
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
%
|
%
|
||||||
% Slovenian language locale for Slovenia
|
% Slovenian language locale for Slovenia
|
||||||
% Source: USM/MZT
|
% Source: USM/MZT
|
||||||
|
@ -15,7 +16,7 @@ escape_char /
|
||||||
% Date: 1997-11-05
|
% Date: 1997-11-05
|
||||||
% Application: general
|
% Application: general
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-2
|
% Charset: ISO-8859-2
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
comment_char %
|
comment_char %
|
||||||
escape_char /
|
escape_char /
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
%
|
%
|
||||||
% Swedish Language Locale for Finland
|
% Swedish Language Locale for Finland
|
||||||
% Source: RAP
|
% Source: RAP
|
||||||
|
@ -14,7 +15,7 @@ escape_char /
|
||||||
% Revision: 4.3
|
% Revision: 4.3
|
||||||
% Date: 1996-10-15
|
% Date: 1996-10-15
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-1
|
% Charset: ISO-8859-1
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
escape_char /
|
escape_char /
|
||||||
comment_char %
|
comment_char %
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
|
|
||||||
% Swedish language locale for Sweden
|
% Swedish language locale for Sweden
|
||||||
% Source: RAP
|
% Source: RAP
|
||||||
|
@ -15,7 +16,7 @@ comment_char %
|
||||||
% Date: 1997-03-18
|
% Date: 1997-03-18
|
||||||
% Application: general
|
% Application: general
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-1
|
% Charset: ISO-8859-1
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
comment_char %
|
comment_char %
|
||||||
escape_char /
|
escape_char /
|
||||||
|
repertoiremap mnemonic.ds
|
||||||
%
|
%
|
||||||
% Turkish Language Locale for Turkey
|
% Turkish Language Locale for Turkey
|
||||||
% Source: RAP
|
% Source: RAP
|
||||||
|
@ -15,7 +16,7 @@ escape_char /
|
||||||
% Date: 1997-03-18
|
% Date: 1997-03-18
|
||||||
% Application: general
|
% Application: general
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
% Repertoiremap: mnemonic.ds
|
||||||
% Charset: ISO-8859-9
|
% Charset: ISO-8859-9
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -14,7 +14,6 @@ escape_char /
|
||||||
% Revision: 4.3
|
% Revision: 4.3
|
||||||
% Date: 1997-11-09
|
% Date: 1997-11-09
|
||||||
% Users: general
|
% Users: general
|
||||||
% Repertoiremap: mnemonic,ds
|
|
||||||
% Charset: GB_2312-80
|
% Charset: GB_2312-80
|
||||||
% Distribution and use is free, also
|
% Distribution and use is free, also
|
||||||
% for commercial purposes.
|
% for commercial purposes.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<escape_char> /
|
escape_char /
|
||||||
# Charids refering to ISO 10646/Correspondance des caract<e!>res avec ISO 10646
|
# Charids refering to ISO 10646/Correspondance des caract<e!>res avec ISO 10646
|
||||||
# Version: 1994-08-25
|
# Version: 1994-08-25
|
||||||
#<comment_char> #
|
#comment_char #
|
||||||
CHARIDS
|
CHARIDS
|
||||||
<NUL> <U0000> # NULL / NUL
|
<NUL> <U0000> # NULL / NUL
|
||||||
<SOH> <U0001> # START OF HEADING / D<E'>BUT D'ENT<E/>>TE
|
<SOH> <U0001> # START OF HEADING / D<E'>BUT D'ENT<E/>>TE
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<escape_char> /
|
escape_char /
|
||||||
<NUL> <U0000> NULL (NUL)
|
<NUL> <U0000> NULL (NUL)
|
||||||
<SOH> <U0001> START OF HEADING (SOH)
|
<SOH> <U0001> START OF HEADING (SOH)
|
||||||
<STX> <U0002> START OF TEXT (STX)
|
<STX> <U0002> START OF TEXT (STX)
|
||||||
|
|
|
@ -11,7 +11,7 @@ for l in $lang; do
|
||||||
cns=`echo $l | sed 's/\(.*\)[.][^.]*/\1/'`
|
cns=`echo $l | sed 's/\(.*\)[.][^.]*/\1/'`
|
||||||
cn=locales/$cns
|
cn=locales/$cns
|
||||||
fn=charmaps/`echo $l | sed 's/.*[.]\([^.]*\)/\1/'`
|
fn=charmaps/`echo $l | sed 's/.*[.]\([^.]*\)/\1/'`
|
||||||
I18NPATH=./locales ${common_objpfx}elf/ld.so --library-path $common_objpfx \
|
I18NPATH=. ${common_objpfx}elf/ld.so --library-path $common_objpfx \
|
||||||
${common_objpfx}locale/localedef --quiet -i $cn -f $fn \
|
${common_objpfx}locale/localedef --quiet -i $cn -f $fn \
|
||||||
${common_objpfx}localedata/$cns
|
${common_objpfx}localedata/$cns
|
||||||
done
|
done
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
# Testing the implementation of strfmon(3).
|
# Testing the implementation of strfmon(3).
|
||||||
# Copyright (C) 1996, 1997 Free Software Foundation, Inc.
|
# Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc.
|
||||||
# This file is part of the GNU C Library.
|
# This file is part of the GNU C Library.
|
||||||
# Contributed by Jochen Hein <jochen.hein@delphi.central.de>, 1997.
|
# Contributed by Jochen Hein <jochen.hein@delphi.central.de>, 1997.
|
||||||
#
|
#
|
||||||
|
@ -32,7 +32,7 @@ for l in $lang; do
|
||||||
cns=`echo $l | sed 's/\(.*\)[.][^.]*/\1/'`
|
cns=`echo $l | sed 's/\(.*\)[.][^.]*/\1/'`
|
||||||
cn=locales/$cns
|
cn=locales/$cns
|
||||||
fn=charmaps/`echo $l | sed 's/.*[.]\([^.]*\)/\1/'`
|
fn=charmaps/`echo $l | sed 's/.*[.]\([^.]*\)/\1/'`
|
||||||
I18NPATH=./locales \
|
I18NPATH=. \
|
||||||
${common_objpfx}elf/ld.so --library-path $common_objpfx \
|
${common_objpfx}elf/ld.so --library-path $common_objpfx \
|
||||||
${common_objpfx}locale/localedef \
|
${common_objpfx}locale/localedef \
|
||||||
--quiet -i $cn -f $fn ${common_objpfx}localedata/$cns
|
--quiet -i $cn -f $fn ${common_objpfx}localedata/$cns
|
||||||
|
|
|
@ -26,10 +26,11 @@ test_locale ()
|
||||||
charmap=$1
|
charmap=$1
|
||||||
input=$2
|
input=$2
|
||||||
out=$3
|
out=$3
|
||||||
I18NPATH=./locales \
|
rep=$4
|
||||||
|
I18NPATH=. \
|
||||||
${common_objpfx}elf/ld.so --library-path $common_objpfx \
|
${common_objpfx}elf/ld.so --library-path $common_objpfx \
|
||||||
${common_objpfx}locale/localedef --quiet -c -f $charmap -i $input \
|
${common_objpfx}locale/localedef --quiet -c -f $charmap -i $input \
|
||||||
${common_objpfx}localedata/$out
|
--repertoire-map $rep ${common_objpfx}localedata/$out
|
||||||
|
|
||||||
if [ $? -ne 0 ]; then
|
if [ $? -ne 0 ]; then
|
||||||
echo "Charmap: \"${charmap}\" Inputfile: \"${input}\"" \
|
echo "Charmap: \"${charmap}\" Inputfile: \"${input}\"" \
|
||||||
|
@ -40,13 +41,13 @@ test_locale ()
|
||||||
|
|
||||||
# I take this out for now since it is a known problem
|
# I take this out for now since it is a known problem
|
||||||
# (see [PR libc/229] and [PR libc/454]. --drepper
|
# (see [PR libc/229] and [PR libc/454]. --drepper
|
||||||
# test_locale IBM437 de_DE de_DE.437
|
# test_locale IBM437 de_DE de_DE.437 mnemonic.ds
|
||||||
test_locale tests/test1.cm tests/test1.def test1
|
test_locale tests/test1.cm tests/test1.def test1 mnemonic.ds
|
||||||
test_locale tests/test2.cm tests/test2.def test2
|
test_locale tests/test2.cm tests/test2.def test2 mnemonic.ds
|
||||||
test_locale tests/test3.cm tests/test3.def test3
|
test_locale tests/test3.cm tests/test3.def test3 mnemonic.ds
|
||||||
test_locale tests/test4.cm tests/test4.def test4
|
test_locale tests/test4.cm tests/test4.def test4 mnemonic.ds
|
||||||
# I know that multi-byte charsets do not yet work. --drepper
|
# I know that multi-byte charsets do not yet work. --drepper
|
||||||
# test_locale tests/test5.cm tests/test5.def test5
|
# test_locale tests/test5.cm tests/test5.def test5 mnemonic.ds
|
||||||
|
|
||||||
exit 0
|
exit 0
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue