docs/IcuSkeletonParameters.md in phrase-2.10.0 vs docs/IcuSkeletonParameters.md in phrase-2.11.0
- old
+ new
@@ -6,18 +6,20 @@
------------ | ------------- | ------------- | -------------
**content** | **String** | Source content | [optional]
**locale_codes** | **Array<String>** | Locale codes | [optional]
**keep_content** | **Boolean** | Keep the content and add missing plural forms for each locale | [optional]
**zero_form_enabled** | **Boolean** | Indicates whether the zero form should be included or excluded in the returned skeletons | [optional]
+**cldr_version** | **String** | Strings supports two CLDR variants, when it comes to pluralization rules. \\ You can choose which one you want to use when constructing the skeletons. Possible values \\ are `legacy` and `cldr_41`. Default value is `legacy`. | [optional]
## Code Sample
```ruby
require 'Phrase'
instance = Phrase::IcuSkeletonParameters.new(content: {number, plural, one {One} other {%{n}}},
locale_codes: ["en"],
keep_content: null,
- zero_form_enabled: null)
+ zero_form_enabled: null,
+ cldr_version: cldr_41)
```