49 lines
1.7 KiB
Plaintext
Executable File
49 lines
1.7 KiB
Plaintext
Executable File
* Sorting weight table for HUNGARIAN 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 Hungarian alphabetic characters that
|
|
* differ from A-Z as follows:
|
|
*
|
|
* Digraphs: DZ, (DZS), GY, LY, NY, TY, ZS - see HUNGARIAN collate category
|
|
*
|
|
* Between A and B: A WITH ACUTE
|
|
* Between D and E: DZ, DZS
|
|
* Between E and F: E WITH ACUTE
|
|
* Between G and H: GY
|
|
* Between L and M: LY
|
|
* Between M and O: O WITH ACUTE
|
|
* Between S and T: NY (?)
|
|
* Between T and U: TY
|
|
* Between U and V: U WITH ACUTE
|
|
* After Z: ZS
|
|
*
|
|
* 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 all A's:
|
|
00C1 4/1002 1 U * A WITH ACUTE
|
|
00E1 - 1 L
|
|
* After all E's:
|
|
00C9 4/1062 1 U * E WITH ACUTE
|
|
00E9 - 1 L
|
|
* After all O's:
|
|
00D3 4/1172 1 U * O WITH ACUTE
|
|
00F3 - 1 L
|
|
* After all U's:
|
|
00DA 4/1252 1 U * U WITH ACUTE
|
|
00FA - 1 L
|
|
*
|
|
* END
|