-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
3101 lines (3098 loc) · 165 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="Join the community of map editors to update Waze’s live map around your home, work and anywhere you drive.">
<title>Waze Map Editor</title>
<script type="text/json" id="localeStrings">
{
"language_name": "English",
"title": "Waze Map Editor",
"title_short": "Map Editor",
"meta_description": "Join the community of map editors to update Waze’s live map around your home, work and anywhere you drive.",
"time": {
"formats": {
"default": "%a, %d %b %Y %H:%M:%S %z",
"short": "%d %b %H:%M",
"long": "%a %b %d %Y, %H:%M"
},
"am": "am",
"pm": "pm"
},
"datetime": {
"distance_in_words": {
"half_a_minute": "half a minute",
"less_than_x_seconds": {
"one": "1 second",
"other": "%{count} seconds"
},
"x_seconds": {
"one": "1 second",
"other": "%{count} seconds"
},
"less_than_x_minutes": {
"one": "a minute",
"other": "%{count} minutes"
},
"x_minutes": {
"one": "1 minute",
"other": "%{count} minutes"
},
"about_x_hours": {
"one": "1 hour",
"other": "%{count} hours"
},
"x_days": {
"one": "1 day",
"other": "%{count} days"
},
"about_x_months": {
"one": "1 month",
"other": "%{count} months"
},
"x_months": {
"one": "1 month",
"other": "%{count} months"
},
"about_x_years": {
"one": "1 year",
"other": "%{count} years"
},
"over_x_years": {
"one": "1 year",
"other": "%{count} years"
},
"almost_x_years": {
"one": "1 year",
"other": "%{count} years"
}
}
},
"formats": {
"boolean": {
"is_true": "Yes",
"is_false": "No"
},
"date": {
"month_range": {
"start_missing": "? - %b, %Y",
"end_missing": "%b, %Y - ?",
"single_year_single_month": "%{startMonth}, %{startYear}",
"single_year_multi_month": "%{startMonth}-%{endMonth}, %{startYear}",
"multi_year": "%{startMonth}, %{startYear} - %{endMonth}, %{endYear}"
}
}
},
"envs": {
"title": "Environments",
"row": "World",
"usa": "US & Canada only",
"il": "Israel only"
},
"modes": {
"title": "Mode",
"name": {
"default": "Default Mode",
"mte": "Event Mode"
},
"exit": {
"save_changes": "Save your changes before switching mode"
}
},
"footer": {
"wiki": "Wiki",
"forum": "Editing Forum",
"status": "Status",
"keyboard_shortcuts": "Keyboard shortcuts",
"copy_to_clipboard": "Press %{button} to copy",
"link_copied": "Link copied",
"coords_copied": "Coordinates copied"
},
"email_verification": {
"back": "Back",
"missing": {
"title": "Add your email to continue editing",
"message": "To continue editing the map, Waze is asking all editors to add an email address to their account.",
"add_email": "Add email address"
},
"manage": {
"section_top_title": "Manage your email address",
"section_top_text": "To log in to the Waze Map Editor, you need a verified email address.",
"section_middle_title": "To add or update your email address:",
"section_middle_item_1": "Open the Waze app on your phone",
"section_middle_item_2": "Go to Settings",
"section_middle_item_3": "Tap Account & login",
"section_middle_item_4": "Enter your email address",
"section_bottom_text": "Once your email is updated, come back here to log in to the Waze Map Editor."
},
"verify": {
"title": "Verify your email address",
"message": "To continue editing the map, Waze is asking all editors to verify their email. An email will be sent to: %{recipient}",
"error": "The email was not sent. Please check that your email address is correct and try again.",
"send_email": "Send email",
"change_email": "Change email address"
},
"sent": {
"title": "Check your inbox!",
"alert": "A verification email has been sent to %{recipient}",
"message": "Follow the instructions in the email to verify your email address."
}
},
"layer_switcher": {
"title": "Map layers",
"togglers": {
"GROUP_ISSUES": "Issues",
"GROUP_MAP_ISSUES": "Map",
"ITEM_MAP_PROBLEMS": "Open Problems",
"ITEM_CLOSED_MAP_PROBLEMS": "Closed problems",
"ITEM_UPDATE_REQUESTS": "Open Updates",
"ITEM_CLOSED_UPDATE_REQUESTS": "Closed updates",
"ITEM_PLACE_UPDATE_REQUESTS": "Places",
"ITEM_RESIDENTIAL_PLACE_UPDATE_REQUESTS": "Residential",
"GROUP_PARKING_ISSUES": "Parking",
"ITEM_PARKING_MAP_PROBLEMS": "Problems",
"ITEM_PARKING_CLOSED_MAP_PROBLEMS": "Closed parking problems",
"ITEM_PARKING_PLACE_UPDATE_REQUESTS": "Updates",
"GROUP_PLACES": "Places",
"ITEM_VENUES": "Venues",
"ITEM_RESIDENTIAL_PLACES": "Residential",
"ITEM_PARKING_PLACES": "Parking lots",
"GROUP_ROAD": "Road",
"ITEM_ROAD": "Roads",
"ITEM_JUNCTION_BOXES": "Junction Boxes",
"ITEM_CLOSURES": "Closures",
"ITEM_SPEED_CAMERAS": "Speed cameras",
"ITEM_HOUSE_NUMBERS": "House Numbers",
"ITEM_MAP_COMMENTS": "Map comments",
"GROUP_DISPLAY": "Display",
"ITEM_SATELLITE_IMAGERY": "Satellite imagery",
"ITEM_AREA_MANAGERS": "Area managers",
"ITEM_GPS_POINTS": "GPS points",
"ITEM_LIVE_USERS": "Live users",
"ITEM_DISALLOWED_TURNS": "Disallowed turns",
"ITEM_EDITABLE_AREAS": "Editable areas",
"GROUP_CITIES": "Cities",
"ITEM_CITY_NAMES": "Names",
"GROUP_RESTRICTED_DRIVING_AREAS": "Restricted Areas",
"ITEM_RESTRICTED_DRIVING_AREAS_NAMES": "Names"
}
},
"measurements": {
"length": {
"km": "%{count} km",
"m": "%{count} m",
"mi": "%{count} mi",
"ft": "%{count} ft"
},
"speed": {
"km": "%{speed} km/h",
"mi": "%{speed} mph"
},
"area": {
"km_squared": "%{area} km²",
"mi_squared": "%{area} mi²"
}
},
"geolocation": {
"tooltip": "Show my location",
"street-view-btn": "See in Street View",
"street-view-btn-disabled": "No Street View for this spot",
"focus-btn": "Show on map"
},
"user": {
"temporary": "Wazer",
"logout": "Logout",
"feed": {
"title": "Feed"
},
"info": {
"greeting": "Hey %{username}!",
"level_name": "level %{level}",
"staff_level_name": "staff editor",
"edit_area": {
"title": "You can edit %{distance} around roads you've driven",
"mi": {
"one": "1 mile",
"other": "%{count} miles"
},
"km": {
"one": "1 kilometer",
"other": "%{count} kilometers"
}
},
"area_manager": "and everywhere in the area you manage",
"country_manager": "and everywhere in the country you manage",
"points": "Points",
"edits": "Edits",
"posts": "Posts",
"editing_restricted": "Editing in this area is restricted to area managers. To report a map problem please visit our %{forum_link}.",
"forum": "forum"
},
"drives": {
"title": "Drives",
"subtitle": "Choose one of your drives to see it on the map",
"no_drives": "We can't find any of your drives.",
"no_drives_explanation": "Have you started driving with the Waze app yet? If so, please make sure you logged into the Map Editor with the same credentials you use in the app.",
"error": "Error finding your drives, please try again later."
},
"areas": {
"title": "Areas",
"subtitle": "Choose one of your areas to see it on the map",
"no_areas": "You need to drive with Waze to get permissions to edit the map.",
"area": "Area %{num}",
"managed_area": "Managed area"
},
"prefs": {
"subtitle": "Advanced Preferences",
"two_way": "Draw new roads as two-way",
"turns_allowed": "Draw new roads with all turns allowed",
"require_deselect": "Select only on empty selection",
"language": "Language",
"turn_arrows": "Turn arrows",
"spread_turn_arrows": "Spread when arrows overlap",
"show_transparent_turn_arrows": "Make transparent",
"units": {
"title": "Units",
"metric": "Metric",
"imperial": "Imperial"
},
"snap": {
"title": "Snap to segments",
"enable": "On",
"disable": "Off"
}
}
},
"pending": {
"road_data": "Loading road data..."
},
"save": {
"success": {
"title": "Saved Successfully!",
"pending_venues": {
"no_names": "Some changes to places are pending approval",
"with_names": "Some changes to places (%{names}) are pending approval"
},
"change_count": {
"segments": {
"one": "1 segment",
"other": "%{count} segments"
},
"nodes": {
"one": "1 node",
"other": "%{count} nodes"
},
"venues": {
"one": "1 place",
"other": "%{count} places"
},
"bigJunctions": {
"one": "1 Junction box",
"other": "%{count} Junctions boxes"
}
}
},
"error": {
"title": "Saving Error",
"title_ignorable": "There might be something wrong with this edit",
"suggestion": "Suggestion",
"collated": {
"one": "1 error",
"other": "%{count} errors"
},
"actions": {
"edit": "Edit",
"save": "Save",
"close": "Close",
"title": "Are you sure you want to save?"
}
},
"action": "Please fix and save again",
"default_solution": "Check and try again",
"changes_log": {
"title": "%{count} changes:",
"sandbox_notice": "Log in to save edits",
"failed_title": "%{count} changes failed to save:",
"empty_name": "No name",
"unknown_action": "Action",
"ignore": "Ignore and Save",
"undo_all": "Undo All",
"redo_all": "Restore Changes",
"redo_item": "Restore change",
"undo_item": "Remove change",
"actions": {
"AddAlternateStreet": "Added alternate street name %{altStreeName} to segment: %{streetName}",
"AddBigJunction": "Added big junction",
"AddIntersection": "Added intersection",
"AddLandmark": "Added new place",
"AddNode": "Added new node",
"AddOrGetCity": {
"add": "Added new city: %{name}"
},
"AddOrGetStreet": {
"add": "Added new street: %{streetName}"
},
"AddRoadClosure": {
"has_street": "Added closure to: %{streetName}",
"default": "Added closure"
},
"AddSegment": {
"default": "Added new segment",
"road_types": {
"STREET": "Added a new street segment",
"WALKING_TRAIL": "Added a new walking trail segment"
}
},
"ConnectSegment": {
"has_street": "Connected segment to node on: %{streetName}",
"default": "Connected segment to node"
},
"ConvertNodeToRegular": "Changed node from walking trail to regular",
"ConvertSegmentNodesToRegular": {
"has_street": "Changed nodes on %{streetName} segment to regular nodes",
"default": "Changed nodes to regular nodes"
},
"CreateObject": "Added new: %{type}",
"CreateRoundabout": {
"has_street": "Added new roundabout on %{streetName}",
"default": "Added new roundabout"
},
"DeleteBigjunction": {
"has_name": "Deleted big junction: %{name}",
"has_city": "Deleted big junction on: %{cityName}",
"default": "Deleted big junction"
},
"DeleteNode": "Deleted node",
"DeleteObject": "Delete object of type: %{type}",
"DeleteRoadClosure": "Deleted road closure",
"DeleteSegment": {
"has_street": "Deleted segment on: %{streetName}",
"default": "Deleted segment"
},
"DisconnectSegment": {
"has_street": "Disconnected segment on: %{streetName}",
"default": "Disconnected segment"
},
"AddHouseNumber": "Added house number %{houseNumber} to %{streetName}",
"DeleteHouseNumber": "Deleted house number %{houseNumber} from %{streetName}",
"ReplaceHouseNumberSegment": "Moved house number %{houseNumber} to segment %{segmentId}",
"MoveHouseNumberFractionPoint": "Moved navigation point for house number %{houseNumber}",
"UpdateHouseNumber": "Updated house number %{houseNumber} on %{streetName}",
"MoveHouseNumber": "Moved house number %{houseNumber} on %{streetName}",
"MergeLandmarks": {
"has_name": "Merged %{count} places to: %{mainVenueName}",
"default": "Merged %{count} places to: %{placeId}"
},
"MergeNode": "Merged node",
"MergeSegments": {
"has_street": "Merged segments on %{streetName}",
"default": "Merged segments"
},
"ModifyAllConnections": {
"allow": "Allow all connections",
"disallow": "Disallow all connections"
},
"MoveNode": "Moved node",
"SplitSegments": {
"has_street": "Split segment on %{streetName}",
"default": "Split segment"
},
"UpdateBigJunctionConnectedSegments": "Updated segments connected to big junction",
"UpdateFeatureAddress": "Updated %{objectType} address",
"UpdateFeatureGeometry": "Updated %{objectType} geometry",
"UpdateLandmarkResidential": {
"true": "Changed place to residential",
"false": "Changed place from residential"
},
"UpdateObject": {
"changed": "Changed %{propertyName} on %{objectsString} to: %{value}",
"added": "Added %{propertyName} %{value} to %{objectsString}",
"removed": "Removed %{propertyName} %{value} from: %{objectsString}",
"deleted": "Deleted %{propertyName} from: %{objectsString}",
"multiple": {
"title": "Multiple %{objectsString} changes: %{changesList}",
"changed": "Changed %{propertyName} to: %{value}",
"added": "Added %{propertyName} %{value}",
"deleted": "Deleted %{propertyName}"
}
},
"UpdatePlaceUpdate": {
"approved": "Approved place update request",
"rejected": "Rejected place update request",
"reopened": "Reopened place update request"
},
"UpdateRoadClosure": "",
"UpdateSegmentGeometry": {
"has_street": "Changed segment geometry on %{streetName}",
"default": "Changed segment geometry"
},
"SetTurn": {
"allow": "Allowed turn",
"disallow": "Disallowed turn",
"update": "Updated turn"
},
"DeleteSegments": "Deleted %{count} segments",
"MultiUpdateFeatureAddress": "Updated %{count} %{objectType}s addresses",
"UpdateSegmentsRestrictions": {
"multi_segments": "Changed restrictions of %{count} segments"
},
"UpdateMapProblem": {
"open": "Opened map problem",
"solved": "Solved map problem",
"not_identified": "Marked map problem as not identified"
},
"UpdateNavigationPoint": {
"moved": {
"has_name": "Moved navigation point of place: %{venueName}",
"default": "Moved navigation point of place"
},
"single": "Changed navigation point %{propertyName} to %{value}",
"changed_main": "Changed main navigation point for a place",
"multiple": "Multiple changes to navigation point for a place",
"multiple_points": "Changed multiple navigation points for a place"
},
"AddNavigationPoint": {
"has_name": "Added new navigation point to place: %{venueName}",
"default": "Added new navigation point to place"
},
"DeleteNavigationPoint": {
"has_name": "Deleted navigation point from place: %{venueName}",
"default": "Deleted navigation point from place"
},
"AddLanes": {
"has_street": "Added Lane Guidance on %{streetName}",
"default": "Added Lane Guidance"
},
"UpdateLanes": {
"has_street": "Changed Lane Guidance on %{streetName}",
"default": "Changed Lane Guidance"
}
}
},
"error_types": {
"101": {
"title": "You have no permissions to make some of the changes"
},
"700": {
"title": "An error occurred while saving",
"solution": "Try again later"
},
"701": {
"title": "The highlighted element was moved beyond the allowed distance"
},
"702": {
"title": "While you were editing, the elements you're trying to save have been modified or deleted",
"solution": "Refresh and try again"
},
"703": {
"title": "The highlighted segments are not connected by a node",
"solution": "Connect them to one another and then try again"
},
"704": {
"title": "The highlighted angle is not allowed in a road"
},
"705": {
"title": "There's a problem with the highlighted segment & node",
"solution": "Reconnect the segment to the node and try again"
},
"706": {
"title": "The highlighted place has an illegal shape",
"solution": "Fix it and try again"
},
"707": {
"title": "The highlighted roundabouts cannot intersect each other"
},
"708": {
"title": "Failed to merge segments, they're in different junctions"
},
"709": {
"title": "The highlighted roundabout does not form a circle"
},
"710": {
"title": "You cannot add cities to this country",
"solution": "Check the spelling of the city names you have added and try again"
},
"711": {
"title": "The highlighted road is too far from the city it was added to",
"solution": "Check the city name and try again"
},
"712": {
"title": "The highlighted road is too far from the state it was added to",
"solution": "Check the state and try again"
},
"713": {
"title": "The highlighted road is too far from the country it was added to",
"solution": "Check the country and try again"
},
"714": {
"title": "Missing primary street name"
},
"715": {
"title": "Invalid brand name"
},
"716": {
"title": "The highlighted place has an invalid house number"
},
"717": {
"title": "Failed to create place"
},
"718": {
"title": "Duplicate place"
},
"719": {
"title": "Failed to update place"
},
"720": {
"tilte": "Failed to delete place"
},
"721": {
"title": "The navigation point for the place is too far",
"solution": "Move the navigation point closer to the place and try again"
},
"722": {
"title": "Cannot save a place without any categories",
"solution": "Add at least one category and try again"
},
"723": {
"title": "Failed to update place"
},
"724": {
"title": "You can't changed the place type for a residential place"
},
"725": {
"title": "The highlighted segment is too long",
"solution": "Make it shorter or split it into several segments and try again"
},
"726": {
"title": "The highlighted segment is too complex",
"solution": "Remove geometry points or split it and try again"
},
"727": {
"title": "Operation not supported"
},
"730": {
"title": "The size of the highlighted Junction box cannot exceed 1 kilometer"
},
"731": {
"title": "The highlighted Junction box cannot contain more than 60 segments"
},
"732": {
"title": "The highlighted Junction box must contain at least one connection"
},
"733": {
"title": "The highlighted Junction box must have only one connection for every entry/exit pair"
},
"734": {
"title": "Segments or turns that don't enter/exit the junction box can't have restrictions"
},
"735": {
"title": "The highlighted node cannot have more than 16 connections"
},
"736": {
"title": "Speed cameras cannot be edited in this country"
},
"737": {
"title": "Junction box can't overlap"
},
"738": {
"title": "Invalid speed limit"
},
"739": {
"title": "Can't update unverified max speed"
},
"740": {
"title": "Failed to create closure"
},
"741": {
"title": "Failed to update closure"
},
"742": {
"title": "Failed to delete closure"
},
"743": {
"title": "Connection is not navigable"
},
"744": {
"title": "The highlighted segment has been modified recently and will be rebuilt.",
"solution": "Limit the closure time to less than 2 days."
},
"745": {
"title": "Invalid road type"
},
"746": {
"title": "Failed to create event"
},
"747": {
"title": "Failed to update event"
},
"748": {
"title": "Failed to delete event"
},
"749": {
"title": "Invalid event geometry"
},
"750": {
"title": "Failed to publish event"
},
"751": {
"title": "Failed to set event as ready"
},
"752": {
"title": "You have to be an MTE manager to mark a crisis event as submitted"
},
"753": {
"title": "Missing end time"
},
"754": {
"title": "End time is in the past"
},
"755": {
"title": "End time is too far in the future"
},
"756": {
"title": "Start time is after end time"
},
"757": {
"title": "Duration is too long"
},
"758": {
"title": "Missing entry/exit name"
},
"759": {
"title": "City name already exists"
},
"762": {
"title": "Map comment has invalid geometry"
},
"763": {
"title": "Map comment expiration date cannot be in the past"
},
"764": {
"title": "Missing map comment subject"
},
"765": {
"title": "Map comment expiration date is invalid"
},
"766": {
"title": "Parking Lot should be input as area polygon",
"solution": "Convert to area polygon and set navigation point close to segment"
},
"767": {
"title": "The highlighted place has too many entrances or exits"
},
"768": {
"title": "The highlighted place has more than one primary entry point"
},
"769": {
"title": "The highlighted place has two or more entry points with the same name"
},
"770": {
"title": "Pickup restrictions are not supported in this country"
},
"771": {
"title": "Cannot add road closure since segment forward direction is forbidden"
},
"772": {
"title": "Cannot add road closure since segment reverse direction is forbidden"
},
"773": {
"title": "Can't merge walking trail node with regular node"
},
"780": {
"title": "Too many lanes for segment"
},
"781": {
"title": "Venue merge error"
},
"785": {
"title": "Excess speed can't be a negative number"
},
"786": {
"title": "Invalid camera type"
},
"787": {
"title": "Toll road mismatch between driving directions",
"solution": "Uncheck toll road checkbox and then check it again"
},
"789": {
"title": "Start time is too far in the future"
},
"1000": {
"title": "Connectivity problem",
"solution": "Check that all segments are properly connected and their turns are properly defined"
},
"2000": {
"title": "Possible disconnection",
"solution": "Consider connecting the segment to another node"
},
"2001": {
"title": "Overlapping segments",
"solution": "Remove one of the segments and change the segment structure accordingly"
},
"2002": {
"title": "Irregularly shaped segment",
"solution": "Improve the geometric structure of the segment"
},
"2003": {
"title": "Isolated segment - all turns from it are closed",
"solution": "Change the turn rules for this segment"
},
"2004": {
"title": "Turn too sharp",
"solution": "Consider altering the segment structure around this turn"
},
"2005": {
"title": "Very short segment - less than 5m",
"solution": "Consider changing its structure"
},
"2006": {
"title": "Intersecting segments with the same elevation",
"solution": "Create a junction between the segments or change their elevation"
},
"2007": {
"title": "Non-highway toll road",
"solution": "Consider changing the road type or toll definition"
},
"2008": {
"title": "One-way segment between two two-way segments",
"solution": "Consider changing the segment structure or directionality"
},
"3000": {
"title": "New segment length is greater than 10% of the old segments length",
"solution": "Make sure the new segment structure is correct"
},
"3003": {
"title": "A relatively busy segment was deleted",
"solution": "Make sure no important segments were accidentally deleted"
},
"3004": {
"title": "A segment with house numbers was deleted",
"solution": "Make sure no segments with house numbers were accidentally deleted"
},
"7001": {
"title": "Invalid place update"
},
"7002": {
"title": "The highlighted place has an invalid house number"
},
"7003": {
"title": "Missing category field for place"
},
"7004": {
"title": "Invalid category"
},
"7007": {
"title": "The highlighted place is out of the country bounds",
"solution": "Move it and try again"
},
"7008": {
"title": "The highlighted place has an invalid website address"
},
"7009": {
"title": "Invalid entry/exit point"
},
"7010": {
"title": "Invalid opening hours"
},
"7011": {
"title": "Invalid service name"
},
"7016": {
"title": "The highlighted place has an invalid phone number"
},
"7017": {
"title": "The highlighted place does not have a house number",
"solution": "Add the house number and try again"
},
"7018": {
"title": "Invalid opening hours, opening and closing times are the same"
},
"7019": {
"title": "Invalid place opening hours - overlapping times"
},
"7024": {
"title": "Invalid parking lot geometry"
},
"7025": {
"title": "Parking lot place can't have other categories"
},
"7026": {
"title": "Place can't have multiple primary exit points"
},
"7027": {
"title": "Place can't have multiple exit points with the same name"
},
"7028": {
"title": "Residential place can't be a polygon"
},
"9014": {
"title": "Cannot mark event with no closures as ready"
},
"9021": {
"title": "Event has too complex geometry",
"solution": "Select smaller event area"
},
"default": {
"title": "Something went wrong"
}
}
},
"toolbar": {
"delete": "Delete Feature(s)",
"delete_rejection_reasons": {
"rank_not_allowed": "Deleting a segment is restricted to level %{min_rank}+",
"quota_exceeded": "You're limited to %{quota} deletions a day",
"rank_too_low": "You need a higher rank to delete at least one of the items you selected",
"has_pending_merge": "You must save your changes before you can delete the venue",
"in_big_junction": "You can't delete segment inside junction box",
"has_closures": "You can't delete segment with closure"
},
"undo": "Undo",
"redo": "Redo",
"reload": "Reload",
"save": {
"title": "Save"
},
"search": "Search location",
"search_event": "Search for an event",
"search_results": {
"error": "Error retrieving search results.",
"no_results": "No results",
"address_part1": {
"house_street_city": "%{house_number} %{street}, %{city}",
"house_city": "%{house_number} %{city}",
"house_street": "%{house_number}, %{street}",
"street_city": "%{street}, %{city}",
"street": "%{street}",
"city": "%{city}"
},
"address_part2": {
"state_country": "%{state} %{country}",
"street": "%{state}",
"country": "%{country}"
},
"full_address": "%{address_part1}, %{address_part2}"
},
"user-box": {
"editor": "Waze Map Editor",
"carpool": "Carpool",
"livemap": "Livemap",
"support": "Support",
"account-settings": "Account Settings"
},
"drawing": "Road",
"map-comments": "Comment",
"cancel": "Exit house numbers",
"add_house_numbers": "Add house numbers",
"venues": "Place"
},
"drawing": {
"road": "Road",
"walking_trail": "Walking trail",
"roundabout": "Roundabout",
"gas_station": "Gas station",
"parking_lot": "Parking lot",
"point": "Create Point",
"polygon": "Create Area",
"big_junction": "Junction box",
"camera": "Camera",
"venue": "Place",
"map_comment": "Map comment",
"map_comment_point": "Point",
"map_comment_area": "Area"
},
"layers": {
"loading": "Loading %{layer_name}...",
"vector": {
"roads": "road data"
},
"name": {
"satellite_imagery": "Satellite Imagery",
"cities": "Cities",
"roads": "Roads",
"gps_points": "GPS points",
"area_managers": "Area Managers",
"big_junctions": "Junction boxes",
"segments": "Segments",
"nodes": "Nodes",
"landmarks": "Places",
"landmarks_parking": "Parking lots",
"speed_cameras": "Speed cameras",
"problems": "Map Problems",
"update_requests": "Update Requests",
"archive": "Archive",
"editable_areas": "Editable Areas",
"closures": "Road Closures",
"live_users": "Live Users",
"place_updates": "Place updates",
"comments": "Map comments",
"restricted_driving_areas": "Restricted Areas"
}
},
"archive_panel": {
"title": "Drive",
"from": "From",
"to": "To"
},
"edit": {
"merge_landmark": {
"title": "%{count} Places Selected",
"created": "Created %{time}, by %{user}",
"merge": "Merge Here",
"lock_message": "One or more places you selected have a lock level higher than your current.",
"unresolved_message": "Places with open PURS cannot be merged until they’re solved",
"ad_locked": "One or more places is currently advertised, and can't be merged.",
"parking_message": "When converting parking to non parking place, all parking attributes will be lost",
"gas_message": "When converting gas station to non gas station, brand attribute will be lost",
"invalid_brand": "The brand isn’t listed in this category. Choose another brand or a different category.",
"count_message": "You cant merge more than %{count} places.",
"distance_message": "Places are too far from each other and can't be merged",
"overlapping_hours_message": "Invalid hours. Try removing any overlaps",
"residential_message": "Residential places can't be merged",
"purs_tooltip": "%{count} PURs",
"lock_tooltip": "%{rank} +",
"new_landmark_tooltip": "To merge places here, first save this place"
},
"placeholder": {
"date": "yyyy-mm-dd",
"time": "hh:mm"
},
"unsaved_changes": "Changes you have made will be lost. Are you sure do you want to continue?",
"house_numbers": {
"layer": {
"tooltip_title": "%{streetName} St. %{houseNumber}"
},
"confirm_clear_redo": "You won't be able to redo any recent edits once you start editing house numbers. Do you want to continue?",
"zoom_to_edit": "Zoom in to edit",
"save": {
"success": "House numbers successfully saved",
"invalid": "Some house numbers are invalid. You can fix them and try to save again.",
"continue": "Ok",
"error": "Error saving, please try again later"
},
"force": {
"title": "If you are certain they're correct - force them.",
"action": "Force",
"continue": "Continue editing"
},
"loading_error": "Error loading house numbers",
"last_edited": "Last edited by %{username}",
"errors": {
"0": "Unknown error",
"1": "Number already exists",
"2": "Wrong side",
"3": "Number out of sequence",
"4": "Number too far from segment",
"5": "Unsupported number format",
"6": "Number too long"
}
},
"restricted_driving_area": {
"title": "Restricted Area",
"fields": {
"name": "Name",
"address": "Address",
"restriction": "Restrictions"
},
"restrictions": {
"driving_restrictions": "Driving Restrictions"
},