Skip to content

Commit a8e81a3

Browse files
aitelintaitelint
and
aitelint
authored
[SV Currency] Fix ATT recognized as a currency unit in the wrong context (microsoft#2891) (microsoft#2938)
Co-authored-by: aitelint <[email protected]>
1 parent effa164 commit a8e81a3

File tree

3 files changed

+23
-0
lines changed

3 files changed

+23
-0
lines changed

.NET/Microsoft.Recognizers.Definitions.Common/Swedish/NumbersWithUnitDefinitions.cs

+1
Original file line numberDiff line numberDiff line change
@@ -740,6 +740,7 @@ public static class NumbersWithUnitDefinitions
740740
};
741741
public static readonly IList<string> AmbiguousCurrencyUnitList = new List<string>
742742
{
743+
@"att",
743744
@"din.",
744745
@"kiwi",
745746
@"kina",

Patterns/Swedish/Swedish-NumbersWithUnit.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -842,6 +842,7 @@ CurrencyPrefixList: !dictionary
842842
AmbiguousCurrencyUnitList: !list
843843
types: [ string ]
844844
entries:
845+
- att
845846
- din.
846847
- kiwi
847848
- kina

Specs/NumberWithUnit/Swedish/CurrencyModel.json

+21
Original file line numberDiff line numberDiff line change
@@ -600,5 +600,26 @@
600600
"End": 5
601601
}
602602
]
603+
},
604+
{
605+
"Input": "Se till att rymma västkustens tidszon",
606+
"NotSupported": "javascript,python,java",
607+
"Results": []
608+
},
609+
{
610+
"Input": "vi har 100 Att",
611+
"NotSupported": "javascript, python, java",
612+
"Results": [
613+
{
614+
"Text": "100 att",
615+
"TypeName": "currency",
616+
"Resolution": {
617+
"value": "100",
618+
"unit": "Att"
619+
},
620+
"Start": 7,
621+
"End": 13
622+
}
623+
]
603624
}
604625
]

0 commit comments

Comments
 (0)