Steven R. Loomis
Steven R. Loomis
- per ISO 4217 amendment 173 quoting directive from the Bank of Sierra Leone dated 2022-09-15 - https://www.six-group.com/dam/download/financial-information/data-center/iso-currrency/amendments/dl-currency-iso-amendment-173.pdf CLDR-15900 - [X] This PR completes the ticket.
- Latest proposed update link should always be: https://www.unicode.org/reports/tr35/proposed.html - This URL will redirect to the appropriate spot depending on project phase (cherry picked from commit d33f209bfeaae80bee6c1e8a224bd4b5de2421e6) #2370 CLDR-16029 -...
CLDR-15034 - DTD, docs and sample file for keyboard regression testing Also, CLDR fixes: - fix unclear message in ElementAttributeInfo and TestDtdData
So we even know which locale failed. CLDR-15997 - [ ] This PR completes the ticket.
For: #7418 Co-authored-by: Eberhard Beilharz includes suggestions from PR https://github.com/keymanapp/keyman/pull/7403#discussion_r994256628 @keymanapp-test-bot skip
https://github.com/keymanapp/keyman/blob/feature-ldml/core/src/ldml/C7043_ldml.md#c704323-elemtransform-and-reorder-element-strings says about `elem` > The first entry in the element string list MUST be the null element string, which has zero length and zero offset. but on inspection, the...
- k_100, k_101, k_102 all fail for different reasons. comments in the files For: #7401
Three ldml keyboards that fail to compile. Will be attached to PR Looks like the issues are: - `key`s without `to=` are not supported, which means gaps and switches are...
ldml_processor is likely to slice UTF-32 codepoints into surrogate pairs, such as the character "🙀" ```c const std::u16string str = vkeys.lookup(vk, modifier_state); … for(size_t i=0; icontext().push_character(str[i]); state->actions().push_character(str[i]); } ``` This...