Different (shorter) phrasings of access

This commit is contained in:
Pieter Vander Vennet 2020-09-30 23:09:48 +02:00
parent bb4411d443
commit 649b273b97
2 changed files with 11 additions and 11 deletions

View file

@ -23,7 +23,7 @@ export class State {
// The singleton of the global state // The singleton of the global state
public static state: State; public static state: State;
public static vNumber = "0.0.9a"; public static vNumber = "0.0.9b";
// The user journey states thresholds when a new feature gets unlocked // The user journey states thresholds when a new feature gets unlocked
public static userJourney = { public static userJourney = {

View file

@ -202,22 +202,22 @@
{ {
"if": "access=yes", "if": "access=yes",
"then": { "then": {
"en": "Public - Everyone has legal right of access, such as city provided bike parking in right of way", "en": "Publicly accessible",
"nl": "Publiek toegankelijke fietsenstalling" "nl": "Publiek toegankelijke fietsenstalling"
} }
}, },
{
"if": "access=private",
"then": {
"en": "Private - Access is primarily limited to member of a school, company or organisation",
"nl": "Private fietsenstalling (fietsenstalling van een school, een bedrijf, ...)"
}
},
{ {
"if": "access=customers", "if": "access=customers",
"then": { "then": {
"en": "Customers - Access is primarily for visitors to a business", "en": "Access is primarily for visitors to a business",
"nl": "Klanten van de zaak of winkel die deze fietsenstalling plaatste" "nl": "Klanten van de zaak of winkel"
}
},
{
"if": "access=private",
"then": {
"en": "Access is limited to members of a school, company or organisation",
"nl": "Private fietsenstalling van een school, een bedrijf, ..."
} }
} }
] ]