mirror of
https://github.com/FoggedLens/iD.git
synced 2026-05-30 03:39:36 +02:00
Merge branch 'develop' into way-reverse-dont-change-red-turn-direction
This commit is contained in:
@@ -15,7 +15,7 @@ jobs:
|
||||
- uses: codespell-project/actions-codespell@master
|
||||
with:
|
||||
check_filenames: true
|
||||
skip: ./.git,./data/territory_languages.json,./data/imagery.json,./data/languages.json,./data/address_formats.json,./dist/locales,./docs/img,./dist/img,./css,package.json,package-lock.json
|
||||
skip: ./.git,./data/territory_languages.json,./data/imagery.json,./data/languages.json,./data/address_formats.json,./dist/locales,./docs/img,./dist/img,./css,package.json,package-lock.json,scripts,docs
|
||||
ignore_words_list: "auxilary,casette,cemetary,chancel,childs,extentions,falsy,files',froms,generat,guerilla,inflight,kindergarden,nd,ot,pavillion,specialties,tos,vias,visibles"
|
||||
exclude_file: .codespellignorelines
|
||||
only_warn: 1
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
name: Build and Deploy Staging Instance
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ main, develop ]
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
checksecret:
|
||||
name: check if deploy secret is present
|
||||
environment: workflows
|
||||
runs-on: ubuntu-latest
|
||||
outputs:
|
||||
deploy_secret_present: ${{ steps.checksecret_job.outputs.deploy_secret_present }}
|
||||
steps:
|
||||
- name: Check whether required secret is available
|
||||
id: checksecret_job
|
||||
env:
|
||||
NETLIFY_AUTH_TOKEN: ${{secrets.NETLIFY_AUTH_TOKEN}}
|
||||
run: |
|
||||
echo "::set-output name=deploy_secret_present::${{ env.NETLIFY_AUTH_TOKEN != '' }}"
|
||||
|
||||
build-deploy:
|
||||
needs: [checksecret]
|
||||
if: needs.checksecret.outputs.deploy_secret_present == 'true'
|
||||
runs-on: ubuntu-latest
|
||||
environment: workflows
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version-file: '.nvmrc'
|
||||
# install and build development version of id-tagging-schema
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
repository: openstreetmap/id-tagging-schema
|
||||
path: './id-tagging-schema'
|
||||
- run: npm clean-install
|
||||
working-directory: './id-tagging-schema'
|
||||
- run: npm run translations
|
||||
working-directory: './id-tagging-schema'
|
||||
env:
|
||||
transifex_password: ${{secrets.TX_TOKEN}}
|
||||
if: env.transifex_password != null
|
||||
- run: npm run dist
|
||||
working-directory: './id-tagging-schema'
|
||||
- run: mkdir dist/id-tagging-schema && mv id-tagging-schema/dist dist/id-tagging-schema/dist
|
||||
# build iD using freshest version of presets and ELI
|
||||
- run: npm clean-install
|
||||
- run: npm install editor-layer-index
|
||||
- run: mkdir dist/data
|
||||
- run: npm run imagery
|
||||
- run: npm run all
|
||||
- run: npm run translations
|
||||
env:
|
||||
transifex_password: ${{secrets.TX_TOKEN}}
|
||||
if: env.transifex_password != null
|
||||
- run: npm run dist
|
||||
env:
|
||||
ID_PRESETS_CDN_URL: './id-tagging-schema/'
|
||||
# deploy to netlify
|
||||
- name: Deploy to Netlify
|
||||
env:
|
||||
NETLIFY_AUTH_TOKEN: ${{secrets.NETLIFY_AUTH_TOKEN}}
|
||||
NETLIFY_SITE_ID: ${{secrets.NETLIFY_SITE_ID}}
|
||||
run: ./node_modules/.bin/netlify deploy --prod --dir=dist
|
||||
@@ -15,7 +15,7 @@ of iD (e.g. `https://ideditor-release.netlify.app`), the following parameters ar
|
||||
`{z}`/`{zoom}`, `{ty}` for flipped TMS-style Y coordinates, and `{switch:a,b,c}` for
|
||||
DNS multiplexing.<br/>
|
||||
_Example:_ `background=custom:https://tile.openstreetmap.org/{zoom}/{x}/{y}.png`
|
||||
* __`comment`__ - Prefills the changeset comment. Pass a url encoded string.<br/>
|
||||
* __`comment`__ - Prefills the changeset comment.<br/>
|
||||
_Example:_ `comment=CAR%20crisis%2C%20refugee%20areas%20in%20Cameroon`
|
||||
* __`disable_features`__ - Disables features in the list.<br/>
|
||||
_Example:_ `disable_features=water,service_roads,points,paths,boundaries`<br/>
|
||||
@@ -24,7 +24,7 @@ of iD (e.g. `https://ideditor-release.netlify.app`), the following parameters ar
|
||||
* __`gpx`__ - A custom URL for loading a gpx track. Specifying a `gpx` parameter will
|
||||
automatically enable the gpx layer for display.<br/>
|
||||
_Example:_ `gpx=https://gist.githubusercontent.com/answerquest/9445352b60ca5b44714675eae00f243a/raw/56a6343a29223318f4a697bfd16cbb2c3b8155ad/sample_boundary.gpx`
|
||||
* __`hashtags`__ - Prefills the changeset hashtags. Pass a url encoded list of event
|
||||
* __`hashtags`__ - Prefills the changeset hashtags. Pass a list of event
|
||||
hashtags separated by commas, semicolons, or spaces. Leading '#' symbols are
|
||||
optional and will be added automatically. (Note that hashtag-like strings are
|
||||
automatically detected in the `comment`).<br/>
|
||||
@@ -55,16 +55,19 @@ of iD (e.g. `https://ideditor-release.netlify.app`), the following parameters ar
|
||||
* __`presets`__ - A comma-separated list of preset IDs. These will be the only presets the user may select.<br/>
|
||||
_Example:_ `presets=building,highway/residential,highway/unclassified`
|
||||
* __`rtl=true`__ - Force iD into right-to-left mode (useful for testing).
|
||||
* __`source`__ - Prefills the changeset source. Pass a url encoded string.<br/>
|
||||
* __`source`__ - Prefills the changeset source.<br/>
|
||||
_Example:_ `source=Bing%3BMapillary`
|
||||
* __`validationDisable`__ - The issues identified by these types/subtypes will be disabled (i.e. Issues will not be shown at all). Each parameter value should contain a urlencoded, comma-separated list of type/subtype match rules. An asterisk `*` may be used as a wildcard.<br/>
|
||||
* __`validationDisable`__ - The issues identified by these types/subtypes will be disabled (i.e. Issues will not be shown at all). Each parameter value should contain a comma-separated list of type/subtype match rules. An asterisk `*` may be used as a wildcard.<br/>
|
||||
_Example:_ `validationDisable=crossing_ways/highway*,crossing_ways/tunnel*`
|
||||
* __`validationWarning`__ - The issues identified by these types/subtypes will be treated as warnings (i.e. Issues will be surfaced to the user but not block changeset upload). Each parameter value should contain a urlencoded, comma-separated list of type/subtype match rules. An asterisk `*` may be used as a wildcard.<br/>
|
||||
* __`validationWarning`__ - The issues identified by these types/subtypes will be treated as warnings (i.e. Issues will be surfaced to the user but not block changeset upload). Each parameter value should contain a comma-separated list of type/subtype match rules. An asterisk `*` may be used as a wildcard.<br/>
|
||||
_Example:_ `validationWarning=crossing_ways/highway*,crossing_ways/tunnel*`
|
||||
* __`validationError`__ - The issues identified by these types/subtypes will be treated as errors (i.e. Issues will be surfaced to the user but will block changeset upload). Each parameter value should contain a urlencoded, comma-separated list of type/subtype match rules. An asterisk `*` may be used as a wildcard.<br/>
|
||||
* __`validationError`__ - The issues identified by these types/subtypes will be treated as errors (i.e. Issues will be surfaced to the user but will block changeset upload). Each parameter value should contain a comma-separated list of type/subtype match rules. An asterisk `*` may be used as a wildcard.<br/>
|
||||
_Example:_ `validationError=crossing_ways/highway*,crossing_ways/tunnel*`
|
||||
* __`walkthrough=true`__ - Start the walkthrough automatically
|
||||
|
||||
Pass these parameters as a `x-www-form-urlencoded` string in the _hash_ portion of the URL, similarly to how you how a _query_ string of an URL is typically constructed. Input strings have to be [percent encoded](https://en.wikipedia.org/wiki/Percent-encoding) (spaces can be represented either as `+` or `%20`), for example using [`URLSearchParams`](https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams/toString) in Javascript.
|
||||
|
||||
|
||||
##### iD on openstreetmap.org (Rails Port)
|
||||
|
||||
When constructing a URL to an instance of iD embedded on the [OpenStreetMap website](github.com/openstreetmap/openstreetmap-website/) (e.g. `https://www.openstreetmap.org/edit?editor=id`), the following parameters
|
||||
|
||||
@@ -483,6 +483,10 @@ A feature does not have enough tags to define what it is.
|
||||
* `relation_type`: the OSM entity type is `relation` but there is no `type` tag
|
||||
* `highway_classification`: the OSM entity type is `way` and the feature is tagged as `highway=road`
|
||||
|
||||
##### `osm_api_limits`
|
||||
|
||||
A feature does not conform to the limits and rules imposed by the OSM API, such as a way with too many nodes for example.
|
||||
|
||||
##### `outdated_tags`
|
||||
|
||||
A feature has nonstandard tags.
|
||||
|
||||
+74
-3
@@ -35,16 +35,76 @@ _Breaking developer changes, which may affect downstream projects or sites that
|
||||
[@xxxx]: https://github.com/xxxx
|
||||
-->
|
||||
|
||||
# Unreleased (2.31.0-dev)
|
||||
# Unreleased (2.32.0-dev)
|
||||
|
||||
#### :sparkles: Usability & Accessibility
|
||||
* Autocomplete changeset `source` tag with sources of the previous 100 changesets of the user ([#10764], thanks [@k-yle])
|
||||
* Also show search result for coordinates in `lon/lat` order in search results ([#10720], thanks [@Deeptanshu-sankhwar])
|
||||
* Linkify keys & tags in the preset docs from the wiki ([#10763], thanks [@k-yle])
|
||||
* Allow broken (unclosed) areas to be continued ([#9635], thanks [@k-yle])
|
||||
* Render `*_link` roads narrower than their "regular" counterpart ([#10722])
|
||||
#### :scissors: Operations
|
||||
* Fix splitting of closed ways (or areas) when two or more split-points are selected
|
||||
#### :camera: Street-Level
|
||||
#### :white_check_mark: Validation
|
||||
* Add warning if aeroways cross each other, buildings or highways ([#9315], thanks [@k-yle])
|
||||
* Warn when a way with more than the maximum allowed number of nodes is to be uploaded and provide a way to fix it ([#7381])
|
||||
#### :bug: Bugfixes
|
||||
* Prevent degenerate ways caused by deleting a corner of a triangle ([#10003], thanks [@k-yle])
|
||||
* Fix briefly disappearing data layer during background layer tile layer switching transition ([#10748])
|
||||
* Preserve imagery offset during tile layer switching transition ([#10748])
|
||||
* Fix the relation membership list using a non-deterministic order ([#10648], thanks [@k-yle])
|
||||
* Fix over-saturated map tiles near the border of the tile service's coverage area ([#10747], thanks [@hlfan])
|
||||
* Fix too dim markers of selected/hovered photo of some street level imagery layers ([#10755], thanks [@draunger])
|
||||
* Fix `+` symbol appearing in changeset comments from external tools ([#10766], thanks [@k-yle])
|
||||
#### :earth_asia: Localization
|
||||
* Add `housename` to address format in Bolivia ([#10727])
|
||||
#### :hourglass: Performance
|
||||
#### :mortar_board: Walkthrough / Help
|
||||
#### :rocket: Presets
|
||||
#### :hammer: Development
|
||||
|
||||
[#7381]: https://github.com/openstreetmap/iD/issues/7381
|
||||
[#9635]: https://github.com/openstreetmap/iD/pull/9635
|
||||
[#10003]: https://github.com/openstreetmap/iD/pull/10003
|
||||
[#10648]: https://github.com/openstreetmap/iD/pull/10648
|
||||
[#10720]: https://github.com/openstreetmap/iD/issues/10720
|
||||
[#10722]: https://github.com/openstreetmap/iD/pull/10722
|
||||
[#10727]: https://github.com/openstreetmap/iD/issues/10727
|
||||
[#10747]: https://github.com/openstreetmap/iD/issues/10747
|
||||
[#10748]: https://github.com/openstreetmap/iD/issues/10748
|
||||
[#10755]: https://github.com/openstreetmap/iD/issues/10755
|
||||
[#10763]: https://github.com/openstreetmap/iD/pull/10763
|
||||
[#10764]: https://github.com/openstreetmap/iD/issues/10764
|
||||
[#10766]: https://github.com/openstreetmap/iD/pull/10766
|
||||
[@hlfan]: https://github.com/hlfan
|
||||
[@Deeptanshu-sankhwar]: https://github.com/Deeptanshu-sankhwar
|
||||
[@draunger]: https://github.com/draunger
|
||||
|
||||
|
||||
# 2.31.1
|
||||
##### 2025-Feb-06
|
||||
|
||||
* Fix flickering when switching background layers or zooming ([#10738])
|
||||
|
||||
[#10738]: https://github.com/openstreetmap/iD/issues/10738
|
||||
|
||||
|
||||
# 2.31.0
|
||||
##### 2025-Feb-05
|
||||
|
||||
#### :sparkles: Usability & Accessibility
|
||||
* Fix flickering when switching between background imagery layers, make switching backgrounds snappier
|
||||
* Prevent password managers from autofilling tag fields ([#10508], thanks [@michaelabon])
|
||||
* Make parking space thinner in partial fill rendering ([#10442], thanks [@Nekzuris])
|
||||
* Include route number in label of named route relations ([#10478], thanks [@1ec5])
|
||||
* Make oneway arrows more visible on dark colored lines ([#9143], thanks [@k-yle])
|
||||
* Add hash parameter to enable notes layer by default ([#8042], thanks [@k-yle])
|
||||
#### :scissors: Operations
|
||||
* When extracting a node from a way (shortcut: <kbd>E</kbd>), the relations are now preserved by default. Extracting a node without its relations is still possible using <kbd>⇧ Shift</kbd> <kbd>E</kbd> ([#9816], thanks [@k-yle])
|
||||
* Remove rarely-used keyboard shortcut <kbd>L</kbd> to prevent accidental activation of the geolocate tool ([#9999], thanks [@k-yle])
|
||||
#### :camera: Street-Level
|
||||
#### :white_check_mark: Validation
|
||||
* Include wikidata errors from osmose QA service ([#9998], thanks [@k-yle])
|
||||
#### :bug: Bugfixes
|
||||
* Fix unsolvable validator error triggered by regional presets ([#10459])
|
||||
* Render highway direction cones only on matching parent ways ([#9013])
|
||||
@@ -54,6 +114,8 @@ _Breaking developer changes, which may affect downstream projects or sites that
|
||||
* Allow tiles in minimap to be slightly underzoomed, preventing them from blacking out on low map zoom levels ([#10653])
|
||||
* Fix confusing behaviour after logging out in the standalone build of iD ([#10683], thanks [@k-yle])
|
||||
* Fix editor being stuck in a disabled state when login popup window is closed prematurely ([#10651])
|
||||
* Preserve `opening_hours` when matching a NSI preset ([#10564], thanks [@Dimitar5555])
|
||||
* Fix bug causing invisible features when `layer` tag is a decimal number ([#9933], thanks [@k-yle])
|
||||
#### :earth_asia: Localization
|
||||
* Update Sinitic languages in the Multilingual Names field ([#10488], thanks [@winstonsung])
|
||||
* Update the list of languages in the Wikipedia field ([#10489])
|
||||
@@ -64,18 +126,27 @@ _Breaking developer changes, which may affect downstream projects or sites that
|
||||
#### :mortar_board: Walkthrough / Help
|
||||
* Fix walkthrough from showing tooltips on wrong location under certain circumstances ([#10650], [#10624], [#10634])
|
||||
#### :rocket: Presets
|
||||
* Updated the [`cycleway`](https://osm.wiki/Key:cycleway) & [`sidewalk`](https://osm.wiki/Key:sidewalk) fields to recognise the `:both` suffix, for example [`cycleway:both`](https://osm.wiki/Key:cycleway:both) ([#9587], thanks [@k-yle])
|
||||
#### :hammer: Development
|
||||
* Migrate unit tests from karma to vitest ([#10452])
|
||||
* Migrate unit tests from karma to vitest ([#10452], thanks [@k-yle])
|
||||
|
||||
[#8042]: https://github.com/openstreetmap/iD/pull/8042
|
||||
[#9013]: https://github.com/openstreetmap/iD/issues/9013
|
||||
[#9143]: https://github.com/openstreetmap/iD/pull/9143
|
||||
[#9587]: https://github.com/openstreetmap/iD/issues/9587
|
||||
[#9816]: https://github.com/openstreetmap/iD/issues/9816
|
||||
[#9933]: https://github.com/openstreetmap/iD/pull/9933
|
||||
[#9998]: https://github.com/openstreetmap/iD/pull/9998
|
||||
[#9999]: https://github.com/openstreetmap/iD/issues/9999
|
||||
[#10442]: https://github.com/openstreetmap/iD/pull/10442
|
||||
[#10452]: https://github.com/openstreetmap/iD/pull/10452
|
||||
[#10459]: https://github.com/openstreetmap/iD/pull/10459
|
||||
[#10478]: https://github.com/openstreetmap/iD/pull/10478
|
||||
[#10488]: https://github.com/openstreetmap/iD/pull/10488
|
||||
[#10489]: https://github.com/openstreetmap/iD/pull/10489
|
||||
[#10495]: https://github.com/openstreetmap/iD/issues/10495
|
||||
[#10508]: https://github.com/openstreetmap/iD/pull/10508
|
||||
[#10564]: https://github.com/openstreetmap/iD/pull/10564
|
||||
[#10594]: https://github.com/openstreetmap/iD/pull/10594
|
||||
[#10624]: https://github.com/openstreetmap/iD/issues/10624
|
||||
[#10634]: https://github.com/openstreetmap/iD/issues/10634
|
||||
|
||||
+36
-6
@@ -224,21 +224,36 @@ path.line.shadow.tag-highway-living_street,
|
||||
path.line.shadow.tag-highway-bus_guideway,
|
||||
path.line.shadow.tag-highway-service,
|
||||
path.line.shadow.tag-highway-track,
|
||||
path.line.shadow.tag-highway-road {
|
||||
path.line.shadow.tag-highway-road,
|
||||
path.line.shadow.tag-highway-motorway_link,
|
||||
path.line.shadow.tag-highway-trunk_link,
|
||||
path.line.shadow.tag-highway-primary_link,
|
||||
path.line.shadow.tag-highway-secondary_link,
|
||||
path.line.shadow.tag-highway-tertiary_link {
|
||||
stroke-width: 16;
|
||||
}
|
||||
path.line.casing.tag-highway-living_street,
|
||||
path.line.casing.tag-highway-bus_guideway,
|
||||
path.line.casing.tag-highway-service,
|
||||
path.line.casing.tag-highway-track,
|
||||
path.line.casing.tag-highway-road {
|
||||
path.line.casing.tag-highway-road,
|
||||
path.line.casing.tag-highway-motorway_link,
|
||||
path.line.casing.tag-highway-trunk_link,
|
||||
path.line.casing.tag-highway-primary_link,
|
||||
path.line.casing.tag-highway-secondary_link,
|
||||
path.line.casing.tag-highway-tertiary_link {
|
||||
stroke-width: 7;
|
||||
}
|
||||
path.line.stroke.tag-highway-living_street,
|
||||
path.line.stroke.tag-highway-bus_guideway,
|
||||
path.line.stroke.tag-highway-service,
|
||||
path.line.stroke.tag-highway-track,
|
||||
path.line.stroke.tag-highway-road {
|
||||
path.line.stroke.tag-highway-road,
|
||||
path.line.stroke.tag-highway-motorway_link,
|
||||
path.line.stroke.tag-highway-trunk_link,
|
||||
path.line.stroke.tag-highway-primary_link,
|
||||
path.line.stroke.tag-highway-secondary_link,
|
||||
path.line.stroke.tag-highway-tertiary_link {
|
||||
stroke-width: 5;
|
||||
}
|
||||
path.line.casing.tag-highway-service.tag-service-driveway {
|
||||
@@ -280,21 +295,36 @@ path.line.stroke.tag-highway-steps {
|
||||
.low-zoom path.line.shadow.tag-highway-bus_guideway,
|
||||
.low-zoom path.line.shadow.tag-highway-service,
|
||||
.low-zoom path.line.shadow.tag-highway-track,
|
||||
.low-zoom path.line.shadow.tag-highway-road {
|
||||
.low-zoom path.line.shadow.tag-highway-road,
|
||||
.low-zoom path.line.shadow.tag-highway-motorway_link,
|
||||
.low-zoom path.line.shadow.tag-highway-trunk_link,
|
||||
.low-zoom path.line.shadow.tag-highway-primary_link,
|
||||
.low-zoom path.line.shadow.tag-highway-secondary_link,
|
||||
.low-zoom path.line.shadow.tag-highway-tertiary_link {
|
||||
stroke-width: 12;
|
||||
}
|
||||
.low-zoom path.line.casing.tag-highway-living_street,
|
||||
.low-zoom path.line.casing.tag-highway-bus_guideway,
|
||||
.low-zoom path.line.casing.tag-highway-service,
|
||||
.low-zoom path.line.casing.tag-highway-track,
|
||||
.low-zoom path.line.casing.tag-highway-road {
|
||||
.low-zoom path.line.casing.tag-highway-road,
|
||||
.low-zoom path.line.casing.tag-highway-motorway_link,
|
||||
.low-zoom path.line.casing.tag-highway-trunk_link,
|
||||
.low-zoom path.line.casing.tag-highway-primary_link,
|
||||
.low-zoom path.line.casing.tag-highway-secondary_link,
|
||||
.low-zoom path.line.casing.tag-highway-tertiary_link {
|
||||
stroke-width: 5;
|
||||
}
|
||||
.low-zoom path.line.stroke.tag-highway-living_street,
|
||||
.low-zoom path.line.stroke.tag-highway-bus_guideway,
|
||||
.low-zoom path.line.stroke.tag-highway-service,
|
||||
.low-zoom path.line.stroke.tag-highway-track,
|
||||
.low-zoom path.line.stroke.tag-highway-road {
|
||||
.low-zoom path.line.stroke.tag-highway-road,
|
||||
.low-zoom path.line.stroke.tag-highway-motorway_link,
|
||||
.low-zoom path.line.stroke.tag-highway-trunk_link,
|
||||
.low-zoom path.line.stroke.tag-highway-primary_link,
|
||||
.low-zoom path.line.stroke.tag-highway-secondary_link,
|
||||
.low-zoom path.line.stroke.tag-highway-tertiary_link {
|
||||
stroke-width: 3;
|
||||
}
|
||||
.low-zoom path.line.casing.tag-highway-service.tag-service-driveway {
|
||||
|
||||
+26
-25
@@ -134,55 +134,55 @@ li.list-item-photos.active:after {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.viewfield-group.currentView * {
|
||||
fill: #ffee00 !important;
|
||||
}
|
||||
.viewfield-group.hovered * {
|
||||
fill: #eebb00 !important;
|
||||
}
|
||||
|
||||
.viewfield-group circle {
|
||||
stroke: #555;
|
||||
stroke-width: 1;
|
||||
stroke-opacity: 0.4;
|
||||
fill-opacity: 0.4;
|
||||
}
|
||||
.viewfield-group .viewfield {
|
||||
stroke-width: 0;
|
||||
stroke: #222;
|
||||
fill-opacity: 0.4;
|
||||
}
|
||||
.viewfield-group.highlighted circle {
|
||||
stroke: #222;
|
||||
stroke-opacity: 0.9;
|
||||
fill-opacity: 0.9;
|
||||
}
|
||||
.viewfield-group.highlighted.hovered circle {
|
||||
.viewfield-group.highlighted .viewfield {
|
||||
stroke-width: 1;
|
||||
fill-opacity: 0.8;
|
||||
}
|
||||
.viewfield-group.hovered circle {
|
||||
fill: #eebb00;
|
||||
stroke: #222;
|
||||
stroke-width: 2;
|
||||
stroke-opacity: 0.9;
|
||||
fill-opacity: 0.9;
|
||||
}
|
||||
.viewfield-group.highlighted.currentView circle {
|
||||
.viewfield-group.hovered .viewfield {
|
||||
fill: #eebb00;
|
||||
stroke: #222;
|
||||
stroke-width: 1;
|
||||
fill-opacity: 0.8;
|
||||
}
|
||||
.viewfield-group.currentView circle {
|
||||
fill: #ffee00;
|
||||
stroke: #222;
|
||||
stroke-width: 2;
|
||||
stroke-opacity: 1;
|
||||
fill-opacity: 1;
|
||||
}
|
||||
|
||||
.viewfield-group .viewfield {
|
||||
stroke-width: 0;
|
||||
.viewfield-group.currentView .viewfield {
|
||||
fill: #ffee00;
|
||||
stroke: #222;
|
||||
fill-opacity: 0.4;
|
||||
}
|
||||
.viewfield-group.highlighted .viewfield {
|
||||
stroke-width: 1;
|
||||
fill-opacity: 0.8;
|
||||
}
|
||||
.viewfield-group.highlighted.hovered .viewfield {
|
||||
stroke-width: 1;
|
||||
fill-opacity: 0.8;
|
||||
}
|
||||
.viewfield-group.highlighted.currentView .viewfield {
|
||||
stroke-width: 1;
|
||||
stroke-opacity: 1;
|
||||
fill-opacity: 0.9;
|
||||
}
|
||||
|
||||
|
||||
.viewfield-group.currentView .viewfield-scale {
|
||||
transform: scale(2,2);
|
||||
}
|
||||
@@ -304,6 +304,8 @@ li.list-item-photos.list-item-mapilio.active:after {
|
||||
}
|
||||
.layer-mapilio .viewfield-group * {
|
||||
fill: #0056f1;
|
||||
}
|
||||
.layer-mapilio .viewfield-group:not(.currentView):not(.hovered) * {
|
||||
stroke: #ffffff;
|
||||
stroke-opacity: .6;
|
||||
fill-opacity: .6;
|
||||
@@ -384,7 +386,7 @@ label.panoramax-hd {
|
||||
}
|
||||
|
||||
.slider-wrap {
|
||||
display: inline-block;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.year-datalist {
|
||||
@@ -396,7 +398,6 @@ label.panoramax-hd {
|
||||
direction: rtl
|
||||
}
|
||||
|
||||
|
||||
/* Streetside Viewer (pannellum) */
|
||||
.ms-wrapper .photo-attribution {
|
||||
line-height: 1.1em;
|
||||
|
||||
+14
-15
@@ -4373,25 +4373,15 @@ img.tile {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* Workaround to remove visible grid around tile borders on Chrome
|
||||
Only works with browser zoom multiple of 25 (75%, 100%, 125%...)
|
||||
Should be removed when https://issues.chromium.org/issues/40084005 is resolved.
|
||||
See https://github.com/openstreetmap/iD/pull/10594 */
|
||||
@media (-webkit-device-pixel-ratio = 1) or (-webkit-device-pixel-ratio = 1.25) or (-webkit-device-pixel-ratio = 1.5) or (-webkit-device-pixel-ratio = 1.75)
|
||||
or (-webkit-device-pixel-ratio = 2) or (-webkit-device-pixel-ratio = 2.25) or (-webkit-device-pixel-ratio = 2.5) or (-webkit-device-pixel-ratio = 2.75)
|
||||
or (-webkit-device-pixel-ratio = 3) or (-webkit-device-pixel-ratio = 3.25) or (-webkit-device-pixel-ratio = 3.5) or (-webkit-device-pixel-ratio = 3.75)
|
||||
or (-webkit-device-pixel-ratio = 4) or (-webkit-device-pixel-ratio = 4.25) or (-webkit-device-pixel-ratio = 4.5) or (-webkit-device-pixel-ratio = 4.75)
|
||||
or (-webkit-device-pixel-ratio = 5) or (-webkit-device-pixel-ratio = 0.25) or (-webkit-device-pixel-ratio = 0.5) or (-webkit-device-pixel-ratio = 0.75) {
|
||||
.layer-background img.tile,
|
||||
.map-in-map-background img.tile {
|
||||
mix-blend-mode: plus-lighter;
|
||||
}
|
||||
.layer-background img.tile,
|
||||
.map-in-map-background img.tile {
|
||||
filter: url(#alpha-slope5);
|
||||
}
|
||||
|
||||
img.tile-removing {
|
||||
.layer-background img.tile-removing,
|
||||
.map-in-map-background img.tile-removing {
|
||||
opacity: 0;
|
||||
z-index: 1;
|
||||
mix-blend-mode: normal;
|
||||
}
|
||||
|
||||
.tile-label-debug {
|
||||
@@ -4448,6 +4438,15 @@ img.tile-debug {
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
.layer-background {
|
||||
z-index: 1;
|
||||
}
|
||||
.layer-overlay {
|
||||
z-index: 2;
|
||||
}
|
||||
.layer-data {
|
||||
z-index: 3;
|
||||
}
|
||||
|
||||
/* Map-In-Map
|
||||
------------------------------------------------------- */
|
||||
|
||||
@@ -193,10 +193,12 @@
|
||||
{
|
||||
"countryCodes": ["bo"],
|
||||
"format": [
|
||||
["housename"],
|
||||
["street", "housenumber"],
|
||||
["neighbourhood", "city"]
|
||||
],
|
||||
"widths": {
|
||||
"housename": 1,
|
||||
"street": 0.7,
|
||||
"housenumber": 0.3,
|
||||
"neighbourhood": 0.5,
|
||||
|
||||
+20
-1
@@ -736,6 +736,7 @@ en:
|
||||
back_tooltip: Change feature type
|
||||
remove: Remove
|
||||
search: Search
|
||||
search_feature_type: Search feature type
|
||||
unknown: Unknown
|
||||
incomplete: <not downloaded>
|
||||
feature_list: Search features
|
||||
@@ -1728,7 +1729,7 @@ en:
|
||||
everything_in_view: Everything in view looks fine
|
||||
edits: Your edits look fine
|
||||
edits_in_view: Your edits in view look fine
|
||||
no_edits: You have no edits yet
|
||||
no_edits: You have no unsaved changes
|
||||
hidden_issues:
|
||||
none: Detected issues will appear here
|
||||
elsewhere: "Issues elsewhere: {count}"
|
||||
@@ -1778,6 +1779,16 @@ en:
|
||||
title: Crossing Ways
|
||||
message: "{feature} crosses {feature2}"
|
||||
tip: "Find features that incorrectly cross over one another"
|
||||
aeroway-aeroway:
|
||||
reference: "Crossing aeroways should be connected."
|
||||
aeroway-building:
|
||||
reference: "Aeroways crossing buildings should use bridges or different layers."
|
||||
aeroway-highway:
|
||||
reference: "Aeroways crossing railways should be connected."
|
||||
aeroway-railway:
|
||||
reference: "Aeroways crossing highways should be connected."
|
||||
aeroway-waterway:
|
||||
reference: "Aeroways crossing waterways should use tunnels."
|
||||
building-building:
|
||||
reference: "Buildings should not intersect except on different layers."
|
||||
building-highway:
|
||||
@@ -1943,6 +1954,12 @@ en:
|
||||
vertex_as_point:
|
||||
message: '{feature} should be attached to a line or area based on its tags'
|
||||
reference: "Some features shouldn't be standalone points."
|
||||
osm_api_limits:
|
||||
title: OSM Data Limitations
|
||||
tip: Limits and rules imposed by the OSM API on uploaded features
|
||||
max_way_nodes:
|
||||
message: Way has too many vertices
|
||||
reference: "The maximum number of vertices of a way is {maxWayNodes}. Split the feature into smaller parts or otherwise reduce the number of nodes of the affected way."
|
||||
fix:
|
||||
add_a_bridge:
|
||||
title: Add a bridge
|
||||
@@ -2021,6 +2038,8 @@ en:
|
||||
title: Set as inner
|
||||
set_as_outer:
|
||||
title: Set as outer
|
||||
split_way:
|
||||
title: Split the way into smaller pieces.
|
||||
square_feature:
|
||||
title: Square this feature
|
||||
tag_as_disconnected:
|
||||
|
||||
+16210
-4339
File diff suppressed because it is too large
Load Diff
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
@@ -1 +1 @@
|
||||
{"ak":{"languageNames":{"ak":"Akan","am":"Amarik","ar":"Arabik","be":"Belarus kasa","bg":"Bɔlgeria kasa","bn":"Bengali kasa","cs":"Kyɛk kasa","de":"Gyaaman","el":"Greek kasa","en":"Borɔfo","es":"Spain kasa","fa":"Pɛɛhyia kasa","fr":"Frɛnkye","ha":"Hausa","hi":"Hindi","hu":"Hangri kasa","id":"Indonihyia kasa","ig":"Igbo","it":"Italy kasa","ja":"Gyapan kasa","jv":"Gyabanis kasa","km":"Kambodia kasa","ko":"Korea kasa","ms":"Malay kasa","my":"Bɛɛmis kasa","ne":"Nɛpal kasa","nl":"Dɛɛkye","pa":"Pungyabi kasa","pl":"Pɔland kasa","pt":"Pɔɔtugal kasa","ro":"Romenia kasa","ru":"Rahyia kasa","rw":"Rewanda kasa","so":"Somalia kasa","sv":"Sweden kasa","ta":"Tamil kasa","th":"Taeland kasa","tr":"Tɛɛki kasa","uk":"Ukren kasa","ur":"Urdu kasa","vi":"Viɛtnam kasa","yo":"Yoruba","zh":"Kyaena kasa","zu":"Zulu"}}}
|
||||
{"ak":{"languageNames":{"af":"Afrikaans","ak":"Akan","am":"Amarik","ar":"Arabeke","as":"Asamese","ast":"Asturiani","az":"Asabegyanni","be":"Belarus kasa","bg":"Bɔlgeria kasa","bgc":"Harianvi","bho":"Bopuri","blo":"Anii","bn":"Bengali kasa","br":"Britenni","brx":"Bodo","bs":"Bosniani","ca":"Katalan","ceb":"Kebuano","chr":"Kiroki","cs":"Kyɛk kasa","csw":"Tadeɛm Kreefoɔ Kasa","cv":"Kyuvahyi","cy":"Wɛɛhye Kasa","da":"Dane kasa","de":"Gyaaman","doi":"Dɔgri","dsb":"Sɔɔbia a ɛwɔ fam","el":"Greek kasa","en":"Borɔfo","eo":"Esperanto","es":"Spain kasa","et":"Estonia kasa","eu":"Baske","fa":"Pɛɛhyia kasa","ff":"Fula kasa","fi":"Finlande kasa","fil":"Filipin kasa","fo":"Farosi","fr":"Frɛnkye","fy":"Atɔeɛ Fam Frihyia Kasa","ga":"Aerelande kasa","gd":"Skotlandfoɔ Galek Kasa","gl":"Galisia kasa","gu":"Gugyarata","ha":"Hausa","he":"Hibri kasa","hi":"Hindi","hi-Latn":"Laatenfoɔ Hindi","hr":"Kurowehyia kasa","hsb":"Atifi fam Sɔɔbia Kasa","hu":"Hangri kasa","hy":"Aameniani","ia":"Kasa ntam","id":"Indonihyia kasa","ie":"Kasa afrafra","ig":"Igbo kasa","is":"Aeslande kasa","it":"Italy kasa","ja":"Gyapan kasa","jv":"Gyabanis kasa","ka":"Gyɔɔgyia kasa","kea":"Kabuvadianu","kgp":"Kaingang","kk":"kasaki kasa","km":"Kambodia kasa","kn":"Kanada","ko":"Korea kasa","kok":"Konkani kasa","ks":"Kahyimiɛ","ku":"Kɛɛde kasa","kxv":"Kuvi kasa","ky":"Kɛgyese kasa","lb":"Lɔsimbɔge kasa","lij":"Liguria kasa","lmo":"Lombad kasa","lo":"Lawo kasa","lt":"Lituania kasa","lv":"Latvia kasa","mai":"Maetili","mi":"Mawori","mk":"Mɛsidonia kasa","ml":"Malayalam kasa","mn":"Mongoliafoɔ kasa","mni":"Manipuri","mr":"Marati","ms":"Malay kasa","mt":"Malta kasa","my":"Bɛɛmis kasa","nds":"Gyaaman kasa a ɛwɔ fam","ne":"Nɛpal kasa","nl":"Dɛɛkye","nn":"Nɔwefoɔ Ninɔso","no":"Nɔwefoɔ kasa","nqo":"Nko","oc":"Osita kasa","or":"Odia","pa":"Pungyabi kasa","pcm":"Nigeriafoɔ Pigyin","pl":"Pɔland kasa","prg":"Prusia kasa","ps":"Pahyito","pt":"Pɔɔtugal kasa","qu":"Kwɛkya","raj":"Ragyasitan kasa","rm":"Romanhye kasa","ro":"Romenia kasa","ru":"Rahyia kasa","rw":"Rewanda kasa","sa":"Sanskrit kasa","sah":"Yakut Kasa","sat":"Santal kasa","sc":"Saadinia kasa","sd":"Sindi","si":"Sinhala","sk":"Slovak Kasa","sl":"Slovɛniafoɔ Kasa","so":"Somalia kasa","sq":"Aabeniani","sr":"Sɛbia Kasa","su":"Sunda Kasa","sv":"Sweden kasa","sw":"Swahili","syr":"Siiria Kasa","szl":"Silesiafoɔ Kasa","ta":"Tamil kasa","te":"Telugu","tg":"Tɛgyeke kasa","th":"Taeland kasa","ti":"Tigrinya kasa","tk":"Tɛkmɛnistan Kasa","to":"Tonga kasa","tr":"Tɛɛki kasa","tt":"Tata kasa","ug":"Yugaa Kasa","uk":"Ukren kasa","ur":"Urdu kasa","uz":"Usbɛkistan Kasa","vec":"Vɛnihyia Kasa","vi":"Viɛtnam kasa","vmw":"Makuwa","wo":"Wolɔfo Kasa","xh":"Hosa Kasa","xnr":"Kangri","yo":"Yoruba","yrl":"Ningatu","yue":"Kantonese","za":"Zuang","zh":"Kyaena kasa","zh-Hans":"Mandarin Kyaena kasa a emu yɛ mmrɛ","zh-Hant":"Tete Mandarin Kyaena kasa","zu":"Zulu"},"scriptNames":{"Arab":"Arabeke","Cyrl":"Kreleke","Latn":"Laatin","Adlm":"Adlam kasa","Deva":"Dɛvanagari kasa","Orya":"Odia kasa","Telu":"Telugu kasa","Beng":"Bangala kasa","Mtei":"Meeti Mayɛke kasa","Guru":"Gurumuki kasa","Rohg":"Hanifi kasa","Olck":"Ol Kyiki kasa","Tfng":"Tifinafo kasa","Vaii":"Vai kasa","Hans":"Kyaena Kasa Hanse","Hant":"Tete"}}}
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
@@ -1 +1 @@
|
||||
{"dv":{"modes":{"add_area":{"title":"އިމާރާތްތައް","description":"ޕާރކުތަކާއި، އިމާރާތްތަކާއި އަދިވެސް ފާހަގަކުރެވޭ ތަންތަން ހިމަނުއްވާ"},"add_line":{"title":"ރޮނގު","description":"ހައިވޭއާއި، މަގުތަކާއި، ދުވާރާއި އަދި އެހެނިހެން ރޮނގުތައް ހިމަނުއްވާ"},"add_point":{"title":"ލޮކޭޝަން ޕޮއިންޓް","description":"ރެސްޓޯރަންޓްތަކާއި، ފާހަގަކުރެވޭ ބިނާތަކާއި، ޕޯސްޓް ފޮށިތަކާއި، އެހެނިހެން މުހިއްމު ތަންތަން ހިމަނުއްވާ"}},"operations":{"add":{"annotation":{"point":"މައުލޫމާތެއް އިތުރުކުރައްވައިފި."}},"start":{"annotation":{"line":"ރޮނގެއް އިތުރުކުރަން ފަށައިފި","area":"ސަރަޙައްދެއް އިތުރުކުރަން ފަށައިފި"}},"continue":{"title":"ކުރިއަަށްދޭ","description":"މިރޮނގު ކުރިއަށްގެންދޭ","not_eligible":"މިރޮޮނގު މިތަނުގައި ކުރިއަކަށް ނުގެންދެވޭނެ","annotation":{"line":"ކުރިިއަށް ގެންދިޔަ ރޮނގު","area":"ކުރިއަށް ގެންދިޔަ ސަރަޙައްދު"}},"change_tags":{"annotation":"ޓެގެއް ބަދަލުކުރުން"},"circularize":{"title":"މިސަރަޙައްދު ވަށްބުރަކަށް ބަދަލުކުރައްވާ"},"delete":{"title":"ޑިލީޓްކުރުން","description":{"single":"އެއްްކޮށް ޑިލީޓްކޮށްލާ."}},"disconnect":{"title":"ވަކިކުރުން","not_connected":"އެންމެ ރޮނގެއް އޮތުމުން ޑިސްކަނެކްޓް ޓޫލް ބޭނުމެއް ނުކުރެވޭނެ"},"move":{"title":"ކުރިއަށް","description":{"single":"މިބަައި އެހެން ތަނަކަށް ބަދަލުކުރައްވާ","multiple":"މިބަައި އެހެން ތަނަކަށް ބަދަލުކުރައްވާ"}},"rotate":{"title":"އަނބުރާލާ","description":{"single":"މެދު ޕޮއިންޓާ ދިމާވާނެހެން އަނބުރާލާ"}},"reverse":{"title":"ދާދިމާ ބަދަލުކުރުމަށް"},"split":{"title":"ބައިކޮށްލާ","not_eligible":"ފަށާއިރު ނުވަތަ ނިންމާއިރު ބައި ނުކުރެވޭނެ ރޮނގުތައް"}},"undo":{"tooltip":"ރަނގަޅުކުރޭ: {action}","nothing":"ރަނގަޅުކުރަންޖެހޭ ތަނެެއް ނެތް"},"redo":{"tooltip":"އަލުން ހައްދަވާ: {action}","nothing":"އަލުން ހަދަންޖެހޭ ތަނެއް ނެތް"},"tooltip_keyhint":"ޝޯރޓްކަޓް:","translate":{"localized_translation_language":"ބަސްް ޚިޔާރުކުރައްވާ","localized_translation_name":"ނަން"},"help_translate":"އެކި ބަސްބަހުން ބޭނުންކުރާ ނަންތައް","info_panels":{"measurement":{"area":"އިމާރާތްތައް"}},"geometry":{"point":"ލޮކޭޝަން ޕޮއިންޓް","line":"ރޮނގު","area":"އިމާރާތްތައް"},"geocoder":{"search":"މުޅި ދުނިޔެއިން ބެލުމަށް ހޯދާ"},"inspector":{"choose":"ކަޮންކަހަލަ މައުލޫމާތެއްކަން ފާހަގަކުރޭ","search":"ހޯދާ","feature_list":"ފާހަގަކުރެވޭ ތަންތަން ހޯދާ","radio":{"structure":{"type":"އެކިިބާވަތްތަކުގެ ތަންތަން"}},"add_fields":"ޗާާޓަށް މައުލޫމާތު އެއްކުރައްވާ"},"map_data":{"data_layers":"ފަށަލަތައް"},"save":{"title":"ސޭވްކުރައްވާ","help":"ގެެނައި ބަދަލުތައް ބެލުމަށްފަހު، އެހެން ފަރާތްތަކަށް އޯޕަން ސްޓްރީޓް މެޕަށް އަޕްލޯޑްކުރައްވާ","no_changes":"އެއްވެސް ބަދަލެއް އަދި ނުގެނޭ"},"help":{"title":"އެހީ ހޯއްދަވާ"},"shortcuts":{"browsing":{"help":{"title":"އެހީ ހޯއްދަވާ","help":"އެހީ ހޯއްދަވާ"}},"editing":{"commands":{"undo":"ރަނގަޅުކުރޭ","redo":"އަލުން ހައްދަވާ","save":"ގެނައި ބަދަލުތައް ސޭވްކުރައްވާ"}}}}}
|
||||
{"dv":{"modes":{"add_area":{"title":"އިމާރާތްތައް","description":"ޕާރކުތަކާއި، އިމާރާތްތަކާއި އަދިވެސް ފާހަގަކުރެވޭ ތަންތަން ހިމަނުއްވާ"},"add_line":{"title":"ރޮނގު","description":"ހައިވޭއާއި، މަގުތަކާއި، ދުވާރާއި އަދި އެހެނިހެން ރޮނގުތައް ހިމަނުއްވާ"},"add_point":{"title":"ލޮކޭޝަން ޕޮއިންޓް","description":"ރެސްޓޯރަންޓްތަކާއި، ފާހަގަކުރެވޭ ބިނާތަކާއި، ޕޯސްޓް ފޮށިތަކާއި، އެހެނިހެން މުހިއްމު ތަންތަން ހިމަނުއްވާ"}},"operations":{"add":{"annotation":{"point":"މައުލޫމާތެއް އިތުރުކުރައްވައިފި."}},"start":{"annotation":{"line":"ރޮނގެއް އިތުރުކުރަން ފަށައިފި","area":"ސަރަޙައްދެއް އިތުރުކުރަން ފަށައިފި"}},"continue":{"title":"ކުރިއަަށްދޭ","description":"މިރޮނގު ކުރިއަށްގެންދޭ","not_eligible":"މިރޮޮނގު މިތަނުގައި ކުރިއަކަށް ނުގެންދެވޭނެ","annotation":{"line":"ކުރިިއަށް ގެންދިޔަ ރޮނގު","area":"ކުރިއަށް ގެންދިޔަ ސަރަޙައްދު"}},"change_tags":{"annotation":"ޓެގެއް ބަދަލުކުރުން"},"circularize":{"title":"މިސަރަޙައްދު ވަށްބުރަކަށް ބަދަލުކުރައްވާ","not_closed":{"single":"މިި ވަށްބުރަކަށް ނުހެދޭނެ "}},"orthogonalize":{"not_squarish":{"single":"މި ހަތަރެސްކަނަކަށް ނުހެދޭނެ"}},"delete":{"title":"ޑިލީޓްކުރުން","description":{"single":"އެއްްކޮށް ޑިލީޓްކޮށްލާ."}},"disconnect":{"title":"ވަކިކުރުން","not_connected":"އެންމެ ރޮނގެއް އޮތުމުން ޑިސްކަނެކްޓް ޓޫލް ބޭނުމެއް ނުކުރެވޭނެ"},"move":{"title":"ކުރިއަށް","description":{"single":"މިބަައި އެހެން ތަނަކަށް ބަދަލުކުރައްވާ","multiple":"މިބަައި އެހެން ތަނަކަށް ބަދަލުކުރައްވާ"}},"rotate":{"title":"އަނބުރާލާ","description":{"single":"މެދު ޕޮއިންޓާ ދިމާވާނެހެން އަނބުރާލާ"}},"reverse":{"title":"ދާދިމާ ބަދަލުކުރުމަށް","description":{"line":"މިރޮނގު އަނެއް ކޮޅަށް ދާނެހެން ހައްދަވާ"}},"split":{"title":"ބައިކޮށްލާ","not_eligible":"ފަށާއިރު ނުވަތަ ނިންމާއިރު ބައި ނުކުރެވޭނެ ރޮނގުތައް"}},"undo":{"tooltip":"ރަނގަޅުކުރޭ: {action}","nothing":"ރަނގަޅުކުރަންޖެހޭ ތަނެެއް ނެތް"},"redo":{"tooltip":"އަލުން ހައްދަވާ: {action}","nothing":"އަލުން ހަދަންޖެހޭ ތަނެއް ނެތް"},"tooltip_keyhint":"ޝޯރޓްކަޓް:","translate":{"localized_translation_language":"ބަސްް ޚިޔާރުކުރައްވާ","localized_translation_name":"ނަން"},"help_translate":"އެކި ބަސްބަހުން ބޭނުންކުރާ ނަންތައް","info_panels":{"background":{"source":"ޗާޓަށް މައުލޫމާތު ދިން ފަރާތް"},"measurement":{"area":"އިމާރާތްތައް"}},"geometry":{"point":"ލޮކޭޝަން ޕޮއިންޓް","line":"ރޮނގު","area":"އިމާރާތްތައް"},"geocoder":{"search":"މުޅި ދުނިޔެއިން ބެލުމަށް ހޯދާ"},"inspector":{"choose":"ކަޮންކަހަލަ މައުލޫމާތެއްކަން ފާހަގަކުރޭ","search":"ހޯދާ","feature_list":"ފާހަގަކުރެވޭ ތަންތަން ހޯދާ","radio":{"structure":{"type":"އެކިިބާވަތްތަކުގެ ތަންތަން"}},"add_fields":"ޗާާޓަށް މައުލޫމާތު އެއްކުރައްވާ"},"map_data":{"data_layers":"ފަށަލަތައް"},"save":{"title":"ސޭވްކުރައްވާ","help":"ގެެނައި ބަދަލުތައް ބެލުމަށްފަހު، އެހެން ފަރާތްތަކަށް އޯޕަން ސްޓްރީޓް މެޕަށް އަޕްލޯޑްކުރައްވާ","no_changes":"އެއްވެސް ބަދަލެއް އަދި ނުގެނޭ"},"help":{"title":"އެހީ ހޯއްދަވާ","help":{"title":"އެހީ ހޯއްދަވާ"},"editing":{"save_h":"ސޭވްކުރައްވާ"}},"shortcuts":{"key":{"delete":"ޑިލީޓްކުރުން"},"browsing":{"help":{"title":"އެހީ ހޯއްދަވާ","help":"އެހީ ހޯއްދަވާ"}},"editing":{"commands":{"undo":"ރަނގަޅުކުރޭ","redo":"އަލުން ހައްދަވާ","save":"ގެނައި ބަދަލުތައް ސޭވްކުރައްވާ"}}}}}
|
||||
Vendored
+1
-1
@@ -1 +1 @@
|
||||
{"ee":{"languageNames":{"ab":"abkhaziagbe","af":"afrikaangbe","agq":"aghemgbe","ak":"blugbe","am":"amhariagbe","ar":"Arabiagbe","as":"assamegbe","asa":"asagbe","ay":"aymargbe","az":"azerbaijangbe","be":"belarusiagbe","bem":"bembagbe","bez":"benagbe","bg":"bulgariagbe","bm":"bambaragbe","bn":"Bengaligbe","bo":"tibetagbe","br":"bretongbe","brx":"bodogbe","bs":"bosniagbe","ca":"katalagbe","cs":"tsɛkgbe","cy":"walesgbe","da":"denmarkgbe","de":"Germaniagbe","dv":"divehgbe","dz":"dzongkhagbe","ebu":"embugbe","ee":"Eʋegbe","efi":"efigbe","el":"grisigbe","en":"Yevugbe","eo":"esperantogbe","es":"Spanishgbe","et":"estoniagbe","eu":"basqugbe","fa":"persiagbe","fi":"finlanɖgbe","fil":"filipingbe","fj":"fidzigbe","fr":"Fransegbe","ga":"irelanɖgbe","gl":"galatagbe","gn":"guarangbe","gsw":"swizerlanɖtɔwo ƒe germaniagbe","gu":"gujarati","ha":"hausagbe","haw":"hawaigbe","he":"hebrigbe","hi":"Hindigbe","hr":"kroatiagbe","ht":"haitigbe","hu":"hungarigbe","hy":"armeniagbe","id":"Indonesiagbe","ig":"igbogbe","is":"icelanɖgbe","it":"Italiagbe","ja":"Japangbe","jv":"dzavangbe","ka":"gɔgiagbe","kea":"cape verdegbe","kk":"kazakhstangbe","km":"khmergbe","kn":"kannadagbe","ko":"Koreagbe","ks":"kashmirgbe","ku":"kurdiagbe","ky":"kirghistangbe","la":"latin","lah":"lahndagbe","lb":"laksembɔggbe","ln":"lingala","lo":"laogbe","lt":"lithuaniagbe","luy":"luyiagbe","lv":"latviagbe","mg":"malagasegbe","mi":"maorgbe","mk":"makedoniagbe","ml":"malayagbe","mn":"mongoliagbe","mr":"marathiagbe","ms":"malaygbe","mt":"maltagbe","my":"burmagbe","nb":"nɔweigbe bokmål","nd":"dziehe ndebelegbe","ne":"nepalgbe","nl":"Hollandgbe","nn":"nɔweigbe ninɔsk","no":"nɔweigbe","nso":"dziehe sothogbe","ny":"nyanjagbe","or":"oriyagbe","os":"ossetiagbe","pa":"pundzabgbe","pl":"Polishgbe","ps":"pashtogbe","pt":"Portuguesegbe","qu":"kwetsuagbe","rm":"romanshgbe","rn":"rundigbe","ro":"romaniagbe","rof":"rombogbe","ru":"Russiagbe","rw":"ruwandagbe","rwk":"rwagbe","sa":"sanskrigbe","sah":"sakagbe","sd":"sindhgbe","se":"dziehe samigbe","sg":"sangogbe","sh":"serbo-croatiagbe","si":"sinhalgbe","sk":"slovakiagbe","sl":"sloveniagbe","sm":"samoagbe","sn":"shonagbe","so":"somaliagbe","sq":"albaniagbe","sr":"serbiagbe","ss":"swatgbe","st":"anyiehe sothogbe","sv":"swedengbe","sw":"swahili","swb":"komorogbe","ta":"tamilgbe","te":"telegugbe","tet":"tetumgbe","tg":"tadzikistangbe","th":"Thailandgbe","ti":"tigrinyagbe","tk":"tɛkmengbe","tl":"tagalogbe","tn":"tswanagbe","to":"tongagbe","tpi":"tok pisigbe","tr":"Turkishgbe","ts":"tsongagbe","ty":"tahitigbe","ug":"uighurgbe","uk":"ukraingbe","ur":"urdugbe","uz":"uzbekistangbe","ve":"vendagbe","vi":"vietnamgbe","wae":"walsegbe","wo":"wolofgbe","xh":"xhosagbe","yo":"yorubagbe","yue":"cantongbe","zh":"Chinagbe","zh-Hans":"tsainagbe","zh-Hant":"blema tsainagbe","zu":"zulugbe"},"scriptNames":{"Arab":"Arabiagbeŋɔŋlɔ","Cyrl":"Cyrillicgbeŋɔŋlɔ","Latn":"Latingbeŋɔŋlɔ","Deva":"devanagarigbeŋɔŋlɔ","Orya":"oriyagbeŋɔŋlɔ","Telu":"telegugbeŋɔŋlɔ","Beng":"bengaligbeŋɔŋlɔ","Guru":"gurmukhigbeŋɔŋlɔ","Hans":"Chinesegbeŋɔŋlɔ","Hant":"Blema Chinesegbeŋɔŋlɔ"}}}
|
||||
{"ee":{"languageNames":{"ab":"abkhaziagbe","af":"afrikaangbe","agq":"aghemgbe","ak":"blugbe","am":"amhariagbe","ar":"Arabiagbe","as":"assamegbe","asa":"asagbe","ay":"aymargbe","az":"azerbaijangbe","be":"belarusiagbe","bem":"bembagbe","bez":"benagbe","bg":"bulgariagbe","bm":"bambaragbe","bn":"Bengaligbe","bo":"tibetagbe","br":"bretongbe","brx":"bodogbe","bs":"bosniagbe","ca":"katalagbe","cs":"tsɛkgbe","cy":"walesgbe","da":"denmarkgbe","de":"Germaniagbe","dv":"divehgbe","dz":"dzongkhagbe","ebu":"embugbe","ee":"eʋegbe","efi":"efigbe","el":"grisigbe","en":"iŋlisigbe","eo":"esperantogbe","es":"Spanishgbe","et":"estoniagbe","eu":"basqugbe","fa":"persiagbe","fi":"finlanɖgbe","fil":"filipingbe","fj":"fidzigbe","fr":"Fransegbe","ga":"irelanɖgbe","gl":"galatagbe","gn":"guarangbe","gsw":"swizerlanɖtɔwo ƒe germaniagbe","gu":"gujarati","ha":"hausagbe","haw":"hawaigbe","he":"hebrigbe","hi":"Hindigbe","hr":"kroatiagbe","ht":"haitigbe","hu":"hungarigbe","hy":"armeniagbe","id":"Indonesiagbe","ig":"igbogbe","is":"icelanɖgbe","it":"Italiagbe","ja":"Japangbe","jv":"dzavangbe","ka":"gɔgiagbe","kea":"cape verdegbe","kk":"kazakhstangbe","km":"khmergbe","kn":"kannadagbe","ko":"Koreagbe","ks":"kashmirgbe","ku":"kurdiagbe","ky":"kirghistangbe","la":"latin","lah":"lahndagbe","lb":"laksembɔggbe","ln":"lingala","lo":"laogbe","lt":"lithuaniagbe","luy":"luyiagbe","lv":"latviagbe","mg":"malagasegbe","mi":"maorgbe","mk":"makedoniagbe","ml":"malayagbe","mn":"mongoliagbe","mr":"marathiagbe","ms":"malaygbe","mt":"maltagbe","my":"burmagbe","nb":"nɔweigbe bokmål","nd":"dziehe ndebelegbe","ne":"nepalgbe","nl":"Hollandgbe","nn":"nɔweigbe ninɔsk","no":"nɔweigbe","nso":"dziehe sothogbe","ny":"nyanjagbe","or":"oriyagbe","os":"ossetiagbe","pa":"pundzabgbe","pl":"Polishgbe","ps":"pashtogbe","pt":"Portuguesegbe","qu":"kwetsuagbe","rm":"romanshgbe","rn":"rundigbe","ro":"romaniagbe","rof":"rombogbe","ru":"Russiagbe","rw":"ruwandagbe","rwk":"rwagbe","sa":"sanskrigbe","sah":"sakagbe","sd":"sindhgbe","se":"dziehe samigbe","sg":"sangogbe","sh":"serbo-croatiagbe","si":"sinhalgbe","sk":"slovakiagbe","sl":"sloveniagbe","sm":"samoagbe","sn":"shonagbe","so":"somaliagbe","sq":"albaniagbe","sr":"serbiagbe","ss":"swatgbe","st":"anyiehe sothogbe","sv":"swedengbe","sw":"swahili","swb":"komorogbe","ta":"tamilgbe","te":"telegugbe","tet":"tetumgbe","tg":"tadzikistangbe","th":"Thailandgbe","ti":"tigrinyagbe","tk":"tɛkmengbe","tl":"tagalogbe","tn":"tswanagbe","to":"tongagbe","tpi":"tok pisigbe","tr":"Turkishgbe","ts":"tsongagbe","ty":"tahitigbe","ug":"uighurgbe","uk":"ukraingbe","ur":"urdugbe","uz":"uzbekistangbe","ve":"vendagbe","vi":"vietnamgbe","wae":"walsegbe","wo":"wolofgbe","xh":"xhosagbe","yo":"yorubagbe","yue":"cantongbe","zh":"Chinagbe","zh-Hans":"tsainagbe","zh-Hant":"blema tsainagbe","zu":"zulugbe"},"scriptNames":{"Arab":"Arabiagbeŋɔŋlɔ","Cyrl":"Cyrillicgbeŋɔŋlɔ","Latn":"latingbeŋɔŋlɔ","Deva":"devanagarigbeŋɔŋlɔ","Orya":"oriyagbeŋɔŋlɔ","Telu":"telegugbeŋɔŋlɔ","Beng":"bengaligbeŋɔŋlɔ","Guru":"gurmukhigbeŋɔŋlɔ","Hans":"Chinesegbeŋɔŋlɔ","Hant":"Blema Chinesegbeŋɔŋlɔ"}}}
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
@@ -1 +1 @@
|
||||
{"af":{"rtl":false,"pct":0.04},"ak":{"rtl":false,"pct":0},"am":{"rtl":false,"pct":0},"ar":{"rtl":true,"pct":0.74},"ar-AA":{"rtl":true,"pct":0.01},"as":{"rtl":false,"pct":0},"ast":{"rtl":false,"pct":0.12},"ay":{"rtl":false,"pct":0},"az":{"rtl":false,"pct":0},"ba":{"rtl":false,"pct":0},"be":{"rtl":false,"pct":0.23},"bg":{"rtl":false,"pct":0.39},"bn":{"rtl":false,"pct":0.06},"bo":{"rtl":false,"pct":0},"bqi":{"rtl":true,"pct":0},"br":{"rtl":false,"pct":0.61},"bs":{"rtl":false,"pct":0.02},"ca":{"rtl":false,"pct":0.46},"ckb":{"rtl":true,"pct":0.1},"co":{"rtl":false,"pct":0},"cs":{"rtl":false,"pct":0.91},"cv":{"rtl":false,"pct":0},"cy":{"rtl":false,"pct":0.57},"da":{"rtl":false,"pct":0.44},"de":{"rtl":false,"pct":1},"de-AT":{"rtl":false,"pct":0},"de-CH":{"rtl":false,"pct":0},"dv":{"rtl":true,"pct":0.01},"ee":{"rtl":false,"pct":0},"el":{"rtl":false,"pct":0.54},"en":{"rtl":false,"pct":1},"en-AU":{"rtl":false,"pct":0},"en-CA":{"rtl":false,"pct":0},"en-GB":{"rtl":false,"pct":0.39},"en-IE":{"rtl":false,"pct":0},"en-IN":{"rtl":false,"pct":0},"en-NZ":{"rtl":false,"pct":0},"en-PH":{"rtl":false,"pct":0},"en-US":{"rtl":false,"pct":1},"eo":{"rtl":false,"pct":0.6},"es":{"rtl":false,"pct":1},"et":{"rtl":false,"pct":0.22},"eu":{"rtl":false,"pct":0.06},"fa":{"rtl":true,"pct":0.54},"fa-IR":{"rtl":true,"pct":0},"ff":{"rtl":false,"pct":0},"fi":{"rtl":false,"pct":0.35},"fil":{"rtl":false,"pct":0.05},"fr":{"rtl":false,"pct":0.95},"fr-FR":{"rtl":false,"pct":0.08},"fy":{"rtl":false,"pct":0.01},"ga":{"rtl":false,"pct":0.21},"gan":{"rtl":false,"pct":0},"gl":{"rtl":false,"pct":0.48},"grt":{"rtl":false,"pct":0},"gu":{"rtl":false,"pct":0.01},"ha":{"rtl":false,"pct":0},"he":{"rtl":true,"pct":0.63},"he-IL":{"rtl":true,"pct":0.01},"hi":{"rtl":false,"pct":0.01},"hr":{"rtl":false,"pct":0.16},"hu":{"rtl":false,"pct":0.49},"hy":{"rtl":false,"pct":0.03},"ia":{"rtl":false,"pct":0},"id":{"rtl":false,"pct":0.07},"ig":{"rtl":false,"pct":0},"is":{"rtl":false,"pct":0.27},"it":{"rtl":false,"pct":0.89},"ja":{"rtl":false,"pct":0.65},"jam":{"rtl":false,"pct":0},"jv":{"rtl":false,"pct":0},"ka":{"rtl":false,"pct":0},"kbd":{"rtl":false,"pct":0},"kha":{"rtl":false,"pct":0},"ki":{"rtl":false,"pct":0},"kk":{"rtl":false,"pct":0},"km":{"rtl":false,"pct":0.01},"kn":{"rtl":false,"pct":0.06},"ko":{"rtl":false,"pct":0.96},"ks":{"rtl":false,"pct":0},"ku":{"rtl":false,"pct":0},"ky":{"rtl":false,"pct":0},"lb":{"rtl":false,"pct":0.12},"lg":{"rtl":false,"pct":0},"lij":{"rtl":false,"pct":0},"ln":{"rtl":false,"pct":0},"lo":{"rtl":false,"pct":0},"lt":{"rtl":false,"pct":0.17},"lus":{"rtl":false,"pct":0},"lv":{"rtl":false,"pct":0.22},"mg":{"rtl":false,"pct":0.06},"mi":{"rtl":false,"pct":0},"mk":{"rtl":false,"pct":0.34},"ml":{"rtl":false,"pct":0.01},"mn":{"rtl":false,"pct":0},"mr":{"rtl":false,"pct":0},"ms":{"rtl":false,"pct":0.13},"my":{"rtl":false,"pct":0},"nb":{"rtl":false,"pct":0.02},"nd":{"rtl":false,"pct":0},"ne":{"rtl":false,"pct":0.01},"nl":{"rtl":false,"pct":0.6},"nl-BE":{"rtl":false,"pct":0},"nl-NL":{"rtl":false,"pct":0},"nn":{"rtl":false,"pct":0.03},"no":{"rtl":false,"pct":0.45},"nr":{"rtl":false,"pct":0},"nso":{"rtl":false,"pct":0},"nv":{"rtl":false,"pct":0},"ny":{"rtl":false,"pct":0},"oc":{"rtl":false,"pct":0},"om":{"rtl":false,"pct":0},"or":{"rtl":false,"pct":0.01},"pa":{"rtl":false,"pct":0},"pa-PK":{"rtl":true,"pct":0.12},"pap":{"rtl":false,"pct":0},"pl":{"rtl":false,"pct":0.81},"ps":{"rtl":true,"pct":0},"pt":{"rtl":false,"pct":0.57},"pt-BR":{"rtl":false,"pct":0.52},"qu":{"rtl":false,"pct":0},"rm":{"rtl":false,"pct":0},"ro":{"rtl":false,"pct":0.11},"ru":{"rtl":false,"pct":0.56},"rw":{"rtl":false,"pct":0},"sat":{"rtl":false,"pct":0.02},"sc":{"rtl":false,"pct":0},"sd":{"rtl":false,"pct":0},"sg":{"rtl":false,"pct":0},"si":{"rtl":false,"pct":0.02},"sk":{"rtl":false,"pct":0.49},"skr":{"rtl":false,"pct":0},"sl":{"rtl":false,"pct":0.14},"sm":{"rtl":false,"pct":0},"sn":{"rtl":false,"pct":0},"so":{"rtl":false,"pct":0.01},"sq":{"rtl":false,"pct":0.07},"sr":{"rtl":false,"pct":0.44},"ss":{"rtl":false,"pct":0},"st":{"rtl":false,"pct":0},"su":{"rtl":false,"pct":0},"sv":{"rtl":false,"pct":0.93},"sw":{"rtl":false,"pct":0},"ta":{"rtl":false,"pct":0.07},"te":{"rtl":false,"pct":0.02},"tg":{"rtl":false,"pct":0},"th":{"rtl":false,"pct":0.56},"ti":{"rtl":false,"pct":0},"tk":{"rtl":false,"pct":0},"tl":{"rtl":false,"pct":0.03},"tn":{"rtl":false,"pct":0},"tr":{"rtl":false,"pct":0.83},"ts":{"rtl":false,"pct":0},"tt":{"rtl":false,"pct":0},"tum":{"rtl":false,"pct":0},"ug":{"rtl":true,"pct":0},"uk":{"rtl":false,"pct":0.94},"ur":{"rtl":true,"pct":0.07},"uz":{"rtl":false,"pct":0},"ve":{"rtl":false,"pct":0},"vi":{"rtl":false,"pct":0.72},"wa":{"rtl":false,"pct":0},"wo":{"rtl":false,"pct":0},"xh":{"rtl":false,"pct":0},"yo":{"rtl":false,"pct":0},"yue":{"rtl":false,"pct":0.09},"zh":{"rtl":false,"pct":0.01},"zh-CN":{"rtl":false,"pct":0.76},"zh-HK":{"rtl":false,"pct":0.29},"zh-TW":{"rtl":false,"pct":1},"zu":{"rtl":false,"pct":0}}
|
||||
{"af":{"rtl":false,"pct":0.05},"ak":{"rtl":false,"pct":0},"am":{"rtl":false,"pct":0},"ar":{"rtl":true,"pct":0.78},"ar-AA":{"rtl":true,"pct":0.78},"as":{"rtl":false,"pct":0},"ast":{"rtl":false,"pct":0.14},"ay":{"rtl":false,"pct":0},"az":{"rtl":false,"pct":0},"ba":{"rtl":false,"pct":0},"be":{"rtl":false,"pct":0.26},"bg":{"rtl":false,"pct":0.41},"bn":{"rtl":false,"pct":0.06},"bo":{"rtl":false,"pct":0},"bqi":{"rtl":true,"pct":0},"br":{"rtl":false,"pct":0.62},"bs":{"rtl":false,"pct":0.02},"ca":{"rtl":false,"pct":0.47},"ckb":{"rtl":true,"pct":0.1},"co":{"rtl":false,"pct":0},"cs":{"rtl":false,"pct":0.97},"cv":{"rtl":false,"pct":0},"cy":{"rtl":false,"pct":0.71},"da":{"rtl":false,"pct":0.46},"de":{"rtl":false,"pct":1},"de-AT":{"rtl":false,"pct":0.97},"de-CH":{"rtl":false,"pct":0.97},"dv":{"rtl":true,"pct":0.01},"ee":{"rtl":false,"pct":0},"el":{"rtl":false,"pct":0.6},"en":{"rtl":false,"pct":1},"en-AU":{"rtl":false,"pct":0.42},"en-CA":{"rtl":false,"pct":0.42},"en-GB":{"rtl":false,"pct":0.43},"en-IE":{"rtl":false,"pct":0.42},"en-IN":{"rtl":false,"pct":0.42},"en-NZ":{"rtl":false,"pct":0.42},"en-PH":{"rtl":false,"pct":0.42},"en-US":{"rtl":false,"pct":1},"eo":{"rtl":false,"pct":0.63},"es":{"rtl":false,"pct":1},"et":{"rtl":false,"pct":0.29},"eu":{"rtl":false,"pct":0.07},"fa":{"rtl":true,"pct":0.56},"fa-IR":{"rtl":true,"pct":0.55},"ff":{"rtl":false,"pct":0},"fi":{"rtl":false,"pct":0.37},"fil":{"rtl":false,"pct":0.07},"fr":{"rtl":false,"pct":0.97},"fr-FR":{"rtl":false,"pct":0.97},"fy":{"rtl":false,"pct":0.01},"ga":{"rtl":false,"pct":0.21},"gan":{"rtl":false,"pct":1},"gl":{"rtl":false,"pct":0.5},"grt":{"rtl":false,"pct":0},"gu":{"rtl":false,"pct":0.02},"ha":{"rtl":false,"pct":0},"he":{"rtl":true,"pct":0.67},"he-IL":{"rtl":true,"pct":0.67},"hi":{"rtl":false,"pct":0.02},"hr":{"rtl":false,"pct":0.17},"hu":{"rtl":false,"pct":0.5},"hy":{"rtl":false,"pct":0.04},"ia":{"rtl":false,"pct":0},"id":{"rtl":false,"pct":0.2},"ig":{"rtl":false,"pct":0},"is":{"rtl":false,"pct":0.29},"it":{"rtl":false,"pct":0.88},"ja":{"rtl":false,"pct":0.66},"jam":{"rtl":false,"pct":0},"jv":{"rtl":false,"pct":0},"ka":{"rtl":false,"pct":0},"kbd":{"rtl":false,"pct":0},"kha":{"rtl":false,"pct":0},"ki":{"rtl":false,"pct":0},"kk":{"rtl":false,"pct":0},"km":{"rtl":false,"pct":0.01},"kn":{"rtl":false,"pct":0.07},"ko":{"rtl":false,"pct":0.95},"ks":{"rtl":false,"pct":0},"ku":{"rtl":false,"pct":0.01},"ky":{"rtl":false,"pct":0},"lb":{"rtl":false,"pct":0.14},"lg":{"rtl":false,"pct":0},"lij":{"rtl":false,"pct":0},"ln":{"rtl":false,"pct":0},"lo":{"rtl":false,"pct":0},"lt":{"rtl":false,"pct":0.18},"lus":{"rtl":false,"pct":0},"lv":{"rtl":false,"pct":0.25},"mg":{"rtl":false,"pct":0.07},"mi":{"rtl":false,"pct":0},"mk":{"rtl":false,"pct":0.38},"ml":{"rtl":false,"pct":0.01},"mn":{"rtl":false,"pct":0},"mr":{"rtl":false,"pct":0},"ms":{"rtl":false,"pct":0.17},"my":{"rtl":false,"pct":0},"nb":{"rtl":false,"pct":0.03},"nd":{"rtl":false,"pct":0},"ne":{"rtl":false,"pct":0.01},"nl":{"rtl":false,"pct":0.7},"nl-BE":{"rtl":false,"pct":0.7},"nl-NL":{"rtl":false,"pct":0.7},"nn":{"rtl":false,"pct":0.03},"no":{"rtl":false,"pct":0.48},"nr":{"rtl":false,"pct":0},"nso":{"rtl":false,"pct":0},"nv":{"rtl":false,"pct":0},"ny":{"rtl":false,"pct":0},"oc":{"rtl":false,"pct":0},"om":{"rtl":false,"pct":0},"or":{"rtl":false,"pct":0.01},"pa":{"rtl":false,"pct":0.12},"pa-PK":{"rtl":true,"pct":0.12},"pap":{"rtl":false,"pct":0},"pl":{"rtl":false,"pct":0.84},"ps":{"rtl":true,"pct":0},"pt":{"rtl":false,"pct":0.72},"pt-BR":{"rtl":false,"pct":0.72},"qu":{"rtl":false,"pct":0},"rm":{"rtl":false,"pct":0},"ro":{"rtl":false,"pct":0.12},"ru":{"rtl":false,"pct":0.59},"rw":{"rtl":false,"pct":0},"sat":{"rtl":false,"pct":0.03},"sc":{"rtl":false,"pct":0},"sd":{"rtl":false,"pct":0},"sg":{"rtl":false,"pct":0},"si":{"rtl":false,"pct":0.03},"sk":{"rtl":false,"pct":0.54},"skr":{"rtl":false,"pct":0},"sl":{"rtl":false,"pct":0.15},"sm":{"rtl":false,"pct":0},"sn":{"rtl":false,"pct":0},"so":{"rtl":false,"pct":0.01},"sq":{"rtl":false,"pct":0.09},"sr":{"rtl":false,"pct":0.44},"ss":{"rtl":false,"pct":0},"st":{"rtl":false,"pct":0},"su":{"rtl":false,"pct":0},"sv":{"rtl":false,"pct":0.94},"sw":{"rtl":false,"pct":0},"ta":{"rtl":false,"pct":0.08},"te":{"rtl":false,"pct":0.03},"tg":{"rtl":false,"pct":0},"th":{"rtl":false,"pct":0.93},"ti":{"rtl":false,"pct":0},"tk":{"rtl":false,"pct":0},"tl":{"rtl":false,"pct":0.04},"tn":{"rtl":false,"pct":0},"tr":{"rtl":false,"pct":0.83},"ts":{"rtl":false,"pct":0},"tt":{"rtl":false,"pct":0},"tum":{"rtl":false,"pct":0},"ug":{"rtl":true,"pct":0},"uk":{"rtl":false,"pct":1},"ur":{"rtl":true,"pct":0.07},"uz":{"rtl":false,"pct":0},"ve":{"rtl":false,"pct":0},"vi":{"rtl":false,"pct":0.71},"wa":{"rtl":false,"pct":0},"wo":{"rtl":false,"pct":0},"xh":{"rtl":false,"pct":0},"yo":{"rtl":false,"pct":0},"yue":{"rtl":false,"pct":1},"zh":{"rtl":false,"pct":1},"zh-CN":{"rtl":false,"pct":1},"zh-HK":{"rtl":false,"pct":1},"zh-TW":{"rtl":false,"pct":1},"zu":{"rtl":false,"pct":0}}
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
@@ -1 +1 @@
|
||||
{"lij":{"intro":{"graph":{"block_number":"<value for addr:block_number>","county":"<value for addr:county>","district":"<value for addr:district>","hamlet":"<value for addr:hamlet>","neighbourhood":"<value for addr:neighbourhood>","province":"<value for addr:province>","quarter":"<value for addr:quarter>","state":"<value for addr:state>","subdistrict":"<value for addr:subdistrict>","suburb":"<value for addr:suburb>","countrycode":"it"},"lines":{"title":"Righe"},"startediting":{"title":"Tàca a Mudificà","save":"Nu te scurdà de sarvà regularmènte e tou mudifiche!","start":"Cumènsa a disegnà a tou màpa!"}},"languageNames":{"en":"ingleise","lij":"ligure"},"scriptNames":{"Latn":"latin"}}}
|
||||
{"lij":{"help":{"lines":{"title":"Righe"}},"intro":{"graph":{"block_number":"<value for addr:block_number>","county":"<value for addr:county>","district":"<value for addr:district>","hamlet":"<value for addr:hamlet>","neighbourhood":"<value for addr:neighbourhood>","province":"<value for addr:province>","quarter":"<value for addr:quarter>","state":"<value for addr:state>","subdistrict":"<value for addr:subdistrict>","suburb":"<value for addr:suburb>","countrycode":"it"},"lines":{"title":"Righe"},"startediting":{"title":"Tàca a Mudificà","save":"Nu te scurdà de sarvà regularmènte e tou mudifiche!","start":"Cumènsa a disegnà a tou màpa!"}},"languageNames":{"en":"ingleise","lij":"ligure"},"scriptNames":{"Latn":"latin"}}}
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user