Commit 5f2f06a
authored
fix(l10n): escape apostrophe in Italian ARB plural string (#1097)
* fix(l10n): escape apostrophe in Italian ARB plural string
ICU message format treats single quotes as escape characters.
Unescaped apostrophe in `dell'ultimo` caused ICU lexing error
and broke gen_localizations during the Android build.
Fix: replace `'` with `''` in the affected plural form.
* fix(l10n): replace ASCII apostrophe with U+2019 in Italian ARB plural
ICU message format treats ASCII ' as an escape character, causing a
lexing error in gen_localizations during CI Android build.
Fix: replace the ASCII apostrophe in `dell'ultimo` with U+2019 RIGHT
SINGLE QUOTATION MARK, which is not an ICU syntax character. Visual
output is unchanged. Regenerated app_localizations_it.g.dart accordingly.1 parent 6cf1120 commit 5f2f06a
2 files changed
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
883 | 883 | | |
884 | 884 | | |
885 | 885 | | |
886 | | - | |
| 886 | + | |
887 | 887 | | |
888 | 888 | | |
889 | 889 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
746 | 746 | | |
747 | 747 | | |
748 | 748 | | |
749 | | - | |
| 749 | + | |
750 | 750 | | |
751 | 751 | | |
752 | 752 | | |
| |||
0 commit comments