- // ==UserScript==
- // @name WME UR Comments Custom List
- // @description This script is for Custom comments to be used with my other script UR comments
- // @namespace RickZabel@gmail.com
- // @grant none
- // @grant GM_info
- // @version 0.0.1
- // @match https://editor-beta.waze.com/*editor/*
- // @match https://www.waze.com/*editor/*
- // @author Rick Zabel '2014
- // @license MIT/BSD/X11
- // ==/UserScript==
-
- /* Changelog
- * 5th update to the format
- * 0.0.1 - initial version
- */
-
- //I will try not to update this file but please keep a external backup of your comments as the main script changes this file might have to be updated. When the custom comments file is auto updated you will loose your custom comments. By making this a separate script I can try to limit how often this would happen but be warned it will eventually happen.
-
- //if you are using quotes in your titles or comments they must be properly escaped. example "Comment \"Comment\" Comment",
- //if you wish to have blank lines in your messages use \n\n. example "Line1\n\nLine2",
- //if you wish to have text on the next line with no spaces in your message use \n. example "Line1\nLine2",
-
- //Custom Configuration: this allows your "reminder", and close as "not identified" messages to be named what ever you would like.
-
- //the position in the list that the reminder message is at. (starting at 0 counting titles, comments, and ur status). in my list this is "4 day Follow-Up"
- window.UrcommentsCustomReminderPosistion = 3;
-
- //this is the note that is added to the the reminder link option
- window.UrcommentsCustomReplyInstructions = 'To reply to this request go to the following link and click the map pin, then click on the conversation button.';
-
- //the position of the close as Not Identified message (starting at 0 counting titles, comments, and ur status). in my list this is "7th day With No Response"
- window.UrcommentsCustomCloseNotIdentifiedPosistion = 6;
-
- //This is the list of Waze's default UR types. edit this list to match the titles used in your area!
- //You must have these titles in your list for the auto text insertion to work!
- window.UrcommentsCustomdef_names = [];
- window.UrcommentsCustomdef_names[6] = "Incorrect turn"; //"Incorrect turn";
- window.UrcommentsCustomdef_names[7] = "Incorrect address"; //"Incorrect address";
- window.UrcommentsCustomdef_names[8] = "Incorrect route"; //"Incorrect route";
- window.UrcommentsCustomdef_names[9] = "Missing roundabout"; //"Missing roundabout";
- window.UrcommentsCustomdef_names[10] = "General error"; //"General error";
- window.UrcommentsCustomdef_names[11] = "Turn not allowed"; //"Turn not allowed";
- window.UrcommentsCustomdef_names[12] = "Incorrect junction"; //"Incorrect junction";
- window.UrcommentsCustomdef_names[13] = "Missing bridge overpass"; //"Missing bridge overpass";
- window.UrcommentsCustomdef_names[14] = "Wrong driving direction"; //"Wrong driving direction";
- window.UrcommentsCustomdef_names[15] = "Missing Exit"; //"Missing Exit";
- window.UrcommentsCustomdef_names[16] = "Missing Road"; //"Missing Road";
- window.UrcommentsCustomdef_names[18] = "Missing Landmark"; //"Missing Landmark";
- window.UrcommentsCustomdef_names[19] = "Blocked Road"; //"Blocked Road";
- window.UrcommentsCustomdef_names[21] = "Missing Street Name"; //"Missing Street Name";
- window.UrcommentsCustomdef_names[22] = "Incorrect Street Prefix or Suffix"; //"Incorrect Street Prefix or Suffix";
-
-
- //The comment array should follow the following format,
- // "Title", * is what will show up in the UrComment tab
- // "comment", * is the comment that will be sent to the user currently
- // "URStatus" * this is action to take when the option "Auto Click Open, Solved, Not Identified" is on. after clicking send it will click one of those choices. usage is. "Open", or "Solved",or "NotIdentified",
- // to have a blank line in between comments on the list add the following without the comment marks // there is an example below after "Thanks for the reply"
- // "<br>",
- // "",
- // "",
-
- //Custom list
- window.UrcommentsCustomArray2 = ["Errors with no descriptive text",
- "Waze did not send us enough information to fix your request. Would you please let us know what went wrong with the route Waze gave you? Would you tell us your destination as you entered it into Waze? Thanks!",
- "Open",
- "4 day Follow-Up",
- "Just a reminder: We haven't received a response on your report. If we don't hear back from you we'll have to infer everything is okay and close the report. Thanks!",
- "Open",
- "7th day With No Response",
- "The problem was unclear and volunteers didn't receive a response. As you travel, please feel welcome to report any map issues you encounter. Thanks!",
- "NotIdentified",
- "Fixed",
- "Thanks to your report we've found and fixed a problem with the map. The fix should reach handheld devices within a week, but on rare occasions it can take closer to two weeks. ",
- "Solved",
- "Valid Route",
- "We reviewed the issue and did not find any map errors. It looks like Waze had a valid route. If you feel yours is correct keep driving that way. If it is indeed faster Waze will learn from your drives and route you and others the faster route. Thanks!",
- "Solved",
- "Thanks for the reply",
- "Thank you for the reply this request will be closed. As you travel, please feel welcome to report any map issues you encounter.",
- "Solved",
- "No further communication received",
- "No further communication was received, this request will now be closed. As you travel, please feel welcome to report any map issues you encounter. Thanks!",
- "Solved",
- "No further communication received",
- "No further communication was received, this request will now be closed. As you travel, please feel welcome to report any map issues you encounter. Thanks!",
- "NotIdentified",
- "Address fishing",
- "Waze does not tell us your starting or ending destinations. Would you tell us the address you are having problems with as you entered it into Waze? Thanks!",
- "Open",
- "Problem appears corrected",
- "Just a reminder: The problem appears to be corrected. Please let us know if you are continuing to have the issue. If we do not hear from you in a few days we will close this report. Thanks!",
- "Open",
- "<br>",
- "",
- "",
- //Default URs 6 trough 22 are the different types of UR that a user can submit
- "Incorrect turn", //6
- "Would you please let us know what turn you are having a problem with? Thanks!",
- "Open",
-
- "Incorrect address", //7
- //new "Waze did not send us enough information to fix your request. In order for us to help you we need to know a couple of things what is the address as you entered it into Waze and what was the problem you were having with this address?",
- "Waze did not send us enough information to fix your request. Would you tell us the address as you entered it into Waze? What is the problem you are having with this address? Thanks!",
- "Open",
-
- "Incorrect route", //8
- "Waze did not send us enough information to fix your request. Would you please let us know what went wrong with the route Waze gave you? Would you tell us your destination as you entered it into Waze? Thanks!",
- "Open",
-
- /*
- "Missing roundabout", //9
- "",
- "Open",
- */
-
- "General error", //10
- "Waze did not send us enough information to fix your request. Would you please let us know what went wrong? Would you tell us your destination as you entered it into Waze? Thanks!",
- "Open",
-
- "Turn not allowed", //11
- "Would you please let us know what turn was not, or should not be, allowed and the street names at the intersection? Thanks!",
- "Open",
-
- "Incorrect junction", //12
- "Waze did not send us enough information to fix your request. Would you please let us know what went wrong with the route Waze gave you? Would you tell us your destination as you entered it into Waze? Thanks!",
- "Open",
-
- "Missing bridge overpass", //13
- "Would you please let us know what overpass you believe is missing? When moving at highway speeds, Waze deliberately chooses not to display some nearby features to avoid cluttering the screen. Would you tell us as much as possible about the missing overpass. Thanks!",
- "Open",
-
- "Wrong driving direction", //14
- "Waze did not send us enough information to fix your request. Would you please let us know what went wrong with the route Waze gave you? Would you tell us your destination as you entered it into Waze? Thanks!",
- "Open",
-
- "Missing Exit", //15
- "Waze did not send us enough information to fix your request. Would you please let us know as much as possible about the missing exit? Thanks!",
- "Open",
-
- "Missing Road", //16
- "Would you tell us as much as possible about the road you believe is missing? Thanks!",
- "Open",
-
- /*
- "Missing Landmark", //18
- "",
- "Open",
-
- "Blocked Road", //19
- "",
- "Open",
-
- "Missing Street Name", //21
- "",
- "Open",
-
- "Incorrect Street Prefix or Suffix", //22
- "",
- "Open",
- */
-
-
- "<br>",
- "",
- "",
- //End of Default URs
-
- "User Followed Waze's route",
- "It appears that you ended up going the route Waze suggested, what was the problem you were having? Would you tell us your destination as you entered it into Waze? Thanks!",
- "Open",
- "Alley Interference",
- "Waze doesn't tell volunteer editors where you were going, although it was probably adjacent to the alley. If you would, please supply your destination as you entered it into Waze it may be helpful in correcting the route. Thanks!",
- "Open",
- "Road Closed",
- "Would you please let us know the following, what road is closed; between which intersections is this road closed; do you know how long this road is scheduled to be closed? Thanks!",
- "Open",
- "Area Entrances (Airport, amusement, parks)",
- "We have had problems with Google pins being placed in the center of a large landmarks. Delete your previous search and do a new search for the location. Go to the bottom of the auto fill list to see more results and make sure you pick the Waze search engine. ",
- "Open",
- "48 Hour Reply",
- "Please allow 48 hours for changes to be reflected in the live map.",
- "Open",
- "Clear Saved Locations",
- "You should remove the location from your favorites and recent searches and then re-search for the location to update the result.",
- "Open",
- "Clear TTS Cache",
- "If you continue to have this problem you will need to clear your Text to Speech cache. Go to navigation screen and type cc@tts in search field and hit search. You should get a pop up message that the TTS file has been cleared. It will take a few days for the file to build back up with all the spoken street names.",
- "Open",
- "Address - Incorrect Position",
- "Thank you for your report. Would you please let us know what address you're reporting the problem with? You can also use the Report -> Places feature in Waze to mark the location. It is helpful that after taking a picture, if you move near the location your marking to save the place. Also, please do not submit pictures containing faces, license plates, or similar personal details. Thanks!",
- "Open",
- "Address - Missing from Map",
- "Thank you for your report. Would you please let us know where the address you're reporting is? The live map doesn't have all the street numbers for that street and Waze is interpolating in error. You can also use the Report -> Places feature in Waze to mark the location. It is helpful that after taking a picture, if you move near the location you’re marking to save the place. Also, please do not submit pictures containing faces, license plates, or similar personal details. Thanks!",
- "Open",
- "Address - Search Results Bad",
- "Thank you for your report. The search feature retrieves results from a number of locations, including Google. Scrolling to the bottom the Navigate screen, you'll see more results for 'name.' Select that and Waze will list locations Around You. From there, you can also select results from other search engines.",
- "Open",
- "Detours / Odd-Routing",
- "We can't find anything in the map to explain route Waze gave you. Waze wants to save you time every way it can and sometimes it suggests complex detours just to shave a few seconds off your trip. Waze may recommend a detour even after the traffic has cleared up because: it doesn't know yet, other Wazers may have reported a temporary street closure, or daily traffic patterns. In any event, we are very sorry to say that the volunteer map editors can't be much help here. Thanks!",
- "NotIdentified",
- "House Number Adjustment",
- "I've forced Waze to re-register the house number for your destination. I believe this should correct your issue. Please allow 48 hours for changes to be reflected in the live map. If the location is in your saved searches or favorites, please remove them and search for them again to pick up the change in the live map. Please let me know if you continue to experience the problem. Thanks!",
- "Open",
- "Missing Bridges or Roads",
- "The roads here have been pretty thoroughly mapped and we volunteers can't see anything missing that should ordinarily be there. Waze probably simply chose not to show you the feature in question. When moving at highway speeds, Waze deliberately chooses not to display some nearby features to avoid cluttering the screen. If you are certain a feature is missing from the map, please reply and tell us as much as possible about it. Thanks!",
- "Open",
- "Road Closure Request - Temporary",
- "How long is the road going to be closed? For closures of only a few days, we volunteer map editors can't be much help. It takes at least that long for our edits to make it to devices! When you encounter short-term road closures in the future, please use the Report->Closure feature in the Waze app. If this is a long-term closure please respond and let us know as much as you can. Thanks!",
- "Open",
- "Traffic - Stale Information",
- "Volunteer map editors can't do anything about Waze's traffic reporting. Waze relies on data from people using Waze to assess traffic. In the case of a fresh accident or slowdown, Waze may not yet have any data on the situation. Once Waze has detected a traffic situation, it can remember it for awhile, sometimes long after the situation changes.",
- "NotIdentified",
- "Traffic - Jams ",
- "To report traffic jam conditions, please use the Report -> Traffic Jam options in the Waze app. This will tell Waze about the problem in real-time. Traffic Jam reports can help route you and other Wazers around traffic problems.",
- "NotIdentified",
- "Signal Avoidance Bug",
- "I do not see any issues with the current turn restrictions in the area. This appears to be part of the known signal avoidance bug. Waze's developers are working on a fix for the issue but we do not have an ETA. Please feel free to take the turn until the issue is resolved. Thanks!",
- "NotIdentified",
- "Manual Refresh",
- "You can try a manual refresh by going to Settings > Advanced > Data transfer > refresh maps.",
- "Open"
- ];
- //end Custom list
-