43 lines
1.6 KiB
Plaintext
Executable File
43 lines
1.6 KiB
Plaintext
Executable File
* Sorting weight table for ROMANIAN order of (Latin) characters.
|
|
* This should be loaded after the LATIN1-DEFAULT table, (optionally
|
|
* after LATINX-DEFAULT, LATINX2-DEFAULT and LATINX3-default), and
|
|
* sets the weights of the Romanian alphabetic characters that
|
|
* differ from A-Z as follows:
|
|
*
|
|
* Between A and B: A WITH CIRCUMFLEX, A WITH BREVE
|
|
* Between I and J: I WITH CIRCUMFLEX
|
|
* Between S and T: S WITH CEDILLA
|
|
* Between T and U: T WITH CEDILLA
|
|
*
|
|
* SYNTAX:
|
|
* Each non-comment line gives one or more weights for a character,
|
|
* as follows (character value in hex, weights in decimal):
|
|
* Field 1 = Unicode character value
|
|
* Field 2 = Shared weight (characters that sort together if accents
|
|
* and case were to be disregarded should have the same SW)
|
|
* Or, Block Weight/Shared Weight. This form allows characters
|
|
* in different Unicode blocks to have equal SWs. If BW is
|
|
* omitted, only SWs for characters in the same block are equal.
|
|
* Field 3 = Accent weight, or '-' to omit or copy from previous.
|
|
* Please use values as defined in the file NLS.WT.LOOKUP.
|
|
* Field 4 = Case weight, or 'U' for upper and 'L' for lower case chars.
|
|
*
|
|
**********************************************************************
|
|
* HEX (BW/)SW AW CW
|
|
* After A and before B:
|
|
00C2 4/1002 13 U * A WITH CIRCUMFLEX
|
|
00E2 - 13 L
|
|
0102 4/1004 5 U * A WITH BREVE
|
|
0103 - 5 L
|
|
* After I and before J:
|
|
00CE 4/1112 13 U * I WITH CIRCUMFLEX
|
|
00EE - 13 L
|
|
* After S and before T:
|
|
015E 4/1222 40 U * S WITH CEDILLA
|
|
015F - 40 L
|
|
* After T and before U:
|
|
0162 4/1242 40 U * T WITH CEDILLA
|
|
0163 - 40 L
|
|
*
|
|
* END
|