Replies: 1 comment 1 reply
-
|
Actually it just used to show which options are selected, but the filter will match any of the selected options. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hey 👋 I'm in the middle of adding some
pl_PLtranslations and I noticed a string that could be clarified a little.The base translation for
STR_STATION_LIST_CARGO_FILTER_ALL_AND_NO_RATINGis "All cargo types and no rating". I downloaded the nightly build to check where that string is displayed and it seems to be this place:Apparently, that string is displayed when the "Select all and no rating" filter is selected, which selects all the the cargo types and the "No cargo rating" option as well.
IMHO it would be easier to understand if the base translation of
STR_STATION_LIST_CARGO_FILTER_ALL_AND_NO_RATINGwas "All cargo types or no rating" to clearly indicate that it's a logical disjunction (or a union) of both: "all cargo types" and "no rating". With "and" it sounds as if we were displaying the stations of all the cargo types which also have no rating (at the same time), which doesn't make sense in this context.The base translation "All cargo types and no rating" is understandable only if you are familiar with the structure of that filter: what items it contains (cargo types) and that one of the options is "no rating", which isn't obvious until you open the popup. However, if you see that string for the first time, you may not understand its meaning immediately.
On the other hand, the "and" conjunction in the "Select all and no rating" string in the popup does make sense because it is displayed in a different context and it expresses a very specific intention: "select X and Y" which means "show me the stations matching any of the selected options (X or Y)"
What do you think? 🤔
Beta Was this translation helpful? Give feedback.
All reactions