Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/en-translation-source-merged.json
Original file line number Diff line number Diff line change
Expand Up @@ -600,6 +600,7 @@
"delivery": "Delivery",
"private": "Private",
"permissive": "Permissive",
"permit": "Permit",
"stateRoad": "State Road",
"road": "Road",
"street": "Street",
Expand Down
3 changes: 2 additions & 1 deletion src/resources/i18n/ors-dictionary.i18n.cs-cz.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ export default {
destination: 'Cíl',
delivery: 'Zásobovací',
private: 'Soukromá',
permissive: 'Na povolení',
permissive: 'Povolen',
permit: 'Na povolení',
stateRoad: 'Státní silnice',
road: 'Silnice',
street: 'Ulice',
Expand Down
1 change: 1 addition & 0 deletions src/resources/i18n/ors-dictionary.i18n.de-de.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ export default {
delivery: 'Lieferverkehr',
private: 'Privat',
permissive: 'Geduldet',
permit: 'Mit Erlaubnis',
stateRoad: 'Bundesstraße',
road: 'Landstraße',
street: 'Straße',
Expand Down
1 change: 1 addition & 0 deletions src/resources/i18n/ors-dictionary.i18n.en-us.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ export default {
delivery: 'Delivery',
private: 'Private',
permissive: 'Permissive',
permit: 'Permit',
stateRoad: 'State Road',
road: 'Road',
street: 'Street',
Expand Down
1 change: 1 addition & 0 deletions src/resources/i18n/ors-dictionary.i18n.es-es.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ export default {
'delivery': 'Entrega',
'private': 'Privado',
'permissive': 'Permisivo',
'permit': 'Permiso',
'stateRoad': 'Carretera del Estado',
'road': 'Carretera',
'street': 'Calle',
Expand Down
3 changes: 2 additions & 1 deletion src/resources/i18n/ors-dictionary.i18n.fr-fr.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ export default {
'destination': 'Destination',
'delivery': 'Livraison',
'private': 'Accès privé',
'permissive': 'Permissive',
'permissive': 'Permissif',
'permit': 'Permis',
'stateRoad': 'Route nationale',
'road': 'Route',
'street': 'Rue',
Expand Down
1 change: 1 addition & 0 deletions src/resources/i18n/ors-dictionary.i18n.hu-hu.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ export default {
'delivery': 'Áruszállítás',
'private': 'Engedéllyel',
'permissive': 'Megtűrt',
'permit': 'Engedély',
'stateRoad': 'Főút',
'road': 'Egyéb út',
'street': 'Utca',
Expand Down
3 changes: 2 additions & 1 deletion src/resources/i18n/ors-dictionary.i18n.it-it.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ export default {
'destination': 'Destinazione',
'delivery': 'Zona di carico/scarico',
'private': 'Privato',
'permissive': 'Permesso',
'permissive': 'Permissivo',
'permit': 'Permesso',
'stateRoad': 'Strada statale',
'road': 'Strada',
'street': 'Strada',
Expand Down
1 change: 1 addition & 0 deletions src/resources/i18n/ors-dictionary.i18n.pt-br.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ export default {
delivery: 'Entrega',
private: 'Privado',
permissive: 'Permissivo',
permit: 'Permissão',
stateRoad: 'Rodovia estadual',
road: 'Rodovia',
street: 'Rua',
Expand Down
1 change: 1 addition & 0 deletions src/resources/i18n/ors-dictionary.i18n.ro-ro.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ export default {
destination: 'Destinație',
private: 'Privat',
permissive: 'Permisivitate',
permit: 'Permis',
road: 'Drumul',
street: 'Strada',
path: 'Calea',
Expand Down
19 changes: 11 additions & 8 deletions src/resources/ors-dictionary.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,8 @@ const orsDictionary = {
'4': 'destination',
'8': 'delivery',
'16': 'private',
'32': 'permissive'
'32': 'permissive',
'64': 'permit'
},
green: {
'0': '0',
Expand Down Expand Up @@ -157,13 +158,15 @@ const orsDictionary = {
5: '#c71400'
},
roadaccessrestrictions: {
0: 'gray',
1: 'green',
2: '#FFFF66',
4: '#FFFF33',
8: '#FFFF00',
16: '#CCCC00',
32: '#333300'
// https://colorbrewer2.org/#type=qualitative&scheme=Accent&n=8
0: '#808080',
1: '#7fc97f',
2: '#beaed4',
4: '#ffff99',
8: '#bf5b17',
16: '#f0027f',
32: '#386cb0',
64: '#fdc086'
},
tollways: {
'0': '#708090',
Expand Down
Loading