Skip to content

Commit

Permalink
Tests: fix ft_localedata
Browse files Browse the repository at this point in the history
ICU data format has changed.
  • Loading branch information
martyone authored and pvuorela committed Oct 7, 2014
1 parent 1ba2a15 commit 2744e0a
Showing 1 changed file with 23 additions and 19 deletions.
42 changes: 23 additions & 19 deletions tests/ft_localedata/fi_FI.txt
@@ -1,23 +1,27 @@
fi_FI{
NumberElements{
"--",
" ",
";",
"%",
"0",
"#",
"-",
"E",
"‰",
"∞",
"epäluku",
"+",
LocaleScript{
"Latn",
}

NumberPatterns{
"#,##0.###",
"#,##0.00 ¤",
"#,##0 %",
"#E0",
NumberElements{
latn{
patterns{
currencyFormat{"#,##0.00 ¤"}
decimalFormat{"#,##0.###"}
percentFormat{"#,##0 %"}
scientificFormat{"#E0"}
}
symbols{
decimal{"--"}
exponential{"E"}
group{" "}
infinity{"∞"}
list{";"}
minusSign{"-"}
nan{"epäluku"}
perMille{"‰"}
percentSign{"%"}
plusSign{"+"}
}
}
}
}

0 comments on commit 2744e0a

Please sign in to comment.