v3.3.0
What's Changed
- Add support for nested formats in
LocalizationFormatter
by @zacateras in #350. This is useful, if the string to localize contains a SmartFormat placeholder instead of a pure text. Example: If the format is"{:L:{ProductType}}"
, theProductType
placeholder will be replaced with the variable content "pen". "pen" will in turn be localiced to "bic" for theFR
locale. DictionarySource
has an option to evaluateIReadOnlyDictionary<TKey,TValue>
sources by @axunonb in #353. To enable, setDictionarySource.IsIReadOnlyDictionarySupported
totrue
(default isfalse
). This is for types that only implementIReadOnlyDictionary<TKey,TValue>
, but notIDictionary
.- Bump version to v3.3.0 in #356
New Contributors
- Thanks to @zacateras for the first contribution in #350
Full Changelog: v3.2.2...v3.3.0