mirror of
https://sourceware.org/git/glibc.git
synced 2025-09-01 05:02:03 +03:00
Update.
1999-10-06 Ulrich Drepper <drepper@cygnus.com> * locale/programs/ld-ctype.c (ctype_read): Fix typos in last patch. 1999-10-05 Andreas Jaeger <aj@suse.de> * locale/programs/ld-identification.c: Fix typo in comment. * locale/programs/ld-messages.c: Likewise. * locale/programs/ld-monetary.c: Likewise. * locale/programs/ld-name.c: Likewise. * locale/programs/ld-collate.c (read_lc_collate): Fix typo in comment. (collate_read): Remove unnecessary comparisons with ignore_content. * locale/programs/ld-ctype.c (ctype_finish): Loop only over actual assigned elements. (ctype_read): Remove unnecessary comparisons with ignore_content. Fix typos in comments. * locale/programs/ld-address.c (STR_ELEM): Remove unnecessary comparisons with ignore_content. * po/cs.po: Update.
This commit is contained in:
24
ChangeLog
24
ChangeLog
@@ -1,5 +1,29 @@
|
||||
1999-10-06 Ulrich Drepper <drepper@cygnus.com>
|
||||
|
||||
* locale/programs/ld-ctype.c (ctype_read): Fix typos in last patch.
|
||||
|
||||
1999-10-05 Andreas Jaeger <aj@suse.de>
|
||||
|
||||
* locale/programs/ld-identification.c: Fix typo in comment.
|
||||
* locale/programs/ld-messages.c: Likewise.
|
||||
* locale/programs/ld-monetary.c: Likewise.
|
||||
* locale/programs/ld-name.c: Likewise.
|
||||
|
||||
* locale/programs/ld-collate.c (read_lc_collate): Fix typo in comment.
|
||||
(collate_read): Remove unnecessary comparisons with ignore_content.
|
||||
|
||||
* locale/programs/ld-ctype.c (ctype_finish): Loop only over actual
|
||||
assigned elements.
|
||||
(ctype_read): Remove unnecessary comparisons with ignore_content.
|
||||
Fix typos in comments.
|
||||
|
||||
* locale/programs/ld-address.c (STR_ELEM): Remove unnecessary
|
||||
comparisons with ignore_content.
|
||||
|
||||
1999-10-05 Ulrich Drepper <drepper@cygnus.com>
|
||||
|
||||
* po/cs.po: Update.
|
||||
|
||||
* time/time.h: Move __gmtime_r declaration to ...
|
||||
* include/time.h: ...here.
|
||||
|
||||
|
@@ -453,7 +453,7 @@ address_read (struct linereader *ldfile, struct localedef_t *result,
|
||||
if (nowtok == tok_eof)
|
||||
break;
|
||||
|
||||
/* Ingore empty lines. */
|
||||
/* Ignore empty lines. */
|
||||
if (nowtok == tok_eol)
|
||||
{
|
||||
now = lr_token (ldfile, charmap, NULL);
|
||||
|
@@ -678,7 +678,7 @@ collate_read (struct linereader *ldfile, struct localedef_t *result,
|
||||
else
|
||||
{
|
||||
free (arg->val.str.startmb);
|
||||
lr_ignore_rest (ldfile, 1);
|
||||
lr_ignore_rest (ldfile, 0);
|
||||
}
|
||||
break;
|
||||
|
||||
@@ -3135,7 +3135,7 @@ read_lc_collate (struct linereader *ldfile, struct localedef_t *result,
|
||||
if (nowtok == tok_eof)
|
||||
break;
|
||||
|
||||
/* Ingore empty lines. */
|
||||
/* Ignore empty lines. */
|
||||
if (nowtok == tok_eol)
|
||||
{
|
||||
now = lr_token (ldfile, charmap, NULL);
|
||||
|
@@ -347,7 +347,7 @@ ctype_finish (struct localedef_t *locale, struct charmap_t *charmap)
|
||||
set_class_defaults (ctype, charmap, ctype->repertoire);
|
||||
|
||||
/* Check according to table. */
|
||||
for (cnt = 0; cnt < ctype->class_collection_max; ++cnt)
|
||||
for (cnt = 0; cnt < ctype->class_collection_act; ++cnt)
|
||||
{
|
||||
uint32_t tmp = ctype->class_collection[cnt];
|
||||
|
||||
@@ -549,7 +549,7 @@ character '%s' in class `%s' must not be in class `%s'"),
|
||||
}
|
||||
|
||||
/* Check the input digits. There must be a multiple of ten available.
|
||||
In each group I could be that one or the other character is missing.
|
||||
In each group it could be that one or the other character is missing.
|
||||
In this case the whole group must be removed. */
|
||||
cnt = 0;
|
||||
while (cnt < ctype->mbdigits_act)
|
||||
@@ -610,7 +610,7 @@ no input digits defined and none of the standard names in the charmap"));
|
||||
}
|
||||
|
||||
/* Check the wide character input digits. There must be a multiple
|
||||
of ten available. In each group I could be that one or the other
|
||||
of ten available. In each group it could be that one or the other
|
||||
character is missing. In this case the whole group must be
|
||||
removed. */
|
||||
cnt = 0;
|
||||
@@ -998,7 +998,7 @@ implementation limit: no more than %d character maps allowed"),
|
||||
|
||||
|
||||
/* We have to be prepared that TABLE, MAX, and ACT can be NULL. This
|
||||
is possible if we only want ot extend the name array. */
|
||||
is possible if we only want to extend the name array. */
|
||||
static uint32_t *
|
||||
find_idx (struct locale_ctype_t *ctype, uint32_t **table, size_t *max,
|
||||
size_t *act, uint32_t idx)
|
||||
@@ -1911,7 +1911,10 @@ with character code range values one must use the absolute ellipsis `...'"));
|
||||
/* Ignore the rest of the line if we don't need the input of
|
||||
this line. */
|
||||
if (ignore_content)
|
||||
{
|
||||
lr_ignore_rest (ldfile, 0);
|
||||
break;
|
||||
}
|
||||
|
||||
handle_tok_digit:
|
||||
class_bit = _ISwdigit;
|
||||
@@ -2803,7 +2806,7 @@ allocate_arrays (struct locale_ctype_t *ctype, struct charmap_t *charmap,
|
||||
We use a very trivial hashing function to store the sparse
|
||||
table. CH % TABSIZE is used as an index. To solve multiple hits
|
||||
we have N planes. This guarantees a fixed search time for a
|
||||
character [N / 2]. In the following code we determine the minmum
|
||||
character [N / 2]. In the following code we determine the minimum
|
||||
value for TABSIZE * N, where TABSIZE >= 256. */
|
||||
size_t min_total = UINT_MAX;
|
||||
size_t act_size = 256;
|
||||
|
@@ -328,7 +328,7 @@ identification_read (struct linereader *ldfile, struct localedef_t *result,
|
||||
if (nowtok == tok_eof)
|
||||
break;
|
||||
|
||||
/* Ingore empty lines. */
|
||||
/* Ignore empty lines. */
|
||||
if (nowtok == tok_eol)
|
||||
{
|
||||
now = lr_token (ldfile, charmap, NULL);
|
||||
|
@@ -269,7 +269,7 @@ messages_read (struct linereader *ldfile, struct localedef_t *result,
|
||||
if (nowtok == tok_eof)
|
||||
break;
|
||||
|
||||
/* Ingore empty lines. */
|
||||
/* Ignore empty lines. */
|
||||
if (nowtok == tok_eol)
|
||||
{
|
||||
now = lr_token (ldfile, charmap, NULL);
|
||||
|
@@ -614,7 +614,7 @@ monetary_read (struct linereader *ldfile, struct localedef_t *result,
|
||||
if (nowtok == tok_eof)
|
||||
break;
|
||||
|
||||
/* Ingore empty lines. */
|
||||
/* Ignore empty lines. */
|
||||
if (nowtok == tok_eol)
|
||||
{
|
||||
now = lr_token (ldfile, charmap, NULL);
|
||||
|
@@ -250,7 +250,7 @@ name_read (struct linereader *ldfile, struct localedef_t *result,
|
||||
if (nowtok == tok_eof)
|
||||
break;
|
||||
|
||||
/* Ingore empty lines. */
|
||||
/* Ignore empty lines. */
|
||||
if (nowtok == tok_eol)
|
||||
{
|
||||
now = lr_token (ldfile, charmap, NULL);
|
||||
|
37
po/cs.po
37
po/cs.po
@@ -1,6 +1,6 @@
|
||||
# Czech translations for GNU libc.
|
||||
# Copyright (C) 1997 Free Software Foundation, Inc.
|
||||
# Vladimir Michl <Vladimir.Michl@upol.cz>, 1997.
|
||||
# Vladimir Michl <Vladimir.Michl@seznam.cz>, 1997.
|
||||
#
|
||||
# Thanks to:
|
||||
# Petr Kolar <Petr.Kolar@vslib.cz>
|
||||
@@ -20,8 +20,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: libc 2.1\n"
|
||||
"POT-Creation-Date: 1998-11-28 09:29-0800\n"
|
||||
"PO-Revision-Date: 1999-01-14 18:57+01:00\n"
|
||||
"Last-Translator: Vladimir Michl <Vladimir.Michl@upol.cz>\n"
|
||||
"PO-Revision-Date: 1999-09-26 21:59+02:00\n"
|
||||
"Last-Translator: Vladimir Michl <Vladimir.Michl@seznam.cz>\n"
|
||||
"Language-Team: Czech <cs@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ISO-8859-2\n"
|
||||
@@ -133,10 +133,10 @@ msgstr "Zaps
|
||||
|
||||
#: catgets/gencat.c:115
|
||||
msgid ""
|
||||
"Generate message catalog.\\vIf INPUT-FILE is -, input is read from standard input. If OUTPUT-FILE\n"
|
||||
"Generate message catalog.\vIf INPUT-FILE is -, input is read from standard input. If OUTPUT-FILE\n"
|
||||
"is -, output is written to standard output.\n"
|
||||
msgstr ""
|
||||
" Generuje katalog zpr<70>v.\\vJe-li VSTUPN<50>_SOUBOR -, vstup bude na<6E>ten ze\n"
|
||||
" Generuje katalog zpr<70>v.\vJe-li VSTUPN<50>_SOUBOR -, vstup bude na<6E>ten ze\n"
|
||||
"standardn<64>ho vstupu. Je-li V<>STUPN<50>_SOUBOR -, v<>stup bude zaps<70>n na standardn<64>\n"
|
||||
"v<>stup.\n"
|
||||
|
||||
@@ -510,7 +510,7 @@ msgid ""
|
||||
"\n"
|
||||
" "
|
||||
msgstr ""
|
||||
" Nasleduj<EFBFBD>c<EFBFBD> seznam obsahuje v<>echny zn<7A>m<EFBFBD> znakov<6F> sady. To nutn<74> neznamen<65>,\n"
|
||||
" N<EFBFBD>sleduj<EFBFBD>c<EFBFBD> seznam obsahuje v<>echny zn<7A>m<EFBFBD> znakov<6F> sady. To nutn<74> neznamen<65>,\n"
|
||||
"<22>e v<>echny kombinace t<>chto n<>zv<7A> mohou b<>t pou<6F>ity pro argumenty Z a DO.\n"
|
||||
"Jedna znakov<6F> sada m<><6D>e b<>t uvedena pod v<>cer<65>mi n<>zvy (p<>ezd<7A>vkami).\n"
|
||||
" N<>kter<65> z n<>zv<7A> nejsou oby<62>ejn<6A> <20>et<65>zce, ale regul<75>rn<72> v<>razy, kter<65>\n"
|
||||
@@ -2433,16 +2433,16 @@ msgid "Unmatched [ or [^"
|
||||
msgstr "Nep<65>rov<6F> [ or [^"
|
||||
|
||||
#: posix/regex.c:1020
|
||||
msgid "Unmatched ( or \\("
|
||||
msgstr "Nep<65>rov<6F> ( or \\("
|
||||
msgid "Unmatched ( or \("
|
||||
msgstr "Nep<65>rov<6F> ( or \("
|
||||
|
||||
#: posix/regex.c:1021
|
||||
msgid "Unmatched \\{"
|
||||
msgstr "Nep<65>rov<6F> \\{"
|
||||
msgid "Unmatched \{"
|
||||
msgstr "Nep<65>rov<6F> \{"
|
||||
|
||||
#: posix/regex.c:1022
|
||||
msgid "Invalid content of \\{\\}"
|
||||
msgstr "Nep<65><70>pustn<74> obsah \\{\\}"
|
||||
msgid "Invalid content of \{\}"
|
||||
msgstr "Nep<65><70>pustn<74> obsah \{\}"
|
||||
|
||||
#: posix/regex.c:1023
|
||||
msgid "Invalid range end"
|
||||
@@ -2465,8 +2465,8 @@ msgid "Regular expression too big"
|
||||
msgstr "Regul<75>rn<72> v<>raz je p<><70>li<6C> velk<6C>"
|
||||
|
||||
#: posix/regex.c:1028
|
||||
msgid "Unmatched ) or \\)"
|
||||
msgstr "Nep<65>rov<6F> ) or \\)"
|
||||
msgid "Unmatched ) or \)"
|
||||
msgstr "Nep<65>rov<6F> ) or \)"
|
||||
|
||||
#: posix/regex.c:5515
|
||||
msgid "No previous regular expression"
|
||||
@@ -2922,11 +2922,12 @@ msgstr "Spojen
|
||||
msgid "Too many references: cannot splice"
|
||||
msgstr "P<><50>li<6C> mnoho odkaz<61> - nelze spojit"
|
||||
|
||||
# <20>asov<6F> limit pro p<>ipojen<65> vypr<70>el
|
||||
#. TRANS A socket operation with a specified timeout received no response during
|
||||
#. TRANS the timeout period.
|
||||
#: stdio-common/../sysdeps/gnu/errlist.c:445
|
||||
msgid "Connection timed out"
|
||||
msgstr "<EFBFBD>asov<EFBFBD> limit pro p<>ipojen<65> vypr<70>el"
|
||||
msgstr "Spojen<EFBFBD> bylo p<><70>li<6C> dlouho neaktivn<76>"
|
||||
|
||||
#. TRANS A remote host refused to allow the network connection (typically because
|
||||
#. TRANS it is not running the requested service).
|
||||
@@ -3774,14 +3775,14 @@ msgstr "Pou
|
||||
#, c-format
|
||||
msgid "\t%s [-abkCLNTM][-Dname[=value]] [-i size] [-I [-K seconds]] [-Y path] infile\n"
|
||||
msgstr ""
|
||||
"\t%s [-abkCLNTM][-Dn<44>zev[=hodnota]] [-i velikost] [-I [-K sekundy]]\n"
|
||||
" %s [-abkCLNTM][-Dn<44>zev[=hodnota]] [-i velikost] [-I [-K sekundy]]\n"
|
||||
" [-Y cesta] vst_soubor\n"
|
||||
|
||||
#: sunrpc/rpc_main.c:1418
|
||||
#, c-format
|
||||
msgid "\t%s [-c | -h | -l | -m | -t | -Sc | -Ss | -Sm] [-o outfile] [infile]\n"
|
||||
msgstr ""
|
||||
"\t%s [-c | -h | -l | -m | -t | -Sc | -Ss | -Sm] [-o v<>st_soubor]\n"
|
||||
" %s [-c | -h | -l | -m | -t | -Sc | -Ss | -Sm] [-o v<>st_soubor]\n"
|
||||
" [vst_soubor]\n"
|
||||
|
||||
#: sunrpc/rpc_main.c:1420
|
||||
@@ -4067,7 +4068,7 @@ msgstr " (pravidlo z \"%s\",
|
||||
#, c-format
|
||||
msgid ""
|
||||
"%s: usage is %s [ -s ] [ -v ] [ -l localtime ] [ -p posixrules ] [ -d directory ]\n"
|
||||
"\t[ -L leapseconds ] [ -y yearistype ] [ filename ... ]\n"
|
||||
" [ -L leapseconds ] [ -y yearistype ] [ filename ... ]\n"
|
||||
msgstr ""
|
||||
"%s: Pou<6F>it<69>: %s [ -s ] [ -v ] [ -l lok<6F>ln<6C>_<EFBFBD>as ]\n"
|
||||
" [ -p posixov<6F>_pravidla ] [ -d adres<65><73> ] [ -L p<>estupn<70>ch_sekund ]\n"
|
||||
|
Reference in New Issue
Block a user