-
Notifications
You must be signed in to change notification settings - Fork 46
Closed
Labels
FUTUREIdeas and requests to consider after Fluent 1.0Ideas and requests to consider after Fluent 1.0syntax
Description
Given a term defined as follows:
-thing = {
*[one] Thing
[other] Things
}
Should we allow this?
own = You have { $count ->
*[one] {-thing[$count]}
[other] {-thing[$count]}
}
Right now we require the proper key to be specified in the VariantExpression
, like so:
own = You have { $count ->
*[one] {-thing[one]}
[other] {-thing[other]}
}
Note that because we allow all valid variant keys, this is currently also legal:
own = You have { $count ->
*[one] {-thing[1]}
[other] {-thing[other]}
}
Metadata
Metadata
Assignees
Labels
FUTUREIdeas and requests to consider after Fluent 1.0Ideas and requests to consider after Fluent 1.0syntax