forked from MapComplete/MapComplete
More translations
This commit is contained in:
parent
a528159bb7
commit
81a80ef95c
10 changed files with 42 additions and 42 deletions
|
@ -23,7 +23,7 @@ export default class BikeParkings extends LayerDefinition {
|
|||
this.title = new FixedText("Fietsparking");
|
||||
this.elementsToShow = [
|
||||
new ImageCarouselWithUploadConstructor(),
|
||||
new OperatorTag(),
|
||||
// new OperatorTag(),
|
||||
new ParkingType()
|
||||
];
|
||||
|
||||
|
|
|
@ -55,8 +55,16 @@ export class BikeShop extends LayerDefinition {
|
|||
new TagRenderingOptions({
|
||||
question: "Does this shop repair bicycles?",
|
||||
mappings: [
|
||||
{k: this.sellsBikes, txt: "Bikes can be repaired here"},
|
||||
{k: new Tag("service:bicycle:retail", "no"), txt: "No bikes can be bought here"},
|
||||
{k: new Tag("service:bicycle:repair", "yes"), txt: "Bikes are repaired here, by the shop owner (for a fee)"},
|
||||
{k: new Tag("service:bicycle:repair", "no"), txt: "Bikes are not repaired here"},
|
||||
]
|
||||
}),
|
||||
|
||||
new TagRenderingOptions({
|
||||
question: "Are there tools here so that one can repair their own bike?",
|
||||
mappings: [
|
||||
{k: new Tag("service:bicycle:diy", "yes"), txt: "Tools for DIY are available here"},
|
||||
{k: new Tag("service:bicycle:diy", "no"), txt: "No tools for DIY are available here"},
|
||||
]
|
||||
}),
|
||||
]
|
||||
|
|
|
@ -73,7 +73,11 @@ export default class BikeStations extends LayerDefinition {
|
|||
}
|
||||
}
|
||||
} else {
|
||||
iconName = "repair_station.svg"
|
||||
if (!self.pump.matchesProperties(properties)) {
|
||||
iconName = "repair_station.svg"
|
||||
} else {
|
||||
iconName = "repair_station.svg"
|
||||
}
|
||||
}
|
||||
const iconUrl = `./assets/bike/${iconName}`
|
||||
return {
|
||||
|
|
|
@ -18,7 +18,7 @@ export default class BikeStationOperator extends TagRenderingOptions {
|
|||
{k: new Tag("operator", "Stad Halle"), txt: "Stad Halle"},
|
||||
{k: new Tag("operator", "Saint Gilles - Sint Gillis"), txt: "Saint Gilles - Sint Gillis"},
|
||||
{k: new Tag("operator", "Jette"), txt: "Jette"},
|
||||
{k: new Tag("operator", "private"), txt: "Beheer door een privépersoon"}
|
||||
{k: new Tag("operator", "private"), txt: "Operated by a private individual"}
|
||||
]
|
||||
});
|
||||
}
|
||||
|
|
|
@ -325,9 +325,9 @@ class TagRendering extends UIElement implements TagDependantUIElement {
|
|||
|
||||
const cancelContents = this._editMode.map((isEditing) => {
|
||||
if (isEditing) {
|
||||
return "<span class='skip-button'>Annuleren</span>";
|
||||
return "<span class='skip-button'>Cancel</span>";
|
||||
} else {
|
||||
return "<span class='skip-button'>Overslaan (Ik weet het niet zeker...)</span>";
|
||||
return "<span class='skip-button'>Skip this question</span>";
|
||||
}
|
||||
});
|
||||
// And at last, set up the skip button
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue