-
-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"Mail Drop Box" is not translated in German #763
Comments
And which version of Every Door is it ? That was similar issue for Danish translation of "Mail Drop Box" in #707 that was supposed to be fixed in |
It seems that #707 have only fixed the language displayed when adding new E.g. for German first image (adding new POI) shows |
Could this be related to streetcomplete/StreetComplete#4916? |
So, by the way, for StreetComplete, the issue is the following: StreetComplete uses the iD editor presets to find the translations of map features. It just looks for the matching feature, given a set of tags and other parameters, and thus accesses the features's associated translation (, icon, etc.). However, the app currently assumes that features are generally not specific to specific countries. If they were country specific, it would make things much more complicated, as the country code / geo-position becomes necessary to find the feature that matches an element. Now, turns out that the iD presets indeed contain features specific to certain countries. What features might be country specific? For example, postboxes. Snippet from presets.json with country-specific post boxes "amenity/post_box": {
"icon": "temaki-post_box",
"fields": [
"operator",
"collection_times",
"ref",
"post_box/type-GB",
"royal_cypher-GB"
],
"moreFields": [
"access_simple",
"branch_brand",
"brand",
"colour",
"covered",
"drive_through",
"height",
"indoor",
"level",
"manufacturer",
"material",
"post_box/type",
"support",
"wheelchair"
],
"geometry": [
"point",
"vertex"
],
"tags": {
"amenity": "post_box"
},
"locationSet": {
"exclude": [
"us"
]
}
},
"amenity/post_box/post_box-US": {
"icon": "temaki-post_box",
"locationSet": {
"include": [
"us"
]
},
"fields": [
"{amenity/post_box}",
"drive_through"
],
"moreFields": [
"{amenity/post_box}",
"gnis/feature_id-US"
],
"geometry": [
"point",
"vertex"
],
"tags": {
"amenity": "post_box"
},
"name": "{amenity/post_box}"
}, This is done to tweak the display of presets in the US, e.g. the IMO this tweak/hack is not worth the added complexity requiring consumers of the Anyway, your app does seem to find the preset, so maybe this is not the source of the issue. |
On Android, the string "Mail Drop Box" has not been translated into German, but in the iD editor translation data a translation exists. It looks like this:
PS: Thanks a lot for the huge amount of work that went into this great app!
The text was updated successfully, but these errors were encountered: