From 6823821c46f87ac1ecbd02dc25fb9853618ec8ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Vergara=20Mart=C3=ADnez?= <8235478+miguelovergara@users.noreply.github.com> Date: Fri, 29 May 2026 17:56:19 -0400 Subject: [PATCH 01/14] update compiler version --- 00.config.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/00.config.sh b/00.config.sh index 946a559..530ee0f 100644 --- a/00.config.sh +++ b/00.config.sh @@ -1,5 +1,5 @@ ## Path to Closure Compiler -COMPILER="java -jar closure-compiler-v20230103.jar" +COMPILER="java -jar closure-compiler-v20260526.jar" EXT_NAME=WV EXT_FILE_NAME="WME_Validator.user.js" From a6fa47b8dde2cb2347c025a6b844a93c0fb1e5f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Vergara=20Mart=C3=ADnez?= <8235478+miguelovergara@users.noreply.github.com> Date: Fri, 29 May 2026 17:56:39 -0400 Subject: [PATCH 02/14] add language out definition --- 99.build.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/99.build.sh b/99.build.sh index 7e65c65..dd21d41 100644 --- a/99.build.sh +++ b/99.build.sh @@ -32,6 +32,7 @@ cat "${SRC_DIR}/meta/i18n-end.js" >> "${LOC_FILE}" ${COMPILER} \ --language_in ECMASCRIPT_2017 \ + --language_out ECMASCRIPT_2017 \ --js "${SRC_DIR}/src/release.js" \ --js "${LOC_FILE}" \ --js "${SRC_DIR}/src/helpers.js" \ From 5050192feb19645fabfab2e01befcd1ed19c4e0f Mon Sep 17 00:00:00 2001 From: "Miguel Vergara M." <127254828+mvergaram@users.noreply.github.com> Date: Fri, 29 May 2026 18:28:17 -0400 Subject: [PATCH 03/14] Create CLAUDE.md --- CLAUDE.md | 112 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 112 insertions(+) create mode 100644 CLAUDE.md diff --git a/CLAUDE.md b/CLAUDE.md new file mode 100644 index 0000000..9ed7cce --- /dev/null +++ b/CLAUDE.md @@ -0,0 +1,112 @@ +# CLAUDE.md + +This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository. + +## What This Is + +WME Validator is a Tampermonkey/GreasyFork userscript for the [Waze Map Editor](https://waze.com). It validates map data (segments, nodes, venues) against 150+ rules across 26+ countries, highlights issues in the editor, and generates detailed reports with wiki references and solutions. + +## Build Commands + +The project uses shell scripts wrapping the Google Closure Compiler (Java). No `npm` or `package.json`. + +```bash +./10.release.sh # Release build → build/WME_Validator.user.js (ADVANCED_OPTIMIZATIONS) +./20.debug.sh # Debug build → build/WME_Validator.debug.js (BUNDLE, DEF_DEBUG=true) +./30.gf.sh # GreasyFork build → build/WME_Validator.gf.js (WHITESPACE_ONLY) +./98.format.sh # Format the compiled output with clang-format (Google style, tab width 4) +./99.build.sh # Orchestrator — runs all three build variants +``` + +Configuration (compiler path, output dirs) is in `./00.config.sh`. The closure compiler binary must be installed; the repo was last tested with v20230103. + +There are **no automated tests**. Validation is done manually per `doc/RELENG.md`. + +## Architecture + +### Build Pipeline + +Source files are concatenated in a specific order and fed to Closure Compiler: + +1. `meta/meta-begin.js` — UserScript `@userscript` header +2. `meta/i18n-begin.js` — opens the translations object +3. `i18n/default.js` + `i18n/.js` (26 countries) — localization rules, auto-concatenated +4. `meta/i18n-end.js` — closes the translations object +5. `src/*.js` — core application code +6. `meta/meta-end.js` — closing wrapper +7. `meta/wme-externs.js` + `meta/jquery-1.9.js` — Closure Compiler extern definitions (not bundled, only used for type-checking) + +The post-build steps prepend the UserScript metadata header and run `clang-format`. + +### Global Namespaces + +All runtime state lives in four top-level objects defined in `src/data.js`: + +| Namespace | Purpose | +|-----------|---------| +| `_WV` | Private validator state and configuration | +| `_UI` | User interface state | +| `_RT` | Runtime data (current scan results, active segment info) | +| `_REP` | Report accumulator | + +The `_THUI` namespace (from `src/lib/thui.js`) is a small embedded HTML UI toolkit. + +### Core Execution Flow + +``` +WME login event + └─ F_LOGIN (src/login.js) — access control, UI initialization + +User triggers scan + └─ F_VALIDATE (src/validate.js) — runs all rules against segments/nodes/venues + +Map change events (segments/nodes/venues) + └─ F_ONSEGMENTSCHANGED / F_ONNODESCHANGED / F_ONVENUESCHANGED (src/other.js) + └─ re-validates affected objects + +User requests report + └─ F_SHOWREPORT (src/report.js) — generates HTML/text/CSV output +``` + +### Source File Roles + +- `src/release.js` — version string, release/expiry dates, CDN URLs, global access lists +- `src/data.js` — namespace definitions, constants, `DEF_DEBUG` flag +- `src/helpers.js` — pure utilities: `classOf`, `deepCopy`, `deepCompare`, `getDirection` +- `src/basic.js` — logging, HTML escaping, Trusted Types policy, error handling +- `src/validate.js` — validation engine; each rule is a function called per object +- `src/report.js` — report rendering (HTML table, plain text, CSV) +- `src/login.js` — login handler, access list parsing, country/user/level gates +- `src/other.js` — WME event listeners and layer change handler +- `src/lib/i18n.js` — i18n lookup helpers +- `src/lib/audio.js` — audio notification system +- `src/lib/thui.js` — tiny UI library for building form controls + +### Localization and Country Rules + +`i18n/` is a **git submodule** (`https://github.com/WMEValidator/i18n.git`). Each country file (`i18n/AR.js`, `i18n/DE.js`, etc.) overrides or extends the default English rules in `i18n/default.js`. When editing country-specific rules, changes go in the submodule, not in the main repo. + +### Access Control + +Rules can be gated by user level, username, country, or city using constants from `src/release.js`: +- `GA_FORLEVEL` — minimum WME user level +- `GA_FORUSER` / `GA_FORCOUNTRY` / `GA_FORCITY` — allowlists with negation (`"!Dekis,*"`) + +These are evaluated in `F_LOGIN` against `WLM.user` attributes. + +### Conventions + +- Main handler functions are named `F_ACTION()` (e.g., `F_VALIDATE`, `F_LOGIN`, `F_SHOWREPORT`) +- Constants are `ALL_CAPS` +- JSDoc annotations (`@const`, `@type`, `@suppress`, `@struct`, `@define`) are used throughout — they matter for Closure Compiler's type checker and dead code elimination +- Debug-only code is guarded by `DEF_DEBUG` (a `@define` constant, stripped in release builds) +- All HTML written to the DOM must go through the Trusted Types policy defined in `src/basic.js` + +## Release Checklist + +See `doc/RELENG.md` for the full checklist. Key steps before releasing: +- Ensure all `window.console` calls are commented out +- Resolve all `TEST:`, `TODO:`, `BETA:` markers +- Verify header fields: country locks, user levels, release date, expiration date +- Run release build and test both in Tampermonkey and Firefox +- Check Unicode characters in the output file From 991fcf94b9467e7c81611e4558c132daf1b40132 Mon Sep 17 00:00:00 2001 From: "Miguel Vergara M." <127254828+mvergaram@users.noreply.github.com> Date: Fri, 29 May 2026 18:35:55 -0400 Subject: [PATCH 04/14] remove PFX_PEDIA with PFX_WIKI --- src/login.js | 8 ++++---- src/release.js | 2 -- src/report.js | 6 +++--- src/validate.js | 1 - 4 files changed, 7 insertions(+), 10 deletions(-) diff --git a/src/login.js b/src/login.js index 5756a87..58d6833 100644 --- a/src/login.js +++ b/src/login.js @@ -558,12 +558,12 @@ async function F_LOGIN() { if (labelPL in translation) { var l = translation[labelPL] .replace('W:', PFX_WIKI) - .replace('P:', PFX_PEDIA) + .replace('P:', PFX_WIKI) .replace('F:', PFX_FORUM) .replace('D:', PFX_DISCUSS) ; check.PROBLEMLINK[ccode] = encodeURI(l); - if (-1 !== l.indexOf(PFX_WIKI) || -1 !== l.indexOf(PFX_PEDIA)) + if (-1 !== l.indexOf(PFX_WIKI)) check.PROBLEMLINKTEXT[ccode] = trS('report.link.wiki'); else if (-1 !== l.indexOf(PFX_FORUM)) @@ -574,12 +574,12 @@ async function F_LOGIN() { if (labelSL in translation) { var l = translation[labelSL] .replace('W:', PFX_WIKI) - .replace('P:', PFX_PEDIA) + .replace('P:', PFX_WIKI) .replace('F:', PFX_FORUM) .replace('D:', PFX_DISCUSS) ; check.SOLUTIONLINK[ccode] = encodeURI(l); - if (-1 !== l.indexOf(PFX_WIKI || -1 !== l.indexOf(PFX_PEDIA))) + if (-1 !== l.indexOf(PFX_WIKI)) check.SOLUTIONLINKTEXT[ccode] = trS('report.link.wiki'); else if (-1 !== l.indexOf(PFX_FORUM)) diff --git a/src/release.js b/src/release.js index 05d4428..7642a11 100644 --- a/src/release.js +++ b/src/release.js @@ -125,8 +125,6 @@ var MAX_CHECKS = 310; /** @const */ var PFX_WIKI = 'https://www.waze.com/wiki/'; /** @const */ -var PFX_PEDIA = 'https://wazeopedia.waze.com/wiki/'; -/** @const */ var PFX_FORUM = 'https://www.waze.com/forum/viewtopic.php?'; /** @const */ var PFX_DISCUSS = 'https://www.waze.com/discuss/'; diff --git a/src/report.js b/src/report.js index ba01ca4..c713b41 100644 --- a/src/report.js +++ b/src/report.js @@ -372,7 +372,7 @@ function F_SHOWREPORT(reportFormat) { function addTextLabels(pack, label, defSet, oldPack) { var defData = (defSet[label] || '') .replace(new RegExp('^W:'), PFX_WIKI) - .replace(new RegExp('^P:'), PFX_PEDIA) + .replace(new RegExp('^P:'), PFX_WIKI) .replace(new RegExp('^F:'), PFX_FORUM) .replace(new RegExp('^D:'), PFX_DISCUSS) ; @@ -381,14 +381,14 @@ function F_SHOWREPORT(reportFormat) { var oldData = origData .replace(new RegExp('^' + GL_TODOMARKER), '') .replace(new RegExp('^W:'), PFX_WIKI) - .replace(new RegExp('^P:'), PFX_PEDIA) + .replace(new RegExp('^P:'), PFX_WIKI) .replace(new RegExp('^F:'), PFX_FORUM) .replace(new RegExp('^D:'), PFX_DISCUSS) ; // preserve old data var oldDataEN = (oldPack[label + '.en'] || '') .replace(new RegExp('^W:'), PFX_WIKI) - .replace(new RegExp('^P:'), PFX_PEDIA) + .replace(new RegExp('^P:'), PFX_WIKI) .replace(new RegExp('^F:'), PFX_FORUM) .replace(new RegExp('^D:'), PFX_DISCUSS) ; diff --git a/src/validate.js b/src/validate.js index cb8718d..53c6404 100644 --- a/src/validate.js +++ b/src/validate.js @@ -2588,7 +2588,6 @@ function F_VALIDATE(disabledHL) { var foundPublicConnection = checkPublicConnection(segment, null); if (!foundPublicConnection) { // We might have a isolated segment. Could be a Restricted Gate - // See https://wazeopedia.waze.com/wiki/USA/Private_Installations#Specialty_Gate:_Restricted_Gate if (nodeA.$otherSegmentsLen == 1 && nodeB.$otherSegmentsLen == 1) { // both sides are connected to just one private segment var nodeASegment = nodeA.$otherSegments[0]; From 4acae7bbe2b7e8ab131b9d27567808c6227760d2 Mon Sep 17 00:00:00 2001 From: "Miguel Vergara M." <127254828+mvergaram@users.noreply.github.com> Date: Fri, 29 May 2026 18:42:25 -0400 Subject: [PATCH 05/14] Revert "remove PFX_PEDIA with PFX_WIKI" This reverts commit 991fcf94b9467e7c81611e4558c132daf1b40132. --- src/login.js | 8 ++++---- src/release.js | 2 ++ src/report.js | 6 +++--- src/validate.js | 1 + 4 files changed, 10 insertions(+), 7 deletions(-) diff --git a/src/login.js b/src/login.js index 58d6833..5756a87 100644 --- a/src/login.js +++ b/src/login.js @@ -558,12 +558,12 @@ async function F_LOGIN() { if (labelPL in translation) { var l = translation[labelPL] .replace('W:', PFX_WIKI) - .replace('P:', PFX_WIKI) + .replace('P:', PFX_PEDIA) .replace('F:', PFX_FORUM) .replace('D:', PFX_DISCUSS) ; check.PROBLEMLINK[ccode] = encodeURI(l); - if (-1 !== l.indexOf(PFX_WIKI)) + if (-1 !== l.indexOf(PFX_WIKI) || -1 !== l.indexOf(PFX_PEDIA)) check.PROBLEMLINKTEXT[ccode] = trS('report.link.wiki'); else if (-1 !== l.indexOf(PFX_FORUM)) @@ -574,12 +574,12 @@ async function F_LOGIN() { if (labelSL in translation) { var l = translation[labelSL] .replace('W:', PFX_WIKI) - .replace('P:', PFX_WIKI) + .replace('P:', PFX_PEDIA) .replace('F:', PFX_FORUM) .replace('D:', PFX_DISCUSS) ; check.SOLUTIONLINK[ccode] = encodeURI(l); - if (-1 !== l.indexOf(PFX_WIKI)) + if (-1 !== l.indexOf(PFX_WIKI || -1 !== l.indexOf(PFX_PEDIA))) check.SOLUTIONLINKTEXT[ccode] = trS('report.link.wiki'); else if (-1 !== l.indexOf(PFX_FORUM)) diff --git a/src/release.js b/src/release.js index 7642a11..05d4428 100644 --- a/src/release.js +++ b/src/release.js @@ -125,6 +125,8 @@ var MAX_CHECKS = 310; /** @const */ var PFX_WIKI = 'https://www.waze.com/wiki/'; /** @const */ +var PFX_PEDIA = 'https://wazeopedia.waze.com/wiki/'; +/** @const */ var PFX_FORUM = 'https://www.waze.com/forum/viewtopic.php?'; /** @const */ var PFX_DISCUSS = 'https://www.waze.com/discuss/'; diff --git a/src/report.js b/src/report.js index c713b41..ba01ca4 100644 --- a/src/report.js +++ b/src/report.js @@ -372,7 +372,7 @@ function F_SHOWREPORT(reportFormat) { function addTextLabels(pack, label, defSet, oldPack) { var defData = (defSet[label] || '') .replace(new RegExp('^W:'), PFX_WIKI) - .replace(new RegExp('^P:'), PFX_WIKI) + .replace(new RegExp('^P:'), PFX_PEDIA) .replace(new RegExp('^F:'), PFX_FORUM) .replace(new RegExp('^D:'), PFX_DISCUSS) ; @@ -381,14 +381,14 @@ function F_SHOWREPORT(reportFormat) { var oldData = origData .replace(new RegExp('^' + GL_TODOMARKER), '') .replace(new RegExp('^W:'), PFX_WIKI) - .replace(new RegExp('^P:'), PFX_WIKI) + .replace(new RegExp('^P:'), PFX_PEDIA) .replace(new RegExp('^F:'), PFX_FORUM) .replace(new RegExp('^D:'), PFX_DISCUSS) ; // preserve old data var oldDataEN = (oldPack[label + '.en'] || '') .replace(new RegExp('^W:'), PFX_WIKI) - .replace(new RegExp('^P:'), PFX_WIKI) + .replace(new RegExp('^P:'), PFX_PEDIA) .replace(new RegExp('^F:'), PFX_FORUM) .replace(new RegExp('^D:'), PFX_DISCUSS) ; diff --git a/src/validate.js b/src/validate.js index 53c6404..cb8718d 100644 --- a/src/validate.js +++ b/src/validate.js @@ -2588,6 +2588,7 @@ function F_VALIDATE(disabledHL) { var foundPublicConnection = checkPublicConnection(segment, null); if (!foundPublicConnection) { // We might have a isolated segment. Could be a Restricted Gate + // See https://wazeopedia.waze.com/wiki/USA/Private_Installations#Specialty_Gate:_Restricted_Gate if (nodeA.$otherSegmentsLen == 1 && nodeB.$otherSegmentsLen == 1) { // both sides are connected to just one private segment var nodeASegment = nodeA.$otherSegments[0]; From 29250ad81d50a6e01bc5bade91769817a13c2c3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Vergara=20Mart=C3=ADnez?= <8235478+miguelovergara@users.noreply.github.com> Date: Fri, 29 May 2026 18:44:30 -0400 Subject: [PATCH 06/14] replace PFX_PEDIA for a waze discuss search url --- src/release.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/release.js b/src/release.js index 05d4428..b71c64c 100644 --- a/src/release.js +++ b/src/release.js @@ -125,7 +125,7 @@ var MAX_CHECKS = 310; /** @const */ var PFX_WIKI = 'https://www.waze.com/wiki/'; /** @const */ -var PFX_PEDIA = 'https://wazeopedia.waze.com/wiki/'; +var PFX_PEDIA = 'https://www.waze.com/discuss/search?q='; /** @const */ var PFX_FORUM = 'https://www.waze.com/forum/viewtopic.php?'; /** @const */ From 92d66eb3be3fe55d4f2981995165b883274b9d91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Vergara=20Mart=C3=ADnez?= <8235478+miguelovergara@users.noreply.github.com> Date: Fri, 29 May 2026 18:48:17 -0400 Subject: [PATCH 07/14] build add ES-CL and link fix --- build/WME_Validator.user.js | 676 ++++++++++++++++++++++++++++++++++++ 1 file changed, 676 insertions(+) create mode 100644 build/WME_Validator.user.js diff --git a/build/WME_Validator.user.js b/build/WME_Validator.user.js new file mode 100644 index 0000000..b0876fd --- /dev/null +++ b/build/WME_Validator.user.js @@ -0,0 +1,676 @@ +// ==UserScript== +// @name WME Validator +// @version 2025.02.26 +// @description This script validates a map area in Waze Map Editor, highlights issues and generates a very detailed report with wiki references and solutions +// @match https://beta.waze.com/*editor* +// @match https://www.waze.com/*editor* +// @exclude https://www.waze.com/*user/*editor/* +// @exclude https://www.waze.com/discuss/* +// @grant none +// @icon https://raw.githubusercontent.com/WMEValidator/release/master/img/WV-icon96.png +// @namespace a +// @homepage https://www.waze.com/forum/viewtopic.php?f=819&t=76488 +// @author Andriy Berestovskyy +// @copyright 2013-2018 Andriy Berestovskyy +// @license GPLv3 +// @contributor justins83 +// @contributor davidakachaos +// @contributor jangliss +// @contributor Glodenox +// @contributor DaveAcincy +// ==/UserScript== +/* + * WME Validator uses Open Source GPLv3 license, i.e. you may copy, + * distribute and modify the software as long as you track changes/dates + * in source files. Any modifications to or software including + * (via compiler) GPL-licensed code must also be made available under + * the GPL along with build & install instructions. + * + * WME Validator source code is available on GitHub: + * https://github.com/WMEValidator/ + * + * For questions please use official forum: + * https://www.waze.com/forum/viewtopic.php?f=819&t=76488 + * + * Report bugs on GitHub Issues Tracker: + * https://github.com/WMEValidator/validator/issues + */ + +(function () {var ba={EN:{".codeISO":"EN","city.consider":"consider this city name:","city.1":"city name is too short","city.2":"expand the abbreviation","city.3":"complete short name","city.4":"complete city name","city.5":"correct letter case","city.6":"check word order","city.7":"check abbreviations","city.8a":"add county name","city.8r":"remove county name","city.9":"check county name","city.10a":"add a word","city.10r":"remove a word","city.11":"add county code","city.12":"identical names, but different city IDs", +"city.13a":"add a space","city.13r":"remove a space","city.14":"check the number","props.skipped.title":"The segment is not checked","props.skipped.problem":"The segment is modified after 2014-05-01 AND locked for you, so Validator did not check it","err.regexp":"Error parsing option for check #${n}:","props.disabled":"WME Validator is disabled","props.limit.title":"Too many issues reported","props.limit.problem":"There are too many issues reported, so some of them might not be shown","props.limit.solution":"Deselect the segment and stop scanning process. Then click red '✘' (Clear report) button", +"props.reports":"reports","props.noneditable":"You cannot edit this segment","report.save":"Save this report","report.list.andUp":"and up","report.list.severity":"Severity:","report.list.reportOnly":"only in report","report.list.forEditors":"For editors level:","report.list.forCountries":"For countries:","report.list.forStates":"For states:","report.list.forCities":"For cities:","report.list.params":"Params to configure in localization pack:","report.list.params.set":"Current configuration for ${country}:", +"report.list.enabled":"${n} checks are enabled for","report.list.disabled":"${n} checks are disabled for","report.list.total":"There are ${n} checks available","report.list.title":"Complete List of Checks for","report.list.see":"See","report.list.checks":"Settings->About->Available checks","report.list.fallback":"Localization Fallback Rules:","report.and":"and","report.segments":"Total number of segments checked:","report.customs":"Custom checks matched (green/blue):","report.reported":"Reported", +"report.errors":"errors","report.warnings":"warnings","report.notes":"notes","report.link.wiki":"wiki","report.link.forum":"forum","report.link.other":"link","report.contents":"Contents:","report.summary":"Summary","report.title":"WME Validator Report","report.share":"to Share","report.generated.by":"generated by","report.generated.on":"on","report.source":"Report source:","report.filter.duplicate":"duplicate segments","report.filter.places":"Places","report.filter.streets":"Streets and Service Roads", +"report.filter.other":"Other drivable and Non-drivable","report.filter.noneditable":"non-editable segments","report.filter.notes":"notes","report.filter.title":"Filter:","report.filter.excluded":"are excluded from this report.","report.search.updated.by":"updated by","report.search.updated.since":"updated since","report.search.city":"from","report.search.reported":"reported as","report.search.title":"Search:","report.search.only":"only segments","report.search.included":"are included into the report.", +"report.beta.warning":"WME Beta Warning!","report.beta.text":"This report is generated in beta WME with beta permalinks.","report.beta.share":"Please do not share those permalinks!","report.size.warning":"Warning!
The report is ${n} characters long so it will not fit into a single forum or private message.\n
Please add more filters to reduce the size of the report.","report.note.limit":"* Note: there were too many issues reported, so some of them are not counted in the summary.", +"report.forum":"To motivate further development please leave your comment on the","report.forum.link":"Waze forum thread.","report.thanks":"Thank you for using WME Validator!","msg.limit.segments":"There are too many segments.\n\nClick 'Show report' to review the report, then\n","msg.limit.segments.continue":"click '▶' (Play) to continue.","msg.limit.segments.clear":"click '✘' (Clear) to clear the report.","msg.pan.text":"Pan around to validate the map","msg.zoomout.text":"Zoom out to start WME Validator", +"msg.click.text":"Click '▶' (Play) to validate visible map area","msg.autopaused":"autopaused","msg.autopaused.text":"Auto paused! Click '▶' (Play) to continue.","msg.autopaused.tip":"WME Validator automatically paused on map drag or window size change","msg.finished.text":"Click 'Show report' to review map issues","msg.finished.tip":"Click '✉' (Share) button to post report on a\nforum or in a private message","msg.noissues.text":"Finished! No issues found!","msg.noissues.tip":"Try to uncheck some filter options or start WME Validator over another map area!", +"msg.scanning.text":"Scanning! Finishing in ~ ${n} min","msg.scanning.text.soon":"Scanning! Finishing in a minute!","msg.scanning.tip":"Click 'Pause' button to pause or '■' (Stop) to stop","msg.starting.text":"Starting! Layers are off to scan faster!","msg.starting.tip":"Use 'Pause' button to pause or '■' button to stop","msg.paused.text":"On pause! Click '▶' (Play) button to continue.","msg.paused.tip":"To view the report click 'Show report' button (if available)","msg.continuing.text":"Continuing!", +"msg.continuing.tip":"WME Validator will continue from the location it was paused","msg.settings.text":"Click 'Back' to return to main view","msg.settings.tip":"Click 'Reset defaults' button to reset all settings in one click!","msg.reset.text":"All filter options and settings have been reset to their defaults","msg.reset.tip":"Click 'Back' button to return to main view","msg.textarea.pack":"This is a Greasemonkey/Tampermonkey script. You can copy and paste the text below into a new .user.js file
or paste it directly into the Greasemonkey/Tampermonkey", +"msg.textarea":"Please copy the text below and then paste it into your forum post or private message","noaccess.text":"Sorry,
You cannot use WME Validator over here.
Please check the forum thread
for more information.","noaccess.tip":"Please check the forum thread for more information!","tab.switch.tip.on":"Click to switch highlighting on (Alt+V)","tab.switch.tip.off":"Click to switch highlighting off (Alt+V)", +"tab.filter.text":"filter","tab.filter.tip":"Options to filter the report and highlighted segments","tab.search.text":"search","tab.search.tip":"Advanced filter options to include only specific segments","tab.help.text":"help","tab.help.tip":"Need help?","filter.places.text":"BETA: Enable Places checks","filter.places.tip":"Do not run places checks","filter.noneditables.reverted":"The 'Exclude non-editable objects' filter option has been removed because the area you just scanned has no editable objects.\n\nNow just click 'Show report' to view the report!", +"filter.noneditables.text":"Exclude non-editable objects","filter.noneditables.tip":"Do not report locked objects or\nobjects outside of your editable areas","filter.duplicates.text":"Exclude duplicate objects","filter.duplicates.tip":"Do not show the same object in different\nparts of report\n* Note: this option DOES NOT affect highlighting","filter.streets.text":"Exclude Streets and Service Roads","filter.streets.tip":"Do not report Streets and Service Roads","filter.other.text":"Exclude Other drivable and Non-drivable", +"filter.other.tip":"Do not report Dirt, Parking Lot, Private Roads\nand non-drivable segments","filter.notes.text":"Exclude notes","filter.notes.tip":"Report only warnings and errors","search.youredits.text":"Include only your edits","search.youredits.tip":"Include only segments edited by you","search.updatedby.text":"Updated by*:","search.updatedby.tip":"Include only segments updated by the specified editor\n* Note: this option is available for country managers only\nThis field supports:\n - lists: me, otherEditor\n - wildcards: world*\n - negation: !me, *\n* Note: you may use 'me' to match yourself", +"search.updatedby.example":"Example: me","search.updatedsince.text":"Updated since:","search.updatedsince.tip":"Include only segments edited since the date specified\nFirefox date format: YYYY-MM-DD","search.updatedsince.example":"YYYY-MM-DD","search.city.text":"City name:","search.city.tip":"Include only segments with specified city name\nThis field supports:\n - lists: Paris, Meudon\n - wildcards: Greater * Area\n - negation: !Paris, *","search.city.example":"Example: !Paris, *","search.checks.text":"Reported as:", +"search.checks.tip":"Include only segments reported as specified\nThis field matches:\n - severities: error|warning|note|custom1|custom2\n - check names: New road\n - check IDs: 200\nThis field supports:\n - lists: 36, 37\n - wildcards: *roundabout*\n - negation: !unconfirmed*, *","search.checks.example":"Example: reverse*","help.text":'Help Topics:
F.A.Q.
Ask your question on the forum
How to adjust Validator for your country
About the "Might be Incorrect City Name"', +"help.tip":"Open in a new browser tab","button.scan.tip":"Start scanning current map area\n* Note: this might take few minutes","button.scan.tip.NA":"Zoom out to start scanning current map area","button.pause.tip":"Pause scanning","button.continue.tip":"Continue scanning the map area","button.stop.tip":"Stop scanning and return to the start position","button.clear.tip":"Clear report and segment cache","button.clear.tip.red":"There are too many reported segments:\n 1. Click 'Show report' to generate the report.\n 2. Click this button to clear the report and start over.", +"button.report.text":"Show report","button.report.tip":"Apply the filter and generate HTML report in a new tab","button.BBreport.tip":"Share the report on Waze forum or in a private message","button.settings.tip":"Configure settings","tab.custom.text":"custom","tab.custom.tip":"User-defined custom checks settings","tab.settings.text":"Settings","tab.scanner.text":"scanner","tab.scanner.tip":"Map scanner settings","tab.about.text":"about","tab.about.tip":"About WME Validator","scanner.sounds.text":"Enable sounds", +"scanner.sounds.tip":"Bleeps and the bloops while scanning","scanner.sounds.NA":"Your browser does not support AudioContext","scanner.highlight.text":"Highlight issues on the map","scanner.highlight.tip":"Highlight reported issues on the map","scanner.slow.text":'Enable "slow" checks',"scanner.slow.tip":"Enables deep map analysis\n* Note: this option might slow down the scanning process","scanner.ext.text":"Report external highlights","scanner.ext.tip":"Report segments highlighted by WME Toolbox or WME Color Highlights", +"advanced.atbottom.text":"At the bottom","advanced.atbottom.tip":"Put WME Validator at the bottom of the page","custom.template.text":"Custom template","custom.template.tip":"User-defined custom check expandable template.\n\nYou may use the following expandable variables:\nAddress:\n ${country}, ${state}, ${city}, ${street},\n ${altCity[index or delimeter]}, ${altStreet[index or delimeter]}\nSegment properties:\n ${type}, ${typeRank}, ${toll}, ${direction}, ${elevation}, ${lock},\n ${length}, ${ID}, ${speedLimit}, ${speedLimitAB}, ${speedLimitBA}\nHelpers:\n ${drivable}, ${roundabout}, ${hasHNs},\n ${Uturn}, ${deadEnd}, ${softTurns},\n ${deadEndA}, ${partialA},\n ${deadEndB}, ${partialB},\n ${checkSpeedLimit}\nConnectivity:\n ${segmentsA}, ${inA}, ${outA}, ${UturnA},\n ${segmentsB}, ${inB}, ${outB}, ${UturnB}", +"custom.template.example":"Example: ${street}","custom.regexp.text":"Custom RegExp","custom.regexp.tip":"User-defined custom check regular expression to match the template.\n\nCase-insensitive match: /regexp/i\nNegation (do not match): !/regexp/\nLog debug information on console: D/regexp/","custom.regexp.example":"Example: !/.+/","about.tip":"Open link in a new tab","button.reset.text":"Reset defaults","button.reset.tip":"Revert filter options and settings to their defaults", +"button.list.text":"Available checks...","button.list.tip":"Show a list of checks available in WME Validator","button.wizard.tip":"Create localization package","button.back.text":"Back","button.back.tip":"Close settings and return to main view","23.enabled":!0,"23.title":"Unconfirmed road","23.problem":"Each segment must minimally have the Country and State information","23.problemLink":"P:Global/Map_Editing_Quick-start_Guide#Creating_a_road","23.solution":"Confirm the road by updating its details", +"23.solutionLink":"P:Global/Road_names/USA","24.enabled":!0,"24.severity":"W","24.reportOnly":!0,"24.title":"Might be incorrect city name (only available in the report)","24.problem":"The segment might have incorrect city name","24.problemLink":"P:Global/Smudged_city","24.solution":"Consider suggested city name and use this form to rename the city","24.solutionLink":"D:t/city-name-change-form/38729","25.enabled":!0,"25.severity":"W","25.title":"Unknown direction of drivable road","25.problem":"'Unknown' road direction will not prevent routing on the road", +"25.problemLink":"W:How_to_handle_road_closures#NOTES_for_all_durations","25.solution":"Set the road direction","27.title":"City name on Railroad","27.problem":"City name on the Railroad may cause a city smudge","27.problemLink":"P:Global/Smudged_city","27.solution":"In the address properties check the 'None' box next to the city name and then click 'Apply'","27.solutionLink":"P:Global/Creating_and_editing_road_segments#Address_Properties","28.enabled":!0,"28.severity":"W","28.title":"Street name on two-way Ramp", +"28.problem":"If Ramp is unnamed, the name of a subsequent road will propagate backwards","28.problemLink":"P:Global/Junction_Style_Guide/Interchanges#Ramp-ramp_forks","28.solution":"In the address properties check the 'None' box next to the street name and then click 'Apply'","28.solutionLink":"P:Global/Creating_and_editing_road_segments#Address_Properties","29.enabled":!0,"29.severity":"W","29.title":"Street name on roundabout","29.problem":"In Waze, we do not name roundabout segments","29.problemLink":"P:Global/Roundabouts/USA#Creating_a_roundabout_from_an_intersection", +"29.solution":"In the address properties check the 'None' box next to the street name, click 'Apply' and then add 'Junction' landmark to name the roundabout","29.solutionLink":"P:Global/Creating_and_editing_road_segments#Address_Properties","34.enabled":!0,"34.title":"Empty alternate street","34.problem":"Alternate street name is empty","34.solution":"Remove empty alternate street name","35.enabled":!0,"35.severity":"W","35.title":"Unterminated drivable road","35.problem":"Waze will not route from the unterminated segment", +"35.solution":"Move the segment a bit so the terminating node will be added automatically","36.enabled":!1,"36.title":"Node A: Unneeded (slow)","36.problem":"Adjacent segments at node A are identical","36.problemLink":"P:Global/Creating_and_editing_road_segments#Removing_junctions_with_only_two_segments","36.solution":"Select node A and press Delete key to join the segments","36.solutionLink":"P:Global/Map_Editing_Quick-start_Guide#Deleting_a_junction","37.enabled":!1,"37.title":"Node B: Unneeded (slow)", +"37.problem":"Adjacent segments at node B are identical","37.problemLink":"P:Global/Creating_and_editing_road_segments#Removing_junctions_with_only_two_segments","37.solution":"Select node B and press Delete key to join the segments","37.solutionLink":"P:Global/Map_Editing_Quick-start_Guide#Deleting_a_junction","38.enabled":!0,"38.title":"Expired segment restriction (slow)","38.problem":"The segment has an expired restriction","38.problemLink":"P:Global/Partial_restrictions#Segments","38.solution":"Click 'Edit restrictions' and delete the expired restriction", +"39.enabled":!0,"39.title":"Expired turn restriction (slow)","39.problem":"The segment has a turn with an expired restriction","39.problemLink":"P:Global/Partial_restrictions#Turns","39.solution":"Click clock icon next to the yellow arrow and delete the expired restriction","41.enabled":!0,"41.title":"Node A: Reverse connectivity of drivable road","41.problem":"There is a turn which goes against the directionality of the segment at node A","41.problemLink":"P:Global/Reverse_connectivity","41.solution":"Make the segment 'Two-way', restrict all the turns at node A and then make the segment 'One way (A→B)' again", +"42.enabled":!0,"42.title":"Node B: Reverse connectivity of drivable road","42.problem":"There is a turn which goes against the directionality of the segment at node B","42.problemLink":"P:Global/Reverse_connectivity","42.solution":"Make the segment 'Two-way', restrict all the turns at node B and then make the segment 'One way (B→A)' again","43.enabled":!0,"43.severity":"E","43.title":"Self connectivity","43.problem":"The segment is connected back to itself","43.problemLink":"P:Global/Glossary#SelfCon", +"43.solution":"Split the segment into THREE pieces","43.solutionLink":"P:Global/Map_Editing_Quick-start_Guide#Cutting_a_segment","44.enabled":!1,"44.severity":"E","44.title":"No outward connectivity","44.problem":"The drivable segment has no single outward turn enabled","44.solution":"Enable at least one outward turn from the segment","44.solutionLink":"P:Global/Creating_and_editing_road_segments#Set_allowed_turns_.28connections.29","45.enabled":!1,"45.severity":"E","45.title":"No inward connectivity", +"45.problem":"The drivable non-private segment has no single inward turn enabled","45.solution":"Select an adjacent segment and enable at least one turn to the segment","45.solutionLink":"P:Global/Creating_and_editing_road_segments#Set_allowed_turns_.28connections.29","46.enabled":!0,"46.severity":"W","46.title":"Node A: No inward connectivity of drivable road (slow)","46.problem":"The drivable non-private segment has no single inward turn enabled at node A","46.solution":"Select an adjacent segment and enable at least one turn to the segment at node A", +"46.solutionLink":"P:Global/Creating_and_editing_road_segments#Set_allowed_turns_.28connections.29","47.enabled":!0,"47.severity":"W","47.title":"Node B: No inward connectivity of drivable road (slow)","47.problem":"The drivable non-private segment has no single inward turn enabled at node B","47.solution":"Select an adjacent segment and enable at least one turn to the segment at node B","47.solutionLink":"P:Global/Creating_and_editing_road_segments#Set_allowed_turns_.28connections.29","48.enabled":!0, +"48.severity":"E","48.title":"Two-way drivable roundabout segment","48.problem":"The drivable roundabout segment is bidirectional","48.solution":"Redo the roundabout","48.solutionLink":"P:Global/Roundabouts/USA#Improving_manually_drawn_roundabouts","50.enabled":!1,"50.severity":"E","50.title":"No connectivity on roundabout (slow)","50.problem":"The drivable roundabout segment has no connectivity with adjacent roundabout segment","50.solution":"Enable a turn to the adjacent segment or redo the roundabout", +"50.solutionLink":"P:Global/Roundabouts/USA#Improving_manually_drawn_roundabouts","52.title":"Too long street name","52.problem":"The name of the drivable segment is more than ${n} letters long and it is not a Ramp","52.solution":"Consider an abbreviation for the street name","52.params":{"n.title":"{number} maximum street name length",n:30},"54.severity":"W","54.title":"No city on segment with HNs","54.problem":"Address search will fail with no city name","54.solution":"Make sure the primary or alt names have a city", +"54.solutionLink":"P:Global/Creating_and_editing_road_segments#Address_Properties","55.title":"No city on named segment","55.problem":"Address search will fail with no city name","55.solution":"Make sure the primary or alt names have a city","55.solutionLink":"P:Global/Creating_and_editing_road_segments#Address_Properties","57.severity":"W","57.title":"City name on named Ramp","57.problem":"City name on the named Ramp may affect search results","57.problemLink":"D:t/freeways-on-off-ramps-include-city-name/67570", +"57.solution":"In the address properties check the 'None' box next to the city name and then click 'Apply'","57.solutionLink":"P:Global/Creating_and_editing_road_segments#Address_Properties","59.title":"City name on Freeway","59.problem":"City name on the Freeway may cause a city smudge","59.problemLink":"P:Global/Smudged_city","59.solution":"In the address properties check the 'None' box next to the city name and then click 'Apply'","59.solutionLink":"P:Global/Creating_and_editing_road_segments#Address_Properties", +"69.title":"No city name on Freeway","69.problem":"The Freeway has no city name set","69.solution":"Set the city name","73.title":"Too short street name","73.problem":"The street name is less than ${n} letters long and it is not a highway","73.solution":"Correct the street name","73.params":{"n.title":"{number} minimum street name length",n:3},"74.enabled":!1,"74.severity":"W","74.title":"Node A: Multiple segments connected at roundabout","74.problem":"The drivable roundabout node A has more than one segment connected", +"74.problemLink":"W:Map_Legend#Types_of_segments_.28Roundabouts.29","74.solution":"Redo the roundabout","74.solutionLink":"P:Global/Roundabouts/USA#Improving_manually_drawn_roundabouts","77.enabled":!1,"77.severity":"W","77.title":"Dead-end U-turn","77.problem":"The drivable dead-end road has a U-turn enabled","77.problemLink":"P:Global/Map_Editing_Quick-start_Guide#U-turns_at_the_end_of_dead-end-streets","77.solution":"Disable U-turn","78.enabled":!0,"78.severity":"W","78.title":"Same endpoints (2 segment loop)", +"78.problem":"Two drivable segments share the same two endpoints","78.problemLink":"P:Global/Junction_Style_Guide#Two-segment_loops","78.solution":"Split the segment. You might also remove one of the segments if they are identical","78.solutionLink":"P:Global/Map_Editing_Quick-start_Guide#Cutting_a_segment","79.enabled":!1,"79.severity":"W","79.title":"Too short U-turn connector (slow)","79.problem":"The length of the segment is less than 15m long so U-turn is not possible here","79.problemLink":"P:Global/Classification_of_crossings", +"79.solution":"Increase the length of the segment","87.enabled":!0,"87.severity":"E","87.title":"Node A: Multiple outgoing segments at roundabout","87.problem":"The drivable roundabout node A has more than one outgoing segment connected","87.problemLink":"W:Map_Legend#Types_of_segments_.28Roundabouts.29","87.solution":"Redo the roundabout","87.solutionLink":"P:Global/Roundabouts/USA#Improving_manually_drawn_roundabouts","90.severity":"W","90.title":"Two-way Freeway segment","90.problem":"Most of the Freeways are split into two one-way roads, so this two-way segment might be a mistake", +"90.solution":"Check Freeway direction","91.severity":"W","91.title":"Two-way Ramp segment","91.problem":"Most of the Ramps are one-way roads, so this two-way segment might be a mistake","91.solution":"Check Ramp direction","95.severity":"W","95.title":"Street name with a dot","95.problem":"There is a dot in the street name (excluding Ramps)","95.solution":"Expand the abbreviation or remove the dot","99.enabled":!0,"99.severity":"W","99.title":"U-turn at roundabout entrance (slow)","99.problem":"The roundabout entrance segment has a U-turn enabled", +"99.problemLink":"P:Global/Map_Editing_Quick-start_Guide#U-turns_at_the_end_of_dead-end-streets","99.solution":"Disable U-turn","101.enabled":!0,"101.severity":"E","101.reportOnly":!0,"101.title":"Closed road (only available in the report)","101.problem":"The segment is marked as closed","101.problemLink":"W:How_to_handle_road_closures","101.solution":"If the construction is done, restore the segment connectivity and remove the suffix","101.solutionLink":"P:Global/Road_names/USA#Construction_zones_and_closed_roads", +"101.params":{"regexp.title":"{string} regular expression to match closed road",regexp:"/(^|\\b)closed(\\b|$)/i"},"102.enabled":!0,"102.severity":"W","102.title":"Node A: No outward connectivity of drivable road (slow)","102.problem":"The drivable segment has no single outward turn enabled at node A","102.solution":"Enable at least one outward turn from the segment at node A","102.solutionLink":"P:Global/Creating_and_editing_road_segments#Set_allowed_turns_.28connections.29","103.enabled":!0,"103.severity":"W", +"103.title":"Node B: No outward connectivity of drivable road (slow)","103.problem":"The drivable segment has no single outward turn enabled at node B","103.solution":"Enable at least one outward turn from the segment at node B","103.solutionLink":"P:Global/Creating_and_editing_road_segments#Set_allowed_turns_.28connections.29","104.enabled":!0,"104.title":"Railroad used for comments","104.problem":"The Railroad segment is probably used as a map comment","104.problemLink":"D:t/regarding-railroads/44330", +"104.solution":"Remove the comment as Railroads will be added to the client display","105.title":"Walking Trail instead of a Railroad","105.problem":"The Walking Trail segment with elevation -5 is probably used instead of a Railroad","105.problemLink":"D:t/regarding-railroads/44330","105.solution":"Change road type to Railroad as Railroads will be added to the client display","106.title":"No state name selected","106.problem":"The segment has no state name selected","106.solution":"Select a state for the segment and apply the changes", +"106.solutionLink":"P:Global/Creating_and_editing_road_segments#Confirm_the_road_by_updating_details","107.enabled":!0,"107.severity":"E","107.title":"Node A: No connection (slow)","107.problem":"The node A of the drivable segment is within 5m from another drivable segment but not connected by a junction","107.solution":"Drag the node A to the nearby segment so that it touches or move it a bit further away","108.enabled":!0,"108.severity":"E","108.title":"Node B: No connection (slow)","108.problem":"The node B of the drivable segment is within 5m from another drivable segment but not connected by a junction", +"108.solution":"Drag the node B to the nearby segment so that it touches or move it a bit further away","109.enabled":!0,"109.severity":"W","109.title":"Too short segment","109.problem":"The drivable non-terminal segment is less than ${n}m long so it is hard to see it on the map and it can cause routing problems","109.problemLink":"P:Global/Segment_length","109.solution":"Increase the length, or remove the segment, or join it with one of the adjacent segments","109.solutionLink":"P:Global/Map_Editing_Quick-start_Guide#Deleting_a_junction", +"109.params":{"n.title":"{number} minimum segment length",n:5},"110.title":"Incorrect Freeway elevation","110.problem":"The elevation of the Freeway segment is not a ground","110.problemLink":"P:Germany/Die_beste_Vorgehensweise_beim_Bearbeiten_der_Karte#.C3.9Cber-_und_Unterf.C3.BChrungen","110.solution":"Set the Freeway elevation to ground","112.enabled":!0,"112.severity":"W","112.title":"Too long Ramp name","112.problem":"The Ramp name is more than ${n} letters long","112.solution":"Shorten the Ramp name", +"112.params":{"n.title":"{number} maximum Ramp name length",n:55},"114.enabled":!1,"114.severity":"W","114.title":"Node A: Non-drivable connected to drivable (slow)","114.problem":"The non-drivable segment makes a junction with a drivable at node A","114.problemLink":"P:USA/Road_types#Non-drivable_roads","114.solution":"Disconnect node A from all of the drivable segments","115.enabled":!1,"115.severity":"W","115.title":"Node B: Non-drivable connected to drivable (slow)","115.problem":"The non-drivable segment makes a junction with a drivable at node B", +"115.problemLink":"P:USA/Road_types#Non-drivable_roads","115.solution":"Disconnect node B from all of the drivable segments","116.enabled":!0,"116.severity":"W","116.title":"Out of range elevation","116.problem":"The segment elevation is out of range","116.solution":"Correct the elevation","117.enabled":!0,"117.severity":"W","117.title":"Obsolete CONST ZN marker","117.problem":"The segment is marked with obsolete CONST ZN suffix","117.solution":"Change CONST ZN to (closed)","117.solutionLink":"P:Global/Road_names/USA#Construction_zones_and_closed_roads", +"118.enabled":!0,"118.severity":"E","118.title":"Node A: Overlapping segments (slow)","118.problem":"The segment is overlapping with the adjacent segment at node A","118.solution":"Spread the segments at 2° or delete unneeded geometry point or delete the duplicate segment at node A","119.enabled":!0,"119.severity":"E","119.title":"Node B: Overlapping segments (slow)","119.problem":"The segment is overlapping with the adjacent segment at node B","119.solution":"Spread the segments at 2° or delete unneeded geometry point or delete the duplicate segment at node B", +"120.enabled":!0,"120.severity":"W","120.title":"Node A: Too sharp turn (slow)","120.problem":"The drivable segment has a very acute turn at node A","120.solution":"Disable the sharp turn at node A or spread the segments at 30°","121.enabled":!0,"121.severity":"W","121.title":"Node B: Too sharp turn (slow)","121.problem":"The drivable segment has a very acute turn at node B","121.solution":"Disable the sharp turn at node B or spread the segments at 30°","128.enabled":!0,"128.severity":"1","128.title":"User-defined custom check (green)", +"128.problem":"Some of the segment properties matched against the user-defined regular expression (see Settings→Custom)","128.problemLink":"https://developer.mozilla.org/docs/Web/JavaScript/Guide/Regular_Expressions","128.solution":"Solve the issue","128.params":{},"129.enabled":!0,"129.severity":"2","129.title":"User-defined custom check (blue)","129.problem":"Some of the segment properties matched against the user-defined regular expression (see Settings→Custom)","129.problemLink":"https://developer.mozilla.org/docs/Web/JavaScript/Guide/Regular_Expressions", +"129.solution":"Solve the issue","129.params":{},"169.severity":"W","169.title":"Incorrectly named street","169.problem":"The street named incorrectly, illegal chars or words used","169.solution":"Rename the segment in accordance with the guidelines","169.params":{"regexp.title":"{string} regular expression to match incorrect street name",regexp:"!/^[a-zA-Z0-9\\. :\"'(/)-]+$/"},"170.severity":"W","170.title":"Lowercase street name","170.problem":"The street name starts with a lowercase word","170.solution":"Correct lettercase in the street name", +"170.params":{"regexp.title":"{string} regular expression to match a lowercase name",regexp:"/^[a-zа-яёіїєґ]/"},"171.severity":"W","171.title":"Incorrectly abbreviated street name","171.problem":"The street name has incorrect abbreviation","171.solution":"Check upper/lower case, a space before/after the abbreviation and the accordance with the abbreviation table","171.params":{"regexp.title":"{string} regular expression to match incorrect abbreviations",regexp:"/\\.$/"},"172.enabled":!0,"172.title":"Unneeded spaces in street name", +"172.problem":"Leading/trailing/double space in the street name","172.solution":"Remove unneeded spaces from the street name","172.params":{regexp:"/^\\s|\\s$|\\s\\s/"},"173.enabled":!0,"173.severity":"W","173.title":"No space before/after street abbreviation","173.problem":"No space before ('1943r.') or after ('st.Jan') an abbreviation in the street name","173.solution":"Add a space before/after the abbreviation","173.params":{regexp:"/([^\\s]\\.[^\\s0-9-][^\\s0-9\\.])|([0-9][^\\s0-9]+\\.[^0-9-])/"}, +"174.severity":"W","174.title":"Street name spelling mistake","174.problem":"The is a spelling mistake in the street name","174.solution":"Add/correct the mistake, check accented letters","174.params":{"regexp.title":"{string} regular expression to match spelling mistakes",regexp:"/(^|\\b)(accross|cemetary|fourty|foward|goverment|independant|liason|pavillion|portugese|posession|prefered|shcool|wat|wich)($|\\b)/i"},"175.enabled":!0,"175.severity":"W","175.title":"Empty street name","175.problem":"The street name has only space characters or a dot", +"175.solution":"In the address properties check the 'None' box next to the street name, click 'Apply' OR set a proper street name","175.solutionLink":"P:Global/Creating_and_editing_road_segments#Confirm_the_road_by_updating_details","175.params":{regexp:"/^[\\s\\.]*$/"},"190.severity":"W","190.enabled":!0,"190.title":"Lowercase city name","190.problem":"The city name starts with a lowercase letter","190.solution":"Use this form to rename the city","190.solutionLink":"D:t/city-name-change-form/38729", +"190.params":{"regexp.title":"{string} regular expression to match a lowercase city name",regexp:"/^[a-zа-яёіїєґ]/"},"191.severity":"W","191.title":"Incorrectly abbreviated city name","191.problem":"The city name has incorrect abbreviation","191.solution":"Use this form to rename the city","191.solutionLink":"D:t/city-name-change-form/38729","191.params":{"regexp.title":"{string} regular expression to match incorrect abbreviations",regexp:"/\\./"},"192.enabled":!0,"192.title":"Unneeded spaces in city name", +"192.problem":"Leading/trailing/double space in the city name","192.solution":"Use this form to rename the city","192.solutionLink":"D:t/city-name-change-form/38729","192.params":{regexp:"/^\\s|\\s$|\\s\\s/"},"193.enabled":!0,"193.title":"No space before/after city abbreviation","193.problem":"No space before ('1943r.') or after ('st.Jan') an abbreviation in the city name","193.solution":"Use this form to rename the city","193.solutionLink":"D:t/city-name-change-form/38729","193.params":{regexp:"/([^\\s]\\.[^\\s0-9-][^\\s0-9\\.])|([0-9][^\\s0-9]+\\.[^0-9-])/"}, +"200.enabled":!0,"200.title":"Node A: Unconfirmed turn on minor road","200.problem":"The minor drivable segment has an unconfirmed (soft) turn at node A","200.problemLink":"P:Global/Soft_and_hard_turns","200.solution":"Click the turn indicated with a purple question mark to confirm it. Note: you may need to make the segment 'Two-way' in order to see those turns","200.solutionLink":"P:Global/Soft_and_hard_turns#Best_practices","300.enabled":!0,"300.title":"Node B: Unconfirmed turn on minor road","300.problem":"The minor drivable segment has an unconfirmed (soft) turn at node B", +"300.problemLink":"P:Global/Soft_and_hard_turns","300.solution":"Click the turn indicated with a purple question mark to confirm it. Note: you may need to make the segment 'Two-way' in order to see those turns","300.solutionLink":"P:Global/Soft_and_hard_turns#Best_practices","201.enabled":!0,"201.severity":"W","201.title":"Node A: Unconfirmed turn on primary road","201.problem":"The primary segment has an unconfirmed (soft) turn at node A","201.problemLink":"P:Global/Soft_and_hard_turns","201.solution":"Click the turn indicated with a purple question mark to confirm it. Note: you may need to make the segment 'Two-way' in order to see those turns", +"201.solutionLink":"P:Global/Soft_and_hard_turns#Best_practices","301.enabled":!0,"301.severity":"W","301.title":"Node B: Unconfirmed turn on primary road","301.problem":"The primary segment has an unconfirmed (soft) turn at node B","301.problemLink":"P:Global/Soft_and_hard_turns","301.solution":"Click the turn indicated with a purple question mark to confirm it. Note: you may need to make the segment 'Two-way' in order to see those turns","301.solutionLink":"P:Global/Soft_and_hard_turns#Best_practices", +"202.enabled":!0,"202.severity":"W","202.title":"BETA: No public connection for public segment (slow)","202.problem":"The public segment is not connected to any other public segment","202.solution":"Verify if the segment is meant to be a public accessible segment, or it should be changed to a private segment","210.enabled":!0,"210.title":"Segment has unverified speed limits from A to B","210.problem":"Segment has speed limit set from A to B that is unverified","210.solution":"Verify the speed limit on the segment and confirm or correct it", +"210.solutionLink":"P:Global/Creating_and_editing_road_segments#Speed_limit","211.enabled":!0,"211.title":"Segment has unverified speed limits from B to A","211.problem":"Segment has speed limit set from B to A that is unverified","211.solution":"Verify the speed limit on the segment and confirm or correct it","211.solutionLink":"P:Global/Creating_and_editing_road_segments#Speed_limit","212.enabled":!0,"212.title":"Segment has no speed limit set from A to B","212.problem":"Segment has no speed limit set from A to B", +"212.solution":"Verify the speed limit on the segment and set it","212.solutionLink":"P:Global/Creating_and_editing_road_segments#Speed_limit","213.enabled":!0,"213.title":"Segment has no speed limit set from B to A","213.problem":"Segment has no speed limit set from B to A","213.solution":"Verify the speed limit on the segment and set it","213.solutionLink":"P:Global/Creating_and_editing_road_segments#Speed_limit","214.enabled":!0,"214.title":"Segment has possibly wrong speed limit from A to B", +"214.problem":"Segment has a speed limit that seems to be incorrect","214.solution":"Verify the speed limit on the segment and correct it if needed","214.params":{"regexp.title":"{string} regular expression to match valid speed limits",regexp:"/^.+[05]$/"},"215.enabled":!0,"215.title":"Segment has possibly wrong speed limit from B to A","215.problem":"Segment has a speed limit that seems to be incorrect","215.params":{"regexp.title":"{string} regular expression to match valid speed limits",regexp:"/^.+[05]$/"}, +"215.solution":"Verify the speed limit on the segment and correct it if needed","250.enabled":!0,"250.title":"BETA: No city name on Place","250.problem":"The Place has no city name set","250.solution":"Set the city name","250.params":{"regexp.title":"{string} regular expression for categories to exclude from this check",regexp:"/^(NATURAL_FEATURES|BRIDGE|ISLAND|FOREST_GROVE|SEA_LAKE_POOL|RIVER_STREAM|CANAL|DAM|TUNNEL|JUNCTION_INTERCHANGE)$/"},"251.enabled":!0,"251.title":"BETA: No street name on Place", +"251.problem":"The Place has no street name set","251.solution":"Set the street name","251.params":{"regexp.title":"{string} regular expression to match categories that should be excepted from this check",regexp:"/^(NATURAL_FEATURES|BRIDGE|ISLAND|FOREST_GROVE|SEA_LAKE_POOL|RIVER_STREAM|CANAL|DAM|TUNNEL|JUNCTION_INTERCHANGE)$/"},"252.enabled":!0,"252.title":"BETA: Automatically updated Place","252.problem":"The Place was updated automatically by Waze","252.solution":"Verify and update the Place details if needed", +"252.params":{"regexp.title":"{string} regular expression to match Waze bot names and ids",regexp:"/^waze-maint|^105774162$|^waze3rdparty$|^361008095$|^WazeParking1$|^338475699$|^admin$|^-1$|^avsus$|^107668852$/i"},"253.enabled":!0,"253.title":"BETA: Category 'OTHER' should not be used","253.problem":"Users can search on category, and category 'OTHER' doesn't give enough information","253.solution":"Set the correct category","254.enabled":!0,"254.title":"BETA: No entry/exit points on Place","254.problem":"The Place entry/exit points are not set", +"254.solution":"Set the entry/exit points","255.enabled":!0,"255.title":"BETA: Invalid phone number","255.problem":"The Place has an invalid phone number","255.solution":"Set the correct phone number","255.params":{"regexp.title":"{string} regular expression to match a correct phone number",regexp:"/.+/"},"256.enabled":!0,"256.title":"BETA: Invalid website","256.problem":"The Place has an invalid website URL","256.solution":"Set the correct website URL","256.params":{"regexp.title":"{string} regular expression to match a correct website URL", +regexp:"/^(https?://)?[^\\s/$.?#].[^\\s]*$/i"},"256.solutionLink":"P:Global/Places#When_to_use_Area_or_Point","257.enabled":!0,"257.title":"BETA: Place should be an area place","257.problem":"The Place is set as a point place, but should be an area","257.solution":"Convert the Place to an area place","257.params":{"regexp.title":"{string} regular expression to match categories that should be a area",regexp:"/^(GAS_STATION|PARKING_LOT|AIRPORT|BRIDGE|JUNCTION_INTERCHANGE|SEAPORT_MARINA_HARBOR|TUNNEL|CEMETERY|COLLEGE_UNIVERSITY|CONVENTIONS_EVENT_CENTER|EMBASSY_CONSULATE|FIRE_DEPARTMENT|HOSPITAL_URGENT_CARE|MILITARY|POLICE_STATION|PRISON_CORRECTIONAL_FACILITY|SCHOOL|SHOPPING_CENTER|CASINO|RACING_TRACK|STADIUM_ARENA|THEME_PARK|ZOO_AQUARIUM|CONSTRUCTION_SITE|BEACH|GOLF_COURSE|PARK|SKI_AREA|FOREST_GROVE|ISLAND|SEA_LAKE_POOL|RIVER_STREAM|CANAL|SWAMP_MARSH|DAM)$/"}, +"257.solutionLink":"P:Global/Places#When_to_use_Area_or_Point","258.enabled":!0,"258.title":"BETA: Place should be a point place","258.problem":"The Place is set as an area place, but should be a point","258.solution":"Convert the Place to a point place","258.params":{"regexp.title":"{string} regular expression to match categories that should be a point",regexp:"/^(GARAGE_AUTOMOTIVE_SHOP|CAR_WASH|CHARGING_STATION|BUS_STATION|FERRY_PIER|SUBWAY_STATION|TRAIN_STATION|TAXI_STATION|REST_AREAS|GOVERNMENT|LIBRARY|CITY_HALL|ORGANIZATION_OR_ASSOCIATION|COURTHOUSE|DOCTOR_CLINIC|OFFICES|POST_OFFICE|RELIGIOUS_CENTER|KINDERGARDEN|FACTORY_INDUSTRIAL|INFORMATION_POINT|EMERGENCY_SHELTER|TRASH_AND_RECYCLING_FACILITIES|ARTS_AND_CRAFTS|BANK_FINANCIAL|SPORTING_GOODS|BOOKSTORE|PHOTOGRAPHY|CAR_DEALERSHIP|FASHION_AND_CLOTHING|CONVENIENCE_STORE|PERSONAL_CARE|DEPARTMENT_STORE|PHARMACY|ELECTRONICS|FLOWERS|FURNITURE_HOME_STORE|GIFTS|GYM_FITNESS|SWIMMING_POOL|HARDWARE_STORE|MARKET|SUPERMARKET_GROCERY|JEWELRY|LAUNDRY_DRY_CLEAN|MUSIC_STORE|PET_STORE_VETERINARIAN_SERVICES|TOY_STORE|TRAVEL_AGENCY|ATM|CURRENCY_EXCHANGE|CAR_RENTAL|TELECOM|RESTAURANT|BAKERY|DESSERT|CAFE|FAST_FOOD|FOOD_COURT|BAR|ICE_CREAM|ART_GALLERY|CLUB|TOURIST_ATTRACTION_HISTORIC_SITE|MOVIE_THEATER|MUSEUM|MUSIC_VENUE|PERFORMING_ARTS_VENUE|GAME_CLUB|THEATER|HOTEL|HOSTEL|COTTAGE_CABIN|BED_AND_BREAKFAST|PLAYGROUND|SPORTS_COURT|PLAZA|PROMENADE|POOL|SCENIC_LOOKOUT_VIEWPOINT)$/"}, +"259.enabled":!0,"259.title":"BETA: No lock on Place","259.problem":"According to the category, the Place should be locked at least to Lvl ${n}","259.solution":"Lock the Place","259.params":{"n.title":"{number} minimum lock level",n:2,"regexp.title":"{string} regular expression to match categories that should be locked to {number}",regexp:"/^(PARKING_LOT|CHARGING_STATION)$/"},"260.enabled":!0,"260.title":"BETA: No lock on Place","260.problem":"According to the category, the Place should be locked at least to Lvl ${n}", +"260.solution":"Lock the Place","260.params":{"n.title":"{number} minimum lock level",n:3,"regexp.title":"{string} regular expression to match categories that should be locked to {number}",regexp:"/(GAS_STATION|AIRPORT)/"},"270.enabled":!0,"270.title":"BETA: No type on Parking Lot","270.problem":"The primary Parking Lot type is not set","270.solution":"Set the primary lot type","271.enabled":!0,"271.title":"BETA: No cost on Parking Lot","271.problem":"The Parking Lot cost is not set","271.solution":"Set the Parking Lot cost", +"272.enabled":!0,"272.title":"BETA: No payment types on Parking Lot","272.problem":"The Parking Lot payment types are not set","272.solution":"Set the payment types","273.enabled":!0,"273.title":"BETA: No elevation on Parking Lot","273.problem":"The Parking Lot elevation is not set","273.solution":"Set the elevation","274.enabled":!0,"274.title":"BETA: No Parking Lot entry/exit points","274.problem":"The Parking Lot entry/exit points are not set","274.solution":"Set the entry/exit points","275.enabled":!0, +"275.title":"BETA: No brand on Gas Station","275.problem":"The Gas Station brand is not in its name","275.solution":"Add or update brand in the Gas Station name"},US:{".codeISO":"US",".country":"United States","27.enabled":!0,"54.enabled":!0,"55.enabled":!0,"90.enabled":!0,"106.enabled":!0,"112.enabled":!1,"150.enabled":!0,"150.params":{n:2},"170.enabled":!0,"170.params":{regexp:"/^(?!(to) [^a-z])((S|N|W|E) )?[a-z]/"},"171.enabled":!0,"171.solutionLink":"P:USA/Abbreviations_and_acronyms#Recommended_abbreviations_and_acronyms", +"171.params":{regexp:"/((?!(\\bPhila|\\bPenna|.(\\bWash|\\bCmdr|\\bProf|\\bPres)|..(\\bAdm|\\bSte|\\bCpl|\\bMaj|\\bSgt|\\bRe[vc]|\\bR\\.R|\\bGov|\\bGen|\\bHon|\\bCpl)|...(\\bSt|\\b[JSD]r|\\bLt|\\bFt)|...(#| )[NEWSR])).{5}\\.|((?!(hila|enna|(\\bWash|\\bCmdr|\\bProf|\\bPres)|.(\\bAdm|\\bSte|\\bCpl|\\bMaj|\\bSgt|\\bRe[vc]|\\bR\\.R|\\bGov|\\bGen|\\bHon|\\bCpl)|..(\\bSt|\\b[JSD]r|\\bLt|\\bFt)|..(#| )[NEWSR])).{4}|(\\bhila|\\benna))\\.|((?!(ila|nna|(ash|mdr|rof|res)|(\\bAdm|\\bSte|\\bCpl|\\bMaj|\\bSgt|\\bRe[vc]|\\bR\\.R|\\bGov|\\bGen|\\bHon|\\bCpl)|.(\\bSt|\\b[JSD]r|\\bLt|\\bFt)|.(#| )[NEWSR])).{3}|\\b(ila|nna|ash|mdr|rof|res))\\.|((?!(la|na|(sh|dr|of|es)|(dm|te|pl|aj|gt|e[vc]|\\.R|ov|en|on|pl)|(\\bSt|\\b[JSD]r|\\bLt|\\bFt)|(#| )[NEWSR])).{2}|\\b(la|na|sh|dr|of|es|dm|te|pl|aj|gt|e[vc]|\\.R|ov|en|on|pl))\\.|(#|^)[^NEWSR]?\\.)|(((?!\\b(D|O|L)).|#|^)'(?![sl]\\b)|(#|^)'s|(?!\\b(In|Na)t).{3}'l|(#|^).{0,2}'l)|(Dr|St)\\.(#|$)|,|;|\\\\|((?!\\.( |#|$|R))\\..|(?!\\.( .|#.|$|R\\.))\\..{2}|\\.R(#|$|\\.R))|[Ee]x(p|w)y\\b|\\b[Ee]x[dn]\\b|Tunl\\b|Long Is\\b|Brg\\b/", +problemEN:"The street name has incorrect abbreviation, or character",solutionEN:"Check upper/lower case, a space before/after the abbreviation and the accordance with the abbreviation table. Remove any comma (,), backslash (\\), or semicolon (;)"},"29.problem":"Verify if roundabout should be named","29.problemLink":"P:USA/Roundabout#Creation_from_an_intersection","29.solution":"If the roundabout doesn't have a name, which is usually the case, click the None box next to Street. If the roundabout is a named circle on local signs, its segments can be named just like any other road.", +"29.solutionLink":"P:Global/Creating_and_editing_road_segments#Address_Properties","257.params":{"regexp.title":"{string} regular expression to match categories that should be a area",regexp:"/^(GAS_STATION|PARKING_LOT|AIRPORT|BRIDGE|JUNCTION_INTERCHANGE|REST_AREAS|SEAPORT_MARINA_HARBOR|TUNNEL|CEMETERY|COLLEGE_UNIVERSITY|CONVENTIONS_EVENT_CENTER|EMBASSY_CONSULATE|FIRE_DEPARTMENT|HOSPITAL_URGENT_CARE|MILITARY|POLICE_STATION|PRISON_CORRECTIONAL_FACILITY|SCHOOL|SHOPPING_CENTER|CASINO|RACING_TRACK|STADIUM_ARENA|THEME_PARK|ZOO_AQUARIUM|CONSTRUCTION_SITE|BEACH|GOLF_COURSE|PARK|SKI_AREA|FOREST_GROVE|ISLAND|SEA_LAKE_POOL|RIVER_STREAM|CANAL|SWAMP_MARSH|DAM)$/"}, +"258.params":{"regexp.title":"{string} regular expression to match categories that should be a point",regexp:"/^(GARAGE_AUTOMOTIVE_SHOP|CAR_WASH|CHARGING_STATION|BUS_STATION|FERRY_PIER|SUBWAY_STATION|TRAIN_STATION|TAXI_STATION|GOVERNMENT|LIBRARY|CITY_HALL|ORGANIZATION_OR_ASSOCIATION|COURTHOUSE|DOCTOR_CLINIC|OFFICES|POST_OFFICE|RELIGIOUS_CENTER|KINDERGARDEN|FACTORY_INDUSTRIAL|INFORMATION_POINT|EMERGENCY_SHELTER|TRASH_AND_RECYCLING_FACILITIES|ARTS_AND_CRAFTS|BANK_FINANCIAL|SPORTING_GOODS|BOOKSTORE|PHOTOGRAPHY|CAR_DEALERSHIP|FASHION_AND_CLOTHING|CONVENIENCE_STORE|PERSONAL_CARE|DEPARTMENT_STORE|PHARMACY|ELECTRONICS|FLOWERS|FURNITURE_HOME_STORE|GIFTS|GYM_FITNESS|SWIMMING_POOL|HARDWARE_STORE|MARKET|SUPERMARKET_GROCERY|JEWELRY|LAUNDRY_DRY_CLEAN|MUSIC_STORE|PET_STORE_VETERINARIAN_SERVICES|TOY_STORE|TRAVEL_AGENCY|ATM|CURRENCY_EXCHANGE|CAR_RENTAL|TELECOM|RESTAURANT|BAKERY|DESSERT|CAFE|FAST_FOOD|FOOD_COURT|BAR|ICE_CREAM|ART_GALLERY|CLUB|TOURIST_ATTRACTION_HISTORIC_SITE|MOVIE_THEATER|MUSEUM|MUSIC_VENUE|PERFORMING_ARTS_VENUE|GAME_CLUB|THEATER|HOTEL|HOSTEL|COTTAGE_CABIN|BED_AND_BREAKFAST|PLAYGROUND|SPORTS_COURT|PLAZA|PROMENADE|POOL|SCENIC_LOOKOUT_VIEWPOINT)$/"}}, +UK:{".codeISO":"UK",".country":"United Kingdom","1.enabled":!1,"200.enabled":!1},SK:{".codeISO":"SK",".country":"Slovakia","27.enabled":!0,"52.enabled":!0,"73.enabled":!0,"90.enabled":!0,"150.enabled":!0,"150.problemLink":"F:t=64980&p=572847#p572847","150.params":{n:2},"151.enabled":!0,"151.problemLink":"F:t=64980&p=572847#p572847","151.params":{n:2},"152.enabled":!0,"152.problemLink":"F:t=64980&p=572847#p572847","152.params":{n:2},"170.enabled":!0,"170.params":{regexp:"/^(?!(exit) [^a-z])[a-z]/"}}, +SG:{".codeISO":"SG",".country":"Singapore","69.enabled":!0,"73.enabled":!0,"150.enabled":!0,"150.params":{n:2},"151.enabled":!0,"151.params":{n:2},"152.enabled":!0,"152.params":{n:2}},RU:{".codeISO":"RU",".country":"Russia","77.enabled":!1,"190.enabled":!1},PL:{".codeISO":"PL",".country":"Poland",".author":"Zniwek",".updated":"2014-10-01",".lng":"PL","city.consider":"rozważ tę nazwę miasta:","city.1":"nazwa miasta jest za krótka","city.2":"rozwiń skrót","city.3":"uzupełnij skróconą nazwę","city.4":"uzupełnij nazwę miasta", +"city.5":"popraw wielkość liter","city.6":"sprawdź kolejność słów","city.7":"sprawdź skróty","city.8a":"dodaj nazwę państwa","city.8r":"usuń nazwę państwa","city.9":"sprawdź nazwę państwa","city.10a":"dodaj słowo","city.10r":"usuń słowo","city.11":"dodaj kod państwa","city.12":"identyczne nazwy, ale inne ID miasta","city.13a":"dodaj spację","city.13r":"usuń spację","city.14":"sprawdź numer","props.skipped.title":"Segment nie jest sprawdzony","props.skipped.problem":"Segment jest zmodyfikowany po 2014-05-01 I zablokowany dla Ciebie, więc Validator go nie sprawdził", +"err.regexp":"Błąd podczas parsowania opcji dla sprawdzenia #${n}:","props.disabled":"WME Validator jest wyłączony","props.limit.title":"Zgłoszono zbyt wiele problemów","props.limit.problem":"Zgłoszono zbyt wiele problemów, więc niektóre z nich mogą nie być pokazane","props.limit.solution":"Odznacz segment i zatrzymaj skanowanie. Następnie kliknij czerwony '✘', przycisk (Wyczyść raport)","props.reports":"raporty","props.noneditable":"Nie możesz edytować tego segmentu","report.save":"Zapisz ten raport", +"report.list.andUp":"i wyższe","report.list.severity":"Ważność:","report.list.reportOnly":"tylko w raporcie","report.list.forEditors":"Dla edytorów poziomu:","report.list.forCountries":"Dla państw:","report.list.forStates":"Dla stanów:","report.list.forCities":"Dla miast:","report.list.params":"Parametry do skonfigurowania w paczce językowej:","report.list.params.set":"Aktualna konfiguracja dla ${country}:","report.list.enabled":"${n} sprawdzenia włączone dla","report.list.disabled":"${n} sprawdzenia wyłączone dla", +"report.list.total":"There are ${n} sprawdzenia dostępne","report.list.title":"Pełna lista Sprawdzeń dla","report.list.see":"Zobacz","report.list.checks":"Ustawienia->O->Dostępne sprawdzenia","report.list.fallback":"Zasady Cofnięcia Lokalizacji:","report.and":"i","report.segments":"Liczba sprawdzonych segmentów:","report.customs":"Własne zaznaczone sprawdzenia (zielone/niebieskie):","report.reported":"Zaraportowane","report.errors":"błędy","report.warnings":"ostrzeżenia","report.notes":"notki","report.contents":"Zawartość:", +"report.summary":"Podsumowanie","report.title":"WME Validator - Raport","report.share":"by się Podzielić","report.generated.by":"wygenerowane przez","report.generated.on":"na","report.source":"Źródło raportu:","report.filter.duplicate":"duplikowane segmenty","report.filter.streets":"Ulice i Drogi Serwisowe","report.filter.other":"Pozostałe przejezdne/nieprzejezdne","report.filter.noneditable":"segmenty bez możliwości edycji","report.filter.notes":"notki","report.filter.title":"Filtruj:","report.filter.excluded":"są wyłączone z tego raportu.", +"report.search.updated.by":"zaktualizowane przez","report.search.updated.since":"zaktualizowane od","report.search.city":"z","report.search.reported":"zaraportowane jako","report.search.title":"Szukaj:","report.search.only":"tylko segmenty","report.search.included":"są zawarte w tym raporcie.","report.beta.warning":"Ostrzeżenie WME Beta!","report.beta.text":"Ten raport jest wygenerowany w wersji beta WME z permalinkami beta.","report.beta.share":"Proszę, nie dziel się raportem z tymi permalinkami!", +"report.size.warning":"Uwaga!
Ten raport ma ${n} znaków, więc nie zmieści się w jeden post na forum lub wiadomość prywatną.\n
Proszę dodaj więcej filtrów, żeby zmniejszyć długość raportu.","report.note.limit":"* Info: było zbyt wiele zgłoszonych problemów, więc niektóre z nich nie są policzone w podsumowaniu.","report.forum":"Żeby zmotywować mnie do pracy nad skrpytem, zostaw komentarz w","report.thanks":"Dziękuję za używanie WME Validator!","msg.limit.segments":"Zbyt wiele segmentów.\n\nKliknij 'Pokaż raport' żeby go przejrzeć, a potem\n", +"msg.limit.segments.continue":"kliknij '▶' (Start) by kontynuować.","msg.limit.segments.clear":"kliknij '✘' (Wyczyść) by wyczyścić raport.","msg.pan.text":"Przesuwaj mapę, by ją sprawdzić","msg.zoomout.text":"Oddal widok, by uruchomić WME Validator","msg.click.text":"Kliknij '▶' (Start), by sprawdzić widoczny obszar mapy","msg.autopaused":"autopauza","msg.autopaused.text":"Spauzowano automatycznie! Kliknij '▶' (Start) by kontynuować.","msg.autopaused.tip":"WME Validator wstrzymany automatycznie przy przesunięciu mapy lub skalowaniu okna", +"msg.finished.text":"Kliknij 'Pokaż raport' by przejrzeć błędy","msg.finished.tip":"Kliknij przycisk '✉' (Podziel się), żeby umieścić raport na\nforum lub w prywatnej wiadomości","msg.noissues.text":"Ukończono! Nie znaleziono błędów!","msg.noissues.tip":"Spróbuj odznaczyć niektóre opcje filtrowania lub odpal WME Validator na innym obszarze!","msg.scanning.text":"Skanowanie! Koniec za ~ ${n} min","msg.scanning.text.soon":"Skanowanie! Koniec w ciągu minuty!","msg.scanning.tip":"Kliknij przycisk 'Pauza' by wstrzymać lub '■' (Stop) by zatrzymać", +"msg.starting.text":"Start! Warstwy są wyłączone, by skanować szybciej!","msg.starting.tip":"Użyj przycisku 'Pauza' by wstrzymać lub przycisku '■' by zatrzymać","msg.paused.text":"Wstrzymane! Kliknij przycisk '▶' (Start) by kontynuować.","msg.paused.tip":"Żeby zobaczyć raport, kliknij przycisk 'Pokaż raport' (jeżeli dostępne)","msg.continuing.text":"Kontynuowanie!","msg.continuing.tip":"WME Validator zacznie ponownie z miejsca, gdzie włączono pauzę","msg.settings.text":"Kliknij 'Wstecz', by powrócić do głównego widoku", +"msg.settings.tip":"Kliknij przycisk 'Resetuj domyślne' aby zresetować wszystkie ustawienia za jednym zamachem!","msg.reset.text":"Wszystkie opcje filtrowania i ustawienia zostały zresetowane do domyślnych","msg.reset.tip":"Kliknij przycisk 'Wstecz', by powrócić do głównego widoku","msg.textarea.pack":"To jest skrypt Greasemonkey/Tampermonkey. Tekst poniżej możesz skopiować i wkleić do nowego pliku .user.js
lub wkleić bezpośrednio do Greasemonkey/Tampermonkey","msg.textarea":"Skopiuj proszę tekst poniżej, a następnie wklej do posta lub wiadomości prywatnej", +"noaccess.text":"Sorki,
Nie możesz tutaj użyć WME Validatora.
Sprawdź proszę wątek na forum
po więcej informacji.","noaccess.tip":"Sprawdź proszę wątek na forum po więcej informacji!","tab.switch.tip.on":"Kliknij by włączyć podświetlanie (Alt+V)","tab.switch.tip.off":"Kliknij by wyłączyć podświetlanie (Alt+V)","tab.filter.text":"filtruj","tab.filter.tip":"Opcje filtrowania raportu i podświetlonych segmentów", +"tab.search.text":"szukaj","tab.search.tip":"Zaawansowane opcje filtrowania, żeby załączyć tylko specyficzne segmenty","tab.help.text":"pomoc","tab.help.tip":"Potrzebujesz pomocy?","filter.noneditables.text":"Wyklucz nieedytowalne segmenty","filter.noneditables.tip":"Nie raportuj zablokowanych segmentów lub\nsegmentów poza Twoim obszarem edycji","filter.duplicates.text":"Wyklucz duplikowane segmenty","filter.duplicates.tip":"Nie pokazuj tego samego segmentu w różnych\nczęściach raportu\n* Info: ta opcja NIE WPŁYWA na podświetlanie", +"filter.streets.text":"Wyklucz Ulice i Drogi Serwisowe","filter.streets.tip":"Nie raportuj Ulic i Dróg Serwisowych","filter.other.text":"Wyklucz Pozostałe przejezdne i nieprzejezdne","filter.other.tip":"Nie raportuj Gruntowych, Wewnętrznych, Prywatnych Dróg\ni nieprzejezdnych segmentów","filter.notes.text":"Wyklucz notki","filter.notes.tip":"Raportuj tylko ostrzeżenia i błędy","search.youredits.text":"Załącz tylko Twoje edycje","search.youredits.tip":"Załącz tylko segmenty edytowane przez Ciebie", +"search.updatedby.text":"Zaktualizowane przez*:","search.updatedby.tip":"Załącz tylko segmenty edytowane przez ustalonego edytora\n* Info: ta opcja jest dostępna tylko dla CM\nTo pole wspiera:\n - lists: me, otherEditor\n - wildcards: world*\n - negation: !me, *\n* Info: możesz użyć 'me' dla siebie samego","search.updatedby.example":"Przykład: me","search.updatedsince.text":"Zaktualizowane od:","search.updatedsince.tip":"Załącz tylko segmenty edytowane od ustalonej daty\nformat daty Firefox: RRRR-MM-DD", +"search.updatedsince.example":"RRRR-MM-DD","search.city.text":"Nazwa miasta:","search.city.tip":"Załącz tylko segmenty z ustaloną nazwą miasta\nTo pole wspiera:\n - lists: Paris, Meudon\n - wildcards: Greater * Area\n - negation: !Paris, *","search.city.example":"Przykład: !Paris, *","search.checks.text":"Zaraportowane jako:","search.checks.tip":"Załącz tylko segmenty zgłoszone jako ustalone\nTo pole zawiera:\n - severities: errors\n - check names: New road\n - check IDs: 200\nTo pole wspiera:\n - lists: 36, 37\n - wildcards: *roundabout*\n - negation: !unconfirmed*, *", +"search.checks.example":"Przykład: reverse*","help.text":'Tematy Pomocy:
F.A.Q.
Zadaj swoje pytanie na forum
Jak dopasować Validator pod swoje państwo
Więcej o "Prawdopodobnie błędna nazwa miasta"', +"help.tip":"Otwórz w nowej karcie przeglądarki","button.scan.tip":"Zacznij skanowanie aktualnego obszaru\n* Info: to może zająć kilka minut","button.scan.tip.NA":"Oddal widok by zacząć skanować aktualny obszar","button.pause.tip":"Wstrzymaj skanowanie","button.continue.tip":"Kontynuuj skanowanie obszaru mapy","button.stop.tip":"Zatrzymaj skanowanie i powróć do pozycji startowej","button.clear.tip":"Wyczyść raport i cache segmentu","button.clear.tip.red":"Zbyt wiele zgłoszonych segmentów:\n 1. Kliknij 'Pokaż raport' by go wygenerować.\n 2. Kliknij ten przycisk by wyczyścić raport i zacząć od nowa.", +"button.report.text":"Pokaż raport","button.report.tip":"Zatwierdź filtr i wygeneruj raport HTML w nowej karcie","button.BBreport.tip":"Podziel się raportem na forum Waze lub w prywatnej wiadomości","button.settings.tip":"Konfiguruj ustawienia","tab.custom.text":"własne","tab.custom.tip":"Ustawienia sprawdzeń zdefiniowanych przez użytkownika","tab.settings.text":"Ustawienia","tab.scanner.text":"skaner","tab.scanner.tip":"Ustawienia skanera mapy","tab.about.text":"o","tab.about.tip":"Info o WME Validator", +"scanner.sounds.text":"Włącz dźwięki","scanner.sounds.tip":"Pikanie podczas skanowania","scanner.sounds.NA":"Twoja przeglądarka nie wspiera AudioContext","scanner.highlight.text":"Podświetl błędy na mapie","scanner.highlight.tip":"Podświetl zaraportowane błędy na mapie","scanner.slow.text":'Włącz sprawdzenia "slow"',"scanner.slow.tip":"Włącza głęboką analizę mapy\n* Info: ta opcja może spowolnić proces skanowania","scanner.ext.text":"Raportuj zewnętrzne podświetlenia","scanner.ext.tip":"Raportuj segmenty podświetlone przez WME Toolbox lub WME Color Highlights", +"custom.template.text":"Własny szablon","custom.template.tip":"Rozszerzalny szablon zdefiniowanych sprawdzeń użytkownika.\n\nMożesz użyć następujących zmiennych:\nAdres:\n ${country}, ${state}, ${city}, ${street},\n ${altCity[index or delimeter]}, ${altStreet[index or delimeter]}\nWłasności segmentu:\n ${type}, ${typeRank}, ${toll}, ${direction}, ${elevation}, ${lock},\n ${length}, ${ID}\nPomocniki:\n ${drivable}, ${roundabout}, ${hasHNs},\n ${Uturn}, ${deadEnd}, ${softTurns},\n ${deadEndA}, ${partialA},\n ${deadEndB}, ${partialB}\nŁączność:\n ${segmentsA}, ${inA}, ${outA}, ${UturnA},\n ${segmentsB}, ${inB}, ${outB}, ${UturnB}", +"custom.template.example":"Przykład ${street}","custom.regexp.text":"Własne RegExp","custom.regexp.tip":"Wyrażenie regularne zdefiniowane przez użytkownika, by pasowało do szablonu.\n\nNiewrażliwe na wielkość liter: /regexp/i\nNegacja (nie pasujące): !/regexp/\nZapisz informacje debugowania w konsoli: D/regexp/","custom.regexp.example":"Przykład: !/.+/","about.tip":"Otwórz link w nowej karcie","button.reset.text":"Resetuj domyślne", +"button.reset.tip":"Przywróć opcje filtrowania i ustawienia na domyślne","button.list.text":"Dostępne sprawdzenia...","button.list.tip":"Wyświetl listę sprawdzeń dostępnych w WME Validatorze","button.wizard.tip":"Stwórz paczkę językową","button.back.text":"Powrót","button.back.tip":"Zamknij ustawienia i wróć do głównego widoku","1.title":"WME Toolbox: Rondo może powodować problemy","1.problem":"ID węzłów ronda nie są w kolejności","1.solution":"Stwórz rondo na nowo","2.title":"WME Toolbox: Pojedynczy segment", +"2.problem":"Segment ma niepotrzebne węzły","2.solution":'Uprość geometrię segmentu przez najechanie myszką i naciśnięcie przycisku "d"',"3.title":"WME Toolbox: Blokada na 2 poziom","3.problem":"Segment jest podświetlony przez WME Toolbox. To nie jest problem","4.title":"WME Toolbox: Blokada na 3 poziom","4.problem":"Segment jest podświetlony przez WME Toolbox. To nie jest problem","5.title":"WME Toolbox: Blokada na 4 poziom","5.problem":"Segment jest podświetlony przez WME Toolbox. To nie jest problem", +"6.title":"WME Toolbox: Blokada na 5 poziom","6.problem":"Segment jest podświetlony przez WME Toolbox. To nie jest problem","7.title":"WME Toolbox: Blokada na 6 poziom","7.problem":"Segment jest podświetlony przez WME Toolbox. To nie jest problem","8.title":"WME Toolbox: Numery domów","8.problem":"Segment jest podświetlony przez WME Toolbox. To nie jest problem","9.title":"WME Toolbox: Segment z ograniczeniami czasowymi","9.problem":"Segment jest podświetlony przez WME Toolbox. To nie jest problem", +"13.title":"WME Color Highlights: Blokada edytora","13.problem":"Segment jest podświetlony przez WME Color Highlights. To nie jest problem","14.title":"WME Color Highlights: Płatna / Jednokierunkowa","14.problem":"Segment jest podświetlony przez WME Color Highlights. To nie jest problem","15.title":"WME Color Highlights: Ostatnio edytowane","15.problem":"Segment jest podświetlony przez WME Color Highlights. To nie jest problem","16.title":"WME Color Highlights: Ranga drogi","16.problem":"Segment jest podświetlony przez WME Color Highlights. To nie jest problem", +"17.title":"WME Color Highlights: Brak miasta","17.problem":"Segment jest podświetlony przez WME Color Highlights. To nie jest problem","18.title":"WME Color Highlights: Ograniczenie czasowe / Podświetlony typ drogi","18.problem":"Segment jest podświetlony przez WME Color Highlights. To nie jest problem","19.title":"WME Color Highlights: Brak nazwy","19.problem":"Segment jest podświetlony przez WME Color Highlights. To nie jest problem","20.title":"WME Color Highlights: Filtruj po mieście","20.problem":"Segment jest podświetlony przez WME Color Highlights. To nie jest problem", +"21.title":"WME Color Highlights: Filtruj po mieście (alt. miasto)","21.problem":"Segment jest podświetlony przez WME Color Highlights. To nie jest problem","22.title":"WME Color Highlights: Filtruj po edytorzer","22.problem":"Segment jest podświetlony przez WME Color Highlights. To nie jest problem","23.solutionLink":"W:Drogi","23.title":"Niepotwierdzona droga","23.problem":"Każdy segment musi mieć przynajmniej Państwo i Stan","23.solution":"Potwierdź drogę, aktualizując jej szczegóły","24.title":"Prawdopodobnie błędna nazwa miasta (tylko w raporcie)", +"24.problem":"Segment może zawierać błędną nazwę miasta","24.solution":"Rozważ zaproponowaną nazwę i użyj tego formularza do zmiany nazwy miasta","25.title":"Nieznana kierunkowość przejezdnej drogi","25.problem":"'Nieznana' kierunkowość drogi, nie zapobiegnie wyznaczaniu tędy trasy","25.solution":"Ustaw kierunkowość drogi","27.enabled":!0,"27.problemLink":"W:Drogi#Tory.2C_szyny","27.title":"Nazwa miasta na Torach","27.problem":"Nazwa miasta na Torach, szynach","27.solution":"Zaznacz pole 'brak' przy nazwie miasta", +"28.problemLink":"W:Drogi#Wjazd.2Fzjazd_bezkolizyjny","28.title":"Nazwa ulicy na dwukierunkowym zjeździe","28.problem":"Jeśli zjazd jest nienazwany, wyświetli się nazwa docelowej drogi","28.solution":"Zmień nazwę ulicy na 'brak'","29.problemLink":"W:Drogi#Rondo","29.title":"Nazwa ulicy na rondzie","29.problem":"W Waze nie nazywamy segmentów ronda","29.solution":"Zmień nazwę ulicy na 'brak', a następnie dodaj punkt orientacyjny 'Węzeł drogowy', żeby nazwać rondo","34.title":"Pusta nazwa alternatywna", +"34.problem":"Alternatywna nazwa ulicy jest pusta","34.solution":"Usuń pustą nazwę alternatywną ulicy","35.title":"Niezakończona droga","35.problem":"Waze nie poprowadzi z niezakończonego segmentu","35.solution":"Przesuń trochę segment, żeby pojawił się kończący węzeł","36.title":"Węzeł A: Niepotrzebny (slow)","36.problem":"Segmenty spotykające się w węźle A są identyczne","36.solution":"Wybierz węzeł A i naciśnij przycisk Delete, by połączyć segmenty","37.title":"Węzeł B: Niepotrzebny (slow)","37.problem":"Segmenty spotykające się w węźle B są identyczne", +"37.solution":"Wybierz węzeł B i naciśnij przycisk Delete, by połączyć segmenty","38.title":"Upłynął czas ograniczenia segmentu (slow)","38.problem":"Segment zawiera wygasłe ograniczenie","38.solution":"Kliknij 'Edytuj ograniczenia' i usuń wygasłe ograniczenie","39.title":"Wygasłe ograniczenie skrętu (slow)","39.problem":"Segment ma skręt z wygasłym ograniczeniem","39.solution":"Kliknij ikonę zegara obok żółtej strzałki i usuń wygasłe ograniczenie","41.title":"Węzeł A: Odwrócona łączność przejezdnej drogi", +"41.problem":"Jeden ze skrętów prowadzi naprzeciw kierunkowi segmentu, w węźle A","41.solution":"Ustaw segment 'Dwukierunkowy', zablokuj wszystkie skręty w węźle A i ponownie ustaw 'Jednokierunkowa (A→B)'","42.title":"Węzeł B: Odwrócona łączność przejezdnej drogi","42.problem":"Jeden ze skrętów prowadzi naprzeciw kierunkowi segmentu, w węźle B","42.solution":"Ustaw segment 'Dwukierunkowy', zablokuj wszystkie skręty w węźle A i ponownie ustaw 'Jednokierunkowa (B→A)'","43.title":"Połączenie ze sobą", +"43.problem":"Segment łączy się sam ze sobą","43.solution":"Podziel segment na TRZY części","46.title":"SLOW: Brak wjazdu na węźle A","46.problem":"Przejezdny segment nie ma wjazdu na węźle A","46.solution":"Rozważ możliwość wjazdu na węźle A","47.title":"SLOW: Brak wjazdu na węźle B","47.problem":"Przejezdny segment nie ma wjazdu na węźle A","47.solution":"Rozważ możliwość wjazdu na węźle A","48.solutionLink":"W:Ronda#Poprawianie_rond_naniesionych_r.C4.99cznie","48.title":"Dwukierunkowy segment ronda", +"48.problem":"Segment ronda jest dwukierunkowy","48.solution":"Stwórz rondo od nowa","50.solutionLink":"W:Ronda#Poprawianie_rond_naniesionych_r.C4.99cznie","52.enabled":!0,"52.solutionLink":"W:Tabela_skrótów","52.title":"Za długa nazwa ulicy","52.problem":"Nazwa przejezdnego segmentu jest dłuższa niż ${n} liter i nie jest Rampą","52.solution":"Consider an abbreviation for the street name according to this table","52.params":{n:35},"57.enabled":!0,"57.problemLink":"W:Drogi#Wjazd.2Fzjazd_bezkolizyjny", +"57.title":"Nazwa miasta na nazwanym zjeździe","57.problem":"Nazwa miasta na nazwanym zjeździe może wpłynąć na wyniki wyszukiwania","57.solution":"Zmień nazwę miasta na 'brak'","59.enabled":!0,"59.problemLink":"W:Drogi#Autostrada_.2F_Droga_ekspresowa","59.title":"Nazwa miasta na Autostradzie","59.problem":"Nazwa miasta na Autostradzie, może spowodować że obszar miasta się rozciągnie","59.solution":"W danych adresowych ustaw 'Brak' obok nazwy miasta i kliknij 'Zatwierdź'","73.enabled":!0,"73.title":"Za krótka nazwa ulicy", +"73.problem":"Nazwa ulicy jest krótsza niż ${n} liter i nie jest autostradą","73.solution":"Popraw nazwę ulicy","74.solutionLink":"W:Ronda#Poprawianie_rond_naniesionych_r.C4.99cznie","78.title":"SLOW: Takie same punkty końcowe segmentów","78.problem":"Dwa przejezdne segmenty mają takie same punkty końcowe","78.solution":"Podziel segment. Możesz także usunąć segment, jeśli są identyczne","79.problemLink":"W:Skrzyżowania#Najlepsze_praktyki_dla_r.C3.B3.C5.BCnych_typ.C3.B3w_skrzy.C5.BCowa.C5.84","87.problemLink":"W:Drogi#Rondo", +"87.solutionLink":"W:Ronda#Poprawianie_rond_naniesionych_r.C4.99cznie","87.title":"Więcej niż jeden segment wychodzący z węzła A na rondzie","87.problem":"Węzeł A na rondzie ma podłączony więcej niż jeden segment wychodzący","87.solution":"Utwórz rondo ponownie","99.title":"Nawrót na wjeździe na rondo (slow)","99.problem":"Segment wjazdu na rondo ma włączoną możliwość zawracania","99.solution":"Wyłącz nawrót","101.params":{regexp:"/(^|\\b)remont(\\b|$)/i"},"101.title":"Droga zamknięta (dostępne tylko w raporcie)", +"101.problem":"Segment jest oznaczony jako zamknięty","101.solution":"Gdy remont się skończy, przywróć połączenia segmentu i usuń przyrostek","102.title":"SLOW: Brak wyjazdu na węźle A","102.problem":"Przejezdny segment nie ma wyjazdu na węźle A","102.solution":"Rozważ możliwość wyjazdu na węźle A","103.title":"SLOW: Brak wyjazdu na węźle B","103.problem":"Przejezdny segment nie ma wyjazdu na węźle B","103.solution":"Rozważ możliwość wyjazdu na węźle B","104.title":"Tory użyte dla komentarzy","104.problem":"Tory są prawdopodobnie użyte do komentarzy na mapie", +"104.solution":"Usuń komentarze, ponieważ Tory będą wyświetlane w aplikacji","105.enabled":!0,"105.title":"Ścieżka zamiast Torów","105.problem":"Ścieżka o wysokości -5 jest zapewne użyta zamiast Torów","105.solution":"Zmień typ drogi na Tory, by wyświetliły się w aplikacji","107.title":"SLOW: Brak połączenia w węźle A","107.problem":"Węzeł A segmentu jest w odległości od innego, również przejezdnego segmentu, ale nie są połączone skrzyżowaniem","107.solution":"Przeciągnij węzeł A na najbliższy segment, by się dotykały, lub odsuń go dalej", +"108.title":"SLOW: Brak połączenia w węźle B","108.problem":"Węzeł B segmentu jest w odległości od innego, również przejezdnego segmentu, ale nie są połączone skrzyżowaniem","108.solution":"Przeciągnij węzeł B na najbliższy segment, by się dotykały, lub odsuń go dalej","109.title":"Za krótki segment","109.problem":"Przejezdny, niekońcowy segment jest krótszy niż ${n}m, więc ciężko zobaczyć go na mapie i może powodować problemy z routingiem","109.solution":"Zwiększ długość, usuń segment lub połącz go z jednym z przyległych segmentów", +"112.title":"Za długa nazwa Rampy","112.problem":"Nazwa Rampy jest dłuższa niż ${n} liter","112.solution":"Skróć nazwę Rampy","114.title":"Węzeł A: Nieprzejezdna połączona z przejezdną (slow)","114.problem":"Nieprzejezdny segment tworzy skrzyżowanie z przejezdnym na węźle A","114.solution":"Odłącz węzeł A od wszystkich przejezdnych segmentów","115.title":"Węzeł B: Nieprzejezdna połączona z przejezdną (slow)","115.problem":"Nieprzejezdny segment tworzy skrzyżowanie z przejezdnym na węźle B","115.solution":"Odłącz węzeł B od wszystkich przejezdnych segmentów", +"116.title":"Poza skalą poziomu/wysokości","116.problem":"Poziom/wysokość segmentu są poza skalą","116.solution":"Popraw poziom/wysokość","117.title":"Przestarzały znacznik CONST ZN","117.problem":"Segmeny jest oznaczony przestarzałym przyrostkiem CONST ZN","117.solution":"Zmień CONST ZN na (zamknięte)","118.title":"Węzeł A: Nakładające się segmenty (slow)","118.problem":"Segment pokrywa się z sąsiadującym, w węźle A","118.solution":"Rozszerz segmenty do 2°, usuń niepotrzebny punkt geometrii lub cały podwójny segment w węźle A", +"119.title":"Węzeł B: Nakładające się segmenty (slow)","119.problem":"Segment pokrywa się z sąsiadującym, w węźle B","119.solution":"Rozszerz segmenty do 2°, usuń niepotrzebny punkt geometrii lub cały podwójny segment w węźle B","120.title":"Węzeł A: Za ostry skręt (slow)","120.problem":"Przejezdny segment ma bardzo ostry skręt na węźle A","120.solution":"Wyłącz ostry skręt na węźle A lub rozszerz segmenty do 30°","121.title":"Węzeł B: Za ostry skręt (slow)","121.problem":"Przejezdny segment ma bardzo ostry skręt na węźle B", +"121.solution":"Wyłącz ostry skręt na węźle B lub rozszerz segmenty do 30°","128.title":"Własne sprawdzenie (zielone)","128.problem":"Niektóre właściwości segmentu są przeciwko ustawionemu przez użytkownika wyrażeniu regularnemu (Ustawienia→Własne)","128.solution":"Rozwiąż ten problem","129.title":"Własne sprawdzenie (niebieskie)","129.problem":"Niektóre właściwości segmentu są przeciwko ustawionemu przez użytkownika wyrażeniu regularnemu (Ustawienia→Własne)","129.solution":"Rozwiąż ten problem", +"161.enabled":!0,"161.params":{titleEN:"DKnum in street name",problemEN:"The street name contains DKnum",solutionEN:"Remove the DK prefix from the street name",regexp:"/DK\\-?[0-9]+/i"},"161.problemLink":"W:Drogi#Droga_krajowa","161.title":"Numer DK w nazwie ulicy","161.problem":"Nazwa ulicy zawiera numer DK","161.solution":"Usuń przedrostek z nazwy ulicy","162.enabled":!0,"162.params":{titleEN:"DWnum in street name",problemEN:"The street name contains DWnum",solutionEN:"Remove the DW prefix from the street name", +regexp:"/DW\\-?[0-9]+/i"},"162.problemLink":"W:Drogi#Droga_wojew.C3.B3dzka","162.title":"Numer DW w nazwie ulicy","162.problem":"Nazwa ulicy zawiera numer DW","162.solution":"Usuń przedrostek z nazwy ulicy","163.enabled":!0,"163.params":{titleEN:"'Węzel' in Ramp name",problemEN:"The Ramp name contains word 'węzel'",solutionEN:"Rename the Ramp in accordance with the guidelines",regexp:"/węze[lł]/i"},"163.solutionLink":"W:Drogi#Wjazd.2Fzjazd_bezkolizyjny","163.title":"'Węzel' w nazwie zjazdu","163.problem":"Zjazd zawiera w nazwie słowo 'węzel'", +"163.solution":"Zmień nazwę zjazdu zgodnie z wytycznymi","167.enabled":!0,"167.params":{titleEN:"Incorrect Railroad name",problemEN:"The Railroad name is not 'PKP', 'SKM' or 'MPK'",solutionEN:"In the address properties set the street name to 'PKP', 'SKM' or 'MPK', check the 'None' box next to the city name and then click 'Apply'",regexp:"!/^(PKP|MPK|SKM|Tramwaje Śląskie)$/"},"167.solutionLink":"W:Drogi#Tory.2C_szyny","167.title":"Nieprawidłowa nazwa Torów","167.problem":"Segment Torów ma nieprawidłową nazwę", +"167.solution":"Zmień nazwę segmentu zgodnie z wytycznymi","169.enabled":!0,"169.params":{titleEN:"'Rondo' or 'ulica' in street name",problemEN:"The street name contains word 'rondo' or 'ulica'",solutionEN:"In the address properties check the 'None' box next to the street name, click 'Apply' and then add 'Junction' landmark to name the roundabout or remove word 'ulica'",regexp:"/rondo |ulica/i"},"169.solutionLink":"W:Drogi#Rondo","169.title":"'Rondo' lub 'ulica' w nazwie ulicy","169.problem":"Nazwa ulicy zawiera słowo 'rondo' lub 'ulica'", +"169.solution":"Zmień nazwę ulicy na 'Brak', a następnie dodaj punkt orientacyjny 'Węzeł drogowy', żeby nazwać rondo lub usuń słowo 'ulica' z nazwy ulicy","171.enabled":!0,"171.params":{regexp:"/(^| )(?!(adm|abp|al|bp|bł|błj|dr|gen|bryg|pil|dyw|hetm|hr|im|inf|inż|kan|kard|ks|kmdr|kadm|kpt|mjr|marsz|o|os|pil|pl|plut|ppor|ppłk|prał|prym|por|pn|pd|prof|płk|r|rtm|św|śwj|śś|wsch|zach)\\. |r\\.)[^ ]+\\./"},"171.solutionLink":"W:Tabela_skrótów","171.title":"Nieprawidłowy skrót w nazwie ulicy","171.problem":"Nazwa ulicy zawiera nieprawidłowy skrót", +"171.solution":"Sprawdź wielkie/małe litery, przerwę przed/po skrócie i zgodność z tą tabelą","172.title":"Niepotrzebne spacje w nazwie ulicy","172.problem":"Spacja na początku, końcu lub podwójna w nazwie ulicy","172.solution":"Usuń niepotrzebne spacje z nazwy ulicy","173.title":"Nazwa ulicy bez spacji przed lub po skrócie","173.problem":"Brak spacji przed ('1943r.') lub po ('st.Jan') skrócie w nazwie ulicy","173.solution":"Dodaj spację przed/po skrócie","175.title":"Nazwa ulicy złożona z samych spacji", +"175.problem":"Nazwa ulicy zawiera tylko spacje","175.solution":"Zmień nazwę ulicy na 'Brak' lub nazwij odpowiednio ulicę","190.title":"Nazwa miasta małą literą","190.problem":"Nazwa miasta zaczyna się od małej litery","190.solution":"Użyj tego formularza, by zmienić nazwę miasta","192.title":"Niepotrzebne spacje w nazwie miasta","192.problem":"Spacja na początku, końcu lub podwójna w nazwie miasta","192.solution":"Użyj tego formularza, by zmienić nazwę miasta","193.title":"Brak spacji przed/po skrócie miasta", +"193.problem":"Brak spacji przed ('1943r.') lub po ('st.Jan') skrócie w nazwie miasta","193.solution":"Użyj tej formy, by zmienić nazwę miasta","200.problemLink":"W:Skrzyżowania#Ograniczenia_skr.C4.99t.C3.B3w","200.title":"Węzeł A: Wstępnie dopuszczony lub zakazany skręt na przejezdnej drodze","200.problem":"Segment ma niepotwierdzony skręt na węźle A","200.solution":"Kliknij na strzałkę z purpurowym znakiem zapytania, by potwierdzić skręt. Zauważ: być może będziesz musiał zmienić segment na dwukierunkowy by dostrzec te", +"201.title":"Węzeł A: Niepotwierdzony skręt na głównej drodze","201.problem":"Segment drogi głównej ma niepotwierdzony skręt na węźle A","201.solution":"Kliknij skręt z fioletowym znakiem zapytania by go zatwierdzić. Info: możliwe, że będziesz musiał ustawić 'Dwukierunkowy' żeby zobaczyć te skręty"},NZ:{".codeISO":"NZ",".country":"New Zealand"},NL:{".codeISO":"NL",".country":"Netherlands",".author":"davidakachaos",".updated":"2018-08-01",".fallbackCode":"BE",".lng":"NL","city.consider.en":"consider this city name:", +"city.consider":"overweeg deze plaatsnaam:","city.1.en":"city name is too short","city.1":"plaatsnaam te kort","city.2.en":"expand the abbreviation","city.2":"De afkorting uitbreiden","city.3.en":"complete short name","city.3":"maak de korte naam compleet","city.4.en":"complete city name","city.4":"plaatsnaam aanvullen","city.5.en":"correct letter case","city.5":"juist hoofdlettergebruik","city.6.en":"check word order","city.6":"controleer woord volgorde","city.7.en":"check abbreviations","city.7":"controleer afkortingen", +"city.8a.en":"add county name","city.8a":"land naam toevoegen","city.8r.en":"remove county name","city.8r":"land naam verwijderen","city.9.en":"check county name","city.9":"controleer land naam","city.10a.en":"add a word","city.10a":"woord toevoegen","city.10r.en":"remove a word","city.10r":"woord verwijderen","city.11.en":"add county code","city.11":"landcode toevoegen","city.12.en":"identical names, but different city IDs","city.12":"identieke namen, maar verschillende plaats IDs","city.13a.en":"add a space", +"city.13a":"spatie invoegen","city.13r.en":"remove a space","city.13r":"spatie verwijderen","city.14.en":"check the number","city.14":"controleer het nummer","props.skipped.title.en":"The segment is not checked","props.skipped.title":"Dit segment is niet gecontroleerd","props.skipped.problem.en":"The segment is modified after 2014-05-01 AND locked for you, so Validator did not check it","props.skipped.problem":"Dit segment is na 2014-05-01 aangepast EN voor jou gelockt, Validator heeft dit niet gecontroleerd", +"err.regexp.en":"Error parsing option for check #${n}:","err.regexp":"Fout bij het verwerken van de opties voor de controle #${n}:","props.disabled.en":"WME Validator is disabled","props.disabled":"WME Validator is uitgeschakeld","props.limit.title.en":"Too many issues reported","props.limit.title":"Te veel problemen gevonden","props.limit.problem.en":"There are too many issues reported, so some of them might not be shown","props.limit.problem":"Er zijn te veel problemen gemeld, daarom wordt een aantal van hen niet getoond", +"props.limit.solution.en":"Deselect the segment and stop scanning process. Then click red '✘' (Clear report) button","props.limit.solution":"Deselecteer het segment en stop het scanproces. Klik dan op de rode '✘' (Clear report) knop","props.reports.en":"reports","props.reports":"meldingen","props.noneditable.en":"You cannot edit this segment","props.noneditable":"Je kunt dit segment niet bewerken","report.save.en":"Save this report","report.save":"Sla dit rapport op","report.list.andUp.en":"and up", +"report.list.andUp":"en meer","report.list.severity.en":"Severity:","report.list.severity":"Hevigheid:","report.list.reportOnly.en":"only in report","report.list.reportOnly":"alleen in rapportage","report.list.forEditors.en":"For editors level:","report.list.forEditors":"Voor bewerkers niveau:","report.list.forCountries.en":"For countries:","report.list.forCountries":"Voor landen:","report.list.forStates.en":"For states:","report.list.forStates":"Voor provincies:","report.list.forCities.en":"For cities:", +"report.list.forCities":"Voor steden:","report.list.params.en":"Params to configure in localization pack:","report.list.params":"Parameters om te configureren in lokalisatie:","report.list.params.set.en":"Current configuration for ${country}:","report.list.params.set":"Huidige configuratie voor ${country}:","report.list.enabled.en":"${n} checks are enabled for","report.list.enabled":"${n} controles zijn actief voor","report.list.disabled.en":"${n} checks are disabled for","report.list.disabled":"${n} controles zijn uitgeschakeld voor", +"report.list.total.en":"There are ${n} checks available","report.list.total":"Er zijn ${n} controles beschikbaar","report.list.title.en":"Complete List of Checks for","report.list.title":"Complete lijst met controles voor","report.list.see.en":"See","report.list.see":"Zie","report.list.checks.en":"Settings->About->Available checks","report.list.checks":"Instellingen->Over->Beschikbare controles","report.list.fallback.en":"Localization Fallback Rules:","report.list.fallback":"Lokalisatie terugval regels:", +"report.and.en":"and","report.and":"en","report.segments.en":"Total number of segments checked:","report.segments":"Totaal aantal gecontroleerde segmenten:","report.customs.en":"Custom checks matched (green/blue):","report.customs":"Er is een match aangepaste controles (groen/blauw):","report.reported.en":"Reported","report.reported":"Gerapporteerd","report.errors.en":"errors","report.errors":"fouten","report.warnings.en":"warnings","report.warnings":"waarschuwingen","report.notes.en":"notes","report.notes":"notities", +"report.link.wiki.en":"wiki","report.link.wiki":"wiki","report.link.forum.en":"forum","report.link.forum":"forum","report.link.other.en":"link","report.link.other":"link","report.contents.en":"Contents:","report.contents":"Inhoud:","report.summary.en":"Summary","report.summary":"Samenvatting","report.title.en":"WME Validator Report","report.title":"WME Validator Rapport","report.share.en":"to Share","report.share":"om te delen","report.generated.by.en":"generated by","report.generated.by":"gegenereerd door", +"report.generated.on.en":"on","report.generated.on":"op","report.source.en":"Report source:","report.source":"Rapportbron:","report.filter.duplicate.en":"duplicate segments","report.filter.duplicate":"dubbele segmenten","report.filter.streets.en":"Streets and Service Roads","report.filter.streets":"Straten en dienstwegen","report.filter.other.en":"Other drivable and Non-drivable","report.filter.other":"Andere berijdbare en niet berijdbare","report.filter.noneditable.en":"non-editable segments","report.filter.noneditable":"niet-bewerkbare segmenten", +"report.filter.notes.en":"notes","report.filter.notes":"notities","report.filter.title.en":"Filter:","report.filter.title":"Filter:","report.filter.excluded.en":"are excluded from this report.","report.filter.excluded":"zijn uitgezonderd van dit rapport.","report.search.updated.by.en":"updated by","report.search.updated.by":"bijgewerkt door","report.search.updated.since.en":"updated since","report.search.updated.since":"bijgewerkt sinds","report.search.city.en":"from","report.search.city":"van","report.search.reported.en":"reported as", +"report.search.reported":"gemeld","report.search.title.en":"Search:","report.search.title":"Zoeken:","report.search.only.en":"only segments","report.search.only":"alleen segmenten","report.search.included.en":"are included into the report.","report.search.included":"zijn opgenomen in het rapport.","report.beta.warning.en":"WME Beta Warning!","report.beta.warning":"WME Beta Waarschuwing!","report.beta.text.en":"This report is generated in beta WME with beta permalinks.","report.beta.text":"Dit rapport is gegenereerd in beta WME met bèta permalinks.", +"report.beta.share.en":"Please do not share those permalinks!","report.beta.share":"Gelieve deze permalinks niet te delen!","report.size.warning.en":"Warning!
The report is ${n} characters long so it will not fit into a single forum or private message.\n
Please add more filters to reduce the size of the report.","report.size.warning":"Waarschuwing!
Het rapport is ${n} tekens lang dus het zal niet passen in één forum of privé bericht.\n
Voeg aub meer filters toe om de grootte van het rapport te beperken.", +"report.note.limit.en":"* Note: there were too many issues reported, so some of them are not counted in the summary.","report.note.limit":"* Let op: er waren te veel problemen gemeld, zodat een aantal van hen worden niet meegeteld in de samenvatting.","report.forum.en":"To motivate further development please leave your comment on the","report.forum":"Om verdere ontwikkeling te motiveren laat dan je commentaar achter op de","report.forum.link.en":"Waze forum thread.","report.forum.link":"Waze forum thread.", +"report.thanks.en":"Thank you for using WME Validator!","report.thanks":"Dank u voor het gebruik van de WME Validator!","msg.limit.segments.en":"There are too many segments.\n\nClick 'Show report' to review the report, then\n","msg.limit.segments":"Er zijn te veel segmenten.\n\nKlik op 'Toon rapport' om het rapport door te nemen, vervolgens\n","msg.limit.segments.continue.en":"click '▶' (Play) to continue.","msg.limit.segments.continue":"klik '▶' (Play) om verder te gaan.","msg.limit.segments.clear.en":"click '✘' (Clear) to clear the report.", +"msg.limit.segments.clear":"klik '✘' (Löschen) om het rapport te verwijderen.","msg.pan.text.en":"Pan around to validate the map","msg.pan.text":"Schuif de kaart rond om de kaart te valideren","msg.zoomout.text.en":"Zoom out to start WME Validator","msg.zoomout.text":"Uitzoomen om WME Validator te beginnen","msg.click.text.en":"Click '▶' (Play) to validate visible map area","msg.click.text":"Klik '▶' (Play), om het zichtbare gebied op de kaart te valideren","msg.autopaused.en":"autopaused","msg.autopaused":"automatisch gepauzeerd", +"msg.autopaused.text.en":"Auto paused! Click '▶' (Play) to continue.","msg.autopaused.text":"Automatisch gepauzeerd! Om door te gaan klik op '▶' (Play).","msg.autopaused.tip.en":"WME Validator automatically paused on map drag or window size change","msg.autopaused.tip":"WME Validator is automatisch onderbroken wegen het verschuiven van de kaart of door een aanpassing van de venstergrootte","msg.finished.text.en":"Click 'Show report' to review map issues","msg.finished.text":"Klik 'Toon rapport' om kaart problemen te beoordelen", +"msg.finished.tip.en":"Click '✉' (Share) button to post report on a\nforum or in a private message","msg.finished.tip":"Klik op '✉' (Delen) om het rapport op een\nforum of privebericht te plaatsen","msg.noissues.text.en":"Finished! No issues found!","msg.noissues.text":"Klaar! Geen problemen gevonden!","msg.noissues.tip.en":"Try to uncheck some filter options or start WME Validator over another map area!","msg.noissues.tip":"Probeer een aantal filteropties uit te vinken of start WME Validator over een ander gebied op de kaart!", +"msg.scanning.text.en":"Scanning! Finishing in ~ ${n} min","msg.scanning.text":"Scannen! Klaar over ~ ${n} min","msg.scanning.text.soon.en":"Scanning! Finishing in a minute!","msg.scanning.text.soon":"Scannen! Klaar binnen een minuut!","msg.scanning.tip.en":"Click 'Pause' button to pause or '■' (Stop) to stop","msg.scanning.tip":"Klik op 'pauze' knop om te pauzeren of '■' (Stop) om te stoppen","msg.starting.text.en":"Starting! Layers are off to scan faster!","msg.starting.text":"Begonnen! Layers zijn uitgeschakeld om sneller te scannen!", +"msg.starting.tip.en":"Use 'Pause' button to pause or '■' button to stop","msg.starting.tip":"Gebruik de 'Pause' knop om te pauzeren of '■' knop om te stoppen","msg.paused.text.en":"On pause! Click '▶' (Play) button to continue.","msg.paused.text":"Gepauzeerd! Klik op '▶' (Play) knop om door te gaan.","msg.paused.tip.en":"To view the report click 'Show report' button (if available)","msg.paused.tip":"Om het rapport te bekijken klik je op de 'Toon rapport' knop (indien beschikbaar)","msg.continuing.text.en":"Continuing!", +"msg.continuing.text":"Doorgaan!","msg.continuing.tip.en":"WME Validator will continue from the location it was paused","msg.continuing.tip":"WME Validator zal doorgaan van de locatie waar het werd onderbroken","msg.settings.text.en":"Click 'Back' to return to main view","msg.settings.text":"Klik 'Terug' om terug te keren naar hoofdweergave","msg.settings.tip.en":"Click 'Reset defaults' button to reset all settings in one click!","msg.settings.tip":"Klik op 'Herstel standaardinstellingen' knop om alle instellingen in één klik resetten!", +"msg.reset.text.en":"All filter options and settings have been reset to their defaults","msg.reset.text":"Alle filter opties en instellingen zijn terug gezet naar de standaardwaarden","msg.reset.tip.en":"Click 'Back' button to return to main view","msg.reset.tip":"Klik 'Terug' om terug te keren naar de hoofdweergave","msg.textarea.pack.en":"This is a Greasemonkey/Tampermonkey script. You can copy and paste the text below into a new .user.js file
or paste it directly into the Greasemonkey/Tampermonkey", +"msg.textarea.pack":"Dit is een Greasemonkey/Tampermonkey script. Je kunt onderstaande tekst kopieren en plakken in een nieuw .user.jsof plak het direct in Greasemonkey/Tampermonkey","msg.textarea.en":"Please copy the text below and then paste it into your forum post or private message","msg.textarea":"Kopieer de onderstaande tekst en plak deze in je forum post of privebericht","noaccess.text.en":"Sorry,
You cannot use WME Validator over here.
Please check the forum thread
for more information.", +"noaccess.text":'Sorry,
Hier kan je de WME Validator niet gebruiken.deze forum thread
.',"noaccess.tip.en":"Please check the forum thread for more information!","noaccess.tip":"Controleer de forum thread voor meer informatie!","tab.switch.tip.on.en":"Click to switch highlighting on (Alt+V)","tab.switch.tip.on":"Klik om het markeren aan te schakelen (Alt + V)","tab.switch.tip.off.en":"Click to switch highlighting off (Alt+V)", +"tab.switch.tip.off":"Klik om het markeren uit te schakelen (Alt+V)","tab.filter.text.en":"filter","tab.filter.text":"filter","tab.filter.tip.en":"Options to filter the report and highlighted segments","tab.filter.tip":"Opties om het rapport te filteren en gemarkeerd segmenten","tab.search.text.en":"search","tab.search.text":"zoeken","tab.search.tip.en":"Advanced filter options to include only specific segments","tab.search.tip":"Geavanceerde filteropties om alleen specifieke segmenten op te nemen", +"tab.help.text.en":"help","tab.help.text":"help","tab.help.tip.en":"Need help?","tab.help.tip":"Hulp nodig?","filter.noneditables.text.en":"Exclude non-editable segments","filter.noneditables.text":"Negeer niet-bewerkbare segmenten","filter.noneditables.tip.en":"Do not report locked segments or\nsegments outside of your editable areas","filter.noneditables.tip":"Rapporteer geen beveiligde segmenten of\nsegmenten buiten het gebied waar je mag bewerken","filter.duplicates.text.en":"Exclude duplicate segments", +"filter.duplicates.text":"Dubbele segmenten uitsluiten","filter.duplicates.tip.en":"Do not show the same segment in different\nparts of report\n* Note: this option DOES NOT affect highlighting","filter.duplicates.tip":"Toon hetzelfde segment niet in verschillende\ndelen van het rapport\n* Opmerking: deze optie HEEFT GEEN invloed op het markeren","filter.streets.text.en":"Exclude Streets and Service Roads","filter.streets.text":"Negeer wegen en dienstwegen","filter.streets.tip.en":"Do not report Streets and Service Roads", +"filter.streets.tip":"Neem wegen en dienstwegen niet op in het rapport","filter.other.text.en":"Exclude Other drivable and Non-drivable","filter.other.text":"Negeer Andere berijdbare en niet-berijdbare segmenten","filter.other.tip.en":"Do not report Dirt, Parking Lot, Private Roads\nand non-drivable segments","filter.other.tip":"Niet melden van onverharde, parkeerplaats, privéwegen\n en niet-berijdbare segmenten","filter.notes.text.en":"Exclude notes","filter.notes.text":"Negeer opmerkingen", +"filter.notes.tip.en":"Report only warnings and errors","filter.notes.tip":"Rapporteer alleen waarschuwingen en fouten","search.youredits.text.en":"Include only your edits","search.youredits.text":"Toon enkel eigen aanpassingen","search.youredits.tip.en":"Include only segments edited by you","search.youredits.tip":"Omvat slechts segmenten bewerkt door u","search.updatedby.text.en":"Updated by*:","search.updatedby.text":"Aangepast door*:","search.updatedby.tip.en":"Include only segments updated by the specified editor\n* Note: this option is available for country managers only\nThis field supports:\n - lists: me, otherEditor\n - wildcards: world*\n - negation: !me, *\n* Note: you may use 'me' to match yourself", +"search.updatedby.tip":"Omvat slechts segmenten bijgewerkt door de opgegeven editor\n * Opmerking: deze optie is alleen beschikbaar voor country managers\n Dit veld ondersteunt:\n - lijsten: me, otherEditor\n - wildcards: wereld *\n - negatie:! Me, *\n * Opmerking: je kunt gebruik maken van 'me' om jezelf te vinden","search.updatedby.example.en":"Example: me","search.updatedby.example":"Voorbeeld: me","search.updatedsince.text.en":"Updated since:","search.updatedsince.text":"Aangepast sinds:", +"search.updatedsince.tip.en":"Include only segments edited since the date specified\nFirefox date format: YYYY-MM-DD","search.updatedsince.tip":"Toon enkel de segmenten die zijn gewijzigd sinds de opgegeven datum\nFirefox datum formaat: YYYY-MM-DD","search.updatedsince.example.en":"YYYY-MM-DD","search.updatedsince.example":"YYYY-MM-DD","search.city.text.en":"City name:","search.city.text":"plaatsnaam:","search.city.tip.en":"Include only segments with specified city name\nThis field supports:\n - lists: Paris, Meudon\n - wildcards: Greater * Area\n - negation: !Paris, *", +"search.city.tip":"Neem alleen segmenten op met opgegeven plaatsnaam\nDit veld ondersteunt:\n - lijsten: Amsterdam, Potsdam\n - wildcards: Den * \n - Negation: !Amsterdam, *","search.city.example.en":"Example: !Paris, *","search.city.example":"Voorbeeld: !Amsterdam, *","search.checks.text.en":"Reported as:","search.checks.text":"Rapporteer als:","search.checks.tip.en":"Include only segments reported as specified\nThis field matches:\n - severities: errors\n - check names: New road\n - check IDs: 200\nThis field supports:\n - lists: 36, 37\n - wildcards: *roundabout*\n - negation: !unconfirmed*, *", +"search.checks.tip":"Inclusief enkel de segmenten gerapporteerd als\nDit veld kom overeen met:\n - Foutmelding-rubriek: Fout\n - naam controle: Nieuwe straat\n - ID-Check: 200\nDit veld ondersteunt:\n - lijsten: 36, 37\n - wildcards: *rotonde*\n - negatie: !Soft-Turn*, *","search.checks.example.en":"Example: reverse*","search.checks.example":"Voorbeeld: autoweg*","help.text.en":'Help Topics:
F.A.Q.
Ask your question on the forum
How to adjust Validator for your country
About the "Might be Incorrect City Name"', +"help.text":'Hulp onderwerpen:
F.A.Q.
Stel je vraag op het forum
Hoe Validator aan te passen voor uw land
Over de "Eventuele verkeerde plaatsnaam"', +"help.tip.en":"Open in a new browser tab","help.tip":"Open in een nieuw tabblad","button.scan.tip.en":"Start scanning current map area\n* Note: this might take few minutes","button.scan.tip":"Start het scannen van het huidige gebied op de kaart\n* Opmerking: dit kan een aantal minuten duren","button.scan.tip.NA.en":"Zoom out to start scanning current map area","button.scan.tip.NA":"Zoom uit om te beginnen met het scannen van het huidige gebied op de kaart","button.pause.tip.en":"Pause scanning","button.pause.tip":"Scannen pauzeren", +"button.continue.tip.en":"Continue scanning the map area","button.continue.tip":"Doorgaan met scannen van het gebied op de kaart","button.stop.tip.en":"Stop scanning and return to the start position","button.stop.tip":"Stop het scannen en keer terug naar de beginpositie","button.clear.tip.en":"Clear report and segment cache","button.clear.tip":"Wissen rapport en segment cache","button.clear.tip.red.en":"There are too many reported segments:\n 1. Click 'Show report' to generate the report.\n 2. Click this button to clear the report and start over.", +"button.clear.tip.red":"Er zijn te veel gerapporteerde segmenten:\n 1. Klik op 'Toon rapport' om het rapport te genereren.\n 2. Klik op deze knop om het rapport te wissen en opnieuw te beginnen.","button.report.text.en":"Show report","button.report.text":"Toon rapport","button.report.tip.en":"Apply the filter and generate HTML report in a new tab","button.report.tip":"Pas het filter toe en genereer het HTML-rapport in een nieuw tabblad","button.BBreport.tip.en":"Share the report on Waze forum or in a private message", +"button.BBreport.tip":"Deel het rapport op het Waze forum of in een privé-bericht","button.settings.tip.en":"Configure settings","button.settings.tip":"Instellingen aanpassen","tab.custom.text.en":"custom","tab.custom.text":"eigen instelling","tab.custom.tip.en":"User-defined custom checks settings","tab.custom.tip":"Door gebruiker aangepaste controle instellingen","tab.settings.text.en":"Settings","tab.settings.text":"Instellingen","tab.scanner.text.en":"scanner","tab.scanner.text":"scanner","tab.scanner.tip.en":"Map scanner settings", +"tab.scanner.tip":"Instellingen Kaartscanner","tab.about.text.en":"about","tab.about.text":"over","tab.about.tip.en":"About WME Validator","tab.about.tip":"Over WME Validator","scanner.sounds.text.en":"Enable sounds","scanner.sounds.text":"Gebruik geluiden","scanner.sounds.tip.en":"Bleeps and the bloops while scanning","scanner.sounds.tip":"Activeer de geluiden tijden het scannen","scanner.sounds.NA.en":"Your browser does not support AudioContext","scanner.sounds.NA":"Je browser ondersteunt geen AudioContext", +"scanner.highlight.text.en":"Highlight issues on the map","scanner.highlight.text":"Markeer problemen op de kaart","scanner.highlight.tip.en":"Highlight reported issues on the map","scanner.highlight.tip":"Markeer gevonden problemen op de kaart","scanner.slow.text.en":'Enable "slow" checks',"scanner.slow.text":'"Langzame" controles activeren',"scanner.slow.tip.en":"Enables deep map analysis\n* Note: this option might slow down the scanning process","scanner.slow.tip":"Activeert diepe kaartanalyse\n* Opmerking: deze optie zou het scanproces kunnen vertragen", +"scanner.ext.text.en":"Report external highlights","scanner.ext.text":"Meld externe markeringen","scanner.ext.tip.en":"Report segments highlighted by WME Toolbox or WME Color Highlights","scanner.ext.tip":"Rapporteer segmenten gemarkeerd door WME Toolbox of WME Color Highlights","advanced.twoway.text.en":"WME: Two-way segments by default","advanced.twoway.text":"WME: Nieuwe segmenten tweerichtingsverkeer standaard","advanced.twoway.tip.en":"Newly created streets in WME are bidirectional by default", +"advanced.twoway.tip":"Nieuwe segmenten zijn standaard tweerichtingsverkeer","custom.template.text.en":"Custom template","custom.template.text":"Aangepast sjabloon","custom.template.tip.en":"User-defined custom check expandable template.\n\nYou may use the following expandable variables:\nAddress:\n ${country}, ${state}, ${city}, ${street},\n ${altCity[index or delimeter]}, ${altStreet[index or delimeter]}\nSegment properties:\n ${type}, ${typeRank}, ${toll}, ${direction}, ${elevation}, ${lock},\n ${length}, ${ID}\nHelpers:\n ${drivable}, ${roundabout}, ${hasHNs},\n ${Uturn}, ${deadEnd}, ${softTurns},\n ${deadEndA}, ${partialA},\n ${deadEndB}, ${partialB}\nConnectivity:\n ${segmentsA}, ${inA}, ${outA}, ${UturnA},\n ${segmentsB}, ${inB}, ${outB}, ${UturnB}", +"custom.template.tip":"Door de gebruiker gedefinieerde aangepaste controle uitbreidbaar sjabloon.\n\nDe volgende variabelen zijn te gebruiken:\n${country}, ${state}, ${city}, ${street},\n${altCity[Index of onderscheidingsteken]}, ${altStreet[Index of onderscheidingsteken]}\nSegment-Eigenschaften:\n${type}, ${typeRank}, ${toll}, ${direction}, ${elevation}, ${lock},\n ${length}, ${ID}\nHelpers:\n ${drivable}, ${roundabout}, ${hasHNs},\n ${Uturn}, ${deadEnd}, ${softTurns}\n ${deadEndA}, ${partialA},\n ${deadEndB}, ${partialB}\nVerbindungen:\n ${segmentsA}, ${inA}, ${outB}, ${UturnA},\n ${segmentsB}, ${inB}, ${outB}, ${UturnB}", +"custom.template.example.en":"Example: ${street}","custom.template.example":"Voorbeeld: ${street}","custom.regexp.text.en":"Custom RegExp","custom.regexp.text":"Eigen RegExp","custom.regexp.tip.en":"User-defined custom check regular expression to match the template.\n\nCase-insensitive match: /regexp/i\nNegation (do not match): !/regexp/\nLog debug information on console: D/regexp/", +"custom.regexp.tip":"Door de gebruiker gedefinieerde RegExp die overeenkomen met het template.\n\nNiet hoofdlettergevoelig match: /regexp/i\nNegatie van een uitdrukking: !/regexp/\nLog debug informatie op de console: D/regexp/","custom.regexp.example.en":"Example: !/.+/","custom.regexp.example":"Voorbeeld: !/.+/","about.tip.en":"Open link in a new tab","about.tip":"Link in nieuw tabblad openen","button.reset.text.en":"Reset defaults","button.reset.text":"Herstel standaardinstellingen","button.reset.tip.en":"Revert filter options and settings to their defaults", +"button.reset.tip":"Filter opties en instellingen herstellen naar de standaardwaarden","button.list.text.en":"Available checks...","button.list.text":"Beschikbare controles...","button.list.tip.en":"Show a list of checks available in WME Validator","button.list.tip":"Toon een lijst met beschikbare controles in WME Validator","button.wizard.tip.en":"Create localization package","button.wizard.tip":"Maak lokalisatie pakket aan","button.back.text.en":"Back","button.back.text":"Terug","button.back.tip.en":"Close settings and return to main view", +"button.back.tip":"Sluit de instellingen en keer terug naar de hoofdweergave","1.title.en":"WME Toolbox: Roundabout which may cause issues","1.title":"WME Toolbox: Rotonde die problemen kan veroorzaken (rotonde verkeer problematisch)","1.problem.en":"Junction IDs of the roundabout segments are not consecutive","1.problem":"Knooppunt-ID's van de rotonde segmenten zijn niet opeenvolgend","1.solution.en":"Redo the roundabout","1.solution":"Rotonde opnieuw doen","2.title.en":"WME Toolbox: Simple segment", +"2.title":"WME Toolbox: Moeilijk segment (Te veel geometrie knooppunten)","2.problem.en":"The segment has unneeded geometry nodes","2.problem":"Het segment heeft onnodige geometrie knooppunten","2.solution.en":'Simplify segment geometry by hovering mouse pointer and pressing "d" key',"2.solution":'Vereenvoudig segment geometrie door de muisaanwijzing boven het punt te brengen en de "d" toets in te drukken',"3.title.en":"WME Toolbox: Lvl 2 lock","3.title":"WME Toolbox: Lvl 2 Lock","3.problem.en":"The segment is highlighted by WME Toolbox. It is not a problem", +"3.problem":"Het segment wordt gemarkeerd door WME Toolbox. Het is geen probleem","4.title.en":"WME Toolbox: Lvl 3 lock","4.title":"WME Toolbox: Lvl 3 Lock","4.problem.en":"The segment is highlighted by WME Toolbox. It is not a problem","4.problem":"Het segment wordt gemarkeerd door WME Toolbox. Het is geen probleem.","5.title.en":"WME Toolbox: Lvl 4 lock","5.title":"WME Toolbox: Lvl 4 Lock","5.problem.en":"The segment is highlighted by WME Toolbox. It is not a problem","5.problem":"Het segment wordt gemarkeerd door WME Toolbox. Het is geen probleem", +"6.title.en":"WME Toolbox: Lvl 5 lock","6.title":"WME Toolbox: Lvl 5 Lock","6.problem.en":"The segment is highlighted by WME Toolbox. It is not a problem","6.problem":"Het segment wordt gemarkeerd door WME Toolbox. Het is geen probleem","7.title.en":"WME Toolbox: Lvl 6 lock","7.title":"WME Toolbox: Lvl 6 Lock","7.problem.en":"The segment is highlighted by WME Toolbox. It is not a problem","7.problem":"Het segment wordt gemarkeerd door WME Toolbox. Het is geen probleem","8.title.en":"WME Toolbox: House numbers", +"8.title":"WME Toolbox: Huisnummers","8.problem.en":"The segment is highlighted by WME Toolbox. It is not a problem","8.problem":"Het segment wordt gemarkeerd door WME Toolbox. Het is geen probleem","9.title.en":"WME Toolbox: Segment with time restrictions","9.title":"WME Toolbox: Segment met tijdsrestricties","9.problem.en":"The segment is highlighted by WME Toolbox. It is not a problem","9.problem":"Het segment wordt gemarkeerd door WME Toolbox. Het is geen probleem","13.title.en":"WME Color Highlights: Editor lock", +"13.title":"WME Color Highlights: Editor lock","13.problem.en":"The segment is highlighted by WME Color Highlights. It is not a problem","13.problem":"Het segment wordt gemarkeerd door WME Color Highlights. Het is geen probleem","14.title.en":"WME Color Highlights: Toll road / One way road","14.title":"WME Color Highlights: Toll road / One way road (Tol- / Eenrichtings-straat)","14.problem.en":"The segment is highlighted by WME Color Highlights. It is not a problem","14.problem":"Het segment wordt gemarkeerd door WME Color Highlights. Het is geen probleem", +"15.title.en":"WME Color Highlights: Recently edited","15.title":"WME Color Highlights: Recently edited (Kürzlich editiert)","15.problem.en":"The segment is highlighted by WME Color Highlights. It is not a problem","15.problem":"Het segment wordt gemarkeerd door WME Color Highlights. Het is geen probleem","16.title.en":"WME Color Highlights: Road rank","16.title":"WME Color Highlights: Road type","16.problem.en":"The segment is highlighted by WME Color Highlights. It is not a problem","16.problem":"Het segment wordt gemarkeerd door WME Color Highlights. Het is geen probleem", +"17.title.en":"WME Color Highlights: No city","17.title":"WME Color Highlights: No city (Keine Stadt)","17.problem.en":"The segment is highlighted by WME Color Highlights. It is not a problem","17.problem":"Het segment wordt gemarkeerd door WME Color Highlights. Het is geen probleem","18.title.en":"WME Color Highlights: Time restriction / Highlighted road type","18.title":"WME Color Highlights: Time restriction / Highlighted road type","18.problem.en":"The segment is highlighted by WME Color Highlights. It is not a problem", +"18.problem":"Het segment wordt gemarkeerd door WME Color Highlights. Het is geen probleem","19.title.en":"WME Color Highlights: No name","19.title":"WME Color Highlights: No name (Kein Straßenname)","19.problem.en":"The segment is highlighted by WME Color Highlights. It is not a problem","19.problem":"Het segment wordt gemarkeerd door WME Color Highlights. Het is geen probleem","20.title.en":"WME Color Highlights: Filter by city","20.title":"WME Color Highlights: Filter by city (Stadt-Filter)","20.problem.en":"The segment is highlighted by WME Color Highlights. It is not a problem", +"20.problem":"Het segment wordt gemarkeerd door WME Color Highlights. Het is geen probleem","21.title.en":"WME Color Highlights: Filter by city (alt. city)","21.title":"WME Color Highlights: Filter by city (alt. city)","21.problem.en":"The segment is highlighted by WME Color Highlights. It is not a problem","21.problem":"Het segment wordt gemarkeerd door WME Color Highlights. Het is geen probleem","22.title.en":"WME Color Highlights: Filter by editor","22.title":"WME Color Highlights: Filter by editor (Editor-Filter)", +"22.problem.en":"The segment is highlighted by WME Color Highlights. It is not a problem","22.problem":"Het segment wordt gemarkeerd door WME Color Highlights. Het is geen probleem","23.title.en":"Unconfirmed road","23.title":"Onbevestigde straat","23.problem.en":"Each segment must minimally have the Country and State information","23.problem":"Elk segment moet minimaal informatie hebben over het land en plaats","23.solution.en":"Confirm the road by updating its details","23.solution":"Bevestig de straat door ofwel de plaats danwel de straatnaam in te voeren.", +"24.title.en":"Might be incorrect city name (only available in the report)","24.title":"Eventueel verkeerde plaatsnaam (alleen beschikbaar in het rapport)","24.problem.en":"The segment might have incorrect city name","24.problem":"Het segment heeft misschien een verkeerde plaatsnaam","24.solution.en":"Consider suggested city name and use this form to rename the city","24.solution":"Overweeg de voorgestelde plaatsnaam en gebruik dit formulier om de naam te wijzigen","25.title.en":"Unknown direction of drivable road", +"25.title":"Onbekende rijrichting van berijdbare weg","25.problem.en":"'Unknown' road direction will not prevent routing on the road","25.problem":"'Onbekende' rijrichting zal niet voorkomen dat er genavigeerd wordt over de weg","25.solution.en":"Set the road direction","25.solution":"Stel de rijrichting in","28.title.en":"Street name on two-way Ramp","28.title":"Straatnaam op tweebaans voegstrook","28.problem.en":"If Ramp is unnamed, the name of a subsequent road will propagate backwards","28.problem":"Als de op/afrit geen naam heeft, zal de naam van de volgende straat worden overgenomen", +"28.solution.en":"In the address properties check the 'None' box next to the street name and then click 'Apply'","28.solution":"In de adreseigenschappen vink 'Geen' aan naast de straatnaam en klik op 'Toepassen'","29.title.en":"Street name on roundabout","29.title":"Straatnaam op rotonde","29.problem.en":"In Waze, we do not name roundabout segments","29.problem":"In Waze geven we rotondes geen straatnamen","29.solution.en":"In the address properties check the 'None' box next to the street name, click 'Apply' and then add 'Junction' landmark to name the roundabout", +"29.solution":"In de adreseigenschappen vink 'Geen' aan naast de straatnaam en klik op 'Toepassen' en voeg eventueel een 'Kruispunt/Knooppunt' toe met de naam van de rotonde","33.enabled":!1,"34.title.en":"Empty alternate street","34.title":"Lege alternatieve straatnaam","34.problem.en":"Alternate street name is empty","34.problem":"De alternatieve straatnaam is leeg","34.solution.en":"Remove empty alternate street name","34.solution":"Verwijder de lege alternatieve straatnaam","35.title.en":"Unterminated drivable road", +"35.title":"Geen eindnode op berijdbare weg","35.problem.en":"Waze will not route from the unterminated segment","35.problem":"Waze zal niet routeren vanaf segmenten zonder eindnode","35.solution.en":"Move the segment a bit so the terminating node will be added automatically","35.solution":"Verplaats het segment een beetje zodat de eindnode automatisch zal worden toegevoegd","36.enabled":!0,"36.title.en":"Node A: Unneeded (slow)","36.title":"Node A: Onnodig (langzaam)","36.problem.en":"Adjacent segments at node A are identical", +"36.problem":"De segmenten naast node A zijn identiek","36.solution.en":"Select node A and press Delete key to join the segments","36.solution":"Selecteer node A en druk op Delete om de segmenten samen te voegen","37.enabled":!0,"37.title.en":"Node B: Unneeded (slow)","37.title":"Node B: Onnodig (langzaam)","37.problem.en":"Adjacent segments at node B are identical","37.problem":"De segmenten naast node B zijn identiek","37.solution.en":"Select node B and press Delete key to join the segments","37.solution":"Selecteer node B en druk op Delete om de segmenten samen te voegen", +"38.title.en":"Expired segment restriction (slow)","38.title":"Verlopen segment beperking (langzaam)","38.problem.en":"The segment has an expired restriction","38.problem":"Het segment heeft een verlopen beperking","38.solution.en":"Click 'Edit restrictions' and delete the expired restriction","38.solution":"Klik op 'Bewerken restricties' en verwijder de verstreken beperking","39.title.en":"Expired turn restriction (slow)","39.title":"Verlopen beperking op afslag (langzaam)","39.problem.en":"The segment has a turn with an expired restriction", +"39.problem":"Het segment heeft een afslag met een verlopen beperking","39.solution.en":"Click clock icon next to the yellow arrow and delete the expired restriction","39.solution":"Klik klok pictogram naast de gele pijl en verwijder de verlopen beperking","41.title.en":"Node A: Reverse connectivity of drivable road","41.title":"Node A: Omgekeerde connectiviteit van berijdbare weg","41.problem.en":"There is a turn which goes against the directionality of the segment at node A","41.problem":"Er is een afslag die indruist tegen de rijrichting van het segment op knooppunt A", +"41.solution.en":"Make the segment 'Two-way', restrict all the turns at node A and then make the segment 'One way (A→B)' again","41.solution":"Verander het segment in twee-richting, verbied de afslag bij node A en verander het segment weer in '1-richting', of verander het segment weer in 'One way (A→B)'","42.title.en":"Node B: Reverse connectivity of drivable road","42.title":"Node B: Omgekeerde connectiviteit van berijdbare weg","42.problem.en":"There is a turn which goes against the directionality of the segment at node B", +"42.problem":"Er is een afslag die indruist tegen de rijrichting van het segment op knooppunt B","42.solution.en":"Make the segment 'Two-way', restrict all the turns at node B and then make the segment 'One way (B→A)' again","42.solution":"Verander het segment in twee-richting, verbied de afslag bij node B en verander het segment weer in '1-richting', Of verander het segment weer in 'One way (B→A)'","43.title.en":"Self connectivity","43.title":"Zelf verbinding","43.problem.en":"The segment is connected back to itself", +"43.problem":"Het segment is met zichzelf verbonden","43.solution.en":"Split the segment into THREE pieces","43.solution":"Verdeel het segment in DRIE stukken","44.title.en":"No outward connectivity","44.title":"Geen verbinding naar buiten","44.problem.en":"The drivable segment has no single outward turn enabled","44.problem":"Het berijdbare segment heeft geen enkele verbinding naar buiten","44.solution.en":"Enable at least one outward turn from the segment","44.solution":"Verbind het segment minstens eenmaal met het verkeersnet", +"45.title.en":"No inward connectivity","45.title":"Geen verbinding naar binnen","45.problem.en":"The drivable non-private segment has no single inward turn enabled","45.problem":"Het berijdbare niet-privé segment heeft geen enkele verbinding naar het segment toe","45.solution.en":"Select an adjacent segment and enable at least one turn to the segment","45.solution":"Selecteer het segment en sta minstens één inwaartse verbinding toe","46.title.en":"Node A: No inward connectivity of drivable road (slow)", +"46.title":"Node A: Geen naar binnen connectiviteit van berijdbare weg (langzaam)","46.problem.en":"The drivable non-private segment has no single inward turn enabled at node A","46.problem":"De berijdbare niet-particuliere segment heeft geen enkele naar binnen wijzende verbinding ingeschakeld op knooppunt A","46.solution.en":"Select an adjacent segment and enable at least one turn to the segment at node A","46.solution":"Selecteer een aangrenzend segment en stel tenminste één verbinding naar segment bij knooppunt A in", +"47.title.en":"Node B: No inward connectivity of drivable road (slow)","47.title":"Node B: Het berijdbare segment heeft geen enkele verbinding naar het segment toe (langzaam)","47.problem.en":"The drivable non-private segment has no single inward turn enabled at node B","47.problem":"Het berijdbare (niet prive) segment heeft geen enkele verbinding naar het segment toe bij node B","47.solution.en":"Select an adjacent segment and enable at least one turn to the segment at node B","47.solution":"Selecteer een aangrenzend segment en stel tenminste één verbinding naar segment bij node B", +"48.title.en":"Two-way drivable roundabout segment","48.title":"Berijdbare rotonde segment is niet eenrichtingsverkeer","48.problem.en":"The drivable roundabout segment is bidirectional","48.problem":"Berijdbare rotonde segment is niet eenrichtingsverkeer","48.solution.en":"Redo the roundabout","48.solution":"Maak de rotonde opnieuw","59.title.en":"City name on Freeway","59.title":"Plaatsnaam op snelweg","59.problem.en":"City name on the Freeway may cause a city smudge","59.problem":"Plaatsnaam op de snelweg kan het uitsmeren van een stad veroorzaken", +"59.problemLink":"W:Netherlands/Freeway","59.solution.en":"In the address properties check the 'None' box next to the city name and then click 'Apply'","59.solution":"In de adreseigenschappen stel de plaatsnaam in op 'Geen' en klik op 'toepassen'","59.solutionLink":"W:Creating_and_Editing_street_segments#Address_Properties","71.enabled":!0,"71.problemLink":"W:Netherlands/Major_Highway","71.title.en":"Must be a Major Highway","71.title":"Moet een Major Highway zijn","71.problem.en":"This segment must be a Major Highway", +"71.problem":"Dit segment moet een Major Highway zijn","71.solution.en":"Set the road type to Major Highway or change the road name","71.solution":"Stel het wegtype in op Major Highway of verander de straatnaam","72.enabled":!0,"72.problemLink":"W:Netherlands/Minor_Highway","72.title.en":"Must be a Minor Highway","72.title":"Dit moet een Minor Highway zijn","72.problem.en":"This segment must be a Minor Highway","72.problem":"Dit segment moet een Minor Highway zijn","72.solution.en":"Set the road type to Minor Highway or change the road name", +"72.solution":"Stel het wegtype in op Minor Highway of verander de straatnaam","78.title.en":"Same endpoints drivable segments (slow)","78.title":"Dezelfde eindpunten voor berijdbare segmenten (langzaam)","78.problem.en":"Two drivable segments share the same two endpoints","78.problem":"Twee berijdbare segmenten delen dezelfde twee eindpunten","78.solution.en":"Split the segment. You might also remove one of the segments if they are identical","78.solution":"Splits het segment. Je zou ook een segment kunnen verwijderen als ze identiek zijn", +"87.title.en":"Node A: Multiple outgoing segments at roundabout","87.title":"Node A: Meerdere uitgaande segmenten voor rotonde","87.problem.en":"The drivable roundabout node A has more than one outgoing segment connected","87.problem":"De berijdbare rotonde knooppunt A heeft meerdere uitgaande segmenten verbonden","87.solution.en":"Redo the roundabout","87.solution":"Maak de rotonde opnieuw","99.title.en":"U-turn at roundabout entrance (slow)","99.title":"U-bocht op rotonde (langzaam)","99.problem.en":"The roundabout entrance segment has a U-turn enabled", +"99.problem":"De berijdbare rotondenode heeft een U-bocht toegestaan","99.solution.en":"Disable U-turn","99.solution":"Zet de U-bocht uit","101.title.en":"Closed road (only available in the report)","101.title":"Afgesloten weg (enkel beschikbaar in het rapport)","101.problem.en":"The segment is marked as closed","101.problem":"Het segment is gemarkeerd als afgesloten","101.solution.en":"If the construction is done, restore the segment connectivity and remove the suffix","101.solution":"Als de wegwerkzaamheden klaar zijn, herstel dan de verbinding van het segment en verwijder de aanvulling", +"101.params":{regexp:"/(^|\\b)afgesloten(\\b|$)/i"},"102.title.en":"Node A: No outward connectivity of drivable road (slow)","102.title":"Node A: Geen uitgaande verbinding van berijdbare weg (langzaam)","102.problem.en":"The drivable segment has no single outward turn enabled at node A","102.problem":"Het berijdbare segment heeft geen enkele uitgaande verbinding aan staan bij node A","102.solution.en":"Enable at least one outward turn from the segment at node A","102.solution":"Zet minstens 1 uitgaande verbinding aan bij node A", +"103.title.en":"Node B: No outward connectivity of drivable road (slow)","103.title":"Node B: Geen uitgaande verbinding van berijdbare weg (langzaam)","103.problem.en":"The drivable segment has no single outward turn enabled at node B","103.problem":"Het berijdbare segment heeft geen enkele uitgaande verbinding aan staan bij node B","103.solution.en":"Enable at least one outward turn from the segment at node B","103.solution":"Zet minstens 1 uitgaande verbinding aan bij node B","104.title.en":"Railroad used for comments", +"104.title":"Spoorweg gebruikt als commentaar","104.problem.en":"The Railroad segment is probably used as a map comment","104.problem":"Het spoorweg segment wordt waarschijnelijk gebruikt als kaartopmerking","104.solution.en":"Remove the comment as Railroads will be added to the client display","104.solution":"Verwijder het commentaar, spoorwegen worden weergegeven in de client","107.title.en":"Node A: No connection (slow)","107.title":"Node A: Geen verbinding (langzaam)","107.problem.en":"The node A of the drivable segment is within 5m from another drivable segment but not connected by a junction", +"107.problem":"De node A van een berijdbaar segment is binnen 5 meter van een ander berijdbaar segment, maar is niet verbonden via een kruising","107.solution.en":"Drag the node A to the nearby segment so that it touches or move it a bit further away","107.solution":"Sleep de node A naar het dichtbij gelegen segment zodat deze verbonden worden, of sleep de node iets verder weg van het andere segment","108.title.en":"Node B: No connection (slow)","108.title":"Node B: Geen verbinding (langzaam)","108.problem.en":"The node B of the drivable segment is within 5m from another drivable segment but not connected by a junction", +"108.problem":"De node B van een berijdbaar segment is binnen 5 meter van een ander berijdbaar segment, maar is niet verbonden via een kruising","108.solution.en":"Drag the node B to the nearby segment so that it touches or move it a bit further away","108.solution":"Sleep de node B naar het dichtbij gelegen segment zodat deze verbonden worden, of sleep de node iets verder weg van het andere segment","109.title.en":"Too short segment","109.title":"Te kort segment","109.problem.en":"The drivable non-terminal segment is less than ${n}m long so it is hard to see it on the map and it can cause routing problems", +"109.problem":"Het berijdbaar, niet doodlopend, segment is korter dan ${n}m, dit is moeilijk te zien op de kaart en kan voor routerings problemen zorgen","109.solution.en":"Increase the length, or remove the segment, or join it with one of the adjacent segments","109.solution":"Verleng het segment, of verwijder het segment, of voeg het segment samen met een van de omliggende segmenten","112.title.en":"Too long Ramp name","112.title":"Op/afrit naam te lang","112.problem.en":"The Ramp name is more than ${n} letters long", +"112.problem":"Op/afrit naam is langer dan ${n} tekens lang","112.solution.en":"Shorten the Ramp name","112.solution":"Verkort de naam","114.enabled":!1,"114.title.en":"Node A: Non-drivable connected to drivable (slow)","114.title":"Node A: Niet-berijdbaar verbonden met berijdbaar (langzaam)","114.problem.en":"The non-drivable segment makes a junction with a drivable at node A","114.problem":"Het niet-berijdbare segment maakt verbinding met een berijdbaar segment bij node A","114.solution.en":"Disconnect node A from all of the drivable segments", +"114.solution":"Verbreek de vervinding van alle berijdbare segmenten bij node A","115.enabled":!1,"115.title.en":"Node B: Non-drivable connected to drivable (slow)","115.title":"Node B: Niet-berijdbaar verbonden met berijdbaar (langzaam)","115.problem.en":"The non-drivable segment makes a junction with a drivable at node B","115.problem":"Het niet-berijdbare segment maakt verbinding met een berijdbaar segment bij node B","115.solution.en":"Disconnect node B from all of the drivable segments","115.solution":"Verbreek de vervinding van alle berijdbare segmenten bij node B", +"116.title.en":"Out of range elevation","116.title":"Hoogte buiten bereik","116.problem.en":"The segment elevation is out of range","116.problem":"De elevatie van het segment is buiten bereik","116.solution.en":"Correct the elevation","116.solution":"Corrigeer de hoogte","117.title.en":"Obsolete CONST ZN marker","117.title":"CONST ZN markering verouderd","117.problem.en":"The segment is marked with obsolete CONST ZN suffix","117.problem":"Het segment is gemarkeerd met een verouderde CONST ZN toevoeging", +"117.solution.en":"Change CONST ZN to (closed)","117.solution":"Verander CONST ZN naar (afgesloten)","118.title.en":"Node A: Overlapping segments (slow)","118.title":"Node A: Overlappende segmenten (langzaam)","118.problem.en":"The segment is overlapping with the adjacent segment at node A","118.problem":"Het segment overlapt het aangrenzende segment bij node A","118.solution.en":"Spread the segments at 2° or delete unneeded geometry point or delete the duplicate segment at node A","118.solution":"Verdeel de segmenten bij 2° of verwijder overbodige geometriepunt of verwijder het duplicaat-segment bij node A", +"119.title.en":"Node B: Overlapping segments (slow)","119.title":"Node B: Overlappende segmenten (langzaam)","119.problem.en":"The segment is overlapping with the adjacent segment at node B","119.problem":"Het segment overlapt het aangrenzende segment bij node B","119.solution.en":"Spread the segments at 2° or delete unneeded geometry point or delete the duplicate segment at node B","119.solution":"Verdeel de segmenten bij 2° of verwijder overbodige geometriepunt of verwijder het duplicaat-segment bij node B", +"120.title.en":"Node A: Too sharp turn (slow)","120.title":"Node A: Te scherpe bocht (langzaam)","120.problem.en":"The drivable segment has a very acute turn at node A","120.problem":"Het berijdbare segment heeft een zeer scherpe bocht bij node A","120.solution.en":"Disable the sharp turn at node A or spread the segments at 30°","120.solution":"Sta de scherpe bocht bij node A niet toe of maak de hoek groter dan 30°","121.title.en":"Node B: Too sharp turn (slow)","121.title":"Node B: Te scherpe bocht (langzaam)", +"121.problem.en":"The drivable segment has a very acute turn at node B","121.problem":"Het berijdbare segment heeft een zeer scherpe bocht bij B","121.solution.en":"Disable the sharp turn at node B or spread the segments at 30°","121.solution":"Sta de scherpe bocht bij node B niet toe of maak de hoek groter dan 30°","128.title.en":"User-defined custom check (green)","128.title":"Door de gebruiker gedefinieerde aangepaste controle (groen)","128.problem.en":"Some of the segment properties matched against the user-defined regular expression (see Settings→Custom)", +"128.problem":"Sommige segmenteigenschappen komen overeen met door gebruiker gedefinieerde opgave (zie Instellingen→Aangepast)","128.solution.en":"Solve the issue","128.solution":"Los het probleem op","129.title.en":"User-defined custom check (blue)","129.title":"Door de gebruiker gedefinieerde aangepaste controle (blauw)","129.problem.en":"Some of the segment properties matched against the user-defined regular expression (see Settings→Custom)","129.problem":"Sommige segmenteigenschappen komen overeen met door gebruiker gedefinieerde opgave (zie Instellingen→Aangepast)", +"129.solution.en":"Solve the issue","129.solution":"Los het probleem op","150.enabled":!0,"150.problemLink":"W:Netherlands/Freeway","150.title.en":"No lock on Freeway","150.title":"Geen lock op snelweg","150.problem.en":"The Freeway segment should be locked at least to Lvl ${n}","150.problem":"De snelweg moet op tenminste Lvl ${n} gelockt zijn","150.solution.en":"Lock the segment","150.solution":"Lock het segment","151.enabled":!0,"151.problemLink":"W:Netherlands/Major_Highway","151.title.en":"No lock on Major Highway", +"151.title":"Geen lock op Major Highway","151.problem.en":"The Major Highway segment should be locked at least to Lvl ${n}","151.problem":"Het Major Highway segment moet gelockt zijn op Lvl ${n}","151.solution.en":"Lock the segment","151.solution":"Lock het segment","152.enabled":!0,"152.problemLink":"W:Netherlands/Minor_Highway","152.title.en":"No lock on Minor Highway","152.title":"Geen lock op Minor Highway","152.problem.en":"The Minor Highway segment should be locked at least to Lvl ${n}","152.problem":"Het Minor Highway segment moet gelockt zijn op Lvl ${n}", +"152.solution.en":"Lock the segment","152.solution":"Lock het segment","153.enabled":!0,"153.problemLink":"W:Netherlands/Ramp","153.title.en":"No lock on Ramp","153.title":"Geen lock op op/afrit","153.problem.en":"The Ramp segment should be locked at least to Lvl ${n}","153.problem":"De op/afrit zou minimaal gelockt moeten zijn op Lvl ${n}","153.params":{n:4},"154.enabled":!0,"154.problemLink":"W:Netherlands/Primary_Street","154.title.en":"No lock on Primary Street","154.title":"Geen lock op hoofdweg", +"154.problem.en":"The Primary Street segment should be locked at least to Lvl ${n}","154.problem":"De hoofdweg zou minimaal gelockt moeten zijn op Lvl ${n}","154.solution.en":"Lock the segment","154.solution":"Lock het segment","160.enabled":!1,"161.enabled":!0,"161.params":{solutionEN:"Rename the Major Highway to 'Nnum[ - Nnum]' or 'Nnum - streetname' or 'Nnum ri Dir1 / Dir2'",regexp:"!/^N([0-9]|[0-9][0-9]|[123][0-9][0-9])( - [NS][0-9]+)?(( ri [^\\/]+( \\/ [^\\/]+)*)|( - .+))?$/"},"161.problemLink":"W:Netherlands/Major_Highway", +"161.title.en":"Incorrect Major Highway name","161.title":"Verkeerde Major Highway naam","161.problem.en":"The Major Highway segment has incorrect street name","161.problem":"Het Major Highway segment heeft een verkeerde straatnaam","161.solution.en":"Rename the segment in accordance with the guidelines","161.solution":"Hernoem het segment volgens de richtlijnen","162.enabled":!0,"162.params":{solutionEN:"Rename the Minor Highway to 'Nnum[ - Nnum]' or 'Nnum - streetname' or 'Nnum ri Dir1 / Dir2'", +regexp:"!/^(N[4-9][0-9][0-9]|[SU][0-9]+)( - [NS][0-9]+)?(( ri [^\\/]+( \\/ [^\\/]+)*)|( - .+))?$/"},"162.problemLink":"W:Netherlands/Minor_Highway","162.title.en":"Incorrect Minor Highway name","162.title":"Verkeerde Minor Highway naam","162.problem.en":"The Minor Highway segment has incorrect street name","162.problem":"Het Minor Highway segment heeft een verkeerde straatnaam","162.solution.en":"Rename the segment in accordance with the guidelines","162.solution":"Hernoem het segment volgens de richtlijnen. LET OP! Er zijn uitzonderingen voor bepaalde belangrijke regionale wegen. In geval van twijfel, eerst overleggen!", +"172.title.en":"Unneeded spaces in street name","172.title":"Onnodige spaties in de straatnaam","172.problem.en":"Leading/trailing/double space in the street name","172.problem":"Overbodige spaties voor/achter/in de straatnaam","172.solution.en":"Remove unneeded spaces from the street name","172.solution":"Verwijder de overbodige spaties in de straatnaam","173.title.en":"No space before/after street abbreviation","173.title":"Geen spatie voor/achter de straat afkorting","173.problem.en":"No space before ('1943r.') or after ('st.Jan') an abbreviation in the street name", +"173.problem":"Geen spatie voor ('1943r.') of achter ('st.Jan') een afkorting in de straatnaam","173.solution.en":"Add a space before/after the abbreviation","173.solution":"Voeg een spatie voor/achter de afkorting toe","175.title.en":"Empty street name","175.title":"Lege straatnaam","175.problem.en":"The street name has only space characters or a dot","175.problem":"De straatnaam heeft alleen spaties of punt(en)","175.solution.en":"In the address properties check the 'None' box next to the street name, click 'Apply' OR set a proper street name", +"175.solution":"In de adreseigenschappen vink de 'Geen' optie aan naast de straatnaam, klik op 'Toepassen' OF vul de juiste straatnaam in","190.title.en":"Lowercase city name","190.title":"Plaatsnaam in kleine letters","190.problem.en":"The city name starts with a lowercase letter","190.problem":"De plaatsnaam begint met een kleine letter","190.solution.en":"Use this form to rename the city","190.solution":"Gebruik dit formulier om de plaatsnaam te hernoemen","192.title.en":"Unneeded spaces in city name", +"192.title":"Onnodige spaties in de plaatsnaam","192.problem.en":"Leading/trailing/double space in the city name","192.problem":"Overbodige spaties voor/achter/in de plaatsnaam","192.solution.en":"Use this form to rename the city","192.solution":"Gebruik dit formulier om de plaatsnaam te hernoemen","193.title.en":"No space before/after city abbreviation","193.title":"Geen spatie voor/achter de afkorting in de plaatsnaam","193.problem.en":"No space before ('1943r.') or after ('st.Jan') an abbreviation in the city name", +"193.problem":"Geen spatie voor ('1943r.') of achter ('st.Jan') een afkorting in de plaatsnaam","193.solution.en":"Use this form to rename the city","193.solution":"Gebruik dit formulier om de plaatsnaam te hernoemen","200.title.en":"Node A: Unconfirmed turn on minor road","200.title":"Node A: Onbevestigde verbinding op weg","200.problem.en":"The minor drivable segment has an unconfirmed (soft) turn at node A","200.problem":"Het berijdbare segment heeft een onbevestigd (zachte) bocht op node A","200.solution.en":"Click the turn indicated with a purple question mark to confirm it. Note: you may need to make the segment 'Two-way' in order to see those turns", +"200.solution":"Klik op de aangegeven verbinding met een paarse vraagteken om het te bevestigen. Opmerking: het kan nodig zijn om het segment 2-richtingen te maken om die verbindingen te zien","201.title.en":"Node A: Unconfirmed turn on primary road","201.title":"Node A: Onbevestigde verbinding op hoofdweg","201.problem.en":"The primary segment has an unconfirmed (soft) turn at node A","201.problem":"Het hoofdweg segment heeft een onbevestigde (zachte) verbinding bij node A","201.solution.en":"Click the turn indicated with a purple question mark to confirm it. Note: you may need to make the segment 'Two-way' in order to see those turns", +"201.solution":"Klik op de aangegeven verbinding met een paarse vraagteken om het te bevestigen. Opmerking: het kan nodig zijn om het segment 2-richtingen te maken om die verbindingen te zien","202.title.en":"BETA: No public connection for public segment (slow)","202.title":"BETA: Routeerbaar segment lijkt geisoleerd (langzaam)","202.problem.en":"The public segment is not connected to any other public segment","202.problem":"Het segment lijkt een publiek toegankelijk segment in het midden van niet publieke segmenten te zijn", +"202.solution.en":"Verify if the segment is meant to be a public accessible segment, or it should be changed to a private segment","202.solution":"Controleer of dit segment wel publiek toegankelijk moet zijn, of van type moet wijzigen","214.title":"Segment heeft waarschijnlijk verkeerde snelheidslimiet ingesteld van A naar B","214.problem":"Segment heeft waarschijnlijk verkeerde snelheidslimiet ingesteld","214.solution":"Controleer de snelheidslimiet van het segment en corrigeer als het nodig is", +"214.params":{regexp:"/^5|15|25|.+0$/"},"215.title":"Segment heeft waarschijnlijk verkeerde snelheidslimiet ingesteld van B naar A","215.problem":"Segment heeft waarschijnlijk verkeerde snelheidslimiet ingesteld","215.solution":"Controleer de snelheidslimiet van het segment en corrigeer als het nodig is","215.params":{regexp:"/^5|15|25|.+0$/"},"250.title":"Geen stad ingesteld bij plaats","250.problem":"De plaats heeft geen stad ingesteld","250.solution":"Stel de stad in voor de plaats","250.params":{"regexp.title":"{string} regular expression to match categories that should be excepted from this check", +regexp:"/^(TRANSPORTATION|NATURAL_FEATURES|BRIDGE|ISLAND|FOREST_GROVE|SEA_LAKE_POOL|RIVER_STREAM|CANAL|DAM|TUNNEL|JUNCTION_INTERCHANGE)$/"},"251.title":"Geen straatnaam ingesteld bij plaats","251.problem":"De plaats heeft geen straatnaam ingesteld","251.solution":"Stel de straatnaam in voor de plaats","251.params":{"regexp.title":"{string} regular expression to match categories that should be excepted from this check",regexp:"/^(TRANSPORTATION|NATURAL_FEATURES|BRIDGE|ISLAND|FOREST_GROVE|SEA_LAKE_POOL|RIVER_STREAM|CANAL|DAM|TUNNEL|JUNCTION_INTERCHANGE)$/"}, +"252.title":"Automatisch aangepaste plaats","252.problem":"De plaats was automatisch aangepast door Waze","252.solution":"Controleer de plaats details en pas deze aan als het nodig is","252.params":{"regexp.title":"{string} regular expression to match bot names and ids",regexp:"/^waze-maint|^105774162$|^waze3rdparty$|^361008095$|^WazeParking1$|^338475699$|^admin$|^-1$|^avsus$|^107668852$/i"},"253.title":"Categorie 'OVERIGE' kan beter niet gebruikt worden","253.problem":"De categorie 'OVERIGE' is niet nuttig. Gebruikers kunnen zoeken op een categorie en OVERIGE bied geen houvast", +"253.solution":"Selecteer de juiste categorie voor de plaats","254.title":"Geen in-/uitgang punt ingesteld voor plaats","254.problem":"Er is geen in-/uitgang punt ingesteld voor de plaats","254.solution":"Stel de juiste in-/uitgang punt in voor de plaats","255.title":"Fout telefoon nummer","255.problem":"De plaats heeft een fout telefoon nummer","255.solution":"In Nederland gebruiken we +31 AA BBBBBBBB, of +31 AAA BBBBBBB voor vaste lijnen en +31 6 CBBBBBBB voor mobiele nummers, of 0800 BBBBBB of 0900 BBBBBB voor 0800 en 0900 nummers. Corrigeer het telefoon nummer volgens die formaten", +"255.solutionLink":"P:Netherlands/Places#More_Info_tab","255.params":{"regexp.title":"{string} regular expression to match a correct phone number",regexp:"/^0(?:80|90)[0-9] (?:[0-9]{4}|[0-9]{7})$|^\\+31(?: 0?[0-9]{2} [0-9]{7,8}| 6 [0-9]{8})$/"},"256.title":"Onjuiste URL","256.problem":"De plaats heeft een onjuiste URL","256.solution":"Controleer de URL. Binnen Nederland geven we de URL het format www.adress.extension en laten we de http(s):// vervallen","256.solutionLink":"P:Netherlands/Places#More_Info_tab", +"256.params":{"regexp.title":"{string} regular expression to match a correct URL",regexp:"/^([da-z.-]+.[a-z.]{2,6}|[d.]+)([/:?=&#]{1}[da-z.-]+)*[/?]?$/i"},"257.enabled":!0,"257.title":"Plaats moet een gebied zijn","257.problem":"Plaats is ingesteld als een punt, maar moet een gebied zijn","257.solution":"Converteer de plaats naar een gebied","257.solutionLink":"P:Benelux/Place_categories","257.params":{"regexp.title":"{string} regular expression to match categories that should be a area",regexp:"/^(GAS_STATION|PARKING_LOT|FERRY_PIER|BUS_STATION|AIRPORT|BRIDGE|JUNCTION_INTERCHANGE|TRAIN_STATION|CITY_HALL|SEAPORT_MARINA_HARBOR|TUNNEL|CEMETERY|COLLEGE_UNIVERSITY|COURTHOUSE|CONVENTIONS_EVENT_CENTER|FIRE_DEPARTMENT|FACTORY_INDUSTRIAL|HOSPITAL_URGENT_CARE|MILITARY|POLICE_STATION|PRISON_CORRECTIONAL_FACILITY|SCHOOL|SHOPPING_CENTER|CASINO|RACING_TRACK|STADIUM_ARENA|THEME_PARK|ZOO_AQUARIUM|SPORTS_COURT|CONSTRUCTION_SITE|BEACH|GOLF_COURSE|PARK|SKI_AREA|FOREST_GROVE|ISLAND|FURNITURE_HOME_STORE|SEA_LAKE_POOL|RIVER_STREAM|MARKET|CANAL|SWAMP_MARSH|DAM)$/"}, +"258.enabled":!0,"258.title":"Plaats moet een punt zijn","258.problem":"Plaats is ingesteld als een gebied, maar zou een punt moeten zijn","258.solution":"Converteer de plaats naar een punt","258.solutionLink":"P:Netherlands/Place_categories","258.params":{"regexp.title":"{string} regular expression to match categories that should be a point",regexp:"/^(GARAGE_AUTOMOTIVE_SHOP|CAR_WASH|CHARGING_STATION|SUBWAY_STATION|TAXI_STATION|REST_AREAS|GOVERNMENT|LIBRARY|ORGANIZATION_OR_ASSOCIATION|DOCTOR_CLINIC|OFFICES|POST_OFFICE|RELIGIOUS_CENTER|KINDERGARDEN|EMBASSY_CONSULATE|INFORMATION_POINT|EMERGENCY_SHELTER|TRASH_AND_RECYCLING_FACILITIES|ARTS_AND_CRAFTS|BANK_FINANCIAL|SPORTING_GOODS|BOOKSTORE|PHOTOGRAPHY|CAR_DEALERSHIP|FASHION_AND_CLOTHING|CONVENIENCE_STORE|PERSONAL_CARE|DEPARTMENT_STORE|PHARMACY|ELECTRONICS|FLOWERS|GIFTS|GYM_FITNESS|SWIMMING_POOL|HARDWARE_STORE|SUPERMARKET_GROCERY|JEWELRY|LAUNDRY_DRY_CLEAN|MUSIC_STORE|PET_STORE_VETERINARIAN_SERVICES|TOY_STORE|TRAVEL_AGENCY|ATM|CURRENCY_EXCHANGE|CAR_RENTAL|TELECOM|RESTAURANT|BAKERY|DESSERT|CAFE|FAST_FOOD|FOOD_COURT|BAR|ICE_CREAM|ART_GALLERY|CLUB|TOURIST_ATTRACTION_HISTORIC_SITE|MOVIE_THEATER|MUSEUM|MUSIC_VENUE|PERFORMING_ARTS_VENUE|GAME_CLUB|THEATER|HOTEL|HOSTEL|COTTAGE_CABIN|BED_AND_BREAKFAST|PLAYGROUND|PLAZA|PROMENADE|POOL|SCENIC_LOOKOUT_VIEWPOINT)$/"}, +"259.enabled":!0,"259.title":"Geen lock op plaats","259.problem":"Volgens de categorie zou de plaats minimaal gelockt moeten zijn op Lvl ${n}","259.solution":"Lock de plaats","259.solutionLink":"P:Netherlands/Place_categories","259.params":{"n.title":"{number} minimum lock level",n:2,"regexp.title":"{string} regular expression to match categories that should be locked to {number}",regexp:"/^(PARKING_LOT|CHARGING_STATION)$/"},"260.enabled":!0,"260.title":"Geen lock op plaats","260.problem":"Volgens de categorie zou de plaats minimaal gelockt moeten zijn op Lvl ${n}", +"260.solution":"Lock de plaats","260.solutionLink":"P:Netherlands/Place_categories","260.params":{"n.title":"{number} minimum lock level",n:3,"regexp.title":"{string} regular expression to match categories that should be locked to {number}",regexp:"/(GAS_STATION|AIRPORT)/"},"270.title":"Geen type ingesteld voor parkeerplaats","270.problem":"Het type is niet ingesteld voor de parkeerplaats","270.solution":"Stel het type in op Openbaar, Beperkt of Privé","271.title":"Geen kosten ingesteld voor parkeerplaats", +"271.problem":"De kosten voor de parkeerplaats is niet ingesteld","271.solution":"Stel de kosten in op Gratis, Laag, Gemiddeld of Hoog","272.title":"Geen betaalmogelijkheden ingesteld voor parkeerplaats","272.problem":"De betaalmogelijkheden zijn niet ingesteld voor de parkeerplaats","272.solution":"Stel de juiste betaalmogelijkheden in","273.title":"Geen niveau ingesteld voor parkeerplaats","273.problem":"De hoogte is niet ingesteld voor de parkeerplaats","273.solution":"Stel de juiste hoogte in voor de parkeerplaats", +"274.title":"Geen in-/uitgang punt ingesteld voor parkeerplaats","274.problem":"De parkeerplaats heeft geen in-/uitgang ingesteld","274.solution":"Stel de juiste in-/uitgang in voor de parkeerplaats","275.title":"Geen merk in naam van benzinepomp","275.problem":"Het merk van de benzinepomp komt niet voor in de naam","275.solution":"Voeg het merk toe in de naam van de benzinepomp","275.solutionLink":"P:Netherlands/Gas_Station_Place"},MY:{".codeISO":"MY",".country":"Malaysia","69.enabled":!0,"73.enabled":!0, +"150.enabled":!0,"150.params":{n:2},"151.enabled":!0,"151.params":{n:2},"152.enabled":!0,"152.params":{n:2}},MX:{".codeISO":"MX",".country":"Mexico",".updated":"2018-09-19",".author":"carloslaso",".fallbackCode":"ES",".lng":["ES-419"],"city.consider":"Considera el siguiente nombre de ciudad:","city.1":"El nombre de la ciudad es muy corto","city.2":"Poner la Abreviación con palabra completa","city.3":"Escribir el nombre corto","city.4":"Escribir el Nombre de Ciudad","city.5":"Corregir Mayúsculas / Minúsculas", +"city.6":"Checar el orden de las palabras","city.7":"Checar Abreviación","city.8r":"Quitar nombre de País","city.9":"Verificar nombre de País","city.10r":"Quitar palabra","city.12":"Existen nombres iguales con distinto número de Identificador de Ciudad","city.13a":"Añadir un espacio","city.13r":"Quitar un espacio","city.14":"Verificar el número","props.skipped.problem":"El segmento ha sido modificado después del 01-05-2014 y bloqueado por Ud., por lo que el Validator no lo verificó","err.regexp":"Error analizando la opción #${n}:", +"props.disabled":"WME Validator está desactivado","props.limit.title":"Demasiados problemas reportados","props.limit.problem":"Hay demasiados problemas reportados por lo que algunos de ellos pueden no mostrarse","props.limit.solution":"Deje de seleccionar el segmento y pare el proceso de análisis. Luego presione el botón con la '✘' de color rojo (Borrar Reporte)","props.reports":"Reportes","report.save":"Almacena el reporte","report.list.andUp":"y más","report.list.reportOnly":"Sólo en el reporte", +"report.list.forCountries":"Para Países:","report.list.params":"Parámetros pare configurar en el Paquete de localización:","report.list.params.set":"Configuración Actual para ${country}:","report.list.enabled":"Hay ${n} parámetros activados para","report.list.disabled":"Hay ${n} parámetros desactivados para","report.list.total":"Hay ${n} parámetros disponibles","report.list.title":"Complete la lista de parámetros para","report.list.checks":"Ajustes->Acerca de->Parámetros disponibles","report.segments":"Segmentos totales revisados:", +"report.reported":"Reportado(s)","report.warnings":"avisos","report.link.forum":"foro","report.link.other":"enlace","report.title":"Reporte del WME Validator","report.source":"Fuente del reporte:","report.filter.streets":"Calles y vías de Servicio","report.filter.other":"Otras vías transitables y no transitables","report.filter.noneditable":"segmentos no editables","report.filter.excluded":"están excluidas de este reporte","report.search.updated.since":"actualizado desde el","report.search.title":"Buscar:", +"report.search.included":"están incluidos en el reporte.","report.beta.warning":"Advertencia del WME Beta!","report.beta.text":"Este reporte está generado en el WME Beta con permalinks beta.","report.beta.share":"Por favor, no comparta estos permalinks!","report.size.warning":"Advertencia!
Este reporte tiene ${n} caracteres por lo que no cabrá en un solo mensaje privado o del foro.\n
Por favor añadamás filtros para reducir el tamaño del reporte.","report.note.limit":"* Nota: Existieron muchas irregularidades en el reporte, por lo que algunas no están tomadas en cuenta en el resumen.", +"report.forum":"Para motivar mayor desarrollo, por favor deje su comentario en el","report.forum.link":"Hilo del foro de Waze.","report.thanks":"Gracias por usar el WME Validator!","msg.limit.segments":"Existen demasiados segmentos.\n\nPulse'Show report'para revisar el reporte, luego\n","msg.limit.segments.continue":"pulse '▶' (Play) para continuar.","msg.limit.segments.clear":"pulse '✘' (Clear) para borrar el reporte.","msg.pan.text":"Mueva el mapa para validarlo","msg.zoomout.text":"Aleje el zoom para comenzar el WME Validator", +"msg.click.text":"Pulse '▶' (Play) para validar el área visible del mapa","msg.autopaused":"paro automático","msg.autopaused.text":"¡Paro automático! Pulse '▶' (Play) para continuar.","msg.finished.text":"Pulse 'Show report' para revisar los problemas en el mapa","msg.finished.tip":"Pulse '✉' (Share) button para hacer un reporte en el\nforo o en un mensaje privado","msg.noissues.tip":"Trata de quitar algunas opciones de filtrado o inicia el WME Validator sobre otra área del mapa","msg.scanning.text":"¡Analizando! Terminando en ~ ${n} min", +"msg.scanning.text.soon":"¡Analizando! Terminando en un minuto!","msg.scanning.tip":"Pulse el botón de 'Pause' para pausar o '■' (Stop) para detener el análisis","msg.starting.text":"¡Comenzando! Las capas se han deshabilitado para analizar más rápido!","msg.starting.tip":"Utilice el botón'Pause' para pausar o el botón '■' para parar","msg.paused.text":"¡En Pausa! pulse el botón de '▶' (Play) para continuar.","msg.paused.tip":"Para ver el reporte pulse el botón de 'Show report' (si está disponible) ", +"msg.continuing.tip":"El WME Validator continuará desde la localización donde fue pausado","msg.settings.text":"Pulse 'Back' para regresar a la vista principal","msg.settings.tip":"¡Pulse el botón de 'Reset defaults' para resetear todos los ajustes en un click!","msg.reset.text":"Todas las opciones y ajustes han sido devueltos a su estado original","msg.reset.tip":"Pulse el botón de 'Back' para regresar a la vista principal","msg.textarea.pack":"Este es un Script alojado enGreasemonkey/Tampermonkey. Puedes copiar y pegar el texto en un nuevo archivo .user.js
o pegarlo directamente en Greasemonkey/Tampermonkey", +"msg.textarea":"Por favor copia el texto de abajo y pegalo en el foro o en un mensaje privado","noaccess.text":"Lo sentimos,
No puedes usar el WME Validator aquí.
Por favor revisa este hilo en el foro
para mayor información.","noaccess.tip":"¡Por favor revisa el hilo del foro para mayor información","tab.switch.tip.on":"Para encender el resaltado pulsa (Alt+V)","tab.switch.tip.off":"Para apagar el resaltado pulsa (Alt+V)", +"tab.filter.tip":"Opciones para filtrar el reporte y los segmentos resaltados","tab.search.text":"búsqueda","tab.search.tip":"Opciones avanzadas de filtrado para inculír segmentos específicos solamente","tab.help.tip":"¿Necesita ayuda?","filter.noneditables.text":"Excluir los segmentos no editables","filter.noneditables.tip":"No reportar los segmentos bloqueados o\nsegmentos fuera de mis áreas de edción","filter.duplicates.text":"No incluir segmentos duplicados","filter.duplicates.tip":"No mostrar el mismo segmento en distintas\npartes del reporte\n* Nota: Esta opción NO afecta el resaltado", +"filter.streets.text":"No incluir Calles y Vías de Servicio","filter.other.text":"No incluir Otras vías conducibles y no conducibles","filter.other.tip":"No reportar Vías de Tierra, Vías de estacionamiento, Vías privadas ni \nsegmentos no conducibles","filter.notes.text":"No incluir notas","filter.notes.tip":"Reportar solamente advertencias y errores","search.youredits.text":"Incluir sólo mis ediciones","search.youredits.tip":"Incluir sólo los segmentos editados por mí", +"search.updatedby.text":"Actualizados por*:","search.updatedby.tip":"Incluir solamente los segmentos actualizados por el editor especificado\n* Nota: Esta opción está disponible sólo para Country Managers\nEste campo soporta:\n - Lists: Mías, de otro editor\n - wildcards: pal*bra\n - negation: !me *\n* Nota: puedes usar 'me' para encontrar coincidencias de ti mismo","search.updatedsince.tip":"Incluir segmentos editados desde el día epecificado\nFormato de fecha de Firefox: AAAA-MM-DD","search.city.tip":"Incluir sólo segmentos con el Nombre de ciudad especificado\nEste campo soporta:\n - lists: Paris, Meudon\n - wildcards: Greater * Area\n - negation: !Paris, *", +"search.checks.tip":"Incluir sólo segmentos reportados como se especifica\nEste campo puede buscar:\n - severities: errores\n - check names: Nuevo Camino\n - check IDs: 200\nEste campo soporta:\n - listas: 36, 37\n - comodines: *rotonda*\n - negación: !unconfirmed*, *","search.checks.example":"Ejempo: revertir*","help.text":'Tópicos de Ayuda:
F.A.Q.
Haz tu pregunta en el foro
Cómo ajustar Validator para tu País
Acerca de"Puede estar incorrecto el Nombre de Ciudad"', +"help.tip":"Abrir en una nueva pestaña en el navegador","button.scan.tip":"Comenzar escaneando el área actual del mapa\n* Nota: Esto puede tomar algunos minutos","button.scan.tip.NA":"Aleje para comenzar a escanear el área actual del mapa","button.stop.tip":"Parar escaneo y regresar a la posición de inicio","button.clear.tip":"Borrar reporte y caché de segmento","button.clear.tip.red":"Existen demasiados segmentos reportados:\n 1. Pulse 'Muestre reporte' para generar el reporte.\n 2. Pulse este boton para borrar el reporte y comenzar de nuevo.", +"button.report.text":"Muestra reporte","button.report.tip":"Aplicar el filtro y generar un reporte en HTML en una nueva pestaña","button.BBreport.tip":"Compartir el reporte en el Foro de Waze o en un Mensaje Privado","tab.custom.text":"Ajustes predefinidos","tab.custom.tip":"Ajustes predefinidos por el usuario","tab.scanner.tip":"Ajustes de escaneado del mapa","tab.about.tip":"Acerca del WME Validator","scanner.sounds.NA":"Su navegador no soporta AudioContext","scanner.highlight.text":"Resaltar problemas en el mapa", +"scanner.highlight.tip":"Resaltar problemas reportados en el mapa","scanner.slow.text":'Habilitar"chequeos" lentos',"scanner.slow.tip":"Habilita análisis profundo del mapa\n* Nota: esta opción puede hacer lento el proceso de escaneo","scanner.ext.text":"Reportar resaltados externos","scanner.ext.tip":"Reportar segmentos resaltados por WME Toolbox o WME Color Highlights","advanced.atbottom.text":"Hasta abajo","advanced.atbottom.tip":"Poner WME Validator en la parte de abajo de la página","custom.template.text":"Planilla Propia", +"custom.template.tip":"Checar con planilla expandible definida por el usuario.\n\nPuedes usar las siguientes variables de expansión:\nDirección:\n${country}, ${state}, ${city}, ${street},\n${altCity[index or delimeter]}, ${altStreet[index or delimeter]}\nPropiedades de segmentos:\n${type}, ${typeRank}, ${toll}, ${direction}, ${elevation}, ${lock},\n${length}, ${ID}\nAyudantes:\n${drivable}, ${roundabout}, ${hasHNs},\n${Uturn}, ${deadEnd}, ${softTurns},\n${deadEndA}, ${partialA},\n${deadEndB}, ${partialB}\nConnectivity:\n${segmentsA}, ${inA}, ${outA}, ${UturnA},\n${segmentsB}, ${inB}, ${outB}, ${UturnB}", +"about.tip":"Abrir liga en una pestaña nueva","button.reset.text":"Regresar a los ajustes originales","button.reset.tip":"Revertir las opciones de filtrado y ajustes a los originales","button.list.text":"Revisiones disponibles...","button.list.tip":"Mostrar una lista de revisiones disponibles en WME Validator","button.wizard.tip":"Crear un paquete de localización","button.back.text":"Regresar","button.back.tip":"Cerrar ajustes y regresar a la vista principal","1.problem":"Los números de salida de los segmentos de la rotonda no son consecutivos", +"2.problem":"El segmento tiene nodos geométricos innecesarios","2.solution":'Simplificar la geometría del segmento pasando el puntero encima del segmento y presionando la letra "d"',"3.problem":"El segmento está resaltado por el WME Toolbox. No representa un problema","4.problem":"El segmento está resaltado por el WME Toolbox. No representa un problema","5.problem":"El segmento está resaltado por el WME Toolbox. No representa un problema","6.problem":"El segmento está resaltado por el WME Toolbox. No representa un problema", +"7.problem":"El segmento está resaltado por el WME Toolbox. No representa un problema","8.title":"WME Toolbox: Numeración de Casas","8.problem":"El segmento está resaltado por el WME Toolbox. No representa un problema","9.problem":"El segmento está resaltado por el WME Toolbox. No representa un problema","13.title":"WME Color Highlights: Bloqueo de un editor","13.problem":"El segmento está resaltado por el WME Color Highlights. No representa un problema","14.title":"WME Color Highlights: Vía de peaje / Vía de un sólo sentido", +"14.problem":"El segmento está resaltado por el WME Color Highlights. No representa un problema","15.title":"WME Color Highlights: Recientemente editado","15.problem":"El segmento está resaltado por elWME Color Highlights. No representa un problema","16.title":"WME Color Highlights: Rango de v","16.problem":"El segmento está resaltado por el WME Color Highlights. No representa un problema","17.title":"WME Color Highlights: Sin Ciudad","17.problem":"El segmento está resaltado por el WME Color Highlights. No representa un problema", +"18.title":"WME Color Highlights: Restricción de tiempo / Tipo de camino resaltado","18.problem":"El segmento está resaltado por el WME Color Highlights. No representa un problema","19.title":"WME Color Highlights: Sin nombre","19.problem":"El segmento está resaltado por el WME Color Highlights. No representa un problema","20.title":"WME Color Highlights: Filtrar por Ciudad","20.problem":"El segmento está resaltado por el WME Color Highlights. No representa un problema","21.title":"WME Color Highlights: Filtrar por nombre alterno de Ciudad (alt. city)", +"21.problem":"El segmento está resaltado por el WME Color Highlights. No representa un problema","22.title":"WME Color Highlights: Filtrar por editor","22.problem":"El segmento está resaltado por el WME Color Highlights. No representa un problema","23.title":"Camino sin confirmar","23.problem":"Cada segmento debe contener como mínimo Información de Estado y País","23.solution":"Actualice el camino actualizando sus datos","24.enabled":!1,"24.title":"Puede contener un nombre de ciudad incorrecto (sólo disponible en el reporte)", +"24.problem":"El segmento puede contener el nombre de ciudad incorrecto","24.solution":"Considere el nombre de ciudad Sugerido y use esta forma para renombrar la ciudad","25.title":"Sentido desconocido en un camino conducible","25.problem":"El sentido desconocido del segmento no prevendrá el ruteo por el mismo","25.solution":"Coloque la dirección del segmento","28.title":"Nombre de calle en una Rampa de doble sentido","28.problem":"Si una rampa no tiene nombre, se aplicará el nombre del siguiente camino que lo tenga", +"28.solution":"En las propiedades de dirección, active la casilla de 'Ninguno' seguida del nombre de calle y entonces pulse 'Aplicar'","29.problem":"En Waze no se nombran los segmentos de las rotondas","29.solution":"En las propiedades de dirección, seleccione la opción 'Ninguno' en seguida del nombre de calle, pulse 'Aplicar' y entonces añada un 'lugar' de tipo 'distribuidor vial' y escriba el nombre de la glorieta","34.title":"Vaciar el nombre alterno de calle","34.problem":"El nombre alterno de calle está vacío", +"34.solution":"Quitar los nombres alternos de calle vacíos","35.title":"Camino conducible no terminado","35.problem":"Waze no otorgará rutas por segmentos sin terminar","35.solution":"Mueva un poco el segmento para que el nodo se añada de manera automática","38.title":"Restricción de segmento vencida (no grave)","38.problem":"El segmento tiene una restricción que ya venció","38.solution":"Pulsar 'Editar restricciones' y borrar las restricciones vencidas","39.title":"Restricción de giro vencida (no grave)", +"39.problem":"El segmento tiene un giro con restricció vencida","39.solution":"Pulsar la figura del reloj en seguida de la flecha amarilla y borre las restricciones vencidas","41.enabled":!1,"41.title":"Conectividad reversible en un segmento conducible","41.problem":"Existe un giro que va contra la dirección del segmento en el nodo A","41.solution":"Haga el segmento de 'doble sentido', restrinja todos los giros en el nodo A y luego haga el segmento de 'Un sólo sentido (A-B) de nuevo","42.enabled":!1, +"42.title":"Nodo B: Conectividad reversible en segmento conducible","42.problem":"Existe un giro que va en contra de la dirección del segmento en el nodo B","42.solution":"Haga el segmento de 'doble sentido', restrinja todos los giros en el nodo A y luego haga el segmento de 'Un sólo sentido (A-B) de nuevo","43.problem":"El segmento está conectado en sí mismo","43.solution":"Divida el segmento en tres","46.title":"Nodo A: No existe conectividad hacia adentro del camino conducible","46.problem":"El segmento conducible no privado no tiene ningún giro permitido en el nodo A", +"46.solution":"Seleccione un segmento adyacente y active por lo menos un giro al segmento en el nodo A","47.title":"Nodo B: No existe conectividad hacia adentro del camino conducible (no grave) ","47.problem":"El segmento conducible no privado no tiene ningún giro permitido en el nodo B","47.solution":"Seleccione un segmento adyacente y active por lo menos un giro al segmento en el nodo B","48.title":"Segmento de glorieta de doble sentido","48.problem":"El segmento de la glorieta es bidireccional", +"48.solution":"Rehacer la glorieta","78.title":"El segmento que creó comienza y termina en un mismo segmento","78.problem":"Los dos segmentos comparten los mismos puntos finales","78.solution":"Parta el segmento. Puede también remover uno de ellos si son idénticos","87.title":"Múltiples segmentos de salida de la glorieta en el nodo A","87.problem":"El nodo A en la glorieta tiene más de un segmento de salida conectado","87.solution":"Re hacer la glorieta","99.title":"Vuelta en U habilitada en segmento de entrada a la glorieta (no grave)", +"99.problem":"El segmento de entrada a la glorieta tiene una vuelta en U habilitada","99.solution":"Deshabilite la vuelta en U","101.title":"Camino Cerrado (Sólo disponible en el reporte)","101.problem":"El segmento está marcado como Cerrado","101.solution":"Si la construcción ya terminó, reactive la conectividad del segmento y remueva el sufijo","102.title":"No existe conectividad hacia afuera del segmento en el nodo A (no grave)","102.problem":"El segmento no tiene habilitado ningún giro hacia afuera en el nodo A", +"102.solution":"Permita por lo menos un giro hacia el segmento en el nodo A","103.title":"No existe conectividad hacia afuera en el nodo B (no grave))","103.problem":"El segmento no tiene habilitado ningún giro hacia afuera en el nodo B","103.solution":"Permita por lo menos un giro desde el segmento en el nodo B","104.enabled":!1,"104.title":"Segmento tipo ferrocarril usado para comentarios","104.problem":"El segmentotipo ferrocarril etá siendo usado probablemente para comentarios del mapa","104.solution":"Remover los comentarios ya que las vías férreas se verán en la aplicación", +"107.title":"No hay conexion del Nodo A (no grave)","107.problem":"El Nodo A del segmento está a dentro del rango de 5m de otro segmento pero no está conectado por una intersección","107.solution":"Arrastre el nodo A al segmento más cercano de modo que se junten, o muévalo un poco más lejos.","108.title":"No hay conexión en el nodo B (no grave)","108.problem":"El nodo B del segmento está dentro del rango de 5m de otro segmento pero no está conectado por una intersección","108.solution":"Arrastre el nodo B al segmento más cercano de modo que lo toque o muévalo un poco más lejos", +"109.problem":"El segmento es de menos de ${n}m de largo, por lo que es difícil verlo en el mapa y puede causar problemas de ruteo","109.solution":"Aumente el largo del segmento, remuévalo o llévelo al nodo del segmento adyacente","112.title":"Nombre de rampa demasiado largo","112.problem":"El nombre de la rampa tiene más de ${n} letras","112.solution":"Acorte el nombre de la rampa","116.solution":"Corrija la elevación","117.title":"Marcador de Zona de Construcción obsoleto","117.problem":"El segmento está marcado con un sufijo de Zona de Construcción obsoleto", +"117.solution":"Cambie el CONST ZN a (cerrado)","118.title":"En el Nodo A: Segmentos encimados (no grave)","118.problem":"El segmento está encimado con el segmento adyacente en el nodo A","118.solution":"Abra los segmentos a 2°, borre el punto geométrico o el segmento duplicado en el nodo A","119.title":"Nodo B: Segmentos encimados","119.problem":"El segmento está encimado con el segmento adyacente en el nodoB","119.solution":"Abra los segmentos a 2°, borre el punto geométrico o el segmento duplicado en el nodo B", +"120.title":"Nodo A: Giro demasiado cerrado (no grave)","120.problem":"El segmento conducible tiene un ángulo de giro muy cerrado en el nodo A","120.solution":"Prohíba la vuelta cerrada en el nodo A o abra los segmentos a 30°","121.title":"Nodo B: Giro demasiado cerrado (no grave)","121.problem":"El segmento conducible tiene un ángulo de giro muy cerrado en el nodo B","121.solution":"Prohíba la vuelta cerrada en el nodo B o abra los segmentos a 30°","128.title":"Revisión definida por el usuario (verde)", +"128.problem":"Algunas propiedades del segmento van en contra de la expresión regular definida por el usuario (ver Settings→Custom)","128.solution":"Resuelva el problema","129.title":"Revisión definida por el usuario (azúl)","129.problem":"Algunas propiedades del segmento van en contra de la expresión regular definida por el usuario (ver Settings→Custom)","129.solution":"Resuelva el problema","150.enabled":!1,"151.enabled":!1,"152.enabled":!1,"172.title":"Espacios innecesarios en el nombre de calle", +"172.solution":"Eliminar espacios innecesarios del nombre de la calle","173.title":"No hay espacio antes/después de la abreviatura en el nombre de calle","173.problem":"No hay espacio antes de ('1943r.') o después ('Sn.Juan') de una abreviatura en el nombre de calle","173.solution":"Añadir un espacio antes/después de la abreviatura","175.title":"Nombre de calle vacío","175.problem":"El nombre de la calle tiene solamente espacios o un punto","175.solution":"En las propiedades de la dirección, elija la casilla 'Ninguno' enseguida de 'nombre' o escriba el nombre de la Calle. Presione 'Aplicar'", +"190.enabled":!1,"190.title":"Nombre de ciudad en minúsculas","190.solution":"Use esta forma para renombrar la ciudad","192.enabled":!1,"192.title":"Espacios innecesarios en el nombre de ciudad","192.solution":"Use esta forma para renombrar la ciudad","193.title":"No hay espacios antes/después de la abreviatura de la Ciudad","193.problem":"No hay espacio antes ('1943r.') o después ('Sn.Juan') de una abreviatura en el nombre de ciudad","193.solution":"Use esta forma para renombrar la ciudad","200.enabled":!1, +"200.title":"En el nodo A: Giro no confirmado en un camino menor","200.problem":"El segmento del camino menor tiene un giro no confirmado (suave) en el nodo A","200.solution":"Pulse en la flecha de giro indicada con un signo de interrogación morado para confirmarla. Nota: Puede ser necesario hacer el segmento de doble sentido para poder ver dichos giros","201.enabled":!1,"201.title":"En el nodo A: Giro no confirmado en una vía primaria","201.problem":"El segmento de vía primaria tiene un giro no confirmado (suave) en el nodo A", +"201.solution":"Pulse en la flecha de giro indicada con un signo de interrogación morado para confirmarla. Nota: Puede ser necesario hacer el segmento de doble sentido para poder ver dichos giros","202.enabled":!1},LU:{".codeISO":"LU",".country":"Luxembourg",".fallbackCode":"BE","160.enabled":!1},IT:{".codeISO":"IT",".country":"Italy","57.enabled":!0,"59.enabled":!0,"90.enabled":!0,"95.enabled":!0,"150.enabled":!0,"151.enabled":!0,"151.params":{n:5},"152.enabled":!0,"152.params":{n:4},"163.enabled":!0, +"163.params":{titleEN:"Ramp name starts with an 'A'",problemEN:"The Ramp name starts with an 'A'",solutionEN:"Replace 'A' with 'Dir.'",regexp:"/^A /i"},"170.enabled":!0},IL:{".codeISO":"IL",".country":"Israel",".author":"gad_m",".updated":"2014-06-30",".lng":"HE",".dir":"rtl","city.consider":"בדוק את שם העיר:","city.1":"שם העיר קצר מדי","city.2":"אל תשתמש בשם מקוצר","city.3":"השלם את השם הקצר","city.4":"השלם את שם העיר","city.5":"תקן אותיות רישיות","city.6":"בדוק סדר המילה","city.7":"בדוק סימני קיצור", +"city.8a":"הוסף מדינה","city.8r":"מחק מדינה","city.9":"בדוק מדינה","city.10a":"הוסף מילה","city.10r":"הורד מילה","city.11":"הוסף קוד מדינה","city.12":"שמות זהים, אבל קוד זיהוי עיר שונה","city.13a":"הוסף רווח","city.13r":"הורד רווח","city.14":"בדוק את המספר","props.skipped.title":"המקטע לא נבדק","props.skipped.problem":"הקטע נערך לאחר 2014/5/1 ונעול לעריכה עבורך, אז Validator לא יכול לבדוק אותו","err.regexp":"אירעה שגיאה עבור בדיקה #${n}:","props.disabled":"התוסף אינו מופעל","props.limit.title":"יותר מדי בעיות דווחו", +"props.limit.problem":"ישנם בעיות רבות מדי שדווחו, כך שחלק מהם אולי לא יראו","props.limit.solution":"בטל את הבחירה של המקטע והפסק את תהליך סריקה. לאחר מכן לחץ על הכפתור האדום '✘' (מחק הדו\"ח)","props.reports":'בעיות שנמצאו ע"י ',"props.noneditable":"אינך יכול לערוך מקטע זה","report.save":'שמור את הדו"ח',"report.list.andUp":"ולמעלה","report.list.severity":"חומרה","report.list.reportOnly":"רק בדיווח","report.list.forEditors":"לרמת עורכים","report.list.forCountries":"לארצות","report.list.forStates":"למדינות", +"report.list.forCities":"לערים","report.list.params":"משתנים להגדרת חבילת לוקליזציה","report.list.params.set":"תצורה נוכחית עבור ${country}:","report.list.enabled":"${n} בדיקות מאופשרות עבור","report.list.disabled":"${n} בדיקות כבויות עבור","report.list.total":"יש ${n} בדיקות זמינות","report.list.title":"רשימה מלאה של בדיקות עבור","report.list.see":"ראה","report.list.checks":"הגדרות->אודות->בדיקות זמינות","report.list.fallback":"כללי עתודה של תמיכת הלוקליזציה:","report.and":"וגם","report.segments":'סה"כ מקטעים שנבדקו:', +"report.customs":"בדיקות מותאמות אישית תואמים (#1/#2):","report.reported":"דווחו","report.errors":"טעויות","report.warnings":"אזהרות","report.notes":"הערות","report.contents":"תוכן:","report.summary":"סיכום","report.title":'דו"ח WME Validator',"report.share":"לשתף","report.generated.by":'נוצר ע"י',"report.generated.on":"ב","report.source":'מקור הדו"ח:',"report.filter.duplicate":"מקטעים כפולים","report.filter.streets":"רחובות וכבישי שרות","report.filter.other":"אחרים - מותרים ואסורים לנהיגה","report.filter.noneditable":"מקטעים שלא ניתנים לעריכה", +"report.filter.notes":"הערות","report.filter.title":"מסננים:","report.filter.excluded":'אינם נכללים בדו"ח זה.',"report.search.updated.by":'עודכן ע"י',"report.search.updated.since":"עודכן ב","report.search.city":"מ","report.search.reported":"דווח כ","report.search.title":"חפש:","report.search.only":"מקטעים בלבד","report.search.included":'נכללים בדו"ח זה.',"report.beta.warning":"אזהרות עורך בטא:","report.beta.text":'דו"ח זה חולל ע"י עורך גירסת בטא וכולל קישורים קבועים לבטא.',"report.beta.share":"אנא אל תשתף את הפרמלינקים האלה!", +"report.size.warning":'אזהרה!
אורך הדו"ח הוא ${n} תוויםהוא לא מתאים להכנס להודעה פרטית אחת בפורום\n
אנא הוסףמסננים נוספים על מנת להקטין את גודל הדו"ח',"report.note.limit":"* הערה: היו בעיות רבות מדי שדווחו, כך שחלק מהם אינם נספר בסיכום.","report.forum":"לעידוד פיתוח נוסף, אנא השאר משוב ב","report.thanks":"תודה שהשתמשת ב WME Validator!","msg.limit.segments":"יש יותר מדי מקטעים.\n\nלחץ 'צפה בדו\"ח' בכדי לצפות בדו\"ח, אח\"כ לחץ '▶' כדי להמשיך.","msg.limit.segments.continue":"לחץ '▶' (בצע) כדי להמשיך", +"msg.limit.segments.clear":"לחץ '✘' (מחק) כדי למחוק את הדו\"ח.","msg.pan.text":"הזז מעט את המפה כדי להתחיל בבדיקה","msg.zoomout.text":'הקטן את התצוגה כדי להתחיל את יצירת הדו"ח ע"י WME Validator',"msg.click.text":"לניתוח שטח המפה הגלוי לחץ על '▶' ","msg.autopaused":"עצירה אוטומטית","msg.autopaused.text":"עצירה אוטומטית! לחץ על '▶' כדי להמשיך","msg.autopaused.tip":"כלי זה עוצר אוטומטית כשמזיזים את המפה או כשמשנים את גודל החלון","msg.finished.text":"לחץ 'צפה בדו\"ח' כדי לצפות בבעיות במפה","msg.finished.tip":"לחץ על '✉' (שתף) כדי לדווח בפורום\nאו כהודעה פרטית", +"msg.noissues.text":"הסריקה הסתיימה! לא נמצאו בעיות!","msg.noissues.tip":"נסה לכבות חלק מהמסננים או התחל מחדש את הסריקה","msg.scanning.text":"סורק! יסיים בעוד כ ${n} דקות לערך","msg.scanning.text.soon":"סורק! יסיים בעוד כדקה!","msg.scanning.tip":"לחץ על 'השהה' כדי לעצור או על '■' כדי לעצור","msg.starting.text":'מכין את הדו"ח! השכבות מוסתרות כדי לסרוק מהר יותר',"msg.starting.tip":"לחץ על 'השהה' או על '■' כדי לעצור","msg.paused.text":"בהשהייה! לחץ '▶' כדי להמשיך","msg.paused.tip":"לצפיה בדו\"ח לחץ על 'צפה בדו\"ח' (אם זמין)", +"msg.continuing.text":"ממשיך!","msg.continuing.tip":"WME Validator ימשיך מהמקום בו הפסיק","msg.settings.text":"לחץ 'חזרה' לחזרה למסך הראשי","msg.settings.tip":"לחץ 'אפס לברירת מחדל' כדי לאפס את כל ההגדרות","msg.reset.text":"כל אפשרויות הסינון וההגדרות אופסו לברירת המחדל שלהם","msg.reset.tip":"לחץ על 'חזרה' כדי לחזור לתצוגה הראשית","msg.textarea.pack":"אנא העתק את הטקסט שלהלן ולאחר מכן הדבק אותו בקובץ .user.js חדש","msg.textarea":"אנא העתק את הטקסט שלהלן ולאחר מכן הדבק אותו בשרשור בפורום או כהודעה פרטית", +"noaccess.text":'מצטער,
אינך יכול להשתמש ב WME Validator כאן.
אנא בדוק את השרשור בפורום
למידע נוסף.',"noaccess.tip":"אנא בדוק את השרשור בפורום למידע נוסף!","tab.switch.tip.on":"לחץ להפעלה (Alt+V)","tab.switch.tip.off":"לחץ לכיבוי (Alt+V)","tab.filter.text":"מסננים","tab.filter.tip":'אפשרויות סינון הדו"ח והדגשות בעורך המפה',"tab.search.text":"חיפוש","tab.search.tip":"אפשרויות סינון מתקדמות כדי לכלול מקטעים ספציפיים בלבד", +"tab.help.text":"עזרה","tab.help.tip":"צריך עזרה?","filter.noneditables.text":"הסתר מקטעים שאינם ניתנים לעריכה","filter.noneditables.tip":"אל תדווח על מקטעים נעולים או\nמקטעים מחוץ לאיזור העריכה שלך","filter.duplicates.text":"הסתר כפילויות במקטעים","filter.duplicates.tip":'אל תראה את אותו המקטע בחלקים\nשונים של הדו"ח\n* שים לב: אפשרות זו אינה משפיעה על ההדגשות',"filter.streets.text":"הסתר רחוב וכביש שרות","filter.streets.tip":'אל תכלול בדו"ח מקטעים מסוג רחוב וכביש שרות', +"filter.other.text":"הסתר אחרים שמותרים לנהיגה וכל האסורים לנהיגה","filter.other.tip":'אל תכלול בדו"ח מקטעים מסוג דרך עפר, מגרש חניה, כביש פרטי\nומקטעים שאסורים לנהיגה',"filter.notes.text":"הסתר הערות","filter.notes.tip":"דווח רק על אזהרות ושגיאות","search.youredits.text":"כלול רק עריכות שלך","search.youredits.tip":"כלול רק מקטעים שערכת בעצמך","search.updatedby.text":"עודכן על ידי:","search.updatedby.tip":'כלול סיגמנטים שנערכו ע"י עורך מסויים\nשדה זה תומך ב:\n- רשימות: me, otherEditorName\n- תווים חופשיים: world*\n- שלילה: !me, *\nשים לב: ניתן להשתמש ב me כהתאמה לעצמך', +"search.updatedby.example":"דוגמה: אני","search.updatedsince.text":"עודכן ב:","search.updatedsince.tip":"כלול מקטעים שנערכו מאז תאריך מסויים\nפורמט תאריך: YYYY-MM-DD","search.updatedsince.example":"YYYY-MM-DD","search.city.text":"שם העיר:","search.city.tip":"כלול מקטעים בעלי שם עיר מסויימת\nשדה זה תומך ב:\nרשימות: ירושלים, אשקלון\nתווים כלליים: תל *\nשלילה: !ירושלים, *","search.city.example":"דוגמה: !ירושלים, *","search.checks.text":"דווח כ:","search.checks.tip":"כלול רק מקטעים שדווחו לגביהם:\nשדה זה תואם:\n- חומרת הבעיה: errors\n- שמות קבועים: New road\n- מספרים מזהים: 40\nשדה זה תומך ב:\n- רשימות: 36,37\n- תווים כלליים: *roundabout*\n- שלילה: !soft turns*, *\n", +"search.checks.example":"דוגמה: *הפוך*","help.text":'נושאי עזרה:
שאלות נפוצות
שאל את שאלתך בפורום
כיצד להתאים את ה Validator למדינה שלך
אודות "יתכן ששם העיר שגוי"', +"help.tip":"פתח בכרטיסיית דפדפן חדשה","button.scan.tip":"התחל לסרוק את המפה הנוכחית\nשים לב: פעולה זו יכולה לקחת מספר דקות","button.scan.tip.NA":'הקטן את התצוגה כדי להתחיל את יצירת הדו"ח באיזור המפה הנוכחי',"button.pause.tip":"עצור את הסריקה","button.continue.tip":"המשך לסרוק את המפה","button.stop.tip":"עצור את הסריקה וחזור להתחלה","button.clear.tip":'מחק הדו"ח ומקטעים מהזיכרון',"button.clear.tip.red":'יותר מדי דיווחים על בעיות במקטעים:\n1. לחץ \'צפה בדו"ח להפיק את הדו"ח\'.\n2. לחץ על כפתור זה כדי למחוק את הדו"ח ולהתחיל מחדש.', +"button.report.text":'צפה בדו"ח',"button.report.tip":'השתמש בהגדרות המסננים והפק דו"ח HTML שיפתח בכרטיסיית דפדפן חדשה',"button.BBreport.tip":'שתף את הדו"ח בפורום של וייז או בהודעה פרטית',"button.settings.tip":"הגדרות","tab.custom.text":"מותאם","tab.custom.tip":"הגדרת בדיקות מותאמות אישית לפי הגדרות המשתמש","tab.settings.text":"הגדרות","tab.scanner.text":"סורק","tab.scanner.tip":"הגדרות סריקה","tab.about.text":"אודות","tab.about.tip":"אודות WME Validator","scanner.sounds.text":"אפשר צלילים", +"scanner.sounds.tip":"ציפצופים וביפים בזמן סריקה","scanner.sounds.NA":"הדפדפן שלך אינו תומך ב AudioContext","scanner.highlight.text":"הדגש בעיות על גבי המפה","scanner.highlight.tip":"הדגר בעיות מדווחות על גבי המפה","scanner.slow.text":'אפשר בדיקות המוגדרות כ"איטי"',"scanner.slow.tip":"מאפשר ניתוח מעמיק של המפה\n* שים לב: אפשרות זו עלולה להאט את תהליך הסריקה","scanner.ext.text":"דווח על הדגשות ממקורות אחרים","scanner.ext.tip":'דווח על מקטעים שהודגשו ע"י WME Toolbox או WME Color Highlights',"custom.template.text":"תבנית מותאמת אישית", +"custom.template.tip":"תבנית להרחבת בדיקות מותאמת אישית המוגדרת על ידי משתמש.\n\nניתן להשתמש במשתנים הבאים\n${country}, ${state}, ${city}, ${street},\n${type}, ${typeRank}, ${toll}, ${direction}, ${elevation}, ${lock},\n${length}, ${ID}, ${roundabout}, ${hasHNs},\n${drivable}, ${softTurns}, ${Uturn}, ${deadEnd},\n${segmentsA}, ${inA}, ${outB}, ${UturnA},\n${segmentsB}, ${inB}, ${outB}, ${UturnB}","custom.template.example":"דוגמה: ${city}","custom.regexp.text":'ביטוי רגולרי מותאם אישית', +"custom.regexp.tip":'ביטוי רגולרי מותאם אישית ע"י המשתמש התואם את התבנית\nהתאמה: /regexp/\nשלילה: !/regexp/\nכתוב מידע של התוכנית לקונסולה (debug)\n',"custom.regexp.example":"דוגמה: /גבעת שמואל/","about.tip":"פתח קישור בכרטיסיית דפדפן חדשה","button.reset.text":"אפס לברירת מחדל","button.reset.tip":"אפס אפשרויות סינון והגדרות לברירת המחדל","button.list.text":"בדיקות זמינות...","button.list.tip":"הראה את רשימ הבדיקות הזמינות של WME Validator","button.wizard.tip":"צור קבצי לוקליזציה","button.back.text":"חזרה", +"button.back.tip":"סגור הגדרות וחזור לחלון ראשי","1.enabled":!1,"1.title":"WME Toolbox: כיכר שעלול ליצור בעיות","1.problem":"מספרים מזהים של צמתים של מקטעים בכיכר אינם רצופים","1.solution":"בנה מחדש את הכיכר","2.title":"WME Toolbox: מקטע פשוט","2.problem":"למקטע יש מפרקים מיותרים","2.solution":'פשט את מפרקי המקטע ע"י מעבר עם העכבר מעל המקטע ולחיצה על מקש "d"',"3.title":"WME Toolbox: נעילה ברמה 2","3.problem":'המקטע מודגש ע"י WME Toolbox. זו אינה שגיאה',"4.title":"WME Toolbox: נעילה ברמה 3","4.problem":'המקטע מודגש ע"י WME Toolbox. זו אינה שגיאה', +"5.title":"WME Toolbox: נעילה ברמה 4","5.problem":'המקטע מודגש ע"י WME Toolbox. זו אינה שגיאה',"6.title":"WME Toolbox: נעילה ברמה 5","6.problem":'המקטע מודגש ע"י WME Toolbox. זו אינה שגיאה',"7.title":"WME Toolbox: נעילה ברמה 6","7.problem":'המקטע מודגש ע"י WME Toolbox. זו אינה שגיאה',"8.title":"WME Toolbox: מספרי בתים","8.problem":'המקטע מודגש ע"י WME Toolbox. זו אינה שגיאה',"9.title":"WME Toolbox: מקטע עם הגבלות לפי שעות","9.problem":'המקטע מודגש ע"י WME Toolbox. זו אינה שגיאה',"13.title":"WME Color Highlights: נעילת עורך", +"13.problem":'המקטע מודגש ע"י WME Color Highlights. זו אינה שגיאה',"14.title":"WME Color Highlights: כביש אגרה / כביש חד סיטרי","14.problem":'המקטע מודגש ע"י WME Color Highlights. זו אינה שגיאה',"15.title":"WME Color Highlights: נערך לאחרונה","15.problem":'המקטע מודגש ע"י WME Color Highlights. זו אינה שגיאה',"16.title":"WME Color Highlights: דרגה של כביש","16.problem":'המקטע מודגש ע"י WME Color Highlights. זו אינה שגיאה',"17.title":"WME Color Highlights: ללא עיר","17.problem":'המקטע מודגש ע"י WME Color Highlights. זו אינה שגיאה', +"18.title":"WME Color Highlights: הגבלות לפי שעות / סוג כביש מודגש","18.problem":'המקטע מודגש ע"י WME Color Highlights. זו אינה שגיאה',"19.title":"WME Color Highlights: ללא שם","19.problem":'המקטע מודגש ע"י WME Color Highlights. זו אינה שגיאה',"20.title":"WME Color Highlights: מסנן לפי עיר","20.problem":'המקטע מודגש ע"י WME Color Highlights. זו אינה שגיאה',"21.title":"WME Color Highlights: מסנן לפי עיר","21.problem":'המקטע מודגש ע"י WME Color Highlights. זו אינה שגיאה',"22.title":"WME Color Highlights: מסנן לפי עורך", +"22.problem":'המקטע מודגש ע"י WME Color Highlights. זו אינה שגיאה',"23.title":"מקטע ללא שם","23.problem":"כל מקטע חייב לפחות הגדרת מדינה","23.solution":'אשר את הכביש ע"י עריכת הפרטים שלו',"24.title":'יתכן ששם העיר שגוי (זמין רק בדו"ח)',"24.problem":'יתכן ששם העיר של המקטע שגוי (זמין רק בדו"ח)',"24.solution":"שקול להשתמש בשם העיר שמוצע והשתמש בטופס זה כדי לשנות שם עיר","25.title":"כיוון לא ידוע של כביש מותר בנהיגה","25.problem":'כיוון "לא ידוע" של כביש לא מונע ניווט דרכו',"25.solution":"קבע את כיוון הנסיעה של הכביש", +"27.enabled":!0,"27.title":"שם עיר על מסילת רכבת","27.problem":"שם עיר על מסילת רכבת עלול לטשטש את גבולות העיר","27.solution":"בשדה 'עיר' הדלק את האפשרות 'אין' ואז 'החל'","28.enabled":!1,"28.title":"שם רחוב למחבר דו כיווני","28.problem":"כשהמחבר ללא שם, הוא יקבל את שמו מהכביש אליו הוא מוביל","28.solution":"בשדה 'רחוב' הדלק את האפשרות 'אין' ואז 'החל'","29.title":"לכיכר יש שם רחוב","29.problem":"בווויז לא נותנים שמות למקטעים השייכים לכיכר","29.solution":"בשדה 'רחוב' הדלק את האפשרות 'אין', לחץ 'החל'. כדי לתת שם לכיכר הוסף 'מקום' עם קטגורית 'צומת' ותן לו את שם הכיכר", +"34.title":"'שם חלופי' ריק","34.problem":"שדה 'שם חלופי' של הרחוב ריק","34.solution":"הסר את ה'שם חלופי' של הרחוב","35.title":"כביש מותר לנהיגה קטוע","35.problem":"וייז לא ינווט מכביש קטוע","35.solution":"הזז מעט את המקטע כך שיתווסף אוטומטית צומת המסיים את המקטע","36.title":"צומת A: מיותר (איטי)","36.problem":"מקטעים סמוכים בצומת A זהים","36.solution":"בחר את צומת A ולחץ על 'מחיקה' כדי לאחד את המקטעים","37.title":"צומת B: מיותר (איטי)","37.problem":"מקטעים סמוכים בצומת B זהים","37.solution":"בחר את צומת B ולחץ על 'מחיקה' כדי לאחד את המקטעים", +"38.title":"פג תוקף של מגבלה על מקטע (איטי)","38.problem":"למקטע יש מגבלות שפג תוקפם","38.solution":'לחץ על "הוסף הגבלות" ומחק מגבלות שפג תוקפם',"39.title":"פג תוקף של מגבלה על פניה (איטי)","39.problem":"במקטע יש פניה עם מגבלה שפג תוקפה","39.solution":"לחץ על סימון השעון שליד החץ הצהוב של הפניה ומחק הגבלות שפג תוקפן","41.enabled":!1,"41.title":"צומת A: קישוריות הפוכה של כביש מותר לנהיגה","41.problem":"יש פניה הפוכה לכיוון הנסיעה של המקטע בצומת A","41.solution":'הפוך את המקטע לדו כיווני, אסור את כל הפניות בצומת A ואחר כך הפוך חזרה את המקטע ל"חד כיווני (A→B)"', +"42.enabled":!1,"42.title":"צומת B: קישוריות הפוכה של כביש מותר לנהיגה","42.problem":"יש פניה הפוכה לכיוון הנסיעה של המקטע בצומת B","42.solution":'הפוך את המקטע לדו כיווני, אסור את כל הפניות בצומת B ואחר כך הפוך חזרה את המקטע ל"חד כיווני (B→A)"',"43.title":"קישור לעצמי","43.problem":"המקטע יוצר צומת עם המקטע עצמו","43.solution":"פצל את המקטע לשלושה מקטעים","44.title":"אין חיבור ביציאה","44.problem":"מקטע מותר בנהיגה ללא אף פניה מאופשרת ביציאה ממנו","44.solution":"אפשר לפחות פניה אחת ביציאה מהמקטע", +"45.title":"אין חיבור בכניסה","45.problem":"אין אף פניה מאופשרת בכניסה למקטע המותר בנהיגה","45.solution":"בחר מקטע סמוך ואפשר פניה למקטע זה","46.title":"צומת A: אין מקטע מותר לנהיגה המוביל לצומת זו (איטי)","46.problem":"לכביש מותר לנהיגה אין מקטע סמוך עם פניה מאופשרת המובילה אליו בצומת A","46.solution":"בחר מקטע סמוך, אפשר פניה אל המקטע בצומת A","47.title":"צומת B: אין מקטע מותר לנהיגה המוביל לצומת זו (איטי)","47.problem":"לכביש מותר לנהיגה אין מקטע סמוך עם פניה מאופשרת המובילה אליו בצומת B","47.solution":"בחר מקטע סמוך, אפשר פניה אל המקטע בצומת B", +"48.title":"מקטע דו כיווני בכיכר","48.problem":"מקטע מותר לנהיגה בכיכר הוא דו כיווני","48.solution":"צור מחדש את הכיכר","50.title":"אין חיבור לכיכר (איטי)","50.problem":"למקטע מותר לנהיגה בכיכר אין חיבור למקטע סמוך בכיכר","50.solution":"אפשר פניה במקטע סמוך או צור מחדש את הכיכר","57.enabled":!0,"57.title":"שם עיר במחבר עם שם רחוב","57.problem":"שם עיר במחבר עם שם רחוב עלול להשפיע על תוצאות החיפוש","57.solution":"בשדה 'עיר' הדלק את האפשרות 'אין' ואז 'החל'","59.enabled":!0,"59.title":"שם עיר בכביש מהיר", +"59.problem":"שם עיר בכביש מהיר עלול לטשטש את גבולות העיר","59.solution":"בשדה 'עיר' הדלק את האפשרות 'אין' ואז 'החל'","77.enabled":!1,"77.title":"פניית פרסה ברחוב ללא מוצא","77.problem":"מאופשרת פניית פרסה במקטע מותר לנהיגה ללא מוצא","77.solution":"אל תאפשר פניית פרסה","78.title":"שני מקטעים המותרים לנהיגה מסתיימים באותן נקודות (איטי)","78.problem":"שני מקטעים המותרים לנהיגה בעלי אותן נקודות קצה","78.solution":"פצל את המקטע לשני מקטעים. יתכן ויש צורך למחוק את אחד המקטעים אם הם זהים","87.title":"מקטעים מרובים יוצאים מצומת A", +"87.problem":"לצומת A בכיכר מחובר יותר ממקטע יציאה אחד","87.solution":"צור מחדש את הכיכר","90.enabled":!0,"90.title":"כביש מהיר דו סיטרי","90.problem":"רוב הכבישים המהירים מפוצלים לשני מקטעים חד סיטריים כך שיתכן שיש טעות במקטע","90.solution":"בדוק את כיוון הנסיעה של הכביש המהיר","91.title":"מחבר דו כיווני","91.problem":"רוב המחברים הם חד סיטריים, כך שיתכן שזו שגיאה שמחבר זה מוגדר כדו-סיטרי","91.solution":"בדוק כיווני נסיעה במחבר","99.title":"פניית פרסה מאופשרת בכניסה לכיכר (איטי)","99.problem":"פניית פרסה מאופשרת במקטע הנכנס לכיכר", +"99.solution":"אל תאפשר פניית פרסה","101.title":'כביש סגור (זמין רק בדו"ח)',"101.problem":"המקטע מסומן כסגור","101.solution":"אם הבנייה הסתיימה, שחזר את קישוריות המקטע והסר את הסיומת","102.title":"צומת A: אין חיבור ביציאה של כביש מותר בנהיגה (איטי)","102.problem":"מקטע מותר בנהיגה ללא אף יציאה מאופשרת בצומת A","102.solution":"אפשר לפחות יציאה אחת מהמקטע בצומת A","103.title":"צומת B: אין חיבור ביציאה של כביש מותר בנהיגה (איטי)","103.problem":"מקטע מותר בנהיגה ללא אף יציאה מאופשרת בצומת B","103.solution":"אפשר לפחות יציאה אחת מהמקטע בצומת B", +"104.title":"מסילת רכבת משמשת כהערה","104.problem":"נראה שמקטע מסוג מסילת רכבת משמש כהערה","104.solution":"הסר את המקטע כיוון שמסילת רכבת תיראה במסך של משתמש הקצה","107.title":"צומת A: אין חיבור (איטי)","107.problem":"צומת A של מקטע מותר לנהיגה נמצאת במרחק של 5 מטרים ממקטע אחר מותר לנהיגה שאינו מחובר","107.solution":"חבר את צומת A למקטע הקרוב ביותר או הרחק אותו מעט","108.title":"צומת B: אין חיבור (איטי)","108.problem":"צומת B של מקטע מותר לנהיגה נמצאת במרחק של 5 מטרים ממקטע אחר מותר לנהיגה שאינו מחובר", +"108.solution":"חבר את צומת B למקטע הקרוב ביותר או הרחק אותו מעט","109.enabled":!1,"109.title":"מקטע קצר מדי","109.problem":"מקטע מותר לנהיגה ללא קצה הוא פחות מ 2 מטר. וקשה לראות זאת במפה","109.solution":"הארך את המקטע, מחק אותו או חבר אותו למקטע סמוך","112.title":"לשם המחבר יש יותר מ ${n} אותיות","112.problem":"שם המחבר ארוך מדי","112.solution":"קצר את שם המחבר","114.enabled":!1,"114.title":"צומת A: מקטע אסור לנהיגה מחובר למקטע מותר לנהיגה (איטי)","114.problem":"מקטע אסור לנהיגה יוצר צומת עם מקטע מותר לנהיגה בצומת A", +"114.solution":"נתק את צומת A ממקטעים מותרים לנהיגה","115.enabled":!1,"115.title":"צומת B: מקטע אסור לנהיגה מחובר למקטע מותר לנהיגה (איטי)","115.problem":"מקטע אסור לנהיגה יוצר צומת עם מקטע מותר לנהיגה בצומת B","115.solution":"נתק את צומת B ממקטעים מותרים לנהיגה","116.title":"גובה לא בטווח המותר","116.problem":"גובה המקטע לא בטווח המותר","116.solution":"תקן את הגובה","117.title":"סימון של קבוע ישן ZN","117.problem":"המקטע מסומן בסימון של קבוע שלא בתוקף: ZN","117.solution":"שנה את הקבוע ZN ל: (סגור)", +"118.title":"צומת A: מקטעים חופפים (איטי)","118.problem":"המקטע חופף למקטע סמוך בצומת A","118.solution":"הזז את המקטע ב 2° או מחק מפרקים או מחק את המקטע הכפול בצומת A","119.title":"צומת B: מקטעים חופפים (איטי)","119.problem":"המקטע חופף למקטע סמוך בצומת B","119.solution":"הזז את המקטע ב 2° או מחק מפרקים או מחק את המקטע הכפול בצומת B","120.title":"צומת A: פנייה חדה מדי (איטי)","120.problem":"במקטע מותר לנהיגה יש פנייה מאד חדה בצומת A","120.solution":"אסור את הפנייה החדה בצומת A או שנה את זווית הפניה ל 30°", +"121.title":"צומת B: פנייה חדה מדי (איטי)","121.problem":"במקטע מותר לנהיגה יש פנייה מאד חדה בצומת B","121.solution":"אסור את הפנייה החדה בצומת B או שנה את זווית הפניה ל 30°","128.title":'בדיקה מותאמת אישית ע"י המשתמש (ירוק)',"128.problem":'חלק ממאפייני המקטע תואמים לביטוי רגולרי שהוגדר ע"י המשתמש (ראה הגדרות->תבנית מותאמת אישית)',"128.solution":"פתור את הבעיה (מי שהגדיר בדיקה מותאמת אישית אמור לדעת כיצד לפתור את הבעיה)","129.title":'בדיקה מותאמת אישית ע"י המשתמש (כחול)',"129.problem":'חלק ממאפייני המקטע תואמים לביטוי רגולרי שהוגדר ע"י המשתמש (ראה הגדרות->תבנית מותאמת אישית)', +"129.solution":"פתור את הבעיה (מי שהגדיר בדיקה מותאמת אישית אמור לדעת כיצד לפתור את הבעיה)","171.enabled":!1,"171.title":"שם רחוב מקוצר באופן שגוי","171.problem":"בשם הרחוב יש קיצור שגוי","171.solution":"בדוק אותיות קטנות / גדולות, רווח לפני / אחרי הקיצור ובהתאם לטבלת הקיצורים","172.title":"מרווחים מיותרים בשם של רחוב","172.problem":"מרווח כפול/לפני/אחרי שם של רחוב","172.solution":"מחק מרווחים מיותרים בשם של הרחוב","173.enabled":!1,"173.title":"אין רווח לפני/אחרי שם קיצור של רחוב","173.problem":"חסר מרווח לפני או אחרי שימוש בקיצור בשם של רחוב", +"173.solution":"הוסף רווח לפני/אחרי הקיצור","175.title":"שם רחוב ריק","175.problem":"שם הרחוב מכיל רק מרווחים או נקודות","175.solution":"במאפייני הכתובת, סמן את תיבת 'אין' ליד שם הרחוב, לחץ 'החל', או תן שם תקין לרחוב","190.enabled":!1,"190.title":"שם העיר באותיות קטנות","190.problem":"שם העיר מתחיל באות קטנה","190.solution":"השתמש בטופס זה כדי לשנות שם עיר","192.title":"מרווחים מיותרים בשם של עיר","192.problem":"מרווח כפול/לפני/אחרי שם של עיר","192.solution":"השתמש בטופס זה כדי לשנות שם עיר","193.enabled":!1, +"193.title":"מרווחים לפני/אחרי קיצור של שם עיר","193.problem":"מרווחים אסורים לפני או אחרי שימוש בקיצור בשם של עיר","193.solution":"השתמש בטופס זה כדי לשנות שם עיר","200.enabled":!1,"200.title":"צומת A: פניה שלא אושרה ברחוב משני","200.problem":"במקטע המשני יש פניה שלא אושרה בצומת A","200.solution":"לחץ על הפניה שלידה סימן שאלה סגול כדי לאשר אותה. הערה: ייתכן שתצטרך להפוך את המקטע ל'דו כיווני' כדי לראות פניה זו","201.title":"צומת A: פניה שלא אושרה ברחוב ראשי","201.problem":"במקטע הראשי יש פניה שלא אושרה בצומת A", +"201.solution":"לחץ על הפניה שלידה סימן שאלה סגול כדי לאשר אותה. הערה: ייתכן שתצטרך להפוך את המקטע ל'דו כיווני' כדי לראות פניה זו"},IE:{".codeISO":"IE",".country":"Ireland","70.enabled":!0,"70.problemLink":"W:How_to_label_and_name_roads_(Ireland)#Road_Types","71.enabled":!0,"71.problemLink":"W:How_to_label_and_name_roads_(Ireland)#Road_Types","72.enabled":!0,"72.problemLink":"W:How_to_label_and_name_roads_(Ireland)#Road_Types","160.enabled":!0,"160.problemLink":"W:How_to_label_and_name_roads_(Ireland)#Road_Types", +"160.params":{solutionEN:"Rename the street to 'Mxx' or 'Mxx N/S/W/E' or change the road type",regexp:"!/^M[0-9]+( [NSWE])?$/"},"161.enabled":!0,"161.problemLink":"W:How_to_label_and_name_roads_(Ireland)#Road_Types","161.params":{solutionEN:"Rename the street to 'Nxx' or 'Nxx Local Name' or change the road type",regexp:"!/^N[0-9]+( .*)?$/"},"162.enabled":!0,"162.problemLink":"W:How_to_label_and_name_roads_(Ireland)#Road_Types","162.params":{solutionEN:"Rename the street to 'Rxxx' or 'Rxxx Local Name' or change the road type", +regexp:"!/^R[0-9]+( .*)?$/"}},FR:{".codeISO":"FR",".country":["France","French Guiana","New Caledonia","Reunion"],".author":"arbaot and ClementH44",".updated":"2014-03-27",".lng":"FR","err.regexp":"Erreur d'interprétation pour la vérification #${n}:","props.disabled":"WME Validator est désactivé","props.limit.title":"Trop de problèmes signalés","props.limit.problem":"Il y a trop de problèmes signalés, de sorte que certains d'entre eux pourraient ne pas être affichés","props.limit.solution":"Désélectionnez le segment et arrêtez le scan. Ensuite, cliquez sur le bouton rouge «✘» (Effacer le rapport)", +"props.reports":"Rapports","props.noneditable":"Vous ne pouvez éditer ce segment","report.list.andUp":"et jusqu'à","report.list.severity":"Gravité :","report.list.reportOnly":"seulement dans le rapport","report.list.forEditors":"Pour le niveau d'édition :","report.list.forCountries":"Pour les pays :","report.list.forStates":"Pour les états :","report.list.forCities":"Pour les villes :","report.list.params":"Paramètres à configurer dans le pack de localisation :","report.list.enabled":"${n} vérifications sont activés pour", +"report.list.disabled":"${n} vérifications sont désactivés pour","report.list.total":"Il y a ${n} points de contôles activés","report.list.title":"Liste complète des vérifications pour","report.list.see":"Voir","report.list.checks":"Paramètres->À propos->Les vérifications","report.list.fallback":"Règles de regroupement géographique :","report.and":"et","report.segments":"Nombre total de segments vérifiés :","report.customs":"Les vérifications personnalisés adaptés (vert/bleu):","report.reported":"Signalement", +"report.errors":"d'erreurs","report.warnings":"d'avertissements","report.notes":"de remarques","report.contents":"Contenus :","report.summary":"Récapitulatif","report.title":"Rapport de WME Validator","report.share":"à partager","report.generated.by":"généré par","report.generated.on":"le","report.source":"Source du rapport :","report.filter.duplicate":"les segments doublons","report.filter.streets":"Rue et Routes de service","report.filter.other":"Autres","report.filter.noneditable":"segments non modifiables", +"report.filter.notes":"notes","report.filter.title":"Filtre :","report.filter.excluded":"sont exclues de ce rapport.","report.search.updated.by":"mis à jour par","report.search.updated.since":"mis à jour depuis","report.search.city":"à partir de","report.search.reported":"signalé comme","report.search.title":"Rechercher:","report.search.only":"seulement les segments","report.search.included":"sont inclus dans le rapport.","report.beta.warning":"avertissement WME Beta !","report.beta.text":"Ce rapport est généré pour WME beta avec des permaliens en beta.", +"report.beta.share":"Ne pas partager ces permaliens !","report.size.warning":"Avertissement !
Le rapport est trop long de ${n} charactères de sorte qu'il ne passe pas dans un seul forum ou message privé.\n
Ajoutez des filtres pour réduire la taille du rapport.","report.note.limit":"* Remarque: il y avait trop de problèmes signalés, de sorte que certains d'entre eux ne sont pas pris en compte dans le récapitulatif.","report.forum":"Pour soutenir le développement, merci de laisser un commentaire sur", +"report.thanks":"Merci d'utiliser WME Validator !","msg.limit.segments":"Il y a trop de segments.\n\nCliquez sur 'Le rapport' pour examiner le rapport, ensuite\n","msg.limit.segments.continue":"cliquez sur '▶' pour continuer.","msg.pan.text":"Déplacez-vous sur pour valider la carte","msg.zoomout.text":"Effectuer un zoom arrière pour démarrer WME Validator","msg.click.text":"Cliquez sur '▶' pour valider la zone visible de la carte","msg.autopaused":"Pause automatique","msg.autopaused.text":"Pause automatique ! Cliquez sur '▶' pour continuer.", +"msg.autopaused.tip":"WME Validator est automatiquement suspendu si la carte est déplacée ou si la taille de la fenêtre change","msg.finished.text":"Cliquez sur 'Le rapport' pour examiner les problèmes de carte","msg.finished.tip":"Cliquez sur '✉' (Partager) pour poster un rapport sur un\nforum ou par message privé","msg.noissues.text":"Terminé ! Aucun problème trouvé !","msg.noissues.tip":"Essayez de désactiver quelques filtres ou démarrez WME Validator sur une autre zone de la carte !","msg.scanning.text":"Scan en cours ! Terminé dans ~ ${n} min", +"msg.scanning.text.soon":"Scan en cours ! Terminé dans une minute !","msg.scanning.tip":"Cliquez sur 'Pause' pour suspendre ou '■' pour stopper","msg.starting.text":"Lancement ! Les calques ne peuvent scanner plus vite !","msg.starting.tip":"Utilisez le bouton 'Pause' pour suspendre ou le bouton '■' pour stopper","msg.paused.text":"En pause ! Cliquez sur '▶' pour continuer.","msg.paused.tip":"Pour voirla raport, cliquez sur 'Le rapport' (si disponible)","msg.continuing.text":"En cours !","msg.continuing.tip":"WME Validator continuera à l'endroit où il a été suspendu", +"msg.settings.text":"Cliquez sur 'Retour' pour retourner sur la vue principale","msg.settings.tip":"Cliquez sur 'Par défaut' pour réinitialiser tous les réglages en un clic !","msg.reset.text":"Toutes les options de filtrage et les paramètres ont été remis à leurs valeurs par défaut","msg.reset.tip":"Cliquez sur 'Retour' pour retourner sur la vue principale","msg.textarea.pack":"Merci de copier le texte ci-dessous et de le coller dans un nouveau fichier .user.js","msg.textarea":"Merci de copier le texte ci-dessous et de le coller dans votre forum pour par message privé", +"noaccess.text":"Désolé,
Vous ne pouvez utiliser WME Validator ici.
Merci de visiter (en anglais) ce forum
pour plus d'informations.","noaccess.tip":"Merci de visiter le forum du programme pour plus d'informations !","tab.switch.tip.on":"Cliquez pour activer la surbrillance","tab.switch.tip.off":"Cliquez pour désactiver la surbrillance","tab.filter.text":"filtre","tab.filter.tip":"Options pour filtrer le rapport et les segments à mettre en évidence", +"tab.search.text":"cherche","tab.search.tip":"Options avancées de filtrage pour inclure uniquement des segments spécifiques","tab.help.text":"aide","tab.help.tip":"Besoins d'aide ?","filter.noneditables.text":"Exclure les segments non modifiables","filter.noneditables.tip":"Ne pas éxaminer les segments verrouillés ou en dehors de vos zones modifiables","filter.duplicates.text":"Exclure les segments doublons","filter.duplicates.tip":"Ne pas éxaminer le même segment dans différentes\nparties du rapport\n* Remarque: cette option n'affecte pas la surbrillance", +"filter.streets.text":"Exclure les Rues et Routes de service","filter.streets.tip":"Ne pas éxaminer les rues et routes/chemins de service","filter.other.text":"Exclure les autres rues carrossables","filter.other.tip":"Ne pas éxaminer les chemins de terres, les parkings, les routes privées\net les segments non carrossables","filter.notes.text":"Exclure les remarques","filter.notes.tip":"Rapporte uniquement les avertissements et les erreurs","search.youredits.text":"Inclure uniquement vos modifications", +"search.youredits.tip":"Inclure uniquement les segments modifiés par vous","search.updatedby.text":"Mis à jour par:","search.updatedby.tip":"Inclure uniquement les segments mis à jour par un éditeur déterminé\nCe champ prend en charge:\n - les listes: me, otherEditor\n - les métacaractères: world*\n - la négation: !me, *\n* Remarque: vous pouvez utiliser 'me' pour vous désigner","search.updatedby.example":"Example: me","search.updatedsince.text":"Mis à jour depuis:","search.updatedsince.tip":"Inclure uniquement les segments modifiés depuis la date spécifiée\nFormat de date Firefox: AAAA-MM-JJ", +"search.updatedsince.example":"AAAA-MM-JJ","search.city.text":"Nom de Ville:","search.city.tip":"Inclure uniquement les segments d'une ville spécifiée\nCe champ prend en charge:\n - les listes: Paris, Meudon\n - les métacaractères (wildcards): Greater * Area\n - la négaction: !Paris, *","search.city.example":"Example: !Paris, *","search.checks.text":"Signalé comme:","search.checks.tip":"Inclure uniquement les segments \nCe champ correspond:\n - aux gravités: erreur\n - aux noms: Nouvelle route\n - aux identifiants (IDs): 40\nCe champ prend en charge:\n - les listes: 36, 37\n - les métacaractères (wildcards): *roundabout*\n - la négation: !unconfirmed*, *", +"search.checks.example":"Example: reverse*","help.text":"Rubriques d'aide (en anglais):
F.A.Q.
Posez votre question sur le forum
Comment ajuster Validator à votre pays
À propos de 'Might be Incorrect City Name'", +"help.tip":"S'ouvre dans un nouvel onglet du navigateur","button.scan.tip":"Commencer à scanner la zone actuelle de la carte\n* Remarque: cela peut prendre quelques minutes","button.scan.tip.NA":"Dézoomez pour commencer à scanner la zone actuelle de la carte","button.pause.tip":"Scan en pause","button.continue.tip":"Continuer à scanner la zone de la carte","button.stop.tip":"Arrêter le scan et retourner à la position de départ","button.clear.tip":"Effacer la mémoire cache des rapports et segments", +"button.clear.tip.red":"Il y a trop de segments signalés:\n 1. Cliquez sur 'Le rapport' pour générer le rapport.\n 2. Cliquez sur ce bouton pour effacer le rapport et recommencer.","button.report.text":"Le rapport","button.report.tip":"Appliquer le filtre et générer un rapport HTML dans un nouvel onglet.","button.BBreport.tip":"Partagez le rapport sur le forum Waze ou dans un message privé.","button.settings.tip":"Configurer les paramètres","tab.custom.text":"perso","tab.custom.tip":"Paramètres de vérification personnalisés définis par l'utilisateur", +"tab.settings.text":"Params","tab.scanner.text":"scan","tab.scanner.tip":"Paramètres du scan de la carte","tab.about.text":"à propos","tab.about.tip":"À propos de WME Validator","scanner.sounds.text":"Activer les sons","scanner.sounds.tip":"Joue un 'bip' pendant le scan","scanner.sounds.NA":"Votre navigateur ne supporte pas AudioContext","scanner.highlight.text":"Mettre en surbrillance sur la carte","scanner.highlight.tip":"Mettre en surbrillance les problèmes repérés sur la carte","scanner.slow.text":"Activer le mode 'lent'", +"scanner.slow.tip":"Permet un scan plus poussé et précis de la carte\n* Remarque: cette option peut ralentir le processus de scan","scanner.ext.text":"Signaler des surbrillances externes","scanner.ext.tip":"Signaler des segments mis en évidence par WME Toolbox ou WME Color Highlights","custom.template.text":"Modèle perso","custom.template.tip":"Modèle de contrôle personnalisé définis par l'utilisateur.\n\nVous pouvez utiliser les variables suivantes:\n${country}, ${state}, ${city}, ${street},\n${altCity[index or delimeter]} Example: ${altCity[0]},\n${altStreet[index or delimeter]} Example: ${altStreet[##]},\n${type}, ${typeRank}, ${toll}, ${direction}, ${elevation}, ${lock},\n${length}, ${ID}, ${roundabout}, ${hasHNs},\n${drivable}, ${softTurns}, ${Uturn}, ${deadEnd},\n${segmentsA}, ${inA}, ${outB}, ${UturnA},\n${segmentsB}, ${inB}, ${outB}, ${UturnB}", +"custom.template.example":"Example: ${street}","custom.regexp.text":"RegExp perso","custom.regexp.tip":"Modèle de contrôle personnalisé définis par l'utilisateur (en utilisant le Regular Expressions).\n\nInsensible à la casse: /regexp/i\nNegation (ne fonctionne pas): !/regexp/\nInformation en mode debug des log sur la console: D/regexp/","custom.regexp.example":"Example: !/.+/","about.tip":"Ouvre le lien dans un nouvel onglet", +"button.reset.text":"Par défaut","button.reset.tip":"Rétablir les options de filtrage et les paramètres par défaut","button.list.text":"Les vérifications...","button.list.tip":"Montre une liste des vérifications possibles dans WME Validator","button.wizard.tip":"Créer un pack géographique","button.back.text":"Ret.","button.back.tip":"Fermer les paramètres et revenir à l'ecran principal","1.solutionLink":"W:Tout_sur_les_ronds-points","1.title":"WME Toolbox: Rond-point pouvant causer des problèmes", +"1.problem":"Les ID des segments du rond-point ne sont pas consécutif","1.solution":"Refaire le rond-point","2.title":"WME Toolbox: Simple segment (une voie)","2.problem":"Ce segments a des nœuds de géométrie inutile","2.solution":"Simplifier le tracé du segment sélectionné en survolant les nœuds en trop en appuyant sur le 'd' du clavier","3.title":"WME Toolbox: Verrouillage de niveau 2","3.problem":"Segment surligné par WME Toolbox. Pas un problème","4.title":"WME Toolbox: Verrouillage de niveau 3", +"4.problem":"Segment surligné par WME Toolbox. Pas un problème","5.title":"WME Toolbox: Verrouillage de niveau 4","5.problem":"Segment surligné par WME Toolbox. Pas un problème","6.title":"WME Toolbox: Verrouillage de niveau 5","6.problem":"Segment surligné par WME Toolbox. Pas un problème","7.title":"WME Toolbox: Verrouillage de niveau 6","7.problem":"Segment surligné par WME Toolbox. Pas un problème","8.title":"WME Toolbox: Numéros de maison","8.problem":"Segment surligné par WME Toolbox. Pas un problème", +"9.title":"WME Toolbox: Segment avec une restriction programmée","9.problem":"Segment surligné par WME Toolbox. Pas un problème","13.title":"WME Color Highlights: Verrouillage de l'éditeur","13.problem":"Segment surligné par WME Color Highlights. Pas un problème","14.title":"WME Color Highlights: Péage / Route à sens unique","14.problem":"Segment surligné par WME Color Highlights. Pas un problème","15.title":"WME Color Highlights: Récemment modifié","15.problem":"Segment surligné par WME Color Highlights. Pas un problème", +"16.title":"WME Color Highlights: Rang de la route","16.problem":"Segment surligné par WME Color Highlights. Pas un problème","17.title":"WME Color Highlights: Pas de ville","17.problem":"Segment surligné par WME Color Highlights. Pas un problème","18.title":"WME Color Highlights: Restriction programmée / Type de route mis en évidence","18.problem":"Segment surligné par WME Color Highlights. Pas un problème","19.title":"WME Color Highlights: Pas de nom","19.problem":"Segment surligné par WME Color Highlights. Pas un problème", +"20.title":"WME Color Highlights: Filtrer par ville","20.problem":"Segment surligné par WME Color Highlights. Pas un problème","21.title":"WME Color Highlights: Filtrer par ville (ville alt.)","21.problem":"Segment surligné par WME Color Highlights. Pas un problème","22.title":"WME Color Highlights: Filtrer par éditeur","22.problem":"Segment surligné par WME Color Highlights. Pas un problème","23.problemLink":"W:Nommage_France#R.C3.A8gles_de_nommage","23.solutionLink":"W:Nommage_France","23.title":"Route non confirmée", +"23.problem":"Création de segment incomplète ville et nom de rue non renseigné","23.solution":"Terminer la création en complétant les propriétés","24.problemLink":"W:Comment_nommer_les_routes_et_les_villes#Nommage_des_villes_et_villages","24.solutionLink":"F:t=29403","24.title":"Nom de ville peut-être erroné (uniquement disponible dans le rapport)","24.problem":"Le nom de la ville est peut-être incorrecte","24.solution":"Comparer le nom avec celui proposé et éventuellement signaler le problème sur le forum", +"25.title":"Direction inconnue de la route carrossable","25.problem":"Un sens de circulation 'Inconnu' n'empêchera Waze de faire emprunter le segment","25.solution":"Régler le sens de circulation du segment","27.enabled":!0,"27.title":"Nom de ville sur une voie ferrée","27.problem":"Un nom de ville sur les segment voie ferré provoque des incohérence des polygones Ville","27.solution":"Régler le nom de ville à 'Sans' ou signaler le problème sur le Forum ","28.problemLink":"W:Guide_des_intersections#Noms_3", +"28.title":"Nom de rue sur une rampe","28.problem":"Une rampe sans nom 'hérite' du nom du segment suivant","28.solution":"Régler le nom du segment à 'Sans'","29.problemLink":"W:Tout_sur_les_ronds-points#A_retenir","29.solutionLink":"W:Tout_sur_les_ronds-points","29.title":"Nom de rue sur rond-point","29.problem":"Dans Waze pas de nom de rue sur les rond-point","29.solution":"Régler le nom des segment du RP à 'Sans' et créer un POI Jonction/ échangeur avec le nom du RP","34.title":"Nom de rue alternatif vide", +"34.problem":"Le nom de rue alternatif vide","34.solution":"Supprimer le nom alternatif","35.title":"Route carrossable non terminé","35.problem":"Waze ne propose pas de guidage vers/dans les segment non terminés","35.solution":"Déplacer légèrement l'extrémité libre du segment pour afin que le nœuds de terminaison soit ajouté","36.title":"Noeud A: inutil (mode lent)","36.problem":"Les segments de part et d'autres du nœud A ont les mêmes propriétés","36.solution":"Sélectionner le nœud A et appuyer sur Suppr pour fusionner les 2 segments", +"37.title":"Noeud B: inutil (mode lent)","37.problem":"Les segments de part et d'autres du nœud B ont les mêmes propriétés","37.solution":"Sélectionner le nœud B et appuyer sur Suppr pour fusionner les 2 segments","38.problemLink":"W:Les_fermetures_programmées#Segments","38.title":"Fermetures programmées périmées (mode lent)","38.problem":"Il y a des fermetures programmées périmées sur ce segment","38.solution":"Cliquer 'Modifier les restrictions' et supprimer les restrictions périmées","39.problemLink":"W:Les_fermetures_programmées#Restriction_de_tourner", +"39.title":"Restrictions de tourner périmés (mode lent)","39.problem":"Il y a des restrictions de tourner périmées sur ce nœud de jonction","39.solution":"Cliquer l'icône horloge accolée à la flèche jaune et supprimer les restrictions périmées","41.title":"Noeud A: Autorisation en sens interdit","41.problem":"Au nœud A il y a une autorisation de tourner qui va à l'encontre du sens unique","41.solution":"Passer le segment à double sens, corriger la flèche au nœud A puis repasser en sens unique","42.title":"Noeud B: Autorisation en sens interdit", +"42.problem":"Au nœud B il y a une autorisation de tourner qui va à l'encontre du sens unique","42.solution":"Passer le segment à double sens, corriger la flèche au nœud B puis repasser en sens unique","43.title":"Connecté à lui-même","43.problem":"Le segment est connecté à lui même","43.solution":"Couper le segment en deux","44.title":"Pas ne connexion sortante","44.problem":"Le segment carrossable n'a pas de connexion sortante","44.solution":"Activer au moins une connexion sortante = une flèche verte", +"45.title":"Pas de connexion entrante","45.problem":"Le segment carrossable (non privé) n'a pas de connexion entrante","45.solution":"Sélectionner un segment adjacent et autoriser au moins un accès (flèche rouge → verte)","46.title":"Noeud A: Pas de connexion entrante pour le segment (mode lent)","46.problem":"Le segment carrossable (non privé) n'a pas de connexion entrante au nœud A","46.solution":"Sélectionner un segment adjacent et autoriser au moins un accès (flèche rouge → verte) au nœud A", +"47.title":"Noeud B: Pas de connexion entrante pour le segment (mode lent)","47.problem":"Le segment carrossable (non privé) n'a pas de connexion entrante au nœud B","47.solution":"Sélectionner un segment adjacent et autoriser au moins un accès (flèche rouge → verte) au nœud B","48.solutionLink":"W:Tout_sur_les_ronds-points#Remplacer_.2F_Editer_un_rond-point","48.title":"Segment de rond-point à double sens","48.problem":"Segment de rond-point à double sens de circulation","48.solution":"Refaire le rond-point", +"50.solutionLink":"W:Tout_sur_les_ronds-points#A_retenir","50.title":"Pas de connectivité sur le rond-point (mode lent)","50.problem":"Le segment du rond-point n'a pas de connectivité avec le segment adjacent","50.solution":"Autoriser un virage vers le segment adjacent = Corriger la flèche rouge","57.enabled":!0,"57.title":"Nom de ville sur une rampe","57.problem":"Un Nom de ville sur une rampe peu affecter la recherche dans Waze","57.solution":"Cocher la case 'Sans' pour ville","59.enabled":!0,"59.title":"Nom de ville sur Freeway", +"59.problem":"Un nom de ville sur les segment Freeway provoque des incohérence des polygones Ville","59.solution":"Régler le nom de ville à 'Sans' ou signaler le problème sur le Forum","74.problemLink":"W:Tout_sur_les_ronds-points#A_retenir","74.solutionLink":"W:Tout_sur_les_ronds-points#Remplacer_.2F_Editer_un_rond-point","74.title":"Noeud A: Plusieurs segments connectés","74.problem":"La jonction A du rond-point est connectée à plusieurs segments","74.solution":"Refaire le rond-point","77.title":"Demi-tour autorisé", +"77.problem":"L'impasse carrossable à un demi-tour autorisé à son extrémité","77.solution":"Éventuellement Interdire le demi-tour","78.title":"Mêmes extrémités des segments carrossables (mode lent)","78.problem":"Deux segments carrossables partagent les deux mêmes extrémités","78.solution":"Diviser le segment. Vous pouvez également supprimer l'un des segments si ils sont identiques","79.title":"Demi-tour trop court (mode lent)","79.problem":"Le segment fait moins de 15m si nécessaire Waze ne proposera pas de demi-tour", +"79.solution":"Agrandisseur le segment à 15m mini (si le demi-tour est autorisé)","87.problemLink":"W:Tout_sur_les_ronds-points#A_retenir","87.solutionLink":"W:Tout_sur_les_ronds-points#Remplacer_.2F_Editer_un_rond-point","87.title":"Noeud A: Plusieurs sorties au rond-point","87.problem":"La jonction A du rond-point est connectée à plusieurs segments sortant","87.solution":"Refaire le rond-point","99.title":"Demi-tour à l'entrée du rond-point (mode lent)","99.problem":"Le segment d'entrée du rond-point à un demi-tour autorisé", +"99.solution":"Désactiver le demi-tour","101.title":"Route fermée (seulement disponible dans le rapport)","101.problem":"Le segment est marqué comme étant fermé","101.solution":"Si la construction est terminée, restaurez la connectivité du segment et supprimez le suffixe","101.params":{regexp:"/(^|\\b)travaux(\\b|$)/i"},"102.title":"Noeud A: Pas de connexion sortante (mode lent)","102.problem":"Le segment carrossable n'a pas de connexion sortante au nœud A","102.solution":"Activer au moins une connexion sortante = une flèche verte au nœud A", +"103.title":"Noeud B: Pas de connexion sortante (mode lent)","103.problem":"Le segment carrossable n'a pas de connexion sortante au nœud B","103.solution":"Activer au moins une connexion sortante = une flèche verte au nœud B","104.title":"Voie ferré utilisée pour des commentaires","104.problem":"Le segment de voie ferré est probablement utilisé pour mettre un commentaire","104.solution":"Supprimez le commentaire car les voies ferrée sont affichées pour le client","107.title":"Noeud A: Pas de connexion (mode lent)", +"107.problem":"Le noeud A du segment carrossable est à moins de 5m d'un autre secteur carrossable mais n'y est pas connecté","107.solution":"Connectez le noeud A à un segment à proximité ou le déplacer un peu plus loin","108.title":"Noeud B: pas de connexion (mode lent)","108.problem":"Le noeud B du segment carrossable est à moins de 5m d'un autre secteur carrossable mais n'y est pas connecté","108.solution":"Connectez le noeud B à un segment à proximité ou le déplacer un peu plus loin","109.title":"Segment trop court", +"109.problem":"Le segment carrossables non-terminal est de moins de 2m de long, il est difficile de le voir sur la carte","109.solution":"Augmentez sa taille, supprimez le ou connectez le à un segment adjacent","112.title":"Plus de ${n} lettres en trop pour le nom de la rampe","112.problem":"Le nom de la rampe est trop long","112.solution":"Renommez de façon plus courte le nom de la rampe","114.title":"Noeud A: non carrossable connecté à un carrossable (mode lent)","114.problem":"Le segment non carrossable a une jonction avec un segment carrossable au noeud A", +"114.solution":"Déconnectez le noeud A de tous les segments carrossables","115.title":"Noeud B: non carrossable connecté à un carrossable (mode lent)","115.problem":"Le segment non carrossable a une jonction avec un segment carrossable au noeud B","115.solution":"Déconnectez le noeud B de tous les segments carrossables","116.title":"Élévation hors de portée","116.problem":"L'élévation est en dehors des limites habituelle","116.solution":"Corrigez l'élévation","117.title":"Obsolete CONST ZN marker", +"117.problem":"The segment is marked with obsolete CONST ZN suffix","117.solution":"Change CONST ZN to (closed)","118.title":"Noeud A: Chevauchement des segments (mode lent)","118.problem":"Le segment se chevauche avec le segment adjacent au noeud A","118.solution":"Divisez les segments à 2° ou supprimez le point de la géométrie inutile ou supprimez le segment double au noeud A","119.title":"Noeud B: Chevauchement des segments (mode lent)","119.problem":"Le segment se chevauche avec le segment adjacent au noeud B", +"119.solution":"Divisez les segments à 2° ou supprimez le point de la géométrie inutile ou supprimez le segment double au noeud B","120.title":"Noeud A: Virage trop fort (mode lent)","120.problem":"Le segment carrossable a un virage très fort au noeud A","120.solution":"Désactiver le virage au noeud A ou écarter les segments à 30°","121.title":"Noeud B: Virage trop fort (mode lent)","121.problem":"Le segment carrossable a un virage très fort au noeud B","121.solution":"Désactiver le virage au noeud A ou écarter les segments à 30°", +"128.title":"Vérification personnalisée définie par l'utilisateur (vert)","128.problem":"Certaines des propriétés du segment sont à l'encontre de la Regular Expression définie par l'utilisateur (voir Paramètres→Personnaliser)","128.solution":"Résoudre le problème","129.title":"Vérification personnalisée définie par l'utilisateur (bleu)","129.problem":"Certaines des propriétés du segment sont à l'encontre de la Regular Expression définie par l'utilisateur (voir Paramètres→Personnaliser)","129.solution":"Résoudre le problème", +"163.enabled":!0,"163.title":"'Vers' dans le nom de la rue","163.problem":"Nom de rue contenant 'vers'","163.solution":"Renommer le segment selon les règles du wiki ou signaler sur le forum","163.solutionLink":"W:Nommage_France#Nommage_des_entr.C3.A9es.2C_sorties_et_des_embranchements_d.27autoroutes","163.params":{titleEN:"'Vers' in Ramp name",problemEN:"The Ramp name contains word 'vers'",solutionEN:"Rename the Ramp in accordance with the guidelines",regexp:"/(^|\\b)vers\\b/i"},"170.enabled":!0, +"170.solutionLink":"W:Nommage_France#R.C3.A8gles_de_nommage","170.title":"Majuscule dans le nom de rue","170.problem":"Le nom de la rue commence par une miniscule","170.solution":"Passer la première lettre en majuscule","171.enabled":!0,"171.title":"Abréviation dans le nom de rue","171.problem":"Abréviation indésirable dans le nom de rue","171.solution":"Écrire le mot abréger en toute lettre","171.params":{regexp:"/((^| )([Ss]t-|[Ss]te-))|((^| )([Ss]t|[Ss]te|[Mm]al(?! Assis)|[Gg]al|[Aa]v|[Bb]lvd|[Ii]mp|[Pp]l|[Ss]q|[Aa]ll|[Bb][Dd])($| ))|((^| )(?!(Z\\.I|Z\\.A|Z\\.A\\.C|C\\.C|S\\.N\\.C\\.F|R\\.E\\.R)\\.)[^ ]+\\.)/"}, +"172.title":"Nom de rue avec des espaces inutiles","172.problem":"Double espace dans le nom de rue","172.problemLink":"W:Comment_nommer_les_routes_et_les_villes","172.solution":"Supprimer les espaces inutiles","173.enabled":!1,"173.title":"Nom de rue sans espace avant ou après une abrévation","173.problem":"Pas d'espace avant ('1943r.') ou après ('st.Jan') une abrévation dans le nom de rue","173.solution":"Ajouter un espace avant/après l'abrévation","174.enabled":!0,"174.title":"Mauvais orthographe", +"174.problem":"Mauvais orthographe qui provoque une mauvaise prononciation","174.solution":"Corriger l'orthographe (É = Alt-144 etc)","174.solutionLink":"W:Nommage_France#R.C3.A8gles_de_nommage","174.params":{regexp:"/(^|\\b)(allee|acces|chateau|ecole|egalit[eé]|[eé]galite|eglise|etang|gen[eé]ral|g[eé]neral|hotel|hopital|marechal|president|republique|ocean|ev[eê]ch[eé]|[eé]vech[eé]|[eé]v[eê]che|periphérique|elodie|etienne|eric|emile|emilie|edouard|elisabeth)/i"},"175.title":"Nom de rue avec uniquement des espaces", +"175.problem":"Le nom de la rue n'a que des espaces","175.solution":"Dans les propriétés de l'adresse, cocher 'Sans' pour le nom de la rue et cliquer sur 'Appliquer' OU entrer un nom de rue approprié","190.title":"Minuscule dans le nom de ville","190.problem":"Le nom de ville commence avec une lettre en majuscule","190.solution":"Utilisé ce formulaire pour renommer la ville","192.problemLink":"W:Comment_nommer_les_routes_et_les_villes#Nommage_des_villes_et_villages","192.solutionLink":"F:t=29403", +"192.title":"Nom de ville avec des espaces inutiles","192.problem":"Double espace dans le nom de ville","192.solution":"Utiliser le formulaire suivant pour faire une demande de modification","193.enabled":!1,"193.title":"Nom de bille sans espace avant ou après une abrévation","193.problem":"Pas d'espace avant ('1943r.') ou après ('st.Jana') une abrévation dans le nom de rue","193.solution":"Utiliser ce formulaire pour renommer la ville","200.problemLink":"W:Soft_et_hard_turns","200.solutionLink":"W:Soft_et_hard_turns#Bonnes_pratiques", +"200.title":"Noeud A: Autorisation de tourner non confirmée","200.problem":"Le segment carrossable à une autorisation de tourner non confirmée au noeud A","200.solution":"Cliquer l'autorisation de tourner avec un ? violet pour la confirmer. Il peut être nécessaire de passer les sens unique à double sens pour afficher des flèches cachées"},ES:{".codeISO":"ES",".country":"Spain;Andorra;Bolivia;Costa Rica;Colombia;Cuba;Dominican Republic;Ecuador;Equatorial Guinea;Guatemala;Honduras;Nicaragua;Panama;Peru;Paraguay;El Salvador;Uruguay;Venezuela".split(";"), +".author":"robindlc and fernandoanguita",".updated":"2014-08-30",".lng":["ES","ES-419","GL"],"city.consider":"considerar este nombre de ciudad:","city.1":"nombre de ciudad demasiado corto","city.2":"expandir la abreviación","city.3":"completar nombre corto","city.4":"completar nombre de ciudad","city.5":"corregir mayúsculas","city.6":"comprobar orden de palabras","city.7":"comprobar abreviaciones","city.8a":"añadir nombre de país","city.8r":"eliminar nombre de país","city.9":"comprobar nombre de país", +"city.10a":"añadir palabra","city.10r":"eliminar palabra","city.11":"añadir código de país","city.12":"nombres idénticos, pero ciudades con diferentes IDs","city.13a":"añadir espacio","city.13r":"eliminar espacio","city.14":"revisar el número","props.skipped.title":"El segmento no está revisado","props.skipped.problem":"El segmento se modificó después del 01-05-2014 Y está bloqueado por ti, por lo que Validator no lo revisó","err.regexp":"Error al analizar la opción de revisión #${n}:","props.disabled":"WME Validator deshabilitado", +"props.limit.title":"Demasiados problemas notificados","props.limit.problem":"Hay demasiados problemas notificados, puede que no se muestren todos","props.limit.solution":"Deselecciona el segmento y detiene el proceso de escaneo. Luego pincha el botón con la '✘' roja (Limpiar Reporte)","props.reports":"informes","props.noneditable":"No puedes editar este segmento","report.save":"Guardar este informe","report.list.andUp":"y subiendo","report.list.severity":"Severidad:","report.list.reportOnly":"sólo en el informe", +"report.list.forEditors":"Para editores nivel:","report.list.forCountries":"Para paises:","report.list.forStates":"Para estados:","report.list.forCities":"Para ciudades:","report.list.params":"Parámetros para configurar en el paquete de localización:","report.list.params.set":"Parámetros ajustados en el paquete de localización:","report.list.enabled":"${n} revisiones están habilitadas para","report.list.disabled":"${n} revisiones están deshabilitadas para","report.list.total":"Hay ${n} revisiones disponibles", +"report.list.title":"Lista Completa de Revisiones para","report.list.see":"Ver","report.list.checks":"Configuración>Acerca>Revisiones disponibles","report.list.fallback":"Reglas de Localización de respaldo:","report.and":"y","report.segments":"Número total de segmentos revisados:","report.customs":"Revisiones personalizadas combinadas (verde/azul):","report.reported":"Reportados","report.errors":"errores","report.warnings":"advertencias","report.notes":"notas","report.contents":"Contenidos:","report.summary":"Resumen", +"report.title":"Informe de WME Validator","report.share":"para Compartir","report.generated.by":"generado por","report.generated.on":"activo","report.source":"Fuente del informe:","report.filter.duplicate":"segmentos duplicados","report.filter.streets":"Calles y Calles de Servicio","report.filter.other":"Otros conducibles y no conducibles","report.filter.noneditable":"segmentos no-editables","report.filter.notes":"notas","report.filter.title":"Filtro:","report.filter.excluded":"están excluidos de este informe.", +"report.search.updated.by":"actualizado por","report.search.updated.since":"actualizado desde","report.search.city":"desde","report.search.reported":"reportado como","report.search.title":"Búsqueda:","report.search.only":"sólo segmentos","report.search.included":"están incluídos en el informe.","report.beta.warning":"¡Advertencia WME Beta!","report.beta.text":"Este informe se genera en WME Beta con permalinks beta.","report.beta.share":"Por favor no comparta estos permalinks!","report.size.warning":"¡Advertencia!
El informe tiene ${n} caracteres, por lo que no cabrá en un mensaje de foro o privado.\n
Por favor agrega más filtros para reducir el tamaño del informe.", +"report.note.limit":"* Nota: había demasiados problemas reportados, por lo que algunos de ellos no se incluyen en el resumen.","report.forum":"Para motivar futuros desarrollos, por favor deje su mensaje en el","report.thanks":"Gracias por usar WME Validator!","msg.limit.segments":"Hay demasiados segmentos.\n\nPincha 'Mostrar informe' para revisar el informe, luego\n","msg.limit.segments.continue":"pincha '▶' para continuar.","msg.limit.segments.clear":"pulsa '✘' para borrar el informe.","msg.pan.text":"Desplaza el mapa para validarlo", +"msg.zoomout.text":"Aleja el zoom\tpara iniciar WME Validator","msg.click.text":"Pincha '▶' para validar el área visible del mapa","msg.autopaused":"autopausado","msg.autopaused.text":"¡Autopausado! Pincha '▶' para continuar.","msg.autopaused.tip":"WME Validator automáticamente pausó al arrastrar el mapa o cambiar el tamaño de la ventana","msg.finished.text":"Pincha 'Mostrar informe' para ver los problemas del mapa","msg.finished.tip":"Pincha el botón '✉' (Compartir) para publicar el informe en un \nforo o en un mensaje privado", +"msg.noissues.text":"¡Terminado! ¡No se encontraron problemas!","msg.noissues.tip":"¡Trata de deseleccionar algunas opciones de filtro o inicia WME Validator sobre otra zona del mapa!","msg.scanning.text":"¡Escaneando! Finalizando en ~ ${n} minutos","msg.scanning.text.soon":"¡Escaneando! ¡Finalizando en un minuto!","msg.scanning.tip":"Pincha el botón 'Pausa' para pausar o '■' para detener","msg.starting.text":"¡Comenzando! ¡Las capas están desactivadas para escanear más rápido!","msg.starting.tip":"Usa el botón 'Pausa' para pausar o el botón '■' para detener", +"msg.paused.text":"¡En pausa! Pincha el botón '▶' para continuar.","msg.paused.tip":"Para ver el informe pincha el botón 'Mostrar informe' (si está disponible)","msg.continuing.text":"¡Continuando!","msg.continuing.tip":"WME Validator continuará desde la ubicación en que fue pausado","msg.settings.text":"Pincha 'Atrás' para retornar a la vista principal","msg.settings.tip":"Pincha el botón 'Restaurar valores predeterminados' para resetear todos los parámetros en un clic!","msg.reset.text":"Todas las opciones de filtro y configuración han sido reseteadas a sus valores por defecto", +"msg.reset.tip":"Pincha el botón 'Atrás' para retornar a la vista principal","msg.textarea.pack":"Por favor copia el texto abajo y luego pégalo en el nuevo archivo .user.js","msg.textarea":"Por favor copia el texto abajo y luego pégalo en tu publicación del foro o mensaje privado","noaccess.text":"Lo sentimos,
No puedes usar WME Validator\taquí.
Por favor revisa el hilo del foro
para más información.", +"noaccess.tip":"Por favor revisa el hilo del foro para más información!","tab.switch.tip.on":"Pincha para activar el resaltado","tab.switch.tip.off":"Pincha para desactivar el resaltado","tab.filter.text":"filtro","tab.filter.tip":"Opciones para filtrar el informe y los segmentos resaltados","tab.search.text":"buscar","tab.search.tip":"Opciones de filtro avanzadas para incluir sólo segmentos específicos","tab.help.text":"ayuda","tab.help.tip":"¿Necesitas ayuda?","filter.noneditables.text":"Excluir segmentos no-editables", +"filter.noneditables.tip":"No reportar segmentos bloqueados o \nsegmentos fuera de su área de edición","filter.duplicates.text":"Excluir segmentos duplicados","filter.duplicates.tip":"No mostrar el mismo segmento en diferentes \npartes del reporte\n* Nota: esta opción NO AFECTA el resaltado","filter.streets.text":"Excluir Calles y Vías de Servicio","filter.streets.tip":"No reportar Calles y Vías de Servicio","filter.other.text":"Excluir otros conducibles y no-conducibles","filter.other.tip":"No reportar Caminos de Tierra, Vías de Estacionamiento y Caminos Privados\ny no-conducibles", +"filter.notes.text":"Excluir notas","filter.notes.tip":"Reportar sólo advertencias y errores","search.youredits.text":"Incluir sólo tus ediciones","search.youredits.tip":"Incluir sólo los segmentos editados por ti","search.updatedby.text":"Actualizado por:","search.updatedby.tip":"Incluir sólo segmentos actualizados por el editor especificado\nEste campo soporta:\n - listas: yo, OtrosEditores\n - comodines: palabra*\n - negación: !yo, *\n* Nota: puedes usar 'me' para indicarte a ti mismo", +"search.updatedby.example":"Ejemplo: me","search.updatedsince.text":"Actualizado desde:","search.updatedsince.tip":"Incluir sólo segmentos editados desde la fecha especificada formato de fecha\nFirefox: AAAA-MM-DD","search.updatedsince.example":"AAAA-MM-DD","search.city.text":"Nombre de ciudad:","search.city.tip":"Incluir sólo segmentos con el nombre de ciudad especificado\nEste campo soporta:\n - listas: Paris, Meudon\n - comodines: Área * Mayor\n - negación: !Paris, *","search.city.example":"Ejemplo: !Paris, *", +"search.checks.text":"Reportado como:","search.checks.tip":"Incluir sólo segmentos reportados como específicos\nEste campo empareja:\n - severidades: errores\n - revisar nombres: Calle nueva\n - revisar IDs: 40\nEste campo soporta:\n - listas: 36, 37\n - comodines: *rotonda*\n - negación: !giros suaves*, *","search.checks.example":"Ejemplo: inverso*","help.text":" Hilos de Ayuda:
F.A.Q.
Consulta tu duda en el foro
Como ajustar Validator para tu país
Acerca de 'Puede ser un nombre de Ciudad incorrecto'", +"help.tip":"Abrir en una nueva pestaña del explorador","button.scan.tip":"Comenzar escaneo del área del mapa actual \n* Nota: esto puede tomar unos minutos","button.scan.tip.NA":"Aleja el zoom para comenzar a escanear el área del mapa actual","button.pause.tip":"Pausar escaneo","button.continue.tip":"Continuar escaneando el área del mapa","button.stop.tip":"Detener el escaneo y volver a la posición de inicio","button.clear.tip":"Borrar informe y caché de segmentos","button.clear.tip.red":"Hay demasiados segmentos reportados:\n 1. Pincha 'Mostrar informe' para generar informe.\n 2. Pincha este botón para borrar el informe y comenzar de nuevo.", +"button.report.text":"Mostrar informe","button.report.tip":"Aplicar el filtro y generar informe HTML en una nueva pestaña","button.BBreport.tip":"Compartir el informe en el foro Waze o en un mensaje privado","button.settings.tip":"Configurar ajustes","tab.custom.text":"personalizado","tab.custom.tip":"Ajustes de revisión personalizados definidos por el usuario","tab.settings.text":"Ajustes","tab.scanner.text":"escanear","tab.scanner.tip":"Ajustes de escaneo de mapa","tab.about.text":"acerca de", +"tab.about.tip":"Acerca de WME Validator","scanner.sounds.text":"Habilitar sonidos","scanner.sounds.tip":"Pitidos y sonidos mientras escanea","scanner.sounds.NA":"Su navegador no admite AudioContext","scanner.highlight.text":"Resalta problemas en el mapa","scanner.highlight.tip":"Resalta problemas reportados en el mapa","scanner.slow.text":"Activa 'slow' verificaciones","scanner.slow.tip":"Activa análisis profundo del mapa\n* Nota: esta opción puede ralentizar el proceso de escaneo","scanner.ext.text":"Informa de resaltados externos", +"scanner.ext.tip":"Informa de segmentos resaltados por WME Toolbox o WME Color Highlights","custom.template.text":"Plantilla personalizada","custom.template.tip":"Plantilla para comprobaciones definidas por el usuario.\n\nPuede usar las siguientes variables expandibles:\n${country}, ${state}, ${city}, ${street},\n${country}, ${state}, ${city}, ${street},\n${altCity[index or delimeter]} Example: ${altCity[0]},\n${altStreet[index or delimeter]} Example: ${altStreet[##]},\n${type}, ${typeRank}, ${toll}, ${direction}, ${elevation}, ${lock},\n${length}, ${ID}, ${roundabout}, ${hasHNs},\n${drivable}, ${softTurns}, ${Uturn}, ${deadEnd},\n${segmentsA}, ${inA}, ${outB}, ${UturnA},\n${segmentsB}, ${inB}, ${outB}, ${UturnB}", +"custom.template.example":"Ejemplo: ${street}","custom.regexp.text":"Personalizado RegExp","custom.regexp.tip":"Expresión regular de comprobación personalizada definida por el usuario para que coincida con la plantilla.\n\nCase-insensitive match: /regexp/i\nNegation (do not match): !/regexp/\nLog debug information on console: D/regexp/","custom.regexp.example":"Ejemplo: !/.+/","about.tip":"Pincha 'actualizar' para abrir el hilo del foro en una pestaña nueva", +"button.reset.text":"Restablecer predeterminados","button.reset.tip":"Revertir opciones de filtro y ajustes a sus valores predeterminados","button.list.text":"Comprobaciones disponibles...","button.list.tip":"Muestra una lista de las comprobaciones disponibles en WME Validator","button.wizard.tip":"Crear paquete de localización","button.back.text":"Atrás","button.back.tip":"Cerrar configuración y volver a la vista principal","1.solutionLink":"W:Crear_y_editar_rotondas#Arreglar_rotondas_editadas_manualmente", +"1.title":"WME Toolbox: Rotonda que puede causar problemas","1.problem":"Los números de identificación de los puntos de unión de los segmentos de la rotonda no son consecutivos","1.solution":"Rehacer la rotonda","2.title":"WME Toolbox: Segmento Simple","2.problem":"El segmento tiene nodos de geometría innecesarios","2.solution":"Simplifica la geometría del segmento pasando el puntero del ratón por encima y pulsando la tecla 'd'","3.title":"WME Toolbox: Bloqueo nivel 2","3.problem":"El segmento está resaltado por WME Toolbox. No es un problema", +"4.title":"WME Toolbox: Bloqueo nivel 3","4.problem":"El segmento está resaltado por WME Toolbox. No es un problema","5.title":"WME Toolbox: Bloqueo nivel 4","5.problem":"El segmento está resaltado por WME Toolbox. No es un problema","6.title":"WME Toolbox: Bloqueo nivel 5","6.problem":"El segmento está resaltado por WME Toolbox. No es un problema","7.title":"WME Toolbox: Bloqueo nivel 6","7.problem":"El segmento está resaltado por WME Toolbox. No es un problema","8.title":"WME Toolbox: Numeros de casas", +"8.problem":"El segmento está resaltado por WME Toolbox. No es un problema","9.title":"WME Toolbox: Segmento con restricciones de tiempo","9.problem":"El segmento está resaltado por WME Toolbox. No es un problema","13.title":"WME Colour Highlights: Bloqueo de editor","13.problem":"El segmento está resaltado por WME Colour Highlights. No es un problema","14.title":"WME Colour Highlights: Peaje / Vía de sentido único","14.problem":"El segmento está resaltado por WME Colour Highlights. No es un problema", +"15.title":"WME Colour Highlights: Editado recientemente","15.problem":"El segmento está resaltado por WME Colour Highlights. No es un problema","16.title":"WME Colour Highlights: Rango de vías","16.problem":"El segmento está resaltado por WME Colour Highlights. No es un problema","17.title":"WME Colour Highlights: Sin ciudad","17.problem":"El segmento está resaltado por WME Colour Highlights. No es un problema","18.title":"WME Colour Highlights: Restricción horaria / Tipo de vía resaltado","18.problem":"El segmento está resaltado por WME Colour Highlights. No es un problema", +"19.title":"WME Colour Highlights: Sin nombre","19.problem":"El segmento está resaltado por WME Colour Highlights. No es un problema","20.title":"WME Colour Highlights: Filtro por ciudad","20.problem":"El segmento está resaltado por WME Colour Highlights. No es un problema","21.title":"WME Colour Highlights: Filtro por ciudad (alt. ciudad)","21.problem":"El segmento está resaltado por WME Colour Highlights. No es un problema","22.title":"WME Colour Highlights: Filtro por editor","22.problem":"El segmento está resaltado por WME Colour Highlights. No es un problema", +"23.title":"Segmento no confirmado","23.problem":"Cada segmento debe tener al menos el nombre del país o estado","23.solution":"Confirma la vía actualizando sus detalles","24.problemLink":'W:Corrigiendo_ciudades_"manchadas"',"24.title":"Puede haber nombre incorrecto de ciudad (sólo disponible en el informe)","24.problem":"El segmento puede tener un nombre de ciudad incorrecto","24.solution":"Considera el nombre de ciudad sugerido y use este formulario para renombrar la ciudad","25.title":"Dirección del segmento marcada como desconocida", +"25.problem":"La dirección del segmento 'Desconocida' no impedirá enrutar por la vía","25.solution":"Fijar la dirección de la vía","27.enabled":!0,"27.problemLink":'W:Corrigiendo_ciudades_"manchadas"',"27.solutionLink":"W:Crear_y_editar_segmentos_de_vías#Address_Properties","27.title":"Nombre de ciudad en vía férrea","27.problem":"Poner nombres de ciudad en la vía férrea puede generar ciudades manchadas","27.solution":"En las propiedades de dirección seleccione la casilla 'Ninguno' cerca del nombre de ciudad, haz clic en 'Aplicar'", +"28.problemLink":"W:Puntos_de_Unión._Guía_de_estilo#Bifurcaciones_de_rampas","28.solutionLink":"W:Crear_y_editar_segmentos_de_vías#Address_Properties","28.title":"Nombre de calle en una rampa bidireccional","28.problem":"Si la rampa no tiene nombre, el nombre del segmento siguiente se propagará hacia atrás","28.solution":"En la caja de propiedades de la dirección, marca la casilla 'Ninguno' en el nombre de la calle y haz clic en 'Aplicar'","29.problemLink":"W:Crear_y_editar_rotondas#Creaci.C3.B3n_de_una_rotonda_a_partir_de_una_intersecci.C3.B3n", +"29.solutionLink":"W:Crear_y_editar_segmentos_de_vías#Address_Properties","29.title":"Nombre de calle en rotonda","29.problem":"En Waze, no nombramos los segmentos de las rotondas","29.solution":"En la caja de propiedades de la dirección, marca la casilla 'Ninguno' en el nombre de la calle y haz clic en 'Aplicar' y después crea un punto de interés tipo 'intersección / intercambio' para nombrar la rotonda","34.title":"Nombre de calle alternativo vacío","34.problem":"El nombre de calle alternativo está vacío", +"34.solution":"Borrar el nombre alternativo de calle vacío","35.title":"Segmento de vía sin terminar","35.problem":"Waze no enrutará desde un segmento sin terminar","35.solution":"Mover un poco el segmento para que el extremo sin terminar sea añadido automáticamente al punto de unión","36.title":"Punto de unión A innecesario (slow)","36.problem":"Los segmentos adyacentes al punto de unión A son idénticos","36.solution":"Selecciona el punto de unión A y pulsa la tecla borrar para unir los dos segmentos", +"37.title":"Punto de unión B innecesario (slow)","37.problem":"Los segmentos adyacentes al punto de unión B son idénticos","37.solution":"Selecciona el punto de unión B y pulsa la tecla borrar para unir los dos segmentos","38.problemLink":"W:Restricciones_horarias#En_segmentos","38.title":"Restricción de segmento caducada (slow)","38.problem":"El segmento tiene una restricción caducada","38.solution":"Hacer clic en 'Editar restricciones' y borrar la restricción caducada","39.problemLink":"W:Restricciones_horarias#En_giros", +"39.title":"Restricción de giro caducada (slow)","39.problem":"El segmento tiene un giro con una restricción caducada","39.solution":"Hacer clic en el icono de reloj cerca de la flecha amarilla y borrar la restricción caducada","41.title":"Conectividad inversa en punto de unión A del segmento","41.problem":"Hay un giro que va contra la dirección del segmento en el punto de unión A del segmento","41.solution":"Hacer el segmento 'bidireccional', restringir todos los giros en el punto de unión A y luego hacer el segmento 'Unidireccional (A→B)' nuevamente", +"42.title":"Conectividad inversa en punto de unión B del segmento","42.problem":"Hay un giro que va contra la dirección del segmento en el punto de unión B del segmento","42.solution":"Hacer el segmento 'bidireccional', restringir todos los giros en el punto de unión B y luego hacer el segmento 'Unidireccional (B→A)' nuevamente","43.solutionLink":"W:Guía_rápida_de_edición_de_mapas#Dividir_un_segmento","43.title":"Auto conectividad","43.problem":"El segmento está conectado a si mismo","43.solution":"Divide el segmento en TRES partes", +"44.solutionLink":"W:Crear_y_editar_segmentos_de_vías#Establecer_giros_permitidos_.28conexiones.29","44.title":"Sin conexión de salida","44.problem":"El segmento no tiene ningún giro de salida permitido","44.solution":"Activa al menos un giro de salida desde el segmento","45.solutionLink":"W:Crear_y_editar_segmentos_de_vías#Establecer_giros_permitidos_.28conexiones.29","45.title":"Sin conexión de entrada","45.problem":"El segmento no privado no tiene ningún giro de entrada permitido","45.solution":"Selecciona un segmento adyacente y activa por lo menos un giro hacia el segmento", +"46.solutionLink":"W:Crear_y_editar_segmentos_de_vías#Establecer_giros_permitidos_.28conexiones.29","46.title":"Sin entrada en A (slow)","46.problem":"El segmento no-privado no tiene ningún giro de entrada habilitado en el punto de unión A","46.solution":"Selecciona un segmento adyacente y habilita al menos un giro hacia el segmento en el punto de unión A","47.solutionLink":"W:Crear_y_editar_segmentos_de_vías#Establecer_giros_permitidos_.28conexiones.29","47.title":"Sin entrada en B (slow)","47.problem":"El segmento no-privado no tiene ningún giro de entrada habilitado en el punto de unión B", +"47.solution":"Selecciona un segmento adyacente y habilita al menos un giro hacia el segmento en el punto de unión B","48.solutionLink":"W:Crear_y_editar_rotondas#Arreglar_rotondas_editadas_manualmente","48.title":"Segmento de rotonda bidireccional","48.problem":"El segmento de rotonda es bidireccional","48.solution":"Rehacer la rotonda","50.solutionLink":"W:Crear_y_editar_rotondas#Arreglar_rotondas_editadas_manualmente","50.title":"No hay conectividad en la rotonda (slow)","50.problem":"El segmento de la rotonda no tiene conectividad con el segmento de rotonda siguiente", +"50.solution":"Permitir un giro al segmento adyacente o rehacer la rotonda","57.enabled":!0,"57.solutionLink":"W:Crear_y_editar_segmentos_de_vías#Address_Properties","57.title":"Nombre de ciudad en rampa con nombre","57.problem":"Poner el nombre de ciudad en las rampas puede afectar a los resultados de búsqueda","57.solution":"En las propiedades de dirección seleccione la casilla 'Ninguno' cerca del nombre de ciudad, haz clic en 'Aplicar'","59.enabled":!0,"59.problemLink":"W:Corrigiendo_ciudades_'manchadas'", +"59.solutionLink":"W:Crear_y_editar_segmentos_de_vías#Address_Properties","59.title":"Nombre de Ciudad en Autopista","59.problem":"Poner nombres de ciudad en la Autopista puede generar ciudades manchadas","59.solution":"En las propiedades de dirección seleccione la casilla 'Ninguno' cerca del nombre de ciudad, haz clic en 'Aplicar'","73.enabled":!0,"73.title":"Menos de 3 caracteres de longitud en el nombre de la calle","73.problem":"El nombre de la calle tiene una longitud de menos de 3 caracteres", +"73.solution":"Corrige el nombre de la calle","74.problemLink":"W:Crear_y_editar_rotondas","74.solutionLink":"W:Crear_y_editar_rotondas#Arreglar_rotondas_editadas_manualmente","74.title":"Varios segmentos en el punto de unión A de la rotonda","74.problem":"La rotonda tiene en el punto de unión A más de un segmento conectado","74.solution":"Rehacer la rotonda","77.title":"Calle sin salida con giro en U","77.problem":"La calle sin salida tiene un giro en U habilitado","77.solution":"Deshabilitar el giro en U", +"78.solutionLink":"W:Guía_rápida_de_edición_de_mapas#Dividir_un_segmento","78.title":"Segmentos con los mismos puntos de inicio y final (slow)","78.problem":"Dos segmentos comparten los puntos de inicio y final","78.solution":"Divide el segmento. También puedes borrar uno de los segmentos si son idénticos","79.title":"Conector para giros en U demasiado corto (slow)","79.problem":"La longitud del segmento es menor de 15 metros por lo que el giro en U no es posible","79.solution":"Aumente la longitud del segmento", +"87.problemLink":"W:Crear_y_editar_rotondas","87.solutionLink":"W:Crear_y_editar_rotondas#Arreglar_rotondas_editadas_manualmente","87.title":"Más de un segmento de salida en el punto de unión A de la rotonda","87.problem":"La rotonda tiene en el punto de unión A más de un segmento de salida conectado","87.solution":"Rehacer la rotonda","90.enabled":!0,"90.title":"Segmento de Autopista bidireccional","90.problem":"La mayoría de las Autopistas están separadas en dos vías de un sentido, por lo que este segmento bidireccional puede ser un error", +"90.solution":"Revisar dirección de Autopista","99.title":"Giro en U en la entrada de rotonda (slow)","99.problem":"El segmento de entrada a la rotonda tiene un giro en U habilitado","99.solution":"Deshabilitar el giro en U","101.enabled":!1,"101.title":"Zona en construcción (sólo disponible en el informe)","101.problem":"El segmento está marcado como zona de construcción","101.solution":"Si la construcción está terminada, volver a conectar el segmento y borrar el sufijo","102.solutionLink":"W:Crear_y_editar_segmentos_de_vías#Establecer_giros_permitidos_.28conexiones.29", +"102.title":"Sin salida en A (slow)","102.problem":"El segmento no tiene ningún giro de salida habilitado en el punto de unión A","102.solution":"Habilita al menos un giro de salida desde el segmento en el punto de unión A","103.solutionLink":"W:Crear_y_editar_segmentos_de_vías#Establecer_giros_permitidos_.28conexiones.29","103.title":"Sin salida en B (slow)","103.problem":"El segmento no tiene ningún giro de salida habilitado en el punto de unión B","103.solution":"Habilita al menos un giro de salida desde el segmento en el punto de unión B", +"104.title":"Vía férrea usada para comentarios","104.problem":"El segmento de vía férrea es probablemente usado como comentario de mapa","104.solution":"Borrar el comentario ya que las vías férreas serán añadidas al mapa del cliente","107.title":"Sin conexión en punto de unión A (slow)","107.problem":"El punto de unión A del segmento está a menos de 5 metros de otro segmento pero no está conectado","107.solution":"Conectar el punto de unión A a un segmento cercano o separarlos un poco más","108.title":"Sin conexión en punto de unión B (slow)", +"108.problem":"El punto de unión B del segmento está a menos de 5 metros de otro segmento pero no está conectado","108.solution":"Conectar el punto de unión B a un segmento cercano o separarlos un poco más","109.solutionLink":"W:Guía_rápida_de_edición_de_mapas#Eliminar_un_punto_de_uni.C3.B3n","109.title":"Segmento muy corto","109.problem":"El segmento tiene menos de 2 metros de longitud, así que es difícil de ver en el mapa","109.solution":"Aumentar la longitud, borrar el segmento, o unirlo a un segmento adyacente", +"112.title":"Más de 55 caracteres en el nombre de la Rampa","112.problem":"El nombre de la Rampa tiene más de 55 caracteres","112.solution":"Acorta el nombre de la Rampa","114.enabled":!1,"114.title":"No transitable conectada a transitable en el punto de unión A (slow)","114.problem":"El segmento no transitable tiene un punto de unión con un segmento transitable en el extremo A","114.solution":"Desconecta el extremo A de todos los segmentos transitables","115.enabled":!1,"115.title":"No transitable conectada a transitable en el punto de unión B (slow)", +"115.problem":"El segmento no transitable tiene un punto de unión con un segmento transitable en el extremo B","115.solution":"Desconecta el extremo B de todos los segmentos transitables","116.title":"Elevación fuera de rango","116.problem":"La elevación del segmento está fuera de rango","116.solution":"Corrige la elevación","117.enabled":!1,"117.title":"Marcado obsoleto: CONST ZN","117.problem":"El segmento está marcado con el sufijo obsoleto CONST ZN","117.solution":"Cambiar CONST ZN a (closed)", +"118.title":"Segmentos superpuestos en A (slow)","118.problem":"El segmento se solapa con el segmento adyacente en el punto de unión A","118.solution":"Separa los dos segmentos al menos 2º o elimina el nodo de geometría innecesario o borra el segmento duplicado en el punto de unión A","119.title":"Segmentos superpuestos en B (slow)","119.problem":"El segmento se solapa con el segmento adyacente en el punto de unión B","119.solution":"Separa los dos segmentos al menos 2º o elimina el nodo de geometría innecesario o borra el segmento duplicado en el punto de unión B", +"120.title":"Giro demasiado cerrado en A (slow)","120.problem":"El segmento tiene un giro demasiado cerrado en el punto de unión A","120.solution":"Desactiva el giro cerrado en el punto de unión A o considera separar los segmentos hasta un ángulo de 30°","121.title":"Giro demasiado cerrado en B (slow)","121.problem":"El segmento tiene un giro demasiado cerrado en el punto de unión B","121.solution":"Desactiva el giro cerrado en el punto de unión B o considera separar los segmentos hasta un ángulo de 30°", +"128.title":"Comprobación personalizada por el usuario 1","128.problem":"Alguna de las propiedades del segmento coinciden con la expresión regular definida por el usuario (ver Ajustes→Personalización)","128.solution":"Resolver el problema","129.title":"Comprobación personalizada por el usuario 2","129.problem":"Alguna de las propiedades del segmento coinciden con la expresión regular definida por el usuario (ver Ajustes→Personalización)","129.solution":"Resolver el problema","130.enabled":!0,"130.severity":"N", +"130.title":"Nivel de bloqueo de Autopista incorrecto","130.problem":"El segmento de Autopista no está bloqueado a nivel 4","130.problemLink":"W:Dudas_frecuentes_editando_mapas#.C2.BFDebo_.22bloquear.22_mis_ediciones.3F","130.solution":"Bloquear el segmento de Autopista a nivel 4","130.params":{titleEN:"No lock on Freeway",problemEN:"The Freeway segment should be locked to Lvl 4",solutionEN:"Lock the segment",template:"${type}:${lock}",regexp:"/^3:[^4]/"},"131.enabled":!0,"131.severity":"N","131.title":"No lock on Major Highway", +"131.problem":"The Major Highway segment should be locked to Lvl 3","131.problemLink":"W:Dudas_frecuentes_editando_mapas#.C2.BFDebo_.22bloquear.22_mis_ediciones.3F","131.solution":"Lock the segment","131.params":{titleEN:"No lock on Major Highway",problemEN:"The Major Highway segment should be locked to Lvl 3",solutionEN:"Lock the segment",template:"${type}:${lock}:${street}",regexp:"/^6:[^3]:N-/"},"133.enabled":!0,"133.severity":"N","133.title":"No lock on Ramp","133.problem":"The Ramp segment should be locked to Lvl 3", +"133.problemLink":"W:Dudas_frecuentes_editando_mapas#.C2.BFDebo_.22bloquear.22_mis_ediciones.3F","133.solution":"Lock the segment","133.params":{titleEN:"No lock on Ramp",problemEN:"The Ramp segment should be locked to Lvl 3",solutionEN:"Lock the segment",template:"${type}:${lock}",regexp:"/^4:[^3]/"},"150.title":"Nivel de bloqueo de Autopista incorrecto","150.problem":"El segmento de Autopista no está bloqueado a nivel ${n}","150.solution":"Bloquear el segmento de Autopista a nivel ${n}","169.title":"Calle nombrada incorrectamente", +"169.problem":"La calle tiene el nombre incorrecto, usando caracteres o palabras ilegales","169.solution":"Renombre la calle de acuerdo a los criterios establecidos","170.enabled":!0,"170.title":"Nombre de calle comienza con minúscula","170.problem":"El nombre de la calle comienza con minúscula","170.solution":"Escribir en mayúscula la primera letra del nombre","172.title":"Nombre de calle con espacios innecesarios","172.problem":"Espacio en blanco inicial/final o doble en el nombre de la calle", +"172.solution":"Borrar los espacios innecesarios del nombre de Calle","173.enabled":!1,"173.title":"Nombre de segmento sin espacio antes o después de una abreviación","173.problem":"Sin espacio antes ('1943r.') o después ('St.Jan') de una abreviación en el nombre del segmento","173.solution":"Agregar un espacio antes/después de la abreviación","175.solutionLink":"W:Crear_y_editar_segmentos_de_vías#Address_Properties","175.title":"Nombre del segmento sólo con espacios","175.problem":"El nombre del segmento sólo tiene espacios en blanco en el nombre", +"175.solution":"En la caja de propiedades de la dirección, marca la casilla 'Ninguno' en el nombre de la calle y haz clic en 'Aplicar' o escribe un nombre de calle correcto","190.title":"Nombre de ciudad con minúscula","190.problem":"El nombre de la ciudad comienza con minúscula","190.solution":"Utiliza este formulario para renombrar la ciudad","192.title":"Nombre de Ciudad con espacios innecesarios","192.problem":"Espacio en blanco inicial/final o doble en el nombre de la ciudad","192.solution":"Use este formulario para renombrar la Ciudad", +"193.enabled":!1,"193.title":"Nombre de Ciudad sin espacio delante o atrás de una abreviación","193.problem":"Sin espacio antes ('1943r.') o después ('St.Jean') de una abreviación en el nombre de la ciudad","193.solution":"Use este formulario para renombrar la Ciudad","200.problemLink":"W:Giros_implícitos_y_explícitos","200.solutionLink":"W:Giros_implícitos_y_explícitos#Mejores_pr.C3.A1cticas","200.title":"Unión A: Giro suave (implícito) en segmento","200.problem":"El segmento tiene un giro no confirmado", +"200.solution":"Haz clic en el giro indicado con un signo de interrogación color púrpura para confirmarlo. Nota: es posible que debas hacer el segmento bidireccional para ver todos los giros","201.problemLink":"W:Giros_implícitos_y_explícitos","201.solutionLink":"W:Giros_implícitos_y_explícitos#Mejores_pr.C3.A1cticas","201.title":"Unión A: Giro suave (implícito) en segmento principal","201.problem":"El segmento principal tiene un giro no confirmado","201.solution":"Haz clic en el giro indicado con un signo de interrogación color púrpura para confirmarlo. Nota: es posible que debas hacer el segmento bidireccional para ver todos los giros"}, +DE:{".codeISO":"DE",".country":"Germany","59.enabled":!0,"59.problemLink":"W:How_to_label_and_name_roads_(Austria)#Autobahnen_and_Schnellstra.C3.9Fen_.28A_.26_S.29","90.enabled":!0,"110.enabled":!0,"150.enabled":!0,"150.problemLink":"W:Die_beste_Vorgehensweise_beim_Bearbeiten_der_Karte#Richtung_und_Sperren_von_Stra.C3.9Fen","214.params":{regexp:"/^7|.+0$/"},"215.params":{regexp:"/^7|.+0$/"}},CZ:{".codeISO":"CZ",".country":"Czech Republic","27.enabled":!0,"52.enabled":!0,"73.enabled":!0,"90.enabled":!0, +"105.enabled":!0,"150.enabled":!0,"150.problemLink":"F:t=64980&p=572847#p572847","150.params":{n:4},"151.enabled":!0,"151.problemLink":"F:t=64980&p=572847#p572847","151.params":{n:4},"152.enabled":!0,"152.problemLink":"F:t=64980&p=572847#p572847","152.params":{n:4},"153.enabled":!0,"153.problemLink":"F:t=64980&p=572847#p572847","153.params":{n:4},"154.enabled":!0,"154.problemLink":"F:t=64980&p=572847#p572847","154.params":{n:3},"170.enabled":!0,"170.params":{regexp:"/^(?!(alej|bratranců|bratří|bří|dr\\.|gen\\.|generála|kapitána|kpt\\.|krále|majora|mjr\\.|most|nábř\\.|nábřeží|nám\\.|náměstí|park|plk\\.|plukovníka|podplukovníka|por\\.|poručíka|pplk\\.|prap\\.|praporčíka|prof\\.|promenáda|sad|sady|sídl\\.|sídliště|tř\\.|třída|tunel|ul\\.|ulice|zahrada) [^a-z])[a-z]/"}}, +CL:{".codeISO":"CL",".country":"Chile",".fallbackCode":"ES","59.enabled":!0,"150.enabled":!0,"170.enabled":!0,"200.enabled":!1},CH:{".codeISO":"CH",".country":"Switzerland","59.enabled":!0,"59.problemLink":"W:How_to_label_and_name_roads_(Austria)#Autobahnen_and_Schnellstra.C3.9Fen_.28A_.26_S.29","90.enabled":!0,"110.enabled":!0,"150.enabled":!0,"150.problemLink":"W:Die_beste_Vorgehensweise_beim_Bearbeiten_der_Karte#Richtung_und_Sperren_von_Stra.C3.9Fen"},BN:{".codeISO":"BN",".country":"Brunei","69.enabled":!0, +"73.enabled":!0,"150.enabled":!0,"150.params":{n:2},"151.enabled":!0,"151.params":{n:2},"152.enabled":!0,"152.params":{n:2}},BG:{".codeISO":"BG",".country":"Bulgaria","27.enabled":!0},BE:{".codeISO":"BE",".country":"Belgium","109.params":{n:6},"150.enabled":!0,"150.problemLink":"W:Belgium/Freeway","151.enabled":!0,"151.problemLink":"W:Belgium/Major_Highway","152.enabled":!0,"152.problemLink":"W:Belgium/Minor_Highway","154.enabled":!0,"154.problemLink":"W:Belgium/Primary_Street","160.enabled":!0,"160.problemLink":"W:Belgium/Freeway", +"160.params":{solutionEN:"Rename the Freeway segment to a 'Anum' or 'Anum - Enum' or 'Anum > Dir1 / Dir2'",regexp:"!/^(A|B|E)[0-9]+( - (A|E)[0-9]+)*( > [^\\/]+( \\/ [^\\/]+)*)?$/"},"163.enabled":!0,"163.problemLink":"W:Belgium/Roads#Highways","163.solutionLink":"W:Belgium/Ramp","163.params":{titleEN:"Ramp name starts with a number",problemEN:"The Ramp name starts with a number",solutionEN:"Rename the Ramp in accordance with the guidelines",regexp:"/^([0-9]+)/"},"171.enabled":!0,"171.problemLink":"W:Belgium/Ramp#Text_To_Speech_.28TTS.29_-_ri_-_di", +"171.params":{problemEN:"The street name contains incorrect 'ri.' abbreviation",solutionEN:"Change the 'ri.' abbreviation to 'ri' (no dot)",regexp:"/(^|\\b)ri\\./i"}},AU:{".codeISO":"AU",".country":"Australia","27.enabled":!0,"59.enabled":!0,"59.problemLink":"W:How_to_label_and_name_roads_(Australia)#Freeway","112.enabled":!1,"150.enabled":!0,"150.problemLink":"W:How_to_label_and_name_roads_(Australia)#Freeway","151.enabled":!0,"151.problemLink":"W:How_to_label_and_name_roads_(Australia)#Major_Highway", +"151.params":{n:3},"152.enabled":!0,"152.problemLink":"W:How_to_label_and_name_roads_(Australia)#Minor_Highway"},AT:{".codeISO":"AT",".country":"Austria","59.enabled":!0,"59.problemLink":"W:How_to_label_and_name_roads_(Austria)#Autobahnen_and_Schnellstra.C3.9Fen_.28A_.26_S.29","90.enabled":!0,"110.enabled":!0,"150.enabled":!0,"150.problemLink":"W:Die_beste_Vorgehensweise_beim_Bearbeiten_der_Karte#Richtung_und_Sperren_von_Stra.C3.9Fen"},AR:{".codeISO":"AR",".country":"Argentina",".fallbackCode":"ES", +"150.enabled":!0,"169.enabled":!0,"169.solutionLink":"W:Como_categorizar_y_nombrar_calles_(Argentina)#Calles","169.params":{regexp:"/(^|\\b)[Cc]alle(?! [0-9]+( ([A-Z]|bis))?$)/"}}};function ia(b){return{}.toString.call(b).charCodeAt(8)^{}.toString.call(b).charCodeAt(11)}function c(b){return 48!==ia(b)}function sa(){var b=f.ga,a;for(a in b)if(b.hasOwnProperty(a))return!1;return!0}function xa(b){switch(ia(b)){case 32:for(var a=[],g=0,d=b.length;gb}))}function Gb(b){return Eb!==null?Eb.createHTML(b):b} +function Jb(b){return b.split("\\").join("\\\\").split("^").join("\\^").split("$").join("\\$").split("+").join("\\+").split("?").join("\\?").split(":").join("\\:").split("!").join("\\!").split(".").join("\\.").split("-").join("\\-").split("*").join(".*").split("(").join("\\(").split(")").join("\\)").split("[").join("\\[").split("]").join("\\]").split("{").join("\\{").split("}").join("\\}")}function Kb(b,a,g){return"WME Validator v2025.02.26"+(b?" "+b:"")+(a?":"+(g?"\n":" ")+a:"")} +function Lb(b){window.console.log(Kb("",b))}function Pb(b){b=Kb("error",b,!0);Lb(b);f.Sa||(f.Sa=!0,alert(b));M(Wb)}function Xb(b){b=Kb("warning",b,!0);Lb(b);alert(b)}function M(b,a,g){var d=0;g&&(d=g);window.setTimeout(b,d,a)}function Yb(){window.clearTimeout(f.lb);window.clearTimeout(f.Bb);f.lb=-1;f.Bb=-1}function Zb(){var b=Date.now()/1E3;Q(1899447441)&&(f.Fb.zc+=b-f.Fb.Kd);Q(1116352408)&&(f.Fb.zc=0);f.Fb.Kd=b}function dc(b){Q(1116352408)&&3049323471===b&&(b=1116352408);Zb();f.Xa=b;M(ec)} +function fc(){f.ga={};f.Va={};E={Yc:20,Ta:!1,ed:!1,$a:0,Y:0,ab:{},Wd:{},Od:{},Ed:{},lc:{},Xc:{},Td:{},nb:{},Yb:[],Pd:[]};f.wc=!1}function kc(b,a){try{h.u.R.Uc.l&&lc(b,a)}catch(g){}}function Q(b){return f.Xa===b}function mc(){if(Q(1116352408)||Q(3049323471))h.u.R.ya.l?nc(!1):nc(!0);M(ec)}function oc(){f.ka=!0;mc()}function pc(b){sb.app.layout.model.attributes.loadingFeatures?setTimeout(function(){pc(b)},50):oc()} +function qc(){h.i.J.Pc.l=!1;h.i.J.Ob.l=!0;h.i.J.Qc.l=!0;h.i.J.Sc.l=!1;h.i.J.Rc.l=!1;h.i.J.Pb.l=!1;h.i.B.jb.l=!1;h.i.B.Qa.D="";f.cd={};h.i.B.Rb.D="";f.Vb=0;h.i.B.Qb.D="";f.bd={};h.i.B.zb.D="";f.ad={};h.u.R.re.l=!0;h.u.R.Tc.l=!0;h.u.R.ya.l=!0;h.u.R.Uc.l=!1;h.u.X.Vc.D="";h.u.X.fc.D="";h.u.X.Wc.D="";h.u.X.hc.D=""}function rc(b,a){var g=f.M[b],d=f.M[a];return g.A!==d.A?d.A-g.A:(g=g.j.localeCompare(d.j))?g:b-a}function uc(b){return b?b:"No City"} +function vc(b,a,g){if(!h.i.B.zb.D)return b;b=f.M[a];if(g&&b.bc)return 0;var d=wc(b.A).toUpperCase();g=f.ad;if(a in g){if(g[a])return b.A}else{var k=h.i.B.zb.D,y=xc(b.j,yc(b.ba,f.mb),"titleEN");try{if(g[a]=!1,Qa(k,function(u){if(/^#?\d+$/.test(u))return"#"===u.charAt(0)&&(u=u.slice(1)),+a===+u;if(u.toUpperCase()===d)return!0;u=Jb(u);return(new RegExp("^"+u+"$","i")).test(y)}))return g[a]=!0,b.A}catch(u){}}return 0} +function zc(b,a,g){if(g){if(a.la in g&&h.i.J.Qc.l)return!1;g[a.la]=null}if((10===a.S||9===a.S)&&h.i.J.Sc.l||9>a.S&&h.i.J.Rc.l||!a.sa&&h.i.J.Ob.l||1===b&&h.i.J.Pb.l||a.Gb!==f.na.Gb&&!h.i.B.jb.m&&h.i.B.jb.l)return!1;if(!h.i.B.Qa.m&&h.i.B.Qa.D)if(b=f.cd,g=a.Gb,g in b){if(!b[g])return!1}else{var d=h.i.B.Qa.D,k=E.Wd[a.Gb];try{b[g]=!1;if(k!==f.na.Hb&&!f.na.dd||f.na.dd&&-1===f.na.te.indexOf(a.Aa)||!Qa(d,function(u){u=Jb(u);u=u.replace(/(^|\b)(me|i)($|\b)/gi,f.na.Hb);return(new RegExp("^"+u+"$","i")).test(k)}))return!1; +b[g]=!0}catch(u){}}if(a.Ud&&h.i.B.Rb.D)try{if(f.Vb||(f.Vb=(new Date(h.i.B.Rb.D)).getTime()),a.Ud\n