summaryrefslogtreecommitdiff
path: root/localedata/locales/gez_ER@abegede
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2018-12-27 14:12:05 +0000
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2018-12-27 14:12:05 +0000
commit963c37d5c0eb62b38f8764b23931c0dcdd497a13 (patch)
tree12a521ddf17b3e1bb26594656bbb05903c54afd0 /localedata/locales/gez_ER@abegede
parent7bb5f8a836b916d6ebf7b6921b136e99cea2442d (diff)
parent3c03baca37fdcb52c3881e653ca392bba7a99c2b (diff)
Merge tag 'glibc-2.28' into baseline-2.28baseline
The GNU C Library ================= The GNU C Library version 2.28 is now available. The GNU C Library is used as *the* C library in the GNU system and in GNU/Linux systems, as well as many other systems that use Linux as the kernel. The GNU C Library is primarily designed to be a portable and high performance C library. It follows all relevant standards including ISO C11 and POSIX.1-2008. It is also internationalized and has one of the most complete internationalization interfaces known. The GNU C Library webpage is at http://www.gnu.org/software/libc/ Packages for the 2.28 release may be downloaded from: http://ftpmirror.gnu.org/libc/ http://ftp.gnu.org/gnu/libc/ The mirror list is at http://www.gnu.org/order/ftp.html NEWS for version 2.28 ===================== Major new features: * The localization data for ISO 14651 is updated to match the 2016 Edition 4 release of the standard, this matches data provided by Unicode 9.0.0. This update introduces significant improvements to the collation of Unicode characters. This release deviates slightly from the standard in that the collation element ordering for lowercase and uppercase LATIN script characters is adjusted to ensure that regular expressions with ranges like [a-z] and [A-Z] don't interleave e.g. A is not matched by [a-z]. With the update many locales have been updated to take advantage of the new collation information. The new collation information has increased the size of the compiled locale archive or binary locales. * The GNU C Library can now be compiled with support for Intel CET, AKA Intel Control-flow Enforcement Technology. When the library is built with --enable-cet, the resulting glibc is protected with indirect branch tracking (IBT) and shadow stack (SHSTK). CET-enabled glibc is compatible with all existing executables and shared libraries. This feature is currently supported on i386, x86_64 and x32 with GCC 8 and binutils 2.29 or later. Note that CET-enabled glibc requires CPUs capable of multi-byte NOPs, like x86-64 processors as well as Intel Pentium Pro or newer. NOTE: --enable-cet has been tested for i686, x86_64 and x32 on non-CET processors. --enable-cet has been tested for x86_64 and x32 on CET SDVs, but Intel CET support hasn't been validated for i686. * The GNU C Library now has correct support for ABSOLUTE symbols (SHN_ABS-relative symbols). Previously such ABSOLUTE symbols were relocated incorrectly or in some cases discarded. The GNU linker can make use of the newer semantics, but it must communicate it to the dynamic loader by setting the ELF file's identification (EI_ABIVERSION field) to indicate such support is required. * Unicode 11.0.0 Support: Character encoding, character type info, and transliteration tables are all updated to Unicode 11.0.0, using generator scripts contributed by Mike FABIAN (Red Hat). * <math.h> functions that round their results to a narrower type are added from TS 18661-1:2014 and TS 18661-3:2015: - fadd, faddl, daddl and corresponding fMaddfN, fMaddfNx, fMxaddfN and fMxaddfNx functions. - fsub, fsubl, dsubl and corresponding fMsubfN, fMsubfNx, fMxsubfN and fMxsubfNx functions. - fmul, fmull, dmull and corresponding fMmulfN, fMmulfNx, fMxmulfN and fMxmulfNx functions. - fdiv, fdivl, ddivl and corresponding fMdivfN, fMdivfNx, fMxdivfN and fMxdivfNx functions. * Two grammatical forms of month names are now supported for the following languages: Armenian, Asturian, Catalan, Czech, Kashubian, Occitan, Ossetian, Scottish Gaelic, Upper Sorbian, and Walloon. The following languages now support two grammatical forms in abbreviated month names: Catalan, Greek, and Kashubian. * Newly added locales: Lower Sorbian (dsb_DE) and Yakut (sah_RU) also include the support for two grammatical forms of month names. * Building and running on GNU/Hurd systems now works without out-of-tree patches. * The renameat2 function has been added, a variant of the renameat function which has a flags argument. If the flags are zero, the renameat2 function acts like renameat. If the flag is not zero and there is no kernel support for renameat2, the function will fail with an errno value of EINVAL. This is different from the existing gnulib function renameatu, which performs a plain rename operation in case of a RENAME_NOREPLACE flags and a non-existing destination (and therefore has a race condition that can clobber the destination inadvertently). * The statx function has been added, a variant of the fstatat64 function with an additional flags argument. If there is no direct kernel support for statx, glibc provides basic stat support based on the fstatat64 function. * IDN domain names in getaddrinfo and getnameinfo now use the system libidn2 library if installed. libidn2 version 2.0.5 or later is recommended. If libidn2 is not available, internationalized domain names are not encoded or decoded even if the AI_IDN or NI_IDN flags are passed to getaddrinfo or getnameinfo. (getaddrinfo calls with non-ASCII names and AI_IDN will fail with an encoding error.) Flags which used to change the IDN encoding and decoding behavior (AI_IDN_ALLOW_UNASSIGNED, AI_IDN_USE_STD3_ASCII_RULES, NI_IDN_ALLOW_UNASSIGNED, NI_IDN_USE_STD3_ASCII_RULES) have been deprecated. They no longer have any effect. * Parsing of dynamic string tokens in DT_RPATH, DT_RUNPATH, DT_NEEDED, DT_AUXILIARY, and DT_FILTER has been expanded to support the full range of ELF gABI expressions including such constructs as '$ORIGIN$ORIGIN' (if valid). For SUID/GUID applications the rules have been further restricted, and where in the past a dynamic string token sequence may have been interpreted as a literal string it will now cause a load failure. These load failures were always considered unspecified behaviour from the perspective of the dynamic loader, and for safety are now load errors e.g. /foo/${ORIGIN}.so in DT_NEEDED results in a load failure now. * Support for ISO C threads (ISO/IEC 9899:2011) has been added. The implementation includes all the standard functions provided by <threads.h>: - thrd_current, thrd_equal, thrd_sleep, thrd_yield, thrd_create, thrd_detach, thrd_exit, and thrd_join for thread management. - mtx_init, mtx_lock, mtx_timedlock, mtx_trylock, mtx_unlock, and mtx_destroy for mutual exclusion. - call_once for function call synchronization. - cnd_broadcast, cnd_destroy, cnd_init, cnd_signal, cnd_timedwait, and cnd_wait for conditional variables. - tss_create, tss_delete, tss_get, and tss_set for thread-local storage. Application developers must link against libpthread to use ISO C threads. Deprecated and removed features, and other changes affecting compatibility: * The nonstandard header files <libio.h> and <_G_config.h> are no longer installed. Software that was using either header should be updated to use standard <stdio.h> interfaces instead. * The stdio functions 'getc' and 'putc' are no longer defined as macros. This was never required by the C standard, and the macros just expanded to call alternative names for the same functions. If you hoped getc and putc would provide performance improvements over fgetc and fputc, instead investigate using (f)getc_unlocked and (f)putc_unlocked, and, if necessary, flockfile and funlockfile. * All stdio functions now treat end-of-file as a sticky condition. If you read from a file until EOF, and then the file is enlarged by another process, you must call clearerr or another function with the same effect (e.g. fseek, rewind) before you can read the additional data. This corrects a longstanding C99 conformance bug. It is most likely to affect programs that use stdio to read interactive input from a terminal. (Bug #1190.) * The macros 'major', 'minor', and 'makedev' are now only available from the header <sys/sysmacros.h>; not from <sys/types.h> or various other headers that happen to include <sys/types.h>. These macros are rarely used, not part of POSIX nor XSI, and their names frequently collide with user code; see https://sourceware.org/bugzilla/show_bug.cgi?id=19239 for further explanation. <sys/sysmacros.h> is a GNU extension. Portable programs that require these macros should first include <sys/types.h>, and then include <sys/sysmacros.h> if __GNU_LIBRARY__ is defined. * The tilegx*-*-linux-gnu configurations are no longer supported. * The obsolete function ustat is no longer available to newly linked binaries; the headers <ustat.h> and <sys/ustat.h> have been removed. This function has been deprecated in favor of fstatfs and statfs. * The obsolete function nfsservctl is no longer available to newly linked binaries. This function was specific to systems using the Linux kernel and could not usefully be used with the GNU C Library on systems with version 3.1 or later of the Linux kernel. * The obsolete function name llseek is no longer available to newly linked binaries. This function was specific to systems using the Linux kernel and was not declared in a header. Programs should use the lseek64 name for this function instead. * The AI_IDN_ALLOW_UNASSIGNED and NI_IDN_ALLOW_UNASSIGNED flags for the getaddrinfo and getnameinfo functions have been deprecated. The behavior previously selected by them is now always enabled. * The AI_IDN_USE_STD3_ASCII_RULES and NI_IDN_USE_STD3_ASCII_RULES flags for the getaddrinfo and getnameinfo functions have been deprecated. The STD3 restriction (rejecting '_' in host names, among other things) has been removed, for increased compatibility with non-IDN name resolution. * The fcntl function now have a Long File Support variant named fcntl64. It is added to fix some Linux Open File Description (OFD) locks usage on non LFS mode. As for others *64 functions, fcntl64 semantics are analogous with fcntl and LFS support is handled transparently. Also for Linux, the OFD locks act as a cancellation entrypoint. * The obsolete functions encrypt, encrypt_r, setkey, setkey_r, cbc_crypt, ecb_crypt, and des_setparity are no longer available to newly linked binaries, and the headers <rpc/des_crypt.h> and <rpc/rpc_des.h> are no longer installed. These functions encrypted and decrypted data with the DES block cipher, which is no longer considered secure. Software that still uses these functions should switch to a modern cryptography library, such as libgcrypt. * Reflecting the removal of the encrypt and setkey functions above, the macro _XOPEN_CRYPT is no longer defined. As a consequence, the crypt function is no longer declared unless _DEFAULT_SOURCE or _GNU_SOURCE is enabled. * The obsolete function fcrypt is no longer available to newly linked binaries. It was just another name for the standard function crypt, and it has not appeared in any header file in many years. * We have tentative plans to hand off maintenance of the passphrase-hashing library, libcrypt, to a separate development project that will, we hope, keep up better with new passphrase-hashing algorithms. We will continue to declare 'crypt' in <unistd.h>, and programs that use 'crypt' or 'crypt_r' should not need to change at all; however, distributions will need to install <crypt.h> and libcrypt from a separate project. In this release, if the configure option --disable-crypt is used, glibc will not install <crypt.h> or libcrypt, making room for the separate project's versions of these files. The plan is to make this the default behavior in a future release. Changes to build and runtime requirements: GNU make 4.0 or later is now required to build glibc. Security related changes: CVE-2016-6261, CVE-2016-6263, CVE-2017-14062: Various vulnerabilities have been fixed by removing the glibc-internal IDNA implementation and using the system-provided libidn2 library instead. Originally reported by Hanno Böck and Christian Weisgerber. CVE-2017-18269: An SSE2-based memmove implementation for the i386 architecture could corrupt memory. Reported by Max Horn. CVE-2018-11236: Very long pathname arguments to realpath function could result in an integer overflow and buffer overflow. Reported by Alexey Izbyshev. CVE-2018-11237: The mempcpy implementation for the Intel Xeon Phi architecture could write beyond the target buffer, resulting in a buffer overflow. Reported by Andreas Schwab. The following bugs are resolved with this release: [1190] stdio: fgetc()/fread() behaviour is not POSIX compliant [6889] manual: 'PWD' mentioned but not specified [13575] libc: SSIZE_MAX defined as LONG_MAX is inconsistent with ssize_t, when __WORDSIZE != 64 [13762] regex: re_search etc. should return -2 on memory exhaustion [13888] build: /tmp usage during testing [13932] math: dbl-64 pow unexpectedly slow for some inputs [14092] nptl: Support C11 threads [14095] localedata: Review / update collation data from Unicode / ISO 14651 [14508] libc: -Wformat warnings [14553] libc: Namespace pollution loff_t in sys/types.h [14890] libc: Make NT_PRFPREG canonical. [15105] libc: Extra PLT references with -Os [15512] libc: __bswap_constant_16 not compiled when -Werror -Wsign- conversion is given [16335] manual: Feature test macro documentation incomplete and out of date [16552] libc: Unify umount implementations in terms of umount2 [17082] libc: htons et al.: statement-expressions prevent use on global scope with -O1 and higher [17343] libc: Signed integer overflow in /stdlib/random_r.c [17438] localedata: pt_BR: wrong d_fmt delimiter [17662] libc: please implement binding for the new renameat2 syscall [17721] libc: __restrict defined as /* Ignore */ even in c11 [17979] libc: inconsistency between uchar.h and stdint.h [18018] dynamic-link: Additional $ORIGIN handling issues (CVE-2011-0536) [18023] libc: extend_alloca is broken (questionable pointer comparison, horrible machine code) [18124] libc: hppa: setcontext erroneously returns -1 as exit code for last constant. [18471] libc: llseek should be a compat symbol [18473] soft-fp: [powerpc-nofpu] __sqrtsf2, __sqrtdf2 should be compat symbols [18991] nss: nss_files skips large entry in database [19239] libc: Including stdlib.h ends up with macros major and minor being defined [19463] libc: linknamespace failures when compiled with -Os [19485] localedata: csb_PL: Update month translations + add yesstr/nostr [19527] locale: Normalized charset name not recognized by setlocale [19667] string: Missing Sanity Check for malloc calls in file 'testcopy.c' [19668] libc: Missing Sanity Check for malloc() in file 'tst-setcontext- fpscr.c' [19728] network: out of bounds stack read in libidn function idna_to_ascii_4i (CVE-2016-6261) [19729] network: out of bounds heap read on invalid utf-8 inputs in stringprep_utf8_nfkc_normalize (CVE-2016-6263) [19818] dynamic-link: Absolute (SHN_ABS) symbols incorrectly relocated by the base address [20079] libc: Add SHT_X86_64_UNWIND to elf.h [20251] libc: 32bit programs pass garbage in struct flock for OFD locks [20419] dynamic-link: files with large allocated notes crash in open_verify [20530] libc: bswap_16 should use __builtin_bswap16() when available [20890] dynamic-link: ldconfig: fsync the files before atomic rename [20980] manual: CFLAGS environment variable replaces vital options [21163] regex: Assertion failure in pop_fail_stack when executing a malformed regexp (CVE-2015-8985) [21234] manual: use of CFLAGS makes glibc detect no optimization [21269] dynamic-link: i386 sigaction sa_restorer handling is wrong [21313] build: Compile Error GCC 5.4.0 MIPS with -0S [21314] build: Compile Error GCC 5.2.0 MIPS with -0s [21508] locale: intl/tst-gettext failure with latest msgfmt [21547] localedata: Tibetan script collation broken (Dzongkha and Tibetan) [21812] network: getifaddrs() returns entries with ifa_name == NULL [21895] libc: ppc64 setjmp/longjmp not fully interoperable with static dlopen [21942] dynamic-link: _dl_dst_substitute incorrectly handles $ORIGIN: with AT_SECURE=1 [22241] localedata: New locale: Yakut (Sakha) locale for Russia (sah_RU) [22247] network: Integer overflow in the decode_digit function in puny_decode.c in libidn (CVE-2017-14062) [22342] nscd: NSCD not properly caching netgroup [22391] nptl: Signal function clear NPTL internal symbols inconsistently [22550] localedata: es_ES locale (and other es_* locales): collation should treat ñ as a primary different character, sync the collation for Spanish with CLDR [22638] dynamic-link: sparc: static binaries are broken if glibc is built by gcc configured with --enable-default-pie [22639] time: year 2039 bug for localtime etc. on 64-bit platforms [22644] string: memmove-sse2-unaligned on 32bit x86 produces garbage when crossing 2GB threshold (CVE-2017-18269) [22646] localedata: redundant data (LC_TIME) for es_CL, es_CU, es_EC and es_BO [22735] time: Misleading typo in time.h source comment regarding CLOCKS_PER_SECOND [22753] libc: preadv2/pwritev2 fallback code should handle offset=-1 [22761] libc: No trailing `%n' conversion specifier in FMT passed from `__assert_perror_fail ()' to `__assert_fail_base ()' [22766] libc: all glibc internal dlopen should use RTLD_NOW for robust dlopen failures [22786] libc: Stack buffer overflow in realpath() if input size is close to SSIZE_MAX (CVE-2018-11236) [22787] dynamic-link: _dl_check_caller returns false when libc is linked through an absolute DT_NEEDED path [22792] build: tcb-offsets.h dependency dropped [22797] libc: pkey_get() uses non-reserved name of argument [22807] libc: PTRACE_* constants missing for powerpc [22818] glob: posix/tst-glob_lstat_compat failure on alpha [22827] dynamic-link: RISC-V ELF64 parser mis-reads flag in ldconfig [22830] malloc: malloc_stats doesn't restore cancellation state on stderr [22848] localedata: ca_ES: update date definitions from CLDR [22862] build: _DEFAULT_SOURCE is defined even when _ISOC11_SOURCE is [22884] math: RISCV fmax/fmin handle signalling NANs incorrectly [22896] localedata: Update locale data for an_ES [22902] math: float128 test failures with GCC 8 [22918] libc: multiple common of `__nss_shadow_database' [22919] libc: sparc32: backtrace yields infinite backtrace with makecontext [22926] libc: FTBFS on powerpcspe [22932] localedata: lt_LT: Update of abbreviated month names from CLDR required [22937] localedata: Greek (el_GR, el_CY) locales actually need ab_alt_mon [22947] libc: FAIL: misc/tst-preadvwritev2 [22963] localedata: cs_CZ: Add alternative month names [22987] math: [powerpc/sparc] fdim inlines errno, exceptions handling [22996] localedata: change LC_PAPER to en_US in es_BO locale [22998] dynamic-link: execstack tests are disabled when SELinux is disabled [23005] network: Crash in __res_context_send after memory allocation failure [23007] math: strtod cannot handle -nan [23024] nss: getlogin_r is performing NSS lookups when loginid isn't set [23036] regex: regex equivalence class regression [23037] libc: initialize msg_flags to zero for sendmmsg() calls [23069] libc: sigaction broken on riscv64-linux-gnu [23094] localedata: hr_HR: wrong thousands_sep and mon_thousands_sep [23102] dynamic-link: Incorrect parsing of multiple consecutive $variable patterns in runpath entries (e.g. $ORIGIN$ORIGIN) [23137] nptl: s390: pthread_join sometimes block indefinitely (on 31bit and libc build with -Os) [23140] localedata: More languages need two forms of month names [23145] libc: _init/_fini aren't marked as hidden [23152] localedata: gd_GB: Fix typo in "May" (abbreviated) [23171] math: C++ iseqsig for long double converts arguments to double [23178] nscd: sudo will fail when it is run in concurrent with commands that changes /etc/passwd [23196] string: __mempcpy_avx512_no_vzeroupper mishandles large copies (CVE-2018-11237) [23206] dynamic-link: static-pie + dlopen breaks debugger interaction [23208] localedata: New locale - Lower Sorbian (dsb) [23233] regex: Memory leak in build_charclass_op function in file posix/regcomp.c [23236] stdio: Harden function pointers in _IO_str_fields [23250] nptl: Offset of __private_ss differs from GCC [23253] math: tgamma test suite failures on i686 with -march=x86-64 -mtune=generic -mfpmath=sse [23259] dynamic-link: Unsubstituted ${ORIGIN} remains in DT_NEEDED for AT_SECURE [23264] libc: posix_spawnp wrongly executes ENOEXEC in non compat mode [23266] nis: stringop-truncation warning with new gcc8.1 in nisplus- parser.c [23272] math: fma(INFINITY,INFIITY,0.0) should be INFINITY [23277] math: nan function should not have const attribute [23279] math: scanf and strtod wrong for some hex floating-point [23280] math: wscanf rounds wrong; wcstod is ok for negative numbers and directed rounding [23290] localedata: IBM273 is not equivalent to ISO-8859-1 [23303] build: undefined reference to symbol '__parse_hwcap_and_convert_at_platform@@GLIBC_2.23' [23307] dynamic-link: Absolute symbols whose value is zero ignored in lookup [23313] stdio: libio vtables validation and standard file object interposition [23329] libc: The __libc_freeres infrastructure is not properly run across DSO boundaries. [23349] libc: Various glibc headers no longer compatible with <linux/time.h> [23351] malloc: Remove unused code related to heap dumps and malloc checking [23363] stdio: stdio-common/tst-printf.c has non-free license [23396] regex: Regex equivalence regression in single-byte locales [23422] localedata: oc_FR: More updates of locale data [23442] build: New warning with GCC 8 [23448] libc: Out of bounds access in IBM-1390 converter [23456] libc: Wrong index_cpu_LZCNT [23458] build: tst-get-cpu-features-static isn't added to tests [23459] libc: COMMON_CPUID_INDEX_80000001 isn't populated for Intel processors [23467] dynamic-link: x86/CET: A property note parser bug Release Notes ============= https://sourceware.org/glibc/wiki/Release/2.28 Contributors ============ This release was made possible by the contributions of many people. The maintainers are grateful to everyone who has contributed changes or bug reports. These include: Adhemerval Zanella Agustina Arzille Alan Modra Alexandre Oliva Amit Pawar Andreas Schwab Andrew Senkevich Andrew Waterman Aurelien Jarno Carlos O'Donell Chung-Lin Tang DJ Delorie Daniel Alvarez David Michael Dmitry V. Levin Dragan Stanojevic - Nevidljivi Florian Weimer Flávio Cruz Francois Goichon Gabriel F. T. Gomes H.J. Lu Herman ten Brugge Hongbo Zhang Igor Gnatenko Jesse Hathaway John David Anglin Joseph Myers Leonardo Sandoval Maciej W. Rozycki Mark Wielaard Martin Sebor Michael Wolf Mike FABIAN Patrick McGehearty Patsy Franklin Paul Pluzhnikov Quentin PAGÈS Rafal Luzynski Rajalakshmi Srinivasaraghavan Raymond Nicholson Rical Jasan Richard Braun Robert Buj Rogerio Alves Samuel Thibault Sean McKean Siddhesh Poyarekar Stefan Liebler Steve Ellcey Sylvain Lesage Szabolcs Nagy Thomas Schwinge Tulio Magno Quites Machado Filho Valery Timiriliyev Vincent Chen Wilco Dijkstra Zack Weinberg Zong Li
Diffstat (limited to 'localedata/locales/gez_ER@abegede')
-rw-r--r--localedata/locales/gez_ER@abegede456
1 files changed, 390 insertions, 66 deletions
diff --git a/localedata/locales/gez_ER@abegede b/localedata/locales/gez_ER@abegede
index f3e0b9afc4..a555f451e6 100644
--- a/localedata/locales/gez_ER@abegede
+++ b/localedata/locales/gez_ER@abegede
@@ -1,13 +1,17 @@
-comment_char %
-escape_char /
+comment_char %
+escape_char /
+% This file is part of the GNU C Library and contains locale data.
+% The Free Software Foundation does not claim any copyright interest
+% in the locale data contained in this file. The foregoing does not
+% affect the license of the GNU C Library as a whole. It does not
+% exempt you from the conditions of the license if your use would
+% otherwise be governed by that license.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Ge'ez language locale for Eritrea with Abegede collation.
%
-% Charset: UTF-8
-%
% Prepared and contributed to glibc by Daniel Yacob <locales@geez.org>.
%
% This locale data has been developed under the Yeha Project:
@@ -27,24 +31,23 @@ contact ""
email "locales@geez.org"
tel ""
fax ""
-language "gez"
-territory "ER"
+language "Geez"
+territory "Eritrea"
revision "0.20"
date "2003-07-05"
-%
-category "i18n:2000";LC_IDENTIFICATION
-category "i18n:2000";LC_COLLATE
-category "i18n:2000";LC_CTYPE
-category "i18n:2000";LC_MEASUREMENT
-category "i18n:2000";LC_MONETARY
-category "posix:1993";LC_NUMERIC
-category "i18n:2000";LC_PAPER
-category "i18n:2000";LC_TELEPHONE
-category "i18n:2000";LC_ADDRESS
-category "i18n:2000";LC_MESSAGES
-category "i18n:2000";LC_NAME
-category "i18n:2000";LC_TIME
-%
+
+category "i18n:2012";LC_IDENTIFICATION
+category "i18n:2012";LC_COLLATE
+category "i18n:2012";LC_CTYPE
+category "i18n:2012";LC_MEASUREMENT
+category "i18n:2012";LC_MONETARY
+category "i18n:2012";LC_NUMERIC
+category "i18n:2012";LC_PAPER
+category "i18n:2012";LC_TELEPHONE
+category "i18n:2012";LC_ADDRESS
+category "i18n:2012";LC_MESSAGES
+category "i18n:2012";LC_NAME
+category "i18n:2012";LC_TIME
END LC_IDENTIFICATION
@@ -55,51 +58,374 @@ END LC_IDENTIFICATION
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
LC_COLLATE
-%
-% Import Halehame and Resequence:
-%
copy "ti_ER"
-%
-reorder-after <th>
-<ALEF>
-<BET>
-<VE-BET>
-<GEMEL>
-<NGE-GEMEL>
-<DINT>
-<DHI-DINT>
-<JI-DINT>
-<HOY>
-<WEWE>
-<ZEY>
-<ZHE-ZEY>
-<HAWT>
-<TEYT>
-<CHE-TEYT>
-<YEMEN>
-<KAF>
-<KHA-KAF>
-<LAWI>
-<MAY>
-<NEHAS>
-<NYE-NEHAS>
-<SEWT>
-<AYIN>
-<AF>
-<SEDEY>
-<QAF>
-<QHA-QAF>
-<RIS>
-<SAT>
-<SHA-SAT>
-<TAW>
-<CHA-TAW>
-<HARM>
-<SEPA>
-<PEYT>
-<PSA>
+reorder-after <BEFORE-LATIN>
+<S12A0> % ETHIOPIC SYLLABLE GLOTTAL A old glibc collation-symbol: <ALEF>
+<S12A1> % ETHIOPIC SYLLABLE GLOTTAL U old glibc collation-symbol: <ALEF>
+<S12A2> % ETHIOPIC SYLLABLE GLOTTAL I old glibc collation-symbol: <ALEF>
+<S12A3> % ETHIOPIC SYLLABLE GLOTTAL AA old glibc collation-symbol: <ALEF>
+<S12A4> % ETHIOPIC SYLLABLE GLOTTAL EE old glibc collation-symbol: <ALEF>
+<S12A5> % ETHIOPIC SYLLABLE GLOTTAL E old glibc collation-symbol: <ALEF>
+<S12A6> % ETHIOPIC SYLLABLE GLOTTAL O old glibc collation-symbol: <ALEF>
+<S12A7> % ETHIOPIC SYLLABLE GLOTTAL WA old glibc collation-symbol: <ALEF>
+<S1260> % ETHIOPIC SYLLABLE BA old glibc collation-symbol: <BET>
+<S1261> % ETHIOPIC SYLLABLE BU old glibc collation-symbol: <BET>
+<S1262> % ETHIOPIC SYLLABLE BI old glibc collation-symbol: <BET>
+<S1263> % ETHIOPIC SYLLABLE BAA old glibc collation-symbol: <BET>
+<S1264> % ETHIOPIC SYLLABLE BEE old glibc collation-symbol: <BET>
+<S1265> % ETHIOPIC SYLLABLE BE old glibc collation-symbol: <BET>
+<S1266> % ETHIOPIC SYLLABLE BO old glibc collation-symbol: <BET>
+<S1267> % ETHIOPIC SYLLABLE BWA old glibc collation-symbol: <BET>
+<S1384> % ETHIOPIC SYLLABLE SEBATBEIT BWA old glibc collation-symbol: <BET>
+<S1385> % ETHIOPIC SYLLABLE BWI old glibc collation-symbol: <BET>
+<S1386> % ETHIOPIC SYLLABLE BWEE old glibc collation-symbol: <BET>
+<S1387> % ETHIOPIC SYLLABLE BWE old glibc collation-symbol: <BET>
+<S2D85> % ETHIOPIC SYLLABLE BOA old glibc collation-symbol: <BET>
+<S1268> % ETHIOPIC SYLLABLE VA old glibc collation-symbol: <VE-BET>
+<S1269> % ETHIOPIC SYLLABLE VU old glibc collation-symbol: <VE-BET>
+<S126A> % ETHIOPIC SYLLABLE VI old glibc collation-symbol: <VE-BET>
+<S126B> % ETHIOPIC SYLLABLE VAA old glibc collation-symbol: <VE-BET>
+<S126C> % ETHIOPIC SYLLABLE VEE old glibc collation-symbol: <VE-BET>
+<S126D> % ETHIOPIC SYLLABLE VE old glibc collation-symbol: <VE-BET>
+<S126E> % ETHIOPIC SYLLABLE VO old glibc collation-symbol: <VE-BET>
+<S126F> % ETHIOPIC SYLLABLE VWA old glibc collation-symbol: <VE-BET>
+<S1308> % ETHIOPIC SYLLABLE GA old glibc collation-symbol: <GEMEL>
+<S1309> % ETHIOPIC SYLLABLE GU old glibc collation-symbol: <GEMEL>
+<S130A> % ETHIOPIC SYLLABLE GI old glibc collation-symbol: <GEMEL>
+<S130B> % ETHIOPIC SYLLABLE GAA old glibc collation-symbol: <GEMEL>
+<S130C> % ETHIOPIC SYLLABLE GEE old glibc collation-symbol: <GEMEL>
+<S130D> % ETHIOPIC SYLLABLE GE old glibc collation-symbol: <GEMEL>
+<S130E> % ETHIOPIC SYLLABLE GO old glibc collation-symbol: <GEMEL>
+<S130F> % ETHIOPIC SYLLABLE GOA old glibc collation-symbol: <GEMEL>
+<S1310> % ETHIOPIC SYLLABLE GWA old glibc collation-symbol: <GEMEL>
+<S1312> % ETHIOPIC SYLLABLE GWI old glibc collation-symbol: <GEMEL>
+<S1313> % ETHIOPIC SYLLABLE GWAA old glibc collation-symbol: <GEMEL>
+<S1314> % ETHIOPIC SYLLABLE GWEE old glibc collation-symbol: <GEMEL>
+<S1315> % ETHIOPIC SYLLABLE GWE old glibc collation-symbol: <GEMEL>
+<S1318> % ETHIOPIC SYLLABLE GGA old glibc collation-symbol: <NGE-GEMEL>
+<S1319> % ETHIOPIC SYLLABLE GGU old glibc collation-symbol: <NGE-GEMEL>
+<S131A> % ETHIOPIC SYLLABLE GGI old glibc collation-symbol: <NGE-GEMEL>
+<S131B> % ETHIOPIC SYLLABLE GGAA old glibc collation-symbol: <NGE-GEMEL>
+<S131C> % ETHIOPIC SYLLABLE GGEE old glibc collation-symbol: <NGE-GEMEL>
+<S131D> % ETHIOPIC SYLLABLE GGE old glibc collation-symbol: <NGE-GEMEL>
+<S131E> % ETHIOPIC SYLLABLE GGO old glibc collation-symbol: <NGE-GEMEL>
+<S131F> % ETHIOPIC SYLLABLE GGWAA old glibc collation-symbol: <NGE-GEMEL>
+<S2D93> % ETHIOPIC SYLLABLE GGWA old glibc collation-symbol: <NGE-GEMEL>
+<S2D94> % ETHIOPIC SYLLABLE GGWI old glibc collation-symbol: <NGE-GEMEL>
+<S2D95> % ETHIOPIC SYLLABLE GGWEE old glibc collation-symbol: <NGE-GEMEL>
+<S2D96> % ETHIOPIC SYLLABLE GGWE old glibc collation-symbol: <NGE-GEMEL>
+<S12F0> % ETHIOPIC SYLLABLE DA old glibc collation-symbol: <DINT>
+<S12F1> % ETHIOPIC SYLLABLE DU old glibc collation-symbol: <DINT>
+<S12F2> % ETHIOPIC SYLLABLE DI old glibc collation-symbol: <DINT>
+<S12F3> % ETHIOPIC SYLLABLE DAA old glibc collation-symbol: <DINT>
+<S12F4> % ETHIOPIC SYLLABLE DEE old glibc collation-symbol: <DINT>
+<S12F5> % ETHIOPIC SYLLABLE DE old glibc collation-symbol: <DINT>
+<S12F6> % ETHIOPIC SYLLABLE DO old glibc collation-symbol: <DINT>
+<S12F7> % ETHIOPIC SYLLABLE DWA old glibc collation-symbol: <DINT>
+<S2D8C> % ETHIOPIC SYLLABLE DOA old glibc collation-symbol: <DINT>
+<SAB09> % ETHIOPIC SYLLABLE DDHU old glibc collation-symbol: <DHI-DINT>
+<SAB0A> % ETHIOPIC SYLLABLE DDHI old glibc collation-symbol: <DHI-DINT>
+<SAB0B> % ETHIOPIC SYLLABLE DDHAA old glibc collation-symbol: <DHI-DINT>
+<SAB0C> % ETHIOPIC SYLLABLE DDHEE old glibc collation-symbol: <DHI-DINT>
+<SAB0D> % ETHIOPIC SYLLABLE DDHE old glibc collation-symbol: <DHI-DINT>
+<SAB0E> % ETHIOPIC SYLLABLE DDHO old glibc collation-symbol: <DHI-DINT>
+<S12F8> % ETHIOPIC SYLLABLE DDA old glibc collation-symbol: <DHI-DINT>
+<S12F9> % ETHIOPIC SYLLABLE DDU old glibc collation-symbol: <DHI-DINT>
+<S12FA> % ETHIOPIC SYLLABLE DDI old glibc collation-symbol: <DHI-DINT>
+<S12FB> % ETHIOPIC SYLLABLE DDAA old glibc collation-symbol: <DHI-DINT>
+<S12FC> % ETHIOPIC SYLLABLE DDEE old glibc collation-symbol: <DHI-DINT>
+<S12FD> % ETHIOPIC SYLLABLE DDE old glibc collation-symbol: <DHI-DINT>
+<S12FE> % ETHIOPIC SYLLABLE DDO old glibc collation-symbol: <DHI-DINT>
+<S12FF> % ETHIOPIC SYLLABLE DDWA old glibc collation-symbol: <DHI-DINT>
+<S1300> % ETHIOPIC SYLLABLE JA old glibc collation-symbol: <JI-DINT>
+<S1301> % ETHIOPIC SYLLABLE JU old glibc collation-symbol: <JI-DINT>
+<S1302> % ETHIOPIC SYLLABLE JI old glibc collation-symbol: <JI-DINT>
+<S1303> % ETHIOPIC SYLLABLE JAA old glibc collation-symbol: <JI-DINT>
+<S1304> % ETHIOPIC SYLLABLE JEE old glibc collation-symbol: <JI-DINT>
+<S1305> % ETHIOPIC SYLLABLE JE old glibc collation-symbol: <JI-DINT>
+<S1306> % ETHIOPIC SYLLABLE JO old glibc collation-symbol: <JI-DINT>
+<S1307> % ETHIOPIC SYLLABLE JWA old glibc collation-symbol: <JI-DINT>
+<S2D8E> % ETHIOPIC SYLLABLE JOA old glibc collation-symbol: <JI-DINT>
+<S1200> % ETHIOPIC SYLLABLE HA old glibc collation-symbol: <HOY>
+<S1201> % ETHIOPIC SYLLABLE HU old glibc collation-symbol: <HOY>
+<S1202> % ETHIOPIC SYLLABLE HI old glibc collation-symbol: <HOY>
+<S1203> % ETHIOPIC SYLLABLE HAA old glibc collation-symbol: <HOY>
+<S1204> % ETHIOPIC SYLLABLE HEE old glibc collation-symbol: <HOY>
+<S1205> % ETHIOPIC SYLLABLE HE old glibc collation-symbol: <HOY>
+<S1206> % ETHIOPIC SYLLABLE HO old glibc collation-symbol: <HOY>
+<S1207> % ETHIOPIC SYLLABLE HOA old glibc collation-symbol: <HOY>
+<S12C8> % ETHIOPIC SYLLABLE WA old glibc collation-symbol: <WEWE>
+<S12C9> % ETHIOPIC SYLLABLE WU old glibc collation-symbol: <WEWE>
+<S12CA> % ETHIOPIC SYLLABLE WI old glibc collation-symbol: <WEWE>
+<S12CB> % ETHIOPIC SYLLABLE WAA old glibc collation-symbol: <WEWE>
+<S12CC> % ETHIOPIC SYLLABLE WEE old glibc collation-symbol: <WEWE>
+<S12CD> % ETHIOPIC SYLLABLE WE old glibc collation-symbol: <WEWE>
+<S12CE> % ETHIOPIC SYLLABLE WO old glibc collation-symbol: <WEWE>
+<S12CF> % ETHIOPIC SYLLABLE WOA old glibc collation-symbol: <WEWE>
+<S12D8> % ETHIOPIC SYLLABLE ZA old glibc collation-symbol: <ZEY>
+<S12D9> % ETHIOPIC SYLLABLE ZU old glibc collation-symbol: <ZEY>
+<S12DA> % ETHIOPIC SYLLABLE ZI old glibc collation-symbol: <ZEY>
+<S12DB> % ETHIOPIC SYLLABLE ZAA old glibc collation-symbol: <ZEY>
+<S12DC> % ETHIOPIC SYLLABLE ZEE old glibc collation-symbol: <ZEY>
+<S12DD> % ETHIOPIC SYLLABLE ZE old glibc collation-symbol: <ZEY>
+<S12DE> % ETHIOPIC SYLLABLE ZO old glibc collation-symbol: <ZEY>
+<S12DF> % ETHIOPIC SYLLABLE ZWA old glibc collation-symbol: <ZEY>
+<S2D8B> % ETHIOPIC SYLLABLE ZOA old glibc collation-symbol: <ZEY>
+<S12E0> % ETHIOPIC SYLLABLE ZHA old glibc collation-symbol: <ZHE-ZEY>
+<S12E1> % ETHIOPIC SYLLABLE ZHU old glibc collation-symbol: <ZHE-ZEY>
+<S12E2> % ETHIOPIC SYLLABLE ZHI old glibc collation-symbol: <ZHE-ZEY>
+<S12E3> % ETHIOPIC SYLLABLE ZHAA old glibc collation-symbol: <ZHE-ZEY>
+<S12E4> % ETHIOPIC SYLLABLE ZHEE old glibc collation-symbol: <ZHE-ZEY>
+<S12E5> % ETHIOPIC SYLLABLE ZHE old glibc collation-symbol: <ZHE-ZEY>
+<S12E6> % ETHIOPIC SYLLABLE ZHO old glibc collation-symbol: <ZHE-ZEY>
+<S12E7> % ETHIOPIC SYLLABLE ZHWA old glibc collation-symbol: <ZHE-ZEY>
+<S1210> % ETHIOPIC SYLLABLE HHA old glibc collation-symbol: <HAWT>
+<S1211> % ETHIOPIC SYLLABLE HHU old glibc collation-symbol: <HAWT>
+<S1212> % ETHIOPIC SYLLABLE HHI old glibc collation-symbol: <HAWT>
+<S1213> % ETHIOPIC SYLLABLE HHAA old glibc collation-symbol: <HAWT>
+<S1214> % ETHIOPIC SYLLABLE HHEE old glibc collation-symbol: <HAWT>
+<S1215> % ETHIOPIC SYLLABLE HHE old glibc collation-symbol: <HAWT>
+<S1216> % ETHIOPIC SYLLABLE HHO old glibc collation-symbol: <HAWT>
+<S1217> % ETHIOPIC SYLLABLE HHWA old glibc collation-symbol: <HAWT>
+<S1320> % ETHIOPIC SYLLABLE THA old glibc collation-symbol: <TEYT>
+<S1321> % ETHIOPIC SYLLABLE THU old glibc collation-symbol: <TEYT>
+<S1322> % ETHIOPIC SYLLABLE THI old glibc collation-symbol: <TEYT>
+<S1323> % ETHIOPIC SYLLABLE THAA old glibc collation-symbol: <TEYT>
+<S1324> % ETHIOPIC SYLLABLE THEE old glibc collation-symbol: <TEYT>
+<S1325> % ETHIOPIC SYLLABLE THE old glibc collation-symbol: <TEYT>
+<S1326> % ETHIOPIC SYLLABLE THO old glibc collation-symbol: <TEYT>
+<S1327> % ETHIOPIC SYLLABLE THWA old glibc collation-symbol: <TEYT>
+<S2D8F> % ETHIOPIC SYLLABLE THOA old glibc collation-symbol: <TEYT>
+<S1328> % ETHIOPIC SYLLABLE CHA old glibc collation-symbol: <CHE-TEYT>
+<S1329> % ETHIOPIC SYLLABLE CHU old glibc collation-symbol: <CHE-TEYT>
+<S132A> % ETHIOPIC SYLLABLE CHI old glibc collation-symbol: <CHE-TEYT>
+<S132B> % ETHIOPIC SYLLABLE CHAA old glibc collation-symbol: <CHE-TEYT>
+<S132C> % ETHIOPIC SYLLABLE CHEE old glibc collation-symbol: <CHE-TEYT>
+<S132D> % ETHIOPIC SYLLABLE CHE old glibc collation-symbol: <CHE-TEYT>
+<S132E> % ETHIOPIC SYLLABLE CHO old glibc collation-symbol: <CHE-TEYT>
+<S132F> % ETHIOPIC SYLLABLE CHWA old glibc collation-symbol: <CHE-TEYT>
+<S2D90> % ETHIOPIC SYLLABLE CHOA old glibc collation-symbol: <CHE-TEYT>
+<SAB20> % ETHIOPIC SYLLABLE CCHHA old glibc collation-symbol: <CHE-TEYT>
+<SAB21> % ETHIOPIC SYLLABLE CCHHU old glibc collation-symbol: <CHE-TEYT>
+<SAB22> % ETHIOPIC SYLLABLE CCHHI old glibc collation-symbol: <CHE-TEYT>
+<SAB23> % ETHIOPIC SYLLABLE CCHHAA old glibc collation-symbol: <CHE-TEYT>
+<SAB24> % ETHIOPIC SYLLABLE CCHHEE old glibc collation-symbol: <CHE-TEYT>
+<SAB25> % ETHIOPIC SYLLABLE CCHHE old glibc collation-symbol: <CHE-TEYT>
+<SAB26> % ETHIOPIC SYLLABLE CCHHO old glibc collation-symbol: <CHE-TEYT>
+<S12E8> % ETHIOPIC SYLLABLE YA old glibc collation-symbol: <YEMEN>
+<S12E9> % ETHIOPIC SYLLABLE YU old glibc collation-symbol: <YEMEN>
+<S12EA> % ETHIOPIC SYLLABLE YI old glibc collation-symbol: <YEMEN>
+<S12EB> % ETHIOPIC SYLLABLE YAA old glibc collation-symbol: <YEMEN>
+<S12EC> % ETHIOPIC SYLLABLE YEE old glibc collation-symbol: <YEMEN>
+<S12ED> % ETHIOPIC SYLLABLE YE old glibc collation-symbol: <YEMEN>
+<S12EE> % ETHIOPIC SYLLABLE YO old glibc collation-symbol: <YEMEN>
+<S12EF> % ETHIOPIC SYLLABLE YOA old glibc collation-symbol: <YEMEN>
+<S12A8> % ETHIOPIC SYLLABLE KA old glibc collation-symbol: <KAF>
+<S12A9> % ETHIOPIC SYLLABLE KU old glibc collation-symbol: <KAF>
+<S12AA> % ETHIOPIC SYLLABLE KI old glibc collation-symbol: <KAF>
+<S12AB> % ETHIOPIC SYLLABLE KAA old glibc collation-symbol: <KAF>
+<S12AC> % ETHIOPIC SYLLABLE KEE old glibc collation-symbol: <KAF>
+<S12AD> % ETHIOPIC SYLLABLE KE old glibc collation-symbol: <KAF>
+<S12AE> % ETHIOPIC SYLLABLE KO old glibc collation-symbol: <KAF>
+<S12AF> % ETHIOPIC SYLLABLE KOA old glibc collation-symbol: <KAF>
+<S12B0> % ETHIOPIC SYLLABLE KWA old glibc collation-symbol: <KAF>
+<S12B2> % ETHIOPIC SYLLABLE KWI old glibc collation-symbol: <KAF>
+<S12B3> % ETHIOPIC SYLLABLE KWAA old glibc collation-symbol: <KAF>
+<S12B4> % ETHIOPIC SYLLABLE KWEE old glibc collation-symbol: <KAF>
+<S12B5> % ETHIOPIC SYLLABLE KWE old glibc collation-symbol: <KAF>
+<S12B8> % ETHIOPIC SYLLABLE KXA old glibc collation-symbol: <KHA-KAF>
+<S12B9> % ETHIOPIC SYLLABLE KXU old glibc collation-symbol: <KHA-KAF>
+<S12BA> % ETHIOPIC SYLLABLE KXI old glibc collation-symbol: <KHA-KAF>
+<S12BB> % ETHIOPIC SYLLABLE KXAA old glibc collation-symbol: <KHA-KAF>
+<S12BC> % ETHIOPIC SYLLABLE KXEE old glibc collation-symbol: <KHA-KAF>
+<S12BD> % ETHIOPIC SYLLABLE KXE old glibc collation-symbol: <KHA-KAF>
+<S12BE> % ETHIOPIC SYLLABLE KXO old glibc collation-symbol: <KHA-KAF>
+<S12C0> % ETHIOPIC SYLLABLE KXWA old glibc collation-symbol: <KHA-KAF>
+<S12C2> % ETHIOPIC SYLLABLE KXWI old glibc collation-symbol: <KHA-KAF>
+<S12C3> % ETHIOPIC SYLLABLE KXWAA old glibc collation-symbol: <KHA-KAF>
+<S12C4> % ETHIOPIC SYLLABLE KXWEE old glibc collation-symbol: <KHA-KAF>
+<S12C5> % ETHIOPIC SYLLABLE KXWE old glibc collation-symbol: <KHA-KAF>
+<S1208> % ETHIOPIC SYLLABLE LA old glibc collation-symbol: <LAWI>
+<S1209> % ETHIOPIC SYLLABLE LU old glibc collation-symbol: <LAWI>
+<S120A> % ETHIOPIC SYLLABLE LI old glibc collation-symbol: <LAWI>
+<S120B> % ETHIOPIC SYLLABLE LAA old glibc collation-symbol: <LAWI>
+<S120C> % ETHIOPIC SYLLABLE LEE old glibc collation-symbol: <LAWI>
+<S120D> % ETHIOPIC SYLLABLE LE old glibc collation-symbol: <LAWI>
+<S120E> % ETHIOPIC SYLLABLE LO old glibc collation-symbol: <LAWI>
+<S120F> % ETHIOPIC SYLLABLE LWA old glibc collation-symbol: <LAWI>
+<S2D80> % ETHIOPIC SYLLABLE LOA old glibc collation-symbol: <LAWI>
+<S1218> % ETHIOPIC SYLLABLE MA old glibc collation-symbol: <MAY>
+<S1219> % ETHIOPIC SYLLABLE MU old glibc collation-symbol: <MAY>
+<S121A> % ETHIOPIC SYLLABLE MI old glibc collation-symbol: <MAY>
+<S121B> % ETHIOPIC SYLLABLE MAA old glibc collation-symbol: <MAY>
+<S121C> % ETHIOPIC SYLLABLE MEE old glibc collation-symbol: <MAY>
+<S121D> % ETHIOPIC SYLLABLE ME old glibc collation-symbol: <MAY>
+<S121E> % ETHIOPIC SYLLABLE MO old glibc collation-symbol: <MAY>
+<S121F> % ETHIOPIC SYLLABLE MWA old glibc collation-symbol: <MAY>
+<S1380> % ETHIOPIC SYLLABLE SEBATBEIT MWA old glibc collation-symbol: <MAY>
+<S1381> % ETHIOPIC SYLLABLE MWI old glibc collation-symbol: <MAY>
+<S1382> % ETHIOPIC SYLLABLE MWEE old glibc collation-symbol: <MAY>
+<S1383> % ETHIOPIC SYLLABLE MWE old glibc collation-symbol: <MAY>
+<S2D81> % ETHIOPIC SYLLABLE MOA old glibc collation-symbol: <MAY>
+<S1290> % ETHIOPIC SYLLABLE NA old glibc collation-symbol: <NEHAS>
+<S1291> % ETHIOPIC SYLLABLE NU old glibc collation-symbol: <NEHAS>
+<S1292> % ETHIOPIC SYLLABLE NI old glibc collation-symbol: <NEHAS>
+<S1293> % ETHIOPIC SYLLABLE NAA old glibc collation-symbol: <NEHAS>
+<S1294> % ETHIOPIC SYLLABLE NEE old glibc collation-symbol: <NEHAS>
+<S1295> % ETHIOPIC SYLLABLE NE old glibc collation-symbol: <NEHAS>
+<S1296> % ETHIOPIC SYLLABLE NO old glibc collation-symbol: <NEHAS>
+<S1297> % ETHIOPIC SYLLABLE NWA old glibc collation-symbol: <NEHAS>
+<S2D88> % ETHIOPIC SYLLABLE NOA old glibc collation-symbol: <NEHAS>
+<S1298> % ETHIOPIC SYLLABLE NYA old glibc collation-symbol: <NYE-NEHAS>
+<S1299> % ETHIOPIC SYLLABLE NYU old glibc collation-symbol: <NYE-NEHAS>
+<S129A> % ETHIOPIC SYLLABLE NYI old glibc collation-symbol: <NYE-NEHAS>
+<S129B> % ETHIOPIC SYLLABLE NYAA old glibc collation-symbol: <NYE-NEHAS>
+<S129C> % ETHIOPIC SYLLABLE NYEE old glibc collation-symbol: <NYE-NEHAS>
+<S129D> % ETHIOPIC SYLLABLE NYE old glibc collation-symbol: <NYE-NEHAS>
+<S129E> % ETHIOPIC SYLLABLE NYO old glibc collation-symbol: <NYE-NEHAS>
+<S129F> % ETHIOPIC SYLLABLE NYWA old glibc collation-symbol: <NYE-NEHAS>
+<S2D89> % ETHIOPIC SYLLABLE NYOA old glibc collation-symbol: <NYE-NEHAS>
+<S1220> % ETHIOPIC SYLLABLE SZA old glibc collation-symbol: <SEWT>
+<S1221> % ETHIOPIC SYLLABLE SZU old glibc collation-symbol: <SEWT>
+<S1222> % ETHIOPIC SYLLABLE SZI old glibc collation-symbol: <SEWT>
+<S1223> % ETHIOPIC SYLLABLE SZAA old glibc collation-symbol: <SEWT>
+<S1224> % ETHIOPIC SYLLABLE SZEE old glibc collation-symbol: <SEWT>
+<S1225> % ETHIOPIC SYLLABLE SZE old glibc collation-symbol: <SEWT>
+<S1226> % ETHIOPIC SYLLABLE SZO old glibc collation-symbol: <SEWT>
+<S1227> % ETHIOPIC SYLLABLE SZWA old glibc collation-symbol: <SEWT>
+<S12D0> % ETHIOPIC SYLLABLE PHARYNGEAL A old glibc collation-symbol: <AYIN>
+<S12D1> % ETHIOPIC SYLLABLE PHARYNGEAL U old glibc collation-symbol: <AYIN>
+<S12D2> % ETHIOPIC SYLLABLE PHARYNGEAL I old glibc collation-symbol: <AYIN>
+<S12D3> % ETHIOPIC SYLLABLE PHARYNGEAL AA old glibc collation-symbol: <AYIN>
+<S12D4> % ETHIOPIC SYLLABLE PHARYNGEAL EE old glibc collation-symbol: <AYIN>
+<S12D5> % ETHIOPIC SYLLABLE PHARYNGEAL E old glibc collation-symbol: <AYIN>
+<S12D6> % ETHIOPIC SYLLABLE PHARYNGEAL O old glibc collation-symbol: <AYIN>
+<S1348> % ETHIOPIC SYLLABLE FA old glibc collation-symbol: <AF>
+<S1349> % ETHIOPIC SYLLABLE FU old glibc collation-symbol: <AF>
+<S134A> % ETHIOPIC SYLLABLE FI old glibc collation-symbol: <AF>
+<S134B> % ETHIOPIC SYLLABLE FAA old glibc collation-symbol: <AF>
+<S134C> % ETHIOPIC SYLLABLE FEE old glibc collation-symbol: <AF>
+<S134D> % ETHIOPIC SYLLABLE FE old glibc collation-symbol: <AF>
+<S134E> % ETHIOPIC SYLLABLE FO old glibc collation-symbol: <AF>
+<S134F> % ETHIOPIC SYLLABLE FWA old glibc collation-symbol: <AF>
+<S1388> % ETHIOPIC SYLLABLE SEBATBEIT FWA old glibc collation-symbol: <AF>
+<S1389> % ETHIOPIC SYLLABLE FWI old glibc collation-symbol: <AF>
+<S138A> % ETHIOPIC SYLLABLE FWEE old glibc collation-symbol: <AF>
+<S138B> % ETHIOPIC SYLLABLE FWE old glibc collation-symbol: <AF>
+<S1338> % ETHIOPIC SYLLABLE TSA old glibc collation-symbol: <SEDEY>
+<S1339> % ETHIOPIC SYLLABLE TSU old glibc collation-symbol: <SEDEY>
+<S133A> % ETHIOPIC SYLLABLE TSI old glibc collation-symbol: <SEDEY>
+<S133B> % ETHIOPIC SYLLABLE TSAA old glibc collation-symbol: <SEDEY>
+<S133C> % ETHIOPIC SYLLABLE TSEE old glibc collation-symbol: <SEDEY>
+<S133D> % ETHIOPIC SYLLABLE TSE old glibc collation-symbol: <SEDEY>
+<S133E> % ETHIOPIC SYLLABLE TSO old glibc collation-symbol: <SEDEY>
+<S133F> % ETHIOPIC SYLLABLE TSWA old glibc collation-symbol: <SEDEY>
+<S1240> % ETHIOPIC SYLLABLE QA old glibc collation-symbol: <QAF>
+<S1241> % ETHIOPIC SYLLABLE QU old glibc collation-symbol: <QAF>
+<S1242> % ETHIOPIC SYLLABLE QI old glibc collation-symbol: <QAF>
+<S1243> % ETHIOPIC SYLLABLE QAA old glibc collation-symbol: <QAF>
+<S1244> % ETHIOPIC SYLLABLE QEE old glibc collation-symbol: <QAF>
+<S1245> % ETHIOPIC SYLLABLE QE old glibc collation-symbol: <QAF>
+<S1246> % ETHIOPIC SYLLABLE QO old glibc collation-symbol: <QAF>
+<S1247> % ETHIOPIC SYLLABLE QOA old glibc collation-symbol: <QAF>
+<S1248> % ETHIOPIC SYLLABLE QWA old glibc collation-symbol: <QAF>
+<S124A> % ETHIOPIC SYLLABLE QWI old glibc collation-symbol: <QAF>
+<S124B> % ETHIOPIC SYLLABLE QWAA old glibc collation-symbol: <QAF>
+<S124C> % ETHIOPIC SYLLABLE QWEE old glibc collation-symbol: <QAF>
+<S124D> % ETHIOPIC SYLLABLE QWE old glibc collation-symbol: <QAF>
+<S1250> % ETHIOPIC SYLLABLE QHA old glibc collation-symbol: <QHA-QAF>
+<S1251> % ETHIOPIC SYLLABLE QHU old glibc collation-symbol: <QHA-QAF>
+<S1252> % ETHIOPIC SYLLABLE QHI old glibc collation-symbol: <QHA-QAF>
+<S1253> % ETHIOPIC SYLLABLE QHAA old glibc collation-symbol: <QHA-QAF>
+<S1254> % ETHIOPIC SYLLABLE QHEE old glibc collation-symbol: <QHA-QAF>
+<S1255> % ETHIOPIC SYLLABLE QHE old glibc collation-symbol: <QHA-QAF>
+<S1256> % ETHIOPIC SYLLABLE QHO old glibc collation-symbol: <QHA-QAF>
+<S1258> % ETHIOPIC SYLLABLE QHWA old glibc collation-symbol: <QHA-QAF>
+<S125A> % ETHIOPIC SYLLABLE QHWI old glibc collation-symbol: <QHA-QAF>
+<S125B> % ETHIOPIC SYLLABLE QHWAA old glibc collation-symbol: <QHA-QAF>
+<S125C> % ETHIOPIC SYLLABLE QHWEE old glibc collation-symbol: <QHA-QAF>
+<S125D> % ETHIOPIC SYLLABLE QHWE old glibc collation-symbol: <QHA-QAF>
+<S1358> % ETHIOPIC SYLLABLE RYA old glibc collation-symbol: <RIS>
+<S1230> % ETHIOPIC SYLLABLE SA old glibc collation-symbol: <SAT>
+<S1231> % ETHIOPIC SYLLABLE SU old glibc collation-symbol: <SAT>
+<S1232> % ETHIOPIC SYLLABLE SI old glibc collation-symbol: <SAT>
+<S1233> % ETHIOPIC SYLLABLE SAA old glibc collation-symbol: <SAT>
+<S1234> % ETHIOPIC SYLLABLE SEE old glibc collation-symbol: <SAT>
+<S1235> % ETHIOPIC SYLLABLE SE old glibc collation-symbol: <SAT>
+<S1236> % ETHIOPIC SYLLABLE SO old glibc collation-symbol: <SAT>
+<S1237> % ETHIOPIC SYLLABLE SWA old glibc collation-symbol: <SAT>
+<S2D83> % ETHIOPIC SYLLABLE SOA old glibc collation-symbol: <SAT>
+<S1238> % ETHIOPIC SYLLABLE SHA old glibc collation-symbol: <SHA-SAT>
+<S1239> % ETHIOPIC SYLLABLE SHU old glibc collation-symbol: <SHA-SAT>
+<S123A> % ETHIOPIC SYLLABLE SHI old glibc collation-symbol: <SHA-SAT>
+<S123B> % ETHIOPIC SYLLABLE SHAA old glibc collation-symbol: <SHA-SAT>
+<S123C> % ETHIOPIC SYLLABLE SHEE old glibc collation-symbol: <SHA-SAT>
+<S123D> % ETHIOPIC SYLLABLE SHE old glibc collation-symbol: <SHA-SAT>
+<S123E> % ETHIOPIC SYLLABLE SHO old glibc collation-symbol: <SHA-SAT>
+<S123F> % ETHIOPIC SYLLABLE SHWA old glibc collation-symbol: <SHA-SAT>
+<S2D84> % ETHIOPIC SYLLABLE SHOA old glibc collation-symbol: <SHA-SAT>
+<S1270> % ETHIOPIC SYLLABLE TA old glibc collation-symbol: <TAW>
+<S1271> % ETHIOPIC SYLLABLE TU old glibc collation-symbol: <TAW>
+<S1272> % ETHIOPIC SYLLABLE TI old glibc collation-symbol: <TAW>
+<S1273> % ETHIOPIC SYLLABLE TAA old glibc collation-symbol: <TAW>
+<S1274> % ETHIOPIC SYLLABLE TEE old glibc collation-symbol: <TAW>
+<S1275> % ETHIOPIC SYLLABLE TE old glibc collation-symbol: <TAW>
+<S1276> % ETHIOPIC SYLLABLE TO old glibc collation-symbol: <TAW>
+<S1277> % ETHIOPIC SYLLABLE TWA old glibc collation-symbol: <TAW>
+<S2D86> % ETHIOPIC SYLLABLE TOA old glibc collation-symbol: <TAW>
+<S1278> % ETHIOPIC SYLLABLE CA old glibc collation-symbol: <CHA-TAW>
+<S1279> % ETHIOPIC SYLLABLE CU old glibc collation-symbol: <CHA-TAW>
+<S127A> % ETHIOPIC SYLLABLE CI old glibc collation-symbol: <CHA-TAW>
+<S127B> % ETHIOPIC SYLLABLE CAA old glibc collation-symbol: <CHA-TAW>
+<S127C> % ETHIOPIC SYLLABLE CEE old glibc collation-symbol: <CHA-TAW>
+<S127D> % ETHIOPIC SYLLABLE CE old glibc collation-symbol: <CHA-TAW>
+<S127E> % ETHIOPIC SYLLABLE CO old glibc collation-symbol: <CHA-TAW>
+<S127F> % ETHIOPIC SYLLABLE CWA old glibc collation-symbol: <CHA-TAW>
+<S2D87> % ETHIOPIC SYLLABLE COA old glibc collation-symbol: <CHA-TAW>
+<S1280> % ETHIOPIC SYLLABLE XA old glibc collation-symbol: <HARM>
+<S1281> % ETHIOPIC SYLLABLE XU old glibc collation-symbol: <HARM>
+<S1282> % ETHIOPIC SYLLABLE XI old glibc collation-symbol: <HARM>
+<S1283> % ETHIOPIC SYLLABLE XAA old glibc collation-symbol: <HARM>
+<S1284> % ETHIOPIC SYLLABLE XEE old glibc collation-symbol: <HARM>
+<S1285> % ETHIOPIC SYLLABLE XE old glibc collation-symbol: <HARM>
+<S1286> % ETHIOPIC SYLLABLE XO old glibc collation-symbol: <HARM>
+<S1287> % ETHIOPIC SYLLABLE XOA old glibc collation-symbol: <HARM>
+<S1288> % ETHIOPIC SYLLABLE XWA old glibc collation-symbol: <HARM>
+<S128A> % ETHIOPIC SYLLABLE XWI old glibc collation-symbol: <HARM>
+<S128B> % ETHIOPIC SYLLABLE XWAA old glibc collation-symbol: <HARM>
+<S128C> % ETHIOPIC SYLLABLE XWEE old glibc collation-symbol: <HARM>
+<S128D> % ETHIOPIC SYLLABLE XWE old glibc collation-symbol: <HARM>
+<S1340> % ETHIOPIC SYLLABLE TZA old glibc collation-symbol: <SEPA>
+<S1341> % ETHIOPIC SYLLABLE TZU old glibc collation-symbol: <SEPA>
+<S1342> % ETHIOPIC SYLLABLE TZI old glibc collation-symbol: <SEPA>
+<S1343> % ETHIOPIC SYLLABLE TZAA old glibc collation-symbol: <SEPA>
+<S1344> % ETHIOPIC SYLLABLE TZEE old glibc collation-symbol: <SEPA>
+<S1345> % ETHIOPIC SYLLABLE TZE old glibc collation-symbol: <SEPA>
+<S1346> % ETHIOPIC SYLLABLE TZO old glibc collation-symbol: <SEPA>
+<S1347> % ETHIOPIC SYLLABLE TZOA old glibc collation-symbol: <SEPA>
+<S1330> % ETHIOPIC SYLLABLE PHA old glibc collation-symbol: <PEYT>
+<S1331> % ETHIOPIC SYLLABLE PHU old glibc collation-symbol: <PEYT>
+<S1332> % ETHIOPIC SYLLABLE PHI old glibc collation-symbol: <PEYT>
+<S1333> % ETHIOPIC SYLLABLE PHAA old glibc collation-symbol: <PEYT>
+<S1334> % ETHIOPIC SYLLABLE PHEE old glibc collation-symbol: <PEYT>
+<S1335> % ETHIOPIC SYLLABLE PHE old glibc collation-symbol: <PEYT>
+<S1336> % ETHIOPIC SYLLABLE PHO old glibc collation-symbol: <PEYT>
+<S1337> % ETHIOPIC SYLLABLE PHWA old glibc collation-symbol: <PEYT>
+<S2D91> % ETHIOPIC SYLLABLE PHOA old glibc collation-symbol: <PEYT>
+<S1350> % ETHIOPIC SYLLABLE PA old glibc collation-symbol: <PSA>
+<S1351> % ETHIOPIC SYLLABLE PU old glibc collation-symbol: <PSA>
+<S1352> % ETHIOPIC SYLLABLE PI old glibc collation-symbol: <PSA>
+<S1353> % ETHIOPIC SYLLABLE PAA old glibc collation-symbol: <PSA>
+<S1354> % ETHIOPIC SYLLABLE PEE old glibc collation-symbol: <PSA>
+<S1355> % ETHIOPIC SYLLABLE PE old glibc collation-symbol: <PSA>
+<S1356> % ETHIOPIC SYLLABLE PO old glibc collation-symbol: <PSA>
+<S1357> % ETHIOPIC SYLLABLE PWA old glibc collation-symbol: <PSA>
+<S138C> % ETHIOPIC SYLLABLE SEBATBEIT PWA old glibc collation-symbol: <PSA>
+<S138D> % ETHIOPIC SYLLABLE PWI old glibc collation-symbol: <PSA>
+<S138E> % ETHIOPIC SYLLABLE PWEE old glibc collation-symbol: <PSA>
+<S138F> % ETHIOPIC SYLLABLE PWE old glibc collation-symbol: <PSA>
+<S2D92> % ETHIOPIC SYLLABLE POA old glibc collation-symbol: <PSA>
reorder-end
-%
END LC_COLLATE
@@ -115,8 +441,7 @@ END LC_CTYPE
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
LC_MEASUREMENT
-% metric
-measurement 1
+copy "gez_ER"
END LC_MEASUREMENT
LC_MONETARY
@@ -157,4 +482,3 @@ END LC_NAME
LC_TIME
copy "gez_ER"
END LC_TIME
-%