Moritz
Moritz
Leaving this as a documentation bug. @SalehIA : Please file this as a new issue, I cannot reproduce your case and do not want to stray away from the original...
This might warrant opening a new issue, but is this behavior not expected: ```dart import 'package:intl/intl.dart'; void main() { print(NumberFormat.compact(locale: 'ar').format(15.4)); // prints "15.4" print(NumberFormat.compact(locale: 'ar_DZ').format(15.4)); // prints "15.4" print(NumberFormat.compact(locale:...
For missing locales, please open an issue and select the `Missing Locale - My favorite locale is missing` template.
Implementing this would be quite involved, see the reference implementation at https://icu.unicode.org/design/case/greek-upper. I would be happy to review PRs, if someone would like to attempt this.
@robertbastian it might make sense to expose the ICU4X locale-specific casing as well as [the browser version](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/toLocaleLowerCase) in `package:intl4x`.
After looking into it a bit deeper, this might rather be an upstream CLDR data issue. I have filed a [bug there](https://unicode-org.atlassian.net/browse/CLDR-16899).
This is weird, as the symbols for `sr_Latn` do exist in the package data. I will investigate this further.
I agree that adding a character for lowercase/uppercase does not sound great - being able to override the am/pm strings for a given locale sounds like a better solution at...
Currently, this is possible but a bit contrived: ``` import 'package:intl/date_symbol_data_custom.dart'; import 'package:intl/date_symbol_data_local.dart'; import 'package:intl/date_symbols.dart'; import 'package:intl/date_time_patterns.dart'; import 'package:intl/intl.dart'; void main(List arguments) { var symbols = dateTimeSymbolMap()["en_US"] as DateSymbols; var...
I don't completely understand. So you have an `.arb` file containing English strings, or are you receiving them over the network? On-the-fly switching is not supported by `package:intl_translation`, as the...