mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
* de_DE.in: Adjust for correct handling of backward direction sorting.
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
2007-10-02 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* de_DE.in: Adjust for correct handling of backward direction sorting.
|
||||||
|
|
||||||
2007-10-01 Ulrich Drepper <drepper@redhat.com>
|
2007-10-01 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
[BZ #4941]
|
[BZ #4941]
|
||||||
|
@ -40,8 +40,8 @@ F
|
|||||||
Fussel : fluff
|
Fussel : fluff
|
||||||
fusseln : to wear of fluff
|
fusseln : to wear of fluff
|
||||||
f<EFBFBD><EFBFBD>eln : play footsie [under the table]
|
f<EFBFBD><EFBFBD>eln : play footsie [under the table]
|
||||||
fu<EFBFBD>en : to be based [on]
|
|
||||||
F<EFBFBD>ssen : F<>ssen (town)
|
F<EFBFBD>ssen : F<>ssen (town)
|
||||||
|
fu<EFBFBD>en : to be based [on]
|
||||||
F<EFBFBD><EFBFBD>en (dat. pl. of "Fu<46>") : [to the] feet
|
F<EFBFBD><EFBFBD>en (dat. pl. of "Fu<46>") : [to the] feet
|
||||||
in Massen : in large numbers
|
in Massen : in large numbers
|
||||||
in Ma<4D>en : moderately
|
in Ma<4D>en : moderately
|
||||||
@ -49,9 +49,9 @@ Masern : measels
|
|||||||
Mass. (Massachusetts) : Massachusetts (state)
|
Mass. (Massachusetts) : Massachusetts (state)
|
||||||
Ma<EFBFBD> : measure
|
Ma<EFBFBD> : measure
|
||||||
Masse : mass
|
Masse : mass
|
||||||
Mass<EFBFBD> : (particular billard stroke)
|
|
||||||
Ma<EFBFBD>e (pl. of "Ma<4D>") : measures
|
Ma<EFBFBD>e (pl. of "Ma<4D>") : measures
|
||||||
m<EFBFBD><EFBFBD>e (pres. conj. of "messen") : take measure (e.g. in indirect speech)
|
m<EFBFBD><EFBFBD>e (pres. conj. of "messen") : take measure (e.g. in indirect speech)
|
||||||
|
Mass<EFBFBD> : (particular billard stroke)
|
||||||
Massen- : mass; wholesale; bulk (in compound nouns)
|
Massen- : mass; wholesale; bulk (in compound nouns)
|
||||||
massig : massive
|
massig : massive
|
||||||
m<EFBFBD><EFBFBD>ig : moderate; modest
|
m<EFBFBD><EFBFBD>ig : moderate; modest
|
||||||
@ -60,8 +60,8 @@ Mi
|
|||||||
Passe : yoke (of dress)
|
Passe : yoke (of dress)
|
||||||
pass<EFBFBD> : over, gone
|
pass<EFBFBD> : over, gone
|
||||||
Schlagerforderung : claim, demanded in a pop song
|
Schlagerforderung : claim, demanded in a pop song
|
||||||
Schlagerf<EFBFBD>rderung : promotion of pop music
|
|
||||||
Schl<EFBFBD>gerforderung : demand of a hooligan
|
Schl<EFBFBD>gerforderung : demand of a hooligan
|
||||||
|
Schlagerf<EFBFBD>rderung : promotion of pop music
|
||||||
Schl<EFBFBD>gerf<EFBFBD>rderung : promotion of hooliganism :-)
|
Schl<EFBFBD>gerf<EFBFBD>rderung : promotion of hooliganism :-)
|
||||||
Schurz : apron
|
Schurz : apron
|
||||||
Sch<EFBFBD>rze : apron
|
Sch<EFBFBD>rze : apron
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 1995,96,97,2002, 2004 Free Software Foundation, Inc.
|
/* Copyright (C) 1995,96,97,2002, 2004, 2007 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Written by Ulrich Drepper <drepper@gnu.org>, 1995.
|
Written by Ulrich Drepper <drepper@gnu.org>, 1995.
|
||||||
|
|
||||||
@ -128,7 +128,7 @@ STRCOLL (s1, s2, l)
|
|||||||
|
|
||||||
Please note that the localedef programs makes sure that `position'
|
Please note that the localedef programs makes sure that `position'
|
||||||
is not used at the first level. */
|
is not used at the first level. */
|
||||||
if (! __libc_use_alloca (s1len + s2len))
|
if (! __libc_use_alloca ((s1len + s2len) * (sizeof (int32_t) + 1)))
|
||||||
{
|
{
|
||||||
idx1arr = (int32_t *) malloc ((s1len + s2len) * (sizeof (int32_t) + 1));
|
idx1arr = (int32_t *) malloc ((s1len + s2len) * (sizeof (int32_t) + 1));
|
||||||
idx2arr = &idx1arr[s1len];
|
idx2arr = &idx1arr[s1len];
|
||||||
@ -186,7 +186,10 @@ STRCOLL (s1, s2, l)
|
|||||||
/* The last pushed character was handled. Continue
|
/* The last pushed character was handled. Continue
|
||||||
with forward characters. */
|
with forward characters. */
|
||||||
if (idx1cnt < idx1max)
|
if (idx1cnt < idx1max)
|
||||||
|
{
|
||||||
idx1now = idx1cnt;
|
idx1now = idx1cnt;
|
||||||
|
backw1_stop = ~0ul;
|
||||||
|
}
|
||||||
else
|
else
|
||||||
/* Nothing anymore. The backward sequence ended with
|
/* Nothing anymore. The backward sequence ended with
|
||||||
the last sequence in the string. Note that seq1len
|
the last sequence in the string. Note that seq1len
|
||||||
@ -245,7 +248,10 @@ STRCOLL (s1, s2, l)
|
|||||||
/* The last pushed character was handled. Continue
|
/* The last pushed character was handled. Continue
|
||||||
with forward characters. */
|
with forward characters. */
|
||||||
if (idx2cnt < idx2max)
|
if (idx2cnt < idx2max)
|
||||||
|
{
|
||||||
idx2now = idx2cnt;
|
idx2now = idx2cnt;
|
||||||
|
backw2_stop = ~0ul;
|
||||||
|
}
|
||||||
else
|
else
|
||||||
/* Nothing anymore. The backward sequence ended with
|
/* Nothing anymore. The backward sequence ended with
|
||||||
the last sequence in the string. Note that seq2len
|
the last sequence in the string. Note that seq2len
|
||||||
@ -370,7 +376,10 @@ STRCOLL (s1, s2, l)
|
|||||||
/* The last pushed character was handled. Continue
|
/* The last pushed character was handled. Continue
|
||||||
with forward characters. */
|
with forward characters. */
|
||||||
if (idx1cnt < idx1max)
|
if (idx1cnt < idx1max)
|
||||||
|
{
|
||||||
idx1now = idx1cnt;
|
idx1now = idx1cnt;
|
||||||
|
backw1_stop = ~0ul;
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
/* Nothing anymore. The backward sequence
|
/* Nothing anymore. The backward sequence
|
||||||
@ -426,7 +435,10 @@ STRCOLL (s1, s2, l)
|
|||||||
/* The last pushed character was handled. Continue
|
/* The last pushed character was handled. Continue
|
||||||
with forward characters. */
|
with forward characters. */
|
||||||
if (idx2cnt < idx2max)
|
if (idx2cnt < idx2max)
|
||||||
|
{
|
||||||
idx2now = idx2cnt;
|
idx2now = idx2cnt;
|
||||||
|
backw2_stop = ~0ul;
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
/* Nothing anymore. The backward sequence
|
/* Nothing anymore. The backward sequence
|
||||||
|
Reference in New Issue
Block a user